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

accessing multiple fields - FIELD EXIT

Former Member
0 Likes
452

Hi,

i'm working on a field exit on one reference field.. in addition to the reference field i need one more input field (account no) in the corresponding function module (through the program RSMODPRF)..

how can we access that account no field in the function module... it don't have the parameter Id too

Thanks

1 REPLY 1
Read only

Former Member
0 Likes
396

In RSMODPRF , In the function module for account number,

you can export account no to memory id.

eg:export w_belnr to memory id 'BEL'.

In the reference field function module, you can import this & do the validations

eg:import w_belnr from memory id 'BEL'.

Regrads,

Viji