2008 Mar 27 7:26 AM
hi
i display output using the alv .but it's not display the 1 field value remainig all field values displayed.
in this i used sort to diplay based on the date and matnr.
but date is displayed matnr not display .
pls tell why its
hi
i display output using the alv .but it's not display the 1 field value remainig all field values displayed.
in this i used sort to diplay based on the date and matnr.
but date is displayed matnr not display .
pls tell why its
2008 Mar 27 7:34 AM
Hi Kumar Might be u have missed out in data sending into the internal table..chekc it in debug mode whether the data is fetching or not..
kindly paste the code...so that more clear for any one..to help..
Regards
points if usefull
2008 Mar 27 7:38 AM
Hi kk,
Could you please put some code that you have done and the structure of internal table that needs to be displayed for better understanding of the problem.
Generally this can happen only if you are not passing field catalog table correctly ''REUSE_ALV_GRID_DISPLAY' . Please check if you have added field of MATNR to itab for field catalogue and appended to it_fieldcat table.
Eg.
wa_fieldcat-tabname = 'IT_FIELDCAT'.
wa_fieldcat-fieldname = 'MATNR'.
wa_fieldcat-seltext_l = 'Material No'.
APPEND wa_fieldcat TO it_fieldcat.
CLEAR wa_fieldcat .
Please reward point if useful.
Regards,
Ashlesha
2008 Mar 27 8:14 AM
hi
i check fieldcatlog also . it's append to internal table .but its not working.
2008 Mar 27 7:43 AM
While populating the Field Catalog internal table check whether the field name mentioned is same as what is declared in the internal table that contains the data.
It seems you have misspelled it wrong when filling the field catalog table.
Hope this helps.
Thanks,
Balaji
2008 Mar 27 8:28 AM
hi use the capital letters like this....
replace this .....
it_fieldcat-fieldname = 'matnr'.
it_fieldcat-tabname = 'mara'.
with
it_fieldcat-fieldname = 'MATNR'.
it_fieldcat-tabname = 'MARA'.
regards,
venkat.
2008 Mar 27 9:01 AM
HI
THANKS FOR REPLY. PORBLEM IS solved .i mentioned all are caps but not matnr mention small letters.
so it's not display.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |