on ‎2019 Jul 24 5:00 PM
Hello Gurus,
Please explain below transformation file.
*MAPPING ID=*STR(~)+LEVEL_1_ID+LEVEL_2_ID+LEVEL_3_ID+LEVEL_4_ID+LEVEL_5_ID EVDESCRIPTION=*COL(1) PARENTH1=LEVEL_2_PARENT+LEVEL_3_PARENT+LEVEL_4_PARENT+LEVEL_5_PARENT
What values will fill ID and PARENTH1 fields. What is the command STR(~) will do?
Regards,
Krishna
Request clarification before answering.
Anything with *STR() will append that text in the parentheses to your value.
Example: if within your ACCOUNT dimension your GL members are all prefixed with an A_ (i.e. A_500000), yet your source file only has numeric GL accounts (i.e. 500000), in a column with a header of ZACCOUNT. You could modify your incoming data to match your accounts with the transformation file as shown here:
ACCOUNT=*STR(A_) + ZACCOUNT
I think that should answer all three of your questions.
This help page has great detail on all aspects of the transformation/conversion files.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
str (~) will insert "~" as a first character of ID.
LEVELXXX - values of the corresponding fields.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 32 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.