Skip to main content
Solved

migration job with multiple method list

  • April 21, 2022
  • 2 replies
  • 635 views

Forum|alt.badge.img+6

Hi,

Is there any way we can achive the below through migration ?

 

I have 2 method calls in method list 

Method1

Method2

how can we use the out parameter from Method1 is and use the same in Method2 ?

 

Thanks in Advance

Amitesh

Best answer by Jens

Data migration job with procedure MIGRATE_SOURCE_DATA
Tab method list
- you have e.g. 2 methods with execute seq 10 and 20
- select the 2nd method with execute seq 20 and do a RMB (right mouse button) -> method list attribute
- in the Fixed Value column you have to fetch the column name from the execute seq 10 with e.g. COLUMN_NAME@10 
- COLUMN_NAME is the column name of execute seq 10 (your out-parameter) and @10 is the execute seq 10

 

Not a good example but this is what I’m thinking about:

 

2 replies

Jens
Hero (Employee)
Forum|alt.badge.img+10
  • Hero (Employee)
  • 137 replies
  • Answer
  • April 21, 2022

Data migration job with procedure MIGRATE_SOURCE_DATA
Tab method list
- you have e.g. 2 methods with execute seq 10 and 20
- select the 2nd method with execute seq 20 and do a RMB (right mouse button) -> method list attribute
- in the Fixed Value column you have to fetch the column name from the execute seq 10 with e.g. COLUMN_NAME@10 
- COLUMN_NAME is the column name of execute seq 10 (your out-parameter) and @10 is the execute seq 10

 

Not a good example but this is what I’m thinking about:

 


Forum|alt.badge.img+6
  • Author
  • Sidekick
  • 12 replies
  • April 21, 2022

Thanks

I was trying to remember the mapping.

 

It is working now :)