‎2009 Oct 14 6:46 AM
Hi,
is there any RFC enabled function module to read the value list of a domain from the check table?
‎2009 Oct 14 6:49 AM
‎2009 Oct 14 6:52 AM
It is the function module name "WFM_DOMAIN_VALUE_GET"?
What is the software component layer?
‎2009 Oct 14 6:57 AM
yes its function module name.check it in se37 to see whether it fulfils your requirement or not.
‎2009 Oct 14 6:58 AM
Sorry, I didn't find that fm in SE37, could you please tell me the system?
‎2009 Oct 14 7:01 AM
Hi,
There is one more way to find the values otehr than from RFC .Check if this helps you.
Go to the table: DD07T and enter the domain name in in the field 'DOMNAME'. You will get the values for the specified domain.
Regards,
Swarna Munukoti.'
Edited by: Swarna Munukoti on Oct 14, 2009 8:02 AM
‎2009 Oct 14 7:05 AM
‎2009 Oct 14 8:13 PM
Hi Xin Fang ,
You can try this:
SELECT SINGLE ddtext
INTO lv_ddtext
FROM dd07t
WHERE domname EQ 'dom_name'
AND ddlanguage EQ sy-langu
AND as4local EQ 'A'
AND domvalue_l EQ 'dom_value'.
Regards,
José