on ā2016 Mar 23 11:42 AM
I am use lookup to retrieve data from model to another in debugger I see correct data but in report data don't appear until I enter any number and save to data retrieved appear
Request clarification before answering.
Hi Michael,
1. try build a new report with all base members that matches your data record in debug
2. check data access profile and make sure you have read access
Andy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thnx for reply
but my access data is admin for all data
I want explain my issue not in logic script coz I retrieve my target data right but this data not update in the epm report until I put any value in the cell data retrieved in it and press save the data I put it don't save but the data I wont retrieve it appear
Your script code is wrong!
*REC(EXPRESSION = LOOKUP(DESTPLANT2),DEGPC_REFIN = QUNTITY)
will run only if you already have some record for this intersection! You have to use push, not pull!
Please post script (not lgx) and explain the logic you want to achieve...
Vadim
Please close your previous open discussions!
P.S. Not related to the solution, but this code in LOOKUP is absolutely incorrect:
*FOR %LOOP_DEGPC_PROD%=%PROD%
*DIM LOOKOPER:DEGPC_PROD="%LOOP_DEGPC_PROD%"
*NEXT
*FOR %LOOP_DEGPC_FINALSIT%=%P%
*DIM LOOKOPER:DEGPC_FINALSIT="%LOOP_DEGPC_FINALSIT%"
*NEXT
*FOR %LOOP_DEGPC_TIME%=%TIME%
*DIM LOOKOPER:DEGPC_TIME="%LOOP_DEGPC_TIME%"
*NEXT
Same label for the same dimension repeated - meaningless
Please, try to understand the basic things:
By default WHEN/ENDWHEN loop process ONLY existing records (transaction data mode).
You can switch it to master data mode with:
*WHEN_REF_DATA = MASTER_DATA
But it will be terribly slow! Not recommended..
And DESTINATION_APP will do the job! Please explain your issue with specific member, not clear!
Vadim
Sorry, but absolutely not clear!
What do you mean by lookup? What do you mean by debugger? Which report you are using? Screenshots...
Vadim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 41 | |
| 4 | |
| 4 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.