‎2009 Dec 17 2:34 PM
Hi Experts,
i am creating customer for FI module using FD01, with call transaction method, here my prob is, if i update mode A, then it is asking enter for every screen, but i use N mode, it is not creating,
so what i need to modify and where ...
Thanks,
sudha.
‎2009 Dec 17 5:45 PM
Thats because you are skipping code for a screen, in A mode you do not notice and press ENTER, but in N mode the process gets stuck when it cannot find the code for a screen.
Run the program in A mode and find out where you are stucking, and put this code in your program at that spot:
PERFORM insert_bdc_data TABLES it_bdc_data USING:
'X' 'SAPLKACB' '0002',
' ' 'BDC_OKCODE' '=ENTE'. The code may be different for you, I just wanted to give you an idea what may be going wrong.
‎2009 Dec 17 4:43 PM
just try to create using error screen mode E and check where exactly it is getting error..
since in error screen mode it stops at the screen where there is a error... if any error you can correct there.....
Regards
Kumar
‎2009 Dec 17 5:17 PM
In debugging try to see all message.
In those message you have successful message saying "screen field is not input field."
Try to remove this message and you will have customer successfully created.
‎2009 Dec 17 5:45 PM
Thats because you are skipping code for a screen, in A mode you do not notice and press ENTER, but in N mode the process gets stuck when it cannot find the code for a screen.
Run the program in A mode and find out where you are stucking, and put this code in your program at that spot:
PERFORM insert_bdc_data TABLES it_bdc_data USING:
'X' 'SAPLKACB' '0002',
' ' 'BDC_OKCODE' '=ENTE'. The code may be different for you, I just wanted to give you an idea what may be going wrong.