Application Development 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: 

Set variant for PNP LDB select option of pernr

Former Member
0 Kudos
160

Hi All,

I want to set variant for PERNR of PNP LDB in one of the program through other program using RS_CREATE_VARIANT FM.

Please help to solve this problem.

Thanks,

Shailesh S. Malkar.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
70

Can you elaborate your query . . Its not clear.. From one program you want to pass PERNR value to other program?

4 REPLIES 4

Former Member
0 Kudos
71

Can you elaborate your query . . Its not clear.. From one program you want to pass PERNR value to other program?

0 Kudos
70

HI,

I want to set the variant for RHINTE00 through one RFC. That RFC will set the values for PERNR which is one of the select options on the selection screen of report RHINTE00. So if you know then please revert to me back.

Thanks,

Shailesh S. Malkar.

0 Kudos
70

REPORT  ZTEST.                   .

tables: pa0003.
ranges pernr for pa0003-pernr.

* Fill neccesary PERNRs
pernr-low = 1000.
pernr-sign = 'I'.
pernr-option = 'EQ'.
append pernr.

pernr-low = 1112.
pernr-sign = 'I'.
pernr-option = 'EQ'.
append pernr.

SUBMIT RHINTE00 WITH PNPPERNR IN PERNR.

Former Member
0 Kudos
70

you will have to fill and pass the internal table PN-PERNR with values for SIGN, OPTION, LOW and HIGH.