ACN_ASE_01_EXAM-001
|
|
Title of test:
![]() ACN_ASE_01_EXAM-001 Description: Exam - Adobe Forms - 50 Q |



| New Comment |
|---|
NO RECORDS |
|
Support multiple languages in form?. Multiple layouts. Language-dependent text modules. Hardcode language. Separate programs. SYSTEM_NO_ROLL dump during mass output. Reason?. CDS syntax error. Memory overflow large internal tables. ADS down. RFC inactive. Need raw PDF for API response?. Spool to PDF. Use GETPDF and return XSTRING. OTF conversion. Use Smartforms. Layout shows #### instead of value. Cause?. Field length mismatch. CDS inactive. ADS down. RFC error. Background job fails but dialog works. Likely reason?. Printer config. Authorization issue. CDS error. SE78 issue. ADS timeout for large form. Mitigation?. Increase timeout. Reduce data load/pagination. Increase WP. Disable logging. Strategic direction in S/4HANA for forms?. Continue SAPScript. Migrate to Adobe Forms. Convert to BDC. No change. CDS without authorization check. Best practice?. Ignore. Add DCL. Use SELECT *. Move logic to layout. Multiple FP_JOB_OPEN/CLOSE inside loop impact?. Better performance. No impact. High overhead and slower processing. Required design. What is the correct end-to-end development sequence for Adobe Forms in S/4HANA On-Prem?. Create Layout → Create Interface → Write Driver Program → Configure ADS. Create Interface → Create Form Layout → Activate → Write Driver Program → Call using FP_JOB sequence. Write Driver → Create Layout → Activate → Maintain NACE. Activate ADS → Write CDS → Create Smartform. Which of the following is mandatory during Adobe Form creation?. Creating SmartStyle. Creating Form Interface. Maintaining NACE output type. Configuring SE78 logo. During Adobe Form creation, which step is NOT required if form is called via custom driver program?. Activate Interface and Form. Retrieve FM using FP_FUNCTION_MODULE_NAME. Maintain Output Type in NACE. Call FP_JOB_OPEN and FP_JOB_END. A field is correctly bound in context but does not repeat for multiple line items. Likely cause?. CDS view incorrect. Subform set to Positioned instead of Flowed. FP_JOB_OPEN missing. ADS inactive. Table row must dynamically expand based on text length. Required property?. Allow Page Break. Expand to Fit (Height). Floating Field. Keep with Next. Numeric field shows blank when value = 0. Why?. CDS filter issue. Zero value suppressed in layout. ADS timeout. Context missing. Recommended scripting language for complex visibility logic?. ABAP. SQL. JavaScript. CDS. Hide subform if total amount is 0. Where write logic?. Driver program. Interface initialization. Layout JavaScript (initialize event). SM59. Suppress print dialog and return PDF as XSTRING. Required parameters?. FP_JOB_OPEN only. FP_OUTPUTPARAMS-NODIALOG = 'X' and GETPDF = 'X'. SSFCTRLOP. CONVERT_OTF. Data visible in SFP test but not via driver program. Likely reason?. Layout corrupted. Driver not passing importing parameters correctly. ADS inactive. SE78 missing. Calculate Grand Total in layout without changing driver. Best approach?. Modify CDS. Add JavaScript in calculate event. Use ABAP enhancement. Change output type. Repeating subform not triggered though context has multiple entries. Check?. Subform binding to correct repeating node. ADS memory. SM59. Transport layer. Correct ABAP sequence to call Adobe Form?. Call generated FM directly. FP_FUNCTION_MODULE_NAME → FP_JOB_OPEN → Call FM → FP_JOB_END. FP_JOB_OPEN → FP_JOB_CLOSE → Call FM. CONVERT_OTF only. Extend standard form in On-Prem cleanly?. Modify standard SFP. Copy standard to Z namespace. Change generated FM. Debug ADS. Generated FM missing after transport. Why?. FM not transported. Layout missing. ADS inactive. CDS inactive. Which of the following is NOT related to Adobe Forms architecture?. Adobe Document Services (ADS). SFP Transaction. FP_JOB_OPEN. SMARTFORMS Main Window. Prevent header + items + footer from splitting across pages?. Use subform with Keep Together. Use LOOP. Increase page size. Add page break. How to send PDF via email?. SO_NEW_DOCUMENT_SEND_API1. CL_BCS with XSTRING. SCOT. SBWP. ADS error in PROD: com.adobe.ProcessingException. First check?. SE78. SM59 RFC destination. NACE. SFP activation. A query is slow due to SELECT in LOOP. Best HANA-optimized fix: Move logic to presentation layer. Use WAIT UP TO 1 SECONDS. Add SELECT SINGLE inside loop. Replace with JOIN/aggregation in one SQL (or CDS). CDS used but slow. Best improvement?. Add WHERE parameters. Add SELECT *. Use nested SELECT. Move logic to layout. Invoice form takes 25 seconds due to nested SELECT inside LOOP. Best optimization in S/4HANA?. Increase work process memory. Replace nested SELECT with CDS View and aggregation. Use FOR ALL ENTRIES without WHERE. Move logic to layout scripting. Parallel processing for 10,000 forms?. Sequential loop. Background RFC parallel tasks. Increase dialog WP. Increase spool memory. Dynamic QR code requirement. Where implement logic?. ABAP driver. JavaScript in layout. SM59. CDS view. Data in interface not visible in layout. Most likely issue?. CDS not activated. Context node not bound to layout. ADS down. Wrong transport. You need to hide an entire subform so that it does not occupy space in the layout. Which presence value should be used?. visible. invisible. hidden. disabled. Where is the best place to write a script to hide a subform based on incoming interface data (before rendering)?. Subform initialize event. Subform exit event. Page ready:layout event only. Printer spool request. A section must be hidden if a computed total equals 0 and the total is calculated in the form itself. Best event?. initialize. calculate. mouseEnter. change. Which script correctly hides the subform sfDiscount when discountTotal is 0?. sfDiscount.hidden = true;. this.presence = 'disable';. if (Number(discountTotal.rawValue) == 0) sfDiscount.presence='hidden';. if (discountTotal == 0) sfDiscount.visible='X';. You want the subform hidden but still keep blank space reserved. Which presence value?. hidden. invisible. collapsed. locked. Subform hides correctly in preview but layout overlaps during print. Which layout type is best?. Positioned layout only. Flowed layout for container/subform. Master page only. Fixed page size with no subforms. You need to hide repeating block if internal table has no rows. Best solution?. Hide master page. Bind repeating subform and set presence based on row count. Delete interface parameter. Use FP_JOB_END twice. Hide logic in initialize event does not work consistently because value arrives late. Best fix?. Move script to calculate event. Use ABAP WRITE statements. Add COMMIT WORK before calling form. Use Smartforms instead. In Adobe Forms scripting, which property is used to hide/show objects?. this.display. this.visibility. this.presence. this.output. You want to hide subform based on flag printSection = 'X'. Which script is correct?. if (printSection.rawValue == 'X') this.presence='hidden';. if (printSection.rawValue != 'X') this.presence='hidden'; else this.presence='visible';. if (printSection == 'X') this.hidden=true;. this.presence = printSection;. You want to hide the subform sfDiscount when the field discountAmount is initial or equal to 0. Which script is correct?. if (discountAmount.rawValue == 0) this.hidden = true;. if (Number(discountAmount.rawValue) == 0) this.presence = 'hidden'; else this.presence = 'visible';. if (discountAmount == 0) this.visibility = 'hidden';. this.presence = discountAmount.rawValue;. You want to hide the subform sfAddressBlock if the country field countryCode is not equal to 'US'. Which script is correct?. if (countryCode.rawValue != 'US') this.presence = 'hidden'; else this.presence = 'visible';. if (countryCode == 'US') this.hidden = false;. this.presence = countryCode.rawValue;. if (countryCode.rawValue = 'US') this.presence = 'hidden';. Which service is mandatory for rendering Adobe Forms?. SAP Gateway. SAP Web Dispatcher. Adobe Document Services (ADS). SAP PI. Where do you debug Adobe Forms?. SFP Layout. Generated Function Module. ADS Java stack only. SM21. Purpose of context in Adobe Form?. Store ABAP logic. Define data hierarchy. Store spool parameters. Store styles. Generate PDF and email without spool. Correct approach?. Use NAST. Set GETPDF = 'X' and use CL_BCS. Use CONVERT_OTF. Use Smartforms instead. |




