2007 Mar 31 11:34 AM
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.
2007 Mar 31 11:46 AM
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.
2007 Mar 31 12:12 PM