Tuesday, 30 December 2014

What are the steps to develop an Adobe Form on ABAP stack?

  • Start transaction code SFP, create an interface
  • With this same transaction, create the Adobe Form
  • From your ABAP, call the interactive form as follows (see also SAP Library - PDF-Based Forms - Calling Forms in an Application Program, which contains an example)
    1. Data retrieval and processing : SELECT ... FROM ... etc.
    2. Find out name of generated function module from the Adobe form name : CALL FUNCTION 'FP_FUNCTION_MODULE_NAME' ...
    3. Start form processing : CALL FUNCTION 'FP_JOB_OPEN' ...
    4. Call function module dynamically: CALL FUNCTION <generated function module> ...
    5. End form processing : CALL FUNCTION 'FP_JOB_CLOSE' ...

No comments:

Post a Comment