Application Development 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: 

Select line in batch input

Former Member
0 Kudos

Hi expert,

I registered a batch input, and a certain point I have to select a line in a table. ( inside transaction PP01 ).

When i run the batch, the line is not selected !!!

why ? there's a way to solve this problem ?

thk a lot,

bye.

3 REPLIES 3

Former Member
0 Kudos

Something like:

PERFORM dynpro USING:
 'X' 'SAPMXXXX'        '9999',
 ' ' 'BDC_CURSOR'      'SEL_FIELD'.

Rob

0 Kudos

Hi,

go on the screen where is the table control in the transaction PP01.

Show the technical value for the check field (F1 -> technical settings) and find the name of the field (for example "CHECK").

To select the first line of the table in the batch use the perform BCD_FIELD (watch the BCDRECXX program to show the code of the form) like :

perform bdc_field using 'CHECK(01)' 'X'.

If you want select the 3rd line do the same, but change the index.

perform bdc_field using 'CHECK(03)' 'X'.

Hope it helps.

Let us know.

Andrea

Former Member
0 Kudos

I added mark = x in the dynpro