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

Problem in displaying text and fields

Former Member
0 Likes
690

Hello experts,

I have modified ALV porgram in which some field and value is diplaying.

i added 3 fields and value. i created text element and added values to fieldcatalog.

but my field name and field value is not displaying.

can you please tell me problem of text element or problem in fieldcatalog?

Thanks and regards,

zubera

5 REPLIES 5
Read only

Former Member
0 Likes
655

Hi Could you please post the code.

Regards

Abhii..

Read only

Former Member
0 Likes
655

Hi,

Just make sure the 3 fields you added in the fieldcatalog is updated in the internal table of fieldcatalog

to identify that put a break point in the FM ALV_DISPLAY and in the degub mode check the fieldcatalog table

wheter your fields are prsent there or not.

Regards

Bikas

Read only

Former Member
0 Likes
655

SELECT VBELN AUGRU FROM VBAK

INTO CORRESPONDING FIELDS OF TABLE GT_VBAK

FOR ALL ENTRIES IN GT_ZSD0122T

WHERE VBELN EQ GT_ZSD0122T-VBELN.

SELECT VBELN FROM VBFA

INTO CORRESPONDING FIELDS OF TABLE GT_LIPS

FOR ALL ENTRIES IN GT_ZSD0122T

WHERE VBELV EQ GT_ZSD0122T-VBELN

AND VBTYP_N EQ 'J'

AND VBTYP_V EQ 'C'.

SELECT VBELN FROM VBFA

INTO CORRESPONDING FIELDS OF TABLE GT_VBRK

FOR ALL ENTRIES IN GT_ZSD0122T

WHERE VBELV EQ GT_ZSD0122T-VBELN

AND VBTYP_N EQ 'M'

AND VBTYP_V EQ 'C'.

  • Check Box

'S' 'FIELDNAME' 'MARK',

' ' 'CHECKBOX' 'X',

' ' 'HOTSPOT' 'X',

' ' 'KEY' 'X',

  • ' ' 'EDIT' 'X',

'E' 'COLTEXT' TEXT-F00,

  • 처리 상태 아이콘

'S' 'FIELDNAME' 'ICON',

' ' 'KEY' 'X',

' ' 'OUTPUTLEN' '4',

'E' 'COLTEXT' 'Result',

  • PIT STOP KEY NO

'S' 'FIELDNAME' 'ZIFNO',

' ' 'KEY' 'X',

'E' 'COLTEXT' TEXT-F01,

'S' 'FIELDNAME' 'WERKS',

' ' 'CONVEXIT' 'ALPHA',

'E' 'COLTEXT' TEXT-F34,

Read only

0 Likes
655

Hey its not possible to figure out without complete code...

Anyways just do one thing, just check if you have added those fields in the field catalog or not.

Regards

Abhii....

Read only

Former Member
0 Likes
655

Problem solved.