cancel
Showing results for 
Search instead for 
Did you mean: 

Field Catalogue

Former Member
0 Kudos

Hi ,

i am not able to display following menge field in header of field catalogue .This is what i am giving .For all other fields i am able to do and proper declaration is done in it_ekpo.

s_fieldcatalog-col_pos = '9'.

s_fieldcatalog-fieldname = 'MENGE'.

s_fieldcatalog-tabname = 'lt_ekpo'.

s_fieldcatalog-rollname = 'MENGE'.

APPEND s_fieldcatalog TO t_fieldcatalog.

CLEAR: s_fieldcatalog.

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi Ivneet,

U cannot see the entire MENGE column in the output or cant see only the header????

If u cannot see the header thn try this code: [it will display the header as MENGE]

s_fieldcatalog-col_pos = 9.

s_fieldcatalog-fieldname = 'MENGE'.

s_fieldcatalog-seltext_m = 'MENGE'. -


> try insert this line

s_fieldcatalog-tabname = 'LT_EKPO'.

s_fieldcatalog-rollname = 'MENGE'.

APPEND s_fieldcatalog TO t_fieldcatalog.

CLEAR: s_fieldcatalog.

If u cant see the entire column then pls paste your code here so that we could help you in solving your issue.

Regards,

Saba

Former Member
0 Kudos

not yet solved

former_member188685
Active Contributor
0 Kudos

If you really code your problem will be solved.

asik_shameem
Active Contributor
0 Kudos

Hi

Take the ' off for col_pos as below.

And make sure field MENGE is there in Internal table IT_EKPO

s_fieldcatalog-col_pos = 9 .                 " No need of ' '
s_fieldcatalog-fieldname = 'MENGE'.
s_fieldcatalog-tabname = 'lT_EKPO'.
s_fieldcatalog-rollname = 'MENGE'.

APPEND s_fieldcatalog TO t_fieldcatalog.
CLEAR: s_fieldcatalog.

Former Member
0 Kudos

Try to pass s_fieldcatalog-tabname = 'LT_EKPO' (Capital Letters).

Thanks

Amol Lohade

Former Member
0 Kudos

No thats not helping .For other fields i had put in small.

former_member188685
Active Contributor
0 Kudos

Hello then post your code. it is always suggested to use CAPS for the Tables and Fieldnames.

former_member188685
Active Contributor
0 Kudos

changes..

for Quantity fields you should always mention the Ref field, Ref tablename and Qfield name and Qtabaname. try filling them also.

s_fieldcatalog-col_pos = 9.
s_fieldcatalog-fieldname = 'MENGE'.
s_fieldcatalog-tabname = 'LT_EKPO'.  "This should be incaps
s_fieldcatalog-rollname = 'MENGE'.

APPEND s_fieldcatalog TO t_fieldcatalog.
CLEAR: s_fieldcatalog.