2007 Oct 23 6:39 AM
when using like this it is giving me dump in a standard program
sayin field symbol not assigned
also when i am trying to give
i_structure_name = 's_final '
it_outtab = i_final
its givin me an error i_final is not type compatible with it_outtab .
CALL METHOD go_grid_top->set_table_for_first_display
EXPORTING
i_structure_name = ' '
i_save = 'A'
I_DEFAULT = 'X'
IS_LAYOUT = gs_layout
IS_PRINT =
CHANGING
it_outtab = i_final[]
it_fieldcatalog = fieldcat[]
IT_SORT =
EXCEPTIONS
invalid_parameter_combination = 1
program_error = 2
too_many_lines = 3
OTHERS = 4.
<b>also when i am trying to give
i_structure_name = 's_final '
it_outtab = i_final
its givin me an error i_final is not type compatible with it_outtab .</b>
<b>and when using like this it is working fine </b>
CALL METHOD go_grid_top->set_table_for_first_display
EXPORTING
I_BUFFER_ACTIVE =
I_BYPASSING_BUFFER =
I_CONSISTENCY_CHECK =
i_structure_name = 'ekko'
IS_VARIANT =
i_save = 'A'
I_DEFAULT = 'X'
IS_LAYOUT = gs_layout
IS_PRINT =
CHANGING
it_outtab = i_final
it_fieldcatalog = fieldcat
IT_SORT =
EXCEPTIONS
invalid_parameter_combination = 1
program_error = 2
too_many_lines = 3
OTHERS = 4.
plz tel me how to remove these errors
i want to tak print of my alv
when using like this it is giving me dump in a standard program
sayin field symbol not assigned
also when i am trying to give
i_structure_name = 's_final '
it_outtab = i_final
its givin me an error i_final is not type compatible with it_outtab .
CALL METHOD go_grid_top->set_table_for_first_display
EXPORTING
i_structure_name = ' '
i_save = 'A'
I_DEFAULT = 'X'
IS_LAYOUT = gs_layout
IS_PRINT =
CHANGING
it_outtab = i_final[]
it_fieldcatalog = fieldcat[]
IT_SORT =
EXCEPTIONS
invalid_parameter_combination = 1
program_error = 2
too_many_lines = 3
OTHERS = 4.
<b>also when i am trying to give
i_structure_name = 's_final '
it_outtab = i_final
its givin me an error i_final is not type compatible with it_outtab .</b>
<b>and when using like this it is working fine </b>
CALL METHOD go_grid_top->set_table_for_first_display
EXPORTING
I_BUFFER_ACTIVE =
I_BYPASSING_BUFFER =
I_CONSISTENCY_CHECK =
i_structure_name = 'ekko'
IS_VARIANT =
i_save = 'A'
I_DEFAULT = 'X'
IS_LAYOUT = gs_layout
IS_PRINT =
CHANGING
it_outtab = i_final
it_fieldcatalog = fieldcat
IT_SORT =
EXCEPTIONS
invalid_parameter_combination = 1
program_error = 2
too_many_lines = 3
OTHERS = 4.
plz tel me how to remove these errors
i want to tak print of my alv
2007 Oct 23 6:42 AM
Hi,
if you are using a custom internal table, you need to create a strucuture using Se11. then pass this structure name in the i_structure_name paramater.
Regards,
Niyaz
2007 Oct 23 6:45 AM
but i hav created a structure in my code
DATA : BEGIN OF s_final ,
flief LIKE plaf-flief,
name1 LIKE lfa1-name1,
land1 LIKE lfa1-land1,
matnr LIKE eban-matnr,
maktx LIKE makt-maktx,
lfdat LIKE eban-lfdat,
delb0 LIKE t457t-delb0 ,
ebeln LIKE ekpo-ebeln,
ebelp LIKE ekpo-ebelp,
menge LIKE ekes-menge,
meins LIKE eban-meins,
labnr LIKE ekpo-labnr,
zintct(30) TYPE c ,
END OF s_final .
2007 Oct 23 7:47 AM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |