cancel
Showing results for 
Search instead for 
Did you mean: 

Contexts and queues problem

Former Member
0 Kudos

Hello Sdn

I am stuck with an issue.

I have a queue udf ,it takes in value and while placing in target ,it is placing the values in target segment.

eg :

Current output:

PO1

MSG

10

MSG

20

MSG

30

MSG

40

Required output

PO1

MSG

10

MSG

20

PO1

MSG

30

MSG

40

The mapping is : Source-> QUEUE UDF-> Target

IS this a context issue or something needs to be changed in the udf.

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

HI

Change the context of PO1 and MSG to PO1 parent node. and try again.

Right click on each node and use display queue this will show you after changing the context what's changing. Check like this

Thanks

Gaurav

Answers (2)

Answers (2)

Former Member
0 Kudos

ignore

Former Member
0 Kudos

result.addValue ( ResultList.CC );

use the above piece of logic to insert the context change.

Former Member
0 Kudos

Hello

Thanks

Where do i need to put this logic ? in udf ?

Thanks