Propagation of opcode flags from ancestor opcodes
Hello,
We have a custom FM library where we call the OOTB opcode PCM_OP_ACT_LOAD_SESSION using one of the following flags: PCM_OPFLG_CALC_ONLY or PCM_OPFLG_READ_RESULT, depending on the logic from our custom code.
We know that internally PCM_OP_ACT_LOAD_SESSION calls several opcodes, one of them being PCM_OP_RATE_POL_POST_RATING, which is a policy opcode. The question is: when PCM_OP_ACT_LOAD_SESSION calls other opcodes, does it pass to them the same flags that were passed to it by its caller?
What we want to achieve is: use some custom code in PCM_OP_ACT_POL_POST_RATING to detect if its ancestor PCM_OP_ACT_LOAD_SESSION was called with one of the flags mentioned before. Is this feasible?
We have a custom FM library where we call the OOTB opcode PCM_OP_ACT_LOAD_SESSION using one of the following flags: PCM_OPFLG_CALC_ONLY or PCM_OPFLG_READ_RESULT, depending on the logic from our custom code.
We know that internally PCM_OP_ACT_LOAD_SESSION calls several opcodes, one of them being PCM_OP_RATE_POL_POST_RATING, which is a policy opcode. The question is: when PCM_OP_ACT_LOAD_SESSION calls other opcodes, does it pass to them the same flags that were passed to it by its caller?
What we want to achieve is: use some custom code in PCM_OP_ACT_POL_POST_RATING to detect if its ancestor PCM_OP_ACT_LOAD_SESSION was called with one of the flags mentioned before. Is this feasible?
0