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: 

contact information type / T536B

Former Member
0 Kudos
233

Hi,

I want to retrieve a list of all available additional contact types available in the system, like it is found in table T536B. Unfortunatly I can't find the description or localised label for the keys.

Can you help me finding this table?

Thanks alot.

Tobias

1 ACCEPTED SOLUTION

Former Member
0 Kudos
126

Hi Tobias,

1. what i understand is that u require the

Text Table ( in which description are stored)

for getting the descriptions of the code

( in the required language)

2. Yhere is not text table for T536B.

The field COMKY itself represents the meaning.

Hope the above helps.

regards,

amit m.

7 REPLIES 7

Former Member
0 Kudos
126

Hi Tobias,

You can get the description or Localized label for the Keys from Data Element description for the corresponding keys defined in the table.

COMKY--->Communication Type

CMTYP--->Type of communications interface

Regards,

Sudhakar.

former_member188685
Active Contributor
0 Kudos
126

Communication Keys T536B

COMKY Communication Type

COMTY Type of communications interface

regards

vijay

Former Member
0 Kudos
126

Hi, thanks for answering so quickly.

I am looking for the descriptions of the keys <b><i>contained</i></b> in this table rather than the description of the column.

The table contains i.e. CELL or FAX1, when using the transaction pa30 on InfoType p0006 (Address) you can chose this communication type from a picker that contains the key "CELL" and a short description "Telephone".

I am looking for this short description.

Thanks,

tobi.

0 Kudos
126

Hi,

check it like this,T536B-COMTY corresponding domain is CMTYP(Communication type) contains only fixed values.

here cmtyp = 1 means Telephone

, 2 means Telefax

, 3 means Voice mail

,9 means Other.

May be it is useful for u.

regards,

srini

0 Kudos
126

Hi,

Actually the description comes from Domain (CMTYP) Values of field COMTY (Communication Type) corresponding to a particular COMKY.

You can use function module to get the text,

DD_DOMVALUE_TEXT_GET...

DATA: ls_dd07v TYPE dd07v.

CALL FUNCTION 'DD_DOMVALUE_TEXT_GET'

EXPORTING

domname = 'CMTYP'

value = '1'

LANGU = sy-langu

  • BYPASS_BUFFER = ' '

IMPORTING

DD07V_WA = ls_dd07v

  • RC =

.

WRITE / ls_dd07v-ddtext.

Sri

Former Member
0 Kudos
127

Hi Tobias,

1. what i understand is that u require the

Text Table ( in which description are stored)

for getting the descriptions of the code

( in the required language)

2. Yhere is not text table for T536B.

The field COMKY itself represents the meaning.

Hope the above helps.

regards,

amit m.

Former Member
0 Kudos
126

Hi,

thanks to all.

The 'DD_DOMVALUE_TEXT_GET' got me on the track. Rather than using this function I go to the table DD07T to get a list of all available CMTYP and their description.

Cheers,

tobi