2010 Oct 06 11:03 AM
Hi everyone,
I'm new to abap. I'm doing BDC recording using call transaction method. i have finished entering fields of a page and now i want to navigate to next page directly from the current field to my subsequent page screen. how to do that. Can i navigate through if i'm knowing what is my next field. because i'm getting error field missing while doing recording. Please help me.
Thanks
2010 Oct 07 5:36 AM
hi
As you asked i'm providing you a short code as example, while recording is being done for vendor creation, this code is being used..
////SAMPLE CODE
perform bdc_dynpro using 'SAPMF02K' '0100'.
perform bdc_field using 'BDC_CURSOR'
'RF02K-KTOKK'.
////SAMPLE CODE
Regards
Vinodh
2010 Oct 06 11:39 AM
hi
Yes you can do it by making use of BDC_CURSOR, which will take screen number and field name as input. Search in sdn regarding that.
Regards
Vinodh
2010 Oct 06 12:44 PM
Hi
Refer to following links. It will be useful to you..
<<links removed>>
Edited by: kishan P on Oct 6, 2010 5:40 PM
2010 Oct 06 12:47 PM
hi vinodh. thanks for your reply. but can you explain a little bit some codes which will make me clear.
2010 Oct 07 5:36 AM
hi
As you asked i'm providing you a short code as example, while recording is being done for vendor creation, this code is being used..
////SAMPLE CODE
perform bdc_dynpro using 'SAPMF02K' '0100'.
perform bdc_field using 'BDC_CURSOR'
'RF02K-KTOKK'.
////SAMPLE CODE
Regards
Vinodh