2007 Jun 26 10:31 AM
Hi I am having a problem in BDC Recording. My requirement is that when I input data in transaction fb02 to block the invoices, It shows a list of invoices. Now i need to double click that item(line) in which PK = 06 at runtime during bdc recording. During BDC recording it takes the line number on which we have clicked which is constant but i want it dynamic that if item 1 is having PK=6, that line should be double clicked and if item 3 is having PK=6, the third item should be double clicked to open another screen. Kindly halp me... Thanks in advance.
2007 Jun 26 11:00 AM
CONCATENATE 'RF05L-ANZDT(' t_bsid-buzei ')' INTO l_lineitem.
PERFORM bdc_dynpro USING 'SAPMF05L' '0700'.
PERFORM bdc_field USING 'BDC_CURSOR'
'RF05L-ANZDT(01)'.
l_lineitem.
Hi I am having a problem in BDC Recording. My requirement is that when I input data in transaction fb02 to block the invoices, It shows a list of invoices. Now i need to double click that item(line) in which PK = 06 at runtime during bdc recording. During BDC recording it takes the line number on which we have clicked which is constant but i want it dynamic that if item 1 is having PK=6, that line should be double clicked and if item 3 is having PK=6, the third item should be double clicked to open another screen. Kindly halp me... Thanks in advance.
2007 Jun 26 10:45 AM
Use the "Display From Item" option to position the required item to the top of the list, this way you will always be double clicking the first item at the top of the list. The ok-code for "Display From Item" is ABZL, on the next screen enter the item number you wish to block, this item will be placed at the top of the list for you to double click.
2007 Jun 26 10:51 AM
Hi, could you please brief me some more about the 'Display From Item' option. Where and how should I use it? Thanks.
2007 Jun 26 11:00 AM
CONCATENATE 'RF05L-ANZDT(' t_bsid-buzei ')' INTO l_lineitem.
PERFORM bdc_dynpro USING 'SAPMF05L' '0700'.
PERFORM bdc_field USING 'BDC_CURSOR'
'RF05L-ANZDT(01)'.
l_lineitem.
2007 Jun 26 4:49 PM