After executing a report, the green arrow back key will takes us back to
> the selection screen with the original input on it.
>
> However, my client would like to see the selection screen without any
> previous input on it, so he could start entering new input without
> deleting/overwriting the old ones. Is it possible to do that?
>
> Any hints will be greatly appreciated.
>
Use this part of code:
DATA: EXECUTED TYPE N.
your data definitions starts here
AT SELECTION-SCREEN OUTPUT.
IF EXECUTED = 1.
EXECUTED = 0.
CLEAR: var1, var2, etc.
REFRESH: selop1.
here you have to clear all your parameters, select options etc.
ENDIF.
START-OF-SELECTION.
EXECUTED = 1.
your main coding starts here.
END-OF-SELECTION.
Kind regards, Ingo-Willy Raddatz.
ABAP,ABAP report,Interactive Report,ALV grid,ALV list,IDOC,User Exit,RFC,Smartform,sapscript,ABAP Performance,Remote Function Module( RFC ),Function Module,Modularization techniques,ABAP tools,ALV report Generator,ABAP Interview Questions,BDC,BAPI,ALE,BADI, EDI,InternalTable,DataStructure,LSMW,Domain,DataElement,Basis and Administration ,ABAP HR development,ABAP Debugger,BW,ExceptionHandling,Download FI, CO, MM, PP, SD, PM, PS, QM, SM, HR, BW, APO,ABAP Tutorial
Friday, December 7, 2007
Clearing selection screen input without any Previous Input
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment