Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

alv grid display

Former Member
0 Likes
800

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

6 REPLIES 6
Read only

Former Member
0 Likes
781

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

Read only

Former Member
0 Likes
781

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

Read only

0 Likes
781

hi

i check fieldcatlog also . it's append to internal table .but its not working.

Read only

Former Member
0 Likes
781

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

Read only

Former Member
0 Likes
781

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.

Read only

0 Likes
781

HI

THANKS FOR REPLY. PORBLEM IS solved .i mentioned all are caps but not matnr mention small letters.

so it's not display.