2008 May 28 9:53 PM
Hi ,
Where can we get all the Layouts for a Particular ALV report?
I need the table?I know the Function Module.
Thanks,
Sirisha Matta.
2008 May 28 10:17 PM
Hi,
All ALV layouts variants are stored in table LTDX and can be fetched based on ABAP Program Name, user name(for user specific layouts).
Layout texts are available in LTDXT.
reward points if this helps.. but just want to know what's the specific requirement for going to this table?
thnx,
ags.
Edited by: Agasti Kale on May 28, 2008 11:24 PM
Hi,
All ALV layouts variants are stored in table LTDX and can be fetched based on ABAP Program Name, user name(for user specific layouts).
Layout texts are available in LTDXT.
reward points if this helps.. but just want to know what's the specific requirement for going to this table?
thnx,
ags.
Edited by: Agasti Kale on May 28, 2008 11:24 PM
2008 May 28 9:57 PM
If you mean variant for that report, you can use:
CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
EXPORTING
is_variant = lv_variant
i_save = lv_save
IMPORTING
e_exit = lv_exit
es_variant = lv_x_variant
EXCEPTIONS
not_found = 2.
IF sy-subrc = 2.
MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ELSE.
IF lv_exit = space.
lv_vari = lv_x_variant-variant.
ENDIF.
ENDIF.
Sorry didnt read the you know function module part. Ignore the post.
Edited by: Aparna Shekhar on May 28, 2008 3:59 PM
2008 May 28 10:17 PM
Hi,
All ALV layouts variants are stored in table LTDX and can be fetched based on ABAP Program Name, user name(for user specific layouts).
Layout texts are available in LTDXT.
reward points if this helps.. but just want to know what's the specific requirement for going to this table?
thnx,
ags.
Edited by: Agasti Kale on May 28, 2008 11:24 PM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |