‎2008 Apr 24 3:31 PM
hello friends
can any one tell me
in initialization,at selection-screen,start of selection flow logic
where we have to use this like calling a screen at that time before the coding which one should come whether initialization or at selection-scren
please answer
‎2008 Apr 24 3:58 PM
Hi Venkatesh..
In classical reports, the order of events is as follows
1. Initialization
2. At selection screen
3. Start of selection.
4. Top-of-page
5. End-of-selection.
6. End-of-page.
Initialization event is for providing default initial values for the fields of sel-screen.
It'll trigger after the User executes the program and before load-program.
At selection-screen is to provide field validations on selection screen.
It'll trigger at PBO of the selection screen
Start-of-selection is the default driver event. But if u mention initialization event in ur program, then u must specify start-of-selection event.
It'll trigger after user give the input values in sel-screen.
If this works out for u, reward me points plz
Thanks
Suren
‎2008 Apr 24 3:33 PM
initialization
at selection-screen
start of selection
And these are statements you use when creating a report with a selection screen.
Edited by: Micky Oestreich on Apr 24, 2008 4:34 PM
‎2008 Apr 24 3:35 PM
If you are using a report program, you don't have to call the screen unless after the first selection screen is being processed that you want to call another screen.
Then it would be dependent on your requirements whether it would go in the AT SELECTION SCREEN or in your START-OF-SELECTION processing.
‎2008 Apr 24 3:44 PM
If u declared any parameters or select-options , this automatically triggers selection screen and always selection screen default number is 1000 ,
and if u want to call different screen from a report then
we can use call screen 'XYZ'.
XYZ is a number other than 1000 ,
and this code is written in start-of-selection .
If u want to change any value on selection screen then the coding is to be written in
INITIALIZATION .
‎2008 Apr 25 5:36 AM
thanks my friend ur message really helped me
and point also i awarded
‎2008 Apr 24 3:58 PM
Hi Venkatesh..
In classical reports, the order of events is as follows
1. Initialization
2. At selection screen
3. Start of selection.
4. Top-of-page
5. End-of-selection.
6. End-of-page.
Initialization event is for providing default initial values for the fields of sel-screen.
It'll trigger after the User executes the program and before load-program.
At selection-screen is to provide field validations on selection screen.
It'll trigger at PBO of the selection screen
Start-of-selection is the default driver event. But if u mention initialization event in ur program, then u must specify start-of-selection event.
It'll trigger after user give the input values in sel-screen.
If this works out for u, reward me points plz
Thanks
Suren
‎2008 Apr 25 5:35 AM
can any one tell me the usage of idoc and its definition
as well as what is segment what is the transaction code for that
‎2008 Apr 24 4:01 PM
Hi,
before coding Initializatio event triggers first after that start-of-selection event triggers after these two events at-selection screen event triggers.
for better understanding just write simple abap program by using these 3 events after that use debug the code.
Thanks
Prashanth