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

reg XK02

Former Member
0 Likes
443

Hi,

i am haviding a requirement to write a bdc to populate line items in table control for t-code XK02, the problem is this t-code is related to change, and the table control may already contain some line items and these line items should be overided by new line items overided, iit would be greatful if can one helpme , it is urgent issue.

Hi,

i am haviding a requirement to write a bdc to populate line items in table control for t-code XK02, the problem is this t-code is related to change, and the table control may already contain some line items and these line items should be overided by new line items overided, iit would be greatful if can one helpme , it is urgent issue.

2 REPLIES 2
Read only

Former Member
0 Likes
417

If the seq. of data in your Internal table is same as like the Bank details screen in XK02 then you will not any problem in updating the bank details using index of secondary internal table u use for bank details.

Loop at main loop.

BDC Flow .-->

  • For bank Details

Loop at Bank Details.

i = Sy-tabix

Table_control_table<i>-Field Name = "New value".

Endloop.

  • Incase if you have more than once page of entry in Table Control,then ur Index of Table Control will change ie ) i value has to changed accordingly.

Endloop.

Hope this will help to solve your Problem.

Reward if helpful.

Read only

Former Member
0 Likes
417

Hi,

Go through the following link

http://www.sapbrain.com

Regards,

Bhaskar