Application Development 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: 

DD03L and DD03T

Former Member
0 Kudos

Hi,

I have created a Z-table. This Z-table details i can see in DD03L table.

But i could not see the Z-table details in DD03T table.

Can some one help me in this to find the reason behind it.

Thanks in advance,

Deepak.

5 REPLIES 5

Former Member
0 Kudos

Hi Deepak - what is the status of your ztable? Is it active? Are there any warnings during activation? Are the data elements and domains active?

Andy

raymond_giuseppi
Active Contributor

<b>DD03L</b> Table Fields

<b>DD03T</b> Texts for fields

<b>DD04T</b> Texts for data elements

DD03T contain text for fields directly defined in the table, to get text for fields defined from data element use D004T

(Or use FM DDIF_FIELDINFO_GET )

Regards

0 Kudos

Try

       IF NOT DD03L-ROLLNAME IS INITIAL.
          SELECT * FROM DD04T
              WHERE ROLLNAME = DD03L-ROLLNAME
                AND AS4LOCAL = 'A'
                AND DDLANGUAGE = SY-LANGU.
          ENDSELECT.
       ELSE.
          SELECT * FROM DD03T
              WHERE TABNAME = DD03L-TABNAME
                AND DDLANGUAGE = SY-LANGU
                AND AS4LOCAL = 'A'
                AND FIELDNAME = DD03L-FIELDNAME.
          ENDSELECT.
       ENDIF.

Regards

former_member181962
Active Contributor
0 Kudos

Raymond was correct.

If you have craeted the field fro the direct types(not data elements) then you don't see the textsin DD03T

Former Member
0 Kudos

Hi

The text for fields comes from the Data element, and not from the short text for the field....

and texts for Data elements are not stored in DD03T....

This is the reason why u r not able to see details in DD30T.

Just try creating a field with predefined data type, without a Data element, then u can find the details of this field...

Hope I am clear

Reward points if helpful

Regards