on 2016 Jan 10 10:39 PM
Hi
Can you explain the below record statement which we have in our one of the logic. I know normally EXPRESSION for used for add or divide but not familiar with below formate
*REC(EXPRESSION = [ACCOUNT].[A187345] , ACCOUNT = "A212123")
Thank you
Ram
Request clarification before answering.
Hi Ram,
Without testing this I'd think that it copies Account A187345 to Account A212123.
Regards,
Gersh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks both . This is part of large scrip (more that 60 lines), it is copying Account A187345 to Account A212123.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Ram,
[ACCOUNT].[A187345] means the reference to account A187345. But I have to view full script to see the scope defined. In general it's better to use something like:
*XDIM_MEMBERSET ACCOUNT=A187345
*WHEN ACCOUNT
*IS *
*REC(EXPRESSION = %VALUE% , ACCOUNT = "A212123")
*ENDWHEN
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 |
|---|---|
| 16 | |
| 8 | |
| 7 | |
| 6 | |
| 2 | |
| 2 | |
| 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.