cancel
Showing results for 
Search instead for 
Did you mean: 

Passing queues in RFC Lookup in PI 7.1

Former Member
0 Kudos

Hi All,

Is there any way to pass a queue of values to the RFC Lookup function available in PI 7.1. The import parameters of the RFC is a tables parameter and I want to pass a queue of values.

Thanks,

Geetha

Accepted Solutions (1)

Accepted Solutions (1)

prateek
Active Contributor
0 Kudos

If you mean multiple values for same segment sort of scenario, then the answer is No. You will have to make multiple lookup calls for that. Or in a single lookup, catch some contcatenated value and split it in PI.

Regards,

Prateek

Answers (2)

Answers (2)

Former Member
0 Kudos

There is no way to do this using the given RFC Look-up. I used a JCO call to do this.

Former Member
0 Kudos

Geetha,

I tried this with a rfx that has the following fields in the input:

- PONUMBER           (1..1)
- LINEITEMS          (1..1)
   - item            (0...)  
       - MATERIAL    (1..1)
       - QUANTITY    (1..1)

I inserted the RFC Lookup functionin my mapping, and specified 4 fields in the input: PONUMBER, item, MATERIAL and QUANTITY. If you now pass the values as follows:

PONUMBER  item  MATERIAL   QUANTITY
PONUM     []    ART1       1
          []    [context]  [context]
                ART2       2

Kind regards,

Koen