‎2007 Jul 20 1:30 PM
Hi All,
can any one tell me where the value ranges values and description will be stored( in which these will be stored)
How can we find the table in which value range values will get stored.
example : in Domain STATV
In value range tab will get these below:
Not Relevant
A Not yet processed
B Partially processed
C Completely processed
Thanks in Advance,
~Teena
‎2007 Jul 20 1:39 PM
You can use the Function Module :
DOMAIN_VALUE_GET
or
GET_DOMAIN_VALUES
example:
CALL FUNCTION 'DOMAIN_VALUE_GET'
EXPORTING
I_DOMNAME = 'STATV'
I_DOMVALUE = 'A' " or it can be B or C
IMPORTING
E_DDTEXT = wrk_val
EXCEPTIONS
NOT_EXIST = 1
OTHERS = 2
.
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
YOu will get the value in wrk_val
<i>Pls reward useful answers</i>
‎2007 Jul 20 1:42 PM
‎2007 Jul 20 2:26 PM
In table DD07V, value ranges for all domain are stored..
Only those values are stored here for which single values table is maintained... not for value table entries..
Reward if helpful..
Regards
Prax
‎2007 Jul 20 2:44 PM