‎2009 Apr 20 6:23 PM
I am trying to add (as in never before existed) Pay Levels to T710. I used SHDB to do a recording of SM34, but when I execute the recording in a program it gets to a point early in the process and stops and the screen it stops on doesn't look exactly like the screen in the SM34 process. When I did the recording I had to check the "NOT A BATCH INPUT SESSION BOX" in order to get the input screen to come up with the Dialog Structure of Grades and under it Pay Grade Levels.
Does the fact that I had to check the "Not A Batch Input Session" mean I can't repeat this in a BDC?
‎2009 Apr 21 10:21 AM
you can do the equivalent in your program also
please use the code
DATA: lw_options TYPE ctu_params.
lw_options-dismode = 'A'. "'N'. "No Display
lw_options-updmode = 'S'. "Local
lw_options-nobinpt = 'X'.
REFRESH it_messtab[].
CALL TRANSACTION p_v_tcode USING it_bdcdata
MESSAGES INTO it_messtab
OPTIONS FROM lw_options.
by setting the field nobinpt as 'X' you can proceed
Regards,
Anil
Edited by: ANIL KUMAR on Apr 21, 2009 2:52 PM
Edited by: ANIL KUMAR on Apr 21, 2009 2:53 PM
‎2009 Apr 21 10:21 AM
you can do the equivalent in your program also
please use the code
DATA: lw_options TYPE ctu_params.
lw_options-dismode = 'A'. "'N'. "No Display
lw_options-updmode = 'S'. "Local
lw_options-nobinpt = 'X'.
REFRESH it_messtab[].
CALL TRANSACTION p_v_tcode USING it_bdcdata
MESSAGES INTO it_messtab
OPTIONS FROM lw_options.
by setting the field nobinpt as 'X' you can proceed
Regards,
Anil
Edited by: ANIL KUMAR on Apr 21, 2009 2:52 PM
Edited by: ANIL KUMAR on Apr 21, 2009 2:53 PM