on ‎2017 Jul 25 8:07 AM
We just finished migration on SAP BPC NW 10.1 SP11. Now we have problems with performance of script logic. The execution time of script logic has increased several times. Most of our script logic contain rows like:
*SELECT(%ACCOUNT_SEL_AST%, [ID], ACCOUNT, [ACCTYPE] = AST)
*XDIM_MEMBERSET ACCOUNT = %ACCOUNT_SEL_AST%
*XDIM_MEMBERSET CATEGORY = TEST
*WHEN ENTITY.CALC
*IS N
*REC(......)
*ENDWHEN
*COMMIT
Account dimension contain about 10,000 members and half of them are AST accounts.
When we change these rows on something like this:
*XDIM_MEMBERSET CATEGORY = TEST
*WHEN ACCOUNT.ACCTYPE
*IS AST
*WHEN ENTITY.CALC
*IS N
*REC(......)
*ENDWHEN
*ENDWHEN
*COMMIT
it works fine.
So we decided problem is *SELECT statement. Have you any suggestions about this?
P.S. before migration *SELECT statement worked fine.
Thank you.
Request clarification before answering.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
SELECT itself is a very simple statement and is executed only once...
May be the issue is in scoping.
Please provide UJKT logs for both variants.
Also please explain, how do you launch this script - using DM or default.lgf?
Please read: https://blogs.sap.com/2014/01/31/how-to-ask-questions-about-script-logic-issues/
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 | |
| 6 | |
| 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.