Hi Gurus.
I have the next code for the log:
PERFORM bdc_dynpro USING 'SDSAMPRO' '1000'. PERFORM bdc_field USING 'SAMNR-LOW' l_sammg. PERFORM bdc_field USING 'BDC_OKCODE' '=ONLI'. PERFORM bdc_dynpro USING 'SAPLSLVC_FULLSCREEN' '0500'. PERFORM bdc_field USING 'BDC_OKCODE' '=EPRO'. opt-dismode = 'N'. opt-nobinpt = 'X'. opt-defsize = 'X'. CALL TRANSACTION 'V_SA' USING i_bitab OPTIONS FROM opt * MODE d_modo UPDATE 'S' MESSAGES INTO i_message.
If opt-dismode = A i can see the dynpros and the final dynpro, if opt-dismode = N i can`t see the dynpros, but i want that only the final dynpro is visible.
How i can do it???
Thanks.
Regarsd
Have you tried:
CALL TRANSACTION 'V_SA' USING i_bitab MODE 'E'.
?
Totally we;ve 3 option
A - it will display all Screens
N - It will dispaly nothing, just you need to see the log
E - It will show the screen where the error occurs.
In your case u want to see the last screen, which is not possible.
Thanks
Pavan
Add a comment