Sample Questions (SQ01) 1-500 Flashcards
Can you debug the data manager package ?
Program: UJD_TEST_PACKAGE .You must specify the User ID .The DM package can be selected with F4 . SQ01 1 P.
How to debug the script logic ?
UJKT Program UJK_SCRIPT_LOGIC_TESTER will allow you to test and debug script logic SQ01 2 P.
START_BADI ROUND.
CODE ….
ENDBADI.
What is ROUND ?
Technical name of the BADI. SQ01 3 P.
startroutine = C1 endroutine = C2
What is C1 ?
Badi filters. SQ01 4 P.
DM package doesn’t need a transformation file ? True or False.
Process performed by setting up two Excel files: Transformation file (required) .Conversion file (optional) SQ01 5 P.
What is CONVERT_INTERNAL = NO in a transformation file?
- When transformation option CONVERT_INTERNAL = NO, the external column refers to the source
value, the internal column refers to the target dimension member you want to load into the
application. When Convert_internal =YES, the external column refers to
Where you can use the Java script . ·Script logic ·Validation ·Transformation ·Conversion file
Answer; Conversion File SQ01 7 P.
Can VB script be used in Netweaver BPC ?
No VB script in Netweaver BPC . SQ01 8 P.
What are 3 components of Transformation file?
- Transformation file is selected during the run time of the import package. Transformation definitions are in Excel files that contain one worksheet named Instructions. The file is divided into 3 parts (*OPTIONS; *MAPPING, *CONVERSION)The transformation
What is *XDIM & *COMMIT?
Tip: The *COMMIT statement will end any execution scope defined by any previous *XDIM scoping statements. If your script logic needs to continue after a *COMMIT, you will need to rescope by using additional *XDIM statements. SQ01 10 P.
What is best practice for running validation on Data Manager Variable in a logic Script?
11.When validating a script logic file with a DM variable, the current response in a BPC75NW SP04 system (and earlier) is to error on the line containing the ${DataManagerVariable}$. This occurs due to the fact that the DM variable is not really defined u
Can an IIF statement be included in *REC commands?
- The IIF statement allows a conditional IF/Then/Else statement to be defined for MDX based syntax. The IIF statements cannot be include *REC commands, but can be used within MDX tuple expressions. Each *REC command generates a new record. SQ01 12 P.
What is *XDimName
- %{DimName}_SET%:A system generated keyword is available for each dimension. This keyword holds the set of members passed to the logic engine for a given dimension (i.e. the initial scope). This keyword can be used as a replacement string anywhere in
When are *SELECT statements executed?
14.The *SELECT statement will be executed before any other statements regardless of its actual position in the script logic file. SQ01 14 P.
WHEN/IS/REC/ENDWHEN cannot be written inside ____________?
- WHEN/IS/REC/ENDWHEN cannot be written inside SELECTCASE/ENDSELECT . SQ01 15 P.
What properties are not supported inside REC statements?
- Dynamic Properities such as HLEVEL, PARENTHn are not supported inside REC statement. SQ01 16 P.
Where does REC belong?
- REC always needs to be accompained within WHEN/IS/ENDWHEN. Stand alone REC statements will not have any effects . SQ01 17 P.
What are 5 restrictions on *REC statement? When can’t you use keyfigure/ SIGNEDDATA?
There are restrictions when using the *REC statement and these are:
You can’t use MDX keywords in the expression
You can’t use the GET() function
You can’t use the NOADD function
You can’t use the SIGNEDDATA key figure (OQuantity, 0Balance) – put into on
What is LOOKUP? Limitation?
LOOKUP to another application within logic script. 19. Multiple LOOKUP blocks for same Application is not supported . SQ01 19 P.
What command is used to convert the keyfigure model to account model ?
MVAL? Answer not provided by source. SQ01 20 P.
Script logic calculations cannot cross applications within on Appset – True or False.
TRUE, Any logic that is created is model specific, SQ01 21 P.
Script Logic is used to calc data but only for base level data in the application. True or False.
TRUE SQ01 22 P.
The *REC instruction tells the program what to do once the specified criteria has been met. – True or False.
TRUE SQ01 23 P.
*XDIM_MEMBERSET ACCOUNT=CASH
*XDIM_MEMBERSET RPTCURRENCY = LC
*XDIM_MEMBERSET TIME = 2006.JAN
*XDIM_MEMBERSET CATEGORY = ACTUAL
*XDIM_MEMBERSET INTCO=NON_INTERCO
*START_BADI CUST_CALC_ACCT
ACCT_FROM = 10000
ACCT_TO = 10001
*END_BADI
What is CUST_CALC_ACCT
Technical name of the BADI. *– starts indicate SQL coding. [ ] are for MDX coding. SQ01 24 P.