SY-BINPT and Batch Input Mapping
Hallo,
I am trying to upload pesonal hours in PA61 in BIM mode. This is not working because in the code the field SY-BINPT is being asked. This is 'X' in the BIM-mode. So it is not possible to do this. Ive read somewhere in the help to enter the CALL TRANSACTION with a possibility to set the SY-BINPT to 'initial'. Does anybody know if this is true and if so, how?
Erik
data: wa_opt type ctu_params.
wa_opt-dismode = wa_mode.
wa_opt-updmode = 'S'.
wa_opt-DEFSIZE = 'X'.
* wa_opt-RACOMMIT = ' '.
wa_opt-NOBINPT = 'X '. "<----
* wa_opt-NOBIEND = ' '.
CALL TRANSACTION 'Z010' USING ...... options from wa_opt.
In the CALL TRANSACTION help there you'll all details.
Ciao, Giulio
Rouge,
Thanks for your reply but I still cant get it to work. In your example you have defined wa_opt as 'type ctu_params' , but of course if I use this I still have to define type ctu_params, and I dont know as what.
Ive searched the help too, but there is nothing about 'options from' that I can use. Is it also possible in 3.1?
OK, I hope you can help me again, thanks already.
Agouwi
Agouwi: CTU_PARAMS is a structure provided by SAP (as you can tell by the name). Follow Rouges instructions and you will be fine.
Good luck
Sorry... it is for 4.6.
I do not know if it's possible in 3.1.
Ciao, Giulio.