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: 

BDC recording for Transaction code IA06

Former Member
0 Kudos

Hi Gurus,

Have anyone here done the recording for t code IA06. It is not going down on page down action and + is adding a record before a record is already present not after.

2 REPLIES 2

Former Member
0 Kudos

Hi Anil ,

Please note that clicking on the +(Add row) button will always add a new row before the row on which the cursor has been placed .

In this case , If you need to add new operation numbers you have to use the line index for this.

eg: PLPOD-VORNR (01) , PLPOD-VORNR(02) etc. (This PLPOD_VORNR(01) indicates the 1st Operation number that's present in the screen at the 1st instance when the screen appears . Once the scroll button is clicked once then the earlier PLPOD-VORNR(02) field  becomes PLPOD-VORNR(01) as per the new screen display)

Also , please note that while performing the recording you will have to record the OK code for the scroll functionality as well and this needs to be used within the loop each time you add a new operation

sriram_ramesh
Participant
0 Kudos

Hi Anil,

While doing the recording, after entering first row, press enter and let it go to next row by itself.

In code, you can loop the contents to be added to that rows and put your recording inside the loop.

Thanks.