TAW_11 Chapter 10 SAP lit viewer ALV creation Flashcards
What are the three ALV output forms
Full screen
Embedded in a container
Classic ABAP list
What are the key (non moving columns of an ALV called?
Lead columns
What can the mouse left click do in an ALV?
Copy HIDE SHOW OPTIMAL WIDTH FREEZE COLUMN UNFREEZE
In an ALV drid screen, what should the next screen be set to
The existing screen number so the user doesnt accidently leave the screen
Where can a context menu be defined?
As a type of gui status
How often should the ok_code field be reset
During every dialog step (top of PBO works)
What is the best way to check if an instance of an object has already been created
If is not initial
‘I have used bound in the past
What is I_parent linked to in an ALV object
The container
How can resources be released?
All enjoy objects have a FREE method
Also FREE:
The ALV model gets it’s field from the supplied table. How does the ALV grid get this info?
From the field catalog, although a structure from the DD can be passed instead
Standard, Sorted, and Hahed tables can all be used with an ALV grid?
No, only standard tables are allowed
Sorting the data on the screen of an ALV does not change the sort order of the internal table
Not true, at least for the ALV GRID. I thought the SALV retained the sort order of the table even when the data was resorted on the screen
Name two additional peices of information that can be passed as part of an ALV?
Filter and sort data
What is the difference between IS_STABLE and I_SOFT_REFRESH when calling REFRESH_TABLE_DISPLAY
Soft only refreshes data, not sort or other criteria
stable refers to the scroll stability
THESE CAN BOTH BE ACTIVE