Application Development and Automation 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: 
Read only

Is there any RFC function module to read domain fixed value

0 Likes
1,718

Hi,

Is there any RFC function module to read domain fixed value from remote system in basis layer?

As we cannot simply wrap DD_DOMVALUES_GET with a new RFC module,because remote system will not install our component, our wrap function module is not there.

We may need a RFC fm from basis layer.

Hi,

Is there any RFC function module to read domain fixed value from remote system in basis layer?

As we cannot simply wrap DD_DOMVALUES_GET with a new RFC module,because remote system will not install our component, our wrap function module is not there.

We may need a RFC fm from basis layer.

8 REPLIES 8
Read only

daixiong_jiang3
Active Participant
0 Likes
1,532

Edited by: Daixiong Jiang on Oct 13, 2009 4:41 PM

Edited by: Daixiong Jiang on Oct 13, 2009 4:41 PM

Read only

0 Likes
1,532

Hi, the problem is

If we wrap it by our own, like FM_WRAP_DD_GET ,

then the remote system SYS1 may not install our application, then that RFC FM is not in SYS1.

we still cannot get the data.

Read only

0 Likes
1,532

Is there a RFC connection between your SAP and SYS1?

Of course the RFC FM will not exist in SYS1, the function will be called by SYST1, then the function will be executed in your SAP system thru a RFC call, the importing paremeter and exporting parameter will be transported thru RFC. that's the right use of RFC, there should not be issues.

Edited by: Daixiong Jiang on Oct 13, 2009 4:47 PM

Read only

0 Likes
1,532

yes, of course.

Scenario is :

we want to retrieve the domain fixed value from SYS1, and we can not guaranteen SYS1 has our component installed, therefore we can not simply wrap it.

Read only

0 Likes
1,532

I see.

I think you can try function DD_DOMA_GET, which is RFC-enabled.

Read only

Former Member
0 Likes
1,532

Hi,

You could as well use the same function module DD_DOMVALUES_GET within a custom function module ... Z_DD_DOMVALUES_GET and enable RFC Call for ur custome FM. This becomes a wrapper FM for the FM DD_DOMVALUES_GET.

Thanks,

Harini

Read only

Former Member
0 Likes
1,532

HI,

Try using Function Module:

DD_DOMA_GET , If it is RFC enabled it can be used for reading the domain,

Kindlly go through this link below:

Hope it helps,

Regards

Mansi

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,532

you create a rfc enabled fm and wrap GET_DOMAIN_VALUES or DDIF_DOMA_GET in it.