Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SHDB - T710

Former Member
0 Likes
478

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?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
410

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

1 REPLY 1
Read only

Former Member
0 Likes
411

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