on 2015 Aug 24 11:48 AM
Hi,
I'm using BPC 10 NW.
I have a simple default logic, i.e.
*XDIM_MEMBERSET ACCOUNT=NO_ACCOUNT
*WHEN ACCOUNT
*IS NO ACCOUNT
*REC(FACTOR= -1, ACCOUNT=SOURCE)
*REC(FACTOR= 1, ACCOUNT=TARGET)
*ENDWHEN
Note that the AccType are
1. NO_ACCOUNT.ACCTYPE = INC
2. SOURCE.ACCTYPE = AST
3. TARGET.ACCTYPE = AST
When values (assuming +101) are sent via templates, calling default logic, the following are created:
NO_ACCOUNT: 101
SOURCE: -101
TARGET: 101
When a data manager package is run, calling the same default logic, the following are created:
NO_ACCOUNT: 101
SOURCE: 101
TARGET: -101
Any idea why?
Thanks.
Request clarification before answering.
When values (assuming +101) are sent via templates, calling default logic, the following are created:
NO_ACCOUNT (INC): 101
SOURCE (AST): -101
TARGET (AST): 101
SignedData_Result = if(Result.ACCTYPE=INC,LEQ, -1, 1) * Function(if(Argument1.ACCTYPE=INC,LEQ, -1, 1) * SignedData_Argument1, if(Argument2.ACCTYPE=INC,LEQ, -1, 1) * SignedData_Argument2, ...)
SignedData:
NO_ACCOUNT (INC): -101
SignedData_Result_SOURCE = 1 * -1 * -1 * -101 = -101
SignedData_Result_TARGET = 1 * 1 * -1 * -101 = 101
And opposite signs for DM
Vadim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 17 | |
| 8 | |
| 7 | |
| 6 | |
| 2 | |
| 2 | |
| 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.