2005 Nov 30 8:54 AM
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
2005 Nov 30 10:12 AM
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.
2005 Nov 30 9:02 AM
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.
2005 Nov 30 9:18 AM
Communication Keys T536B
COMKY Communication Type
COMTY Type of communications interface
regards
vijay
2005 Nov 30 9:32 AM
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.
2005 Nov 30 10:03 AM
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
2005 Nov 30 10:03 AM
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
2005 Nov 30 10:12 AM
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.
2005 Dec 01 9:53 AM
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