Based on certain condition how can we show different columns in output of ALV?? For Ex if Condition A is met we need to show 1 5 and 7 column , If condition B is met we need to show 1 2 and 4 and if condition C is met we need to show 1 3 and 6.
Answer Posted / prakash235
you can bulid three diffrent catlogues for three conditions.
as
if cond x.
perform build_cat1.
perform alv_display1.
elseif cond y.
perform build_cat2.
perform alv_display2.
elseif cond z.
perform build_cat3.
perform alv_display3.
endif.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between commit-work and rollback-work tasks?
Which function module would you use to check the user’s authorization to access files before opening a file?
What is value table? : abap data dictionary
How do you write a function module in sap?
what is the purpose of BAPI BAPI_CUSTMATINFO_GETLIST What is input and output of this BAPI.
Can we create a gui status in a program from the object browser?
How the at-user command serves mainly in lists?
What is the use of f4if_shlp_exit_example function module ? : sap abap data dictionary
What is asap methodology? : sap abap hr
What are roles and authorization objects?
In events, start-of-selection is a default event. When we have to use this event explicitly? Why?
what is sales order confirmation and how can do design it in webdynpro. what is Tcode for the same?
What are the different types of parameters?
Explain the difference between a pool table and a transparent table and how they are stored at the database level?
A field-groups statement or an insert statement reverses storage space and transfers values. State true or false. : abap modularization