Online Access Free C-BOCR-08 Practice Test
| Exam Code: | C-BOCR-08 |
| Exam Name: | SAP Certified Application Associate - Crystal Reports 2008 |
| Certification Provider: | SAP |
| Free Question Number: | 292 |
| Posted: | Dec 03, 2025 |
: 174
Which three conditions might cause an error when you save a custom function? (Choose three.)
Which three If-Then-Else control structure formulas in Crystal syntax will generate an error? (Choose three.)
You create the following formula in a new Crystal report to return random records based on the user's parameter input: WhilePrintingRecords; NumberVar array Rnd_Array; Redim Rnd_Array[{?Records Returned}]; NumberVar Seed; numbervar arryindex1; Numbervar arryindex2; While arryindex1 := 1 To {?Records Returned} Do( Seed := Int (Count ({Orders.Order ID})*RND()); if not(Seed in Rnd_Array) and arryindex2 < {?Records Returned} then ( arryindex2 := arryindex2 + 1; Rnd_Array[arryindex2] := Seed ) );
Rnd_Array[1]; You receive an error when saving the formula. Which loop type should you replace the existing loop with to resolve the error?