Error in Adobe Forms

HI,
I`m designing a function module to print Adobe Forms.
When i execute the code below in a report program the pdf is returned o.k. but in the function module the return code is
message FPRUNX 102 Job already started.
This is my code, in the simplest way.
function zic_no_genera_pdf.
""Interfase local
*"  IMPORTING
*"     REFERENCE(IM_PLANT) TYPE  FPNAME
*"  EXPORTING
*"     VALUE(EX_PDF) TYPE  FPCONTENT
  constants: fk_true(1)  type c value 'X',
             fk_false(1) type c value ' ',
             fk_pdf(3)   type c value 'PDF'.
  data: f_formname       type rs38l_fnam,
        f_adfname        type fpname,
        f_docparams      type sfpdocparams,
        f_outputparams   type sfpoutputparams,
        f_formoutput     type fpformoutput,
        f_joboutput      type sfpjoboutput.
  f_outputparams-dest = fk_pdf.  
  f_outputparams-nodialog = fk_true.
  f_outputparams-preview = fk_false. 
  f_outputparams-getpdf = fk_true. 
  call function 'FP_JOB_OPEN'
    changing
      ie_outputparams = f_outputparams
    exceptions
      cancel          = 1
      usage_error     = 2
      system_error    = 3
      internal_error  = 4
      others          = 5.
  if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  endif.
  call function 'FP_FUNCTION_MODULE_NAME'
    exporting
      i_name     = im_plant
    importing
      e_funcname = f_formname.
  if sy-subrc <> 0.
  endif.
  f_docparams-langu   = 'S'.
  f_docparams-country = 'ES'.
  f_docparams-dynamic = fk_true.
  call function f_formname
    exporting
      /1bcdwb/docparams  = f_docparams
    importing
      /1bcdwb/formoutput = f_formoutput
    exceptions
      usage_error        = 1
      system_error       = 2
      internal_error     = 3.
  if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  endif.
  call function 'FP_JOB_CLOSE'
    exceptions
      usage_error    = 1
      system_error   = 2
      internal_error = 3
      others         = 4.
endfunction.
Can anyone help me? ¿Why this happens?
Thanks in advance.

Sap Note 858325
The test should be carried out using a program that in turn calls the function module to be tested.
This is because in se37 the functions modules FP_JOB_OPEN and FP_JOB_CLOSE are called automatically

Similar Messages

  • Error in Adobe form based in a xml interface when changing data element

    The adobe form is called from a web dynpro.
    The adobe form contain a page and subforms (positioned y flowered).
    The form worked out perfectally.
    Then edited a descriptive text in a data element, from se11.  The form continues worked out correctelly.
    Then modify a fixed text from the form.  The form is activated.
    Since this modification, the form stopped to work out, informing the following message:
    "WebDynpro Exception: The ADS call has failed. You can find information about the cause in the error.pdf on the application server".
    I have updated the nodes of the web dynpro, the xml interface of the form, is all activated and this is still not working.
    Someone could help me? Does anyone know what it could be happened?
    Is there a way to re-generate the form?
    Thanks you very much.
    Regards,

    The data element is char 4.  I have only changed descriptive texts.
    I have take take all the objects to the previous version (data element, wd view, interface xml, adobe form), and the form is still not working.
    Do you have another posible solution for this?
    Thanks you for your answer.
    Kind regards,

  • Getting Error in Adobe Form as Script failed (language is formcalc:context

    Hi Experts,
    While acessing Adobe forms from MSS ,
    After Selecting the Scenario
    After Edit Form
    Before the form is Displayed
    I am getting a POP-UP message stating the following Error.
    Script failed (language is formcalc;context is xfa[0].data[0].RequestSeparationEnhanced[0]. PCR_PAGE1[0].PCRheader[0].EmployeeDataCI[0].EmployeeDataCIContent[0].EmployeeInfo[0])
    Script=concat($record.ENAME.DATA.FIELD,u201D(u201C,$record.PERNR.DATA.FIELD,u201D)u201D)
    Error: acessor u2018$record.ENAME.DATA.FIELDu2019is unknown.
    Script failed (language is formcalc;context is xfa[0].data[0].RequestSeparationEnhanced[0].PCR_PAGE1[0].PCR_DE[0].PCRDEContent[0].RequestSeparationEnhanceDDLOverlay[0])
    Script=concat($record.MGTXT.DATA.FIELD,u201D(u201C,$record.MASSG.DATA.FIELD,u201D)u201D)
    Error: acessor u2018$record.MGTXT.DATA.FIELDu2019is unknown.
    ENAME & MGTXT are the fields which has to be displayed by default when the form is shown.
    But when the Adobe form is displayed it comes without any Value for ENAME - Employee Name
    MGTXT - Reason for Action Text .
    Please provide me solution to over come this problem.
    Thanking you in advance,
    Suriya.

    This was fixed by commenting the script in the form since I don't require it.
    Suriya

  • Error in adobe form

    Hi
    While calling a adobe form i got an error in my report
    Runtime Errors         CALL_FUNCTION_PARM_MISSING
    Except.                CX_SY_DYN_CALL_PARAM_MISSING
    Date and Time          14.12.2007 14:05:35
    Short text
         Incorrect parameter with CALL FUNCTION.
    What happened?
         When calling a function module, one of the parmaeters was not
         specified.
         Error in the ABAP Application Program
         The current ABAP program "!ADOBE" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_DYN_CALL_PARAM_MISSING', was
          not caught and
         therefore caused a runtime error.
         The reason for the exception is:
         When calling the function module "/1BCDWB/SM00000081", one of the parameters
         needed according to the interface description was not specified.
         This parameter was "BOOKINGS".
    Missing Handling of System Exception
        Program                                 !ADOBE
    Trigger Location of Exception
        Program                                 !ADOBE
        Include                                 !ADOBE
        Row                                     50
        Module Name                             START-OF-SELECTION
    <b> and this is my program</b>
    *& Report  ZADOBE
    REPORT  ZADOBE.
    DATA : is_customer TYPE scustom.
    DATA : it_bookings TYPE ty_bookings.
    DATA : iv_image_url TYPE string.
    DATA : iv_sending_country TYPE adrc-country.
    DATA : it_sums TYPE TABLE OF flprice_t.
    DATA : docparams TYPE sfpdocparams.
    DATA : formoutput TYPE fpformoutput.
    DATA : outputparams TYPE sfpoutputparams.
    DATA: FM_NAME TYPE RS38L_FNAM.
    PARAMETERS : pa_cusid TYPE scustom-id.
    SELECT SINGLE * FROM scustom INTO is_customer
    WHERE id = pa_cusid.
    SELECT * FROM sbook
    INTO CORRESPONDING FIELDS OF TABLE it_bookings
    WHERE customid = pa_cusid.
    outputparams-nodialog = 'X'.
    outputparams-getpdf = 'X'.
    *outputparams-adstrlevel = '02'.
    CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
    ie_outputparams = outputparams
    EXCEPTIONS
    cancel = 1
    usage_error = 2
    system_error = 3
    internal_error = 4
    OTHERS = 5.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    docparams-langu = 'E'.
    docparams-country = 'US'.
    docparams-fillable = 'X'.
    CALL FUNCTION '/1BCDWB/SM00000081'
    EXPORTING
    /1bcdwb/docparams = docparams
    is_customer = is_customer
    it_bookings = it_bookings
    * IV_IMAGE_URL =
    iv_sending_country = 'US'
    * IT_SUMS =
    IMPORTING
    /1bcdwb/formoutput = formoutput
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    *MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    *WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    CALL FUNCTION 'FP_JOB_CLOSE'
    * IMPORTING
    * E_RESULT =
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    <b>My adobe form is a copy of standard adobe form FP_EXAMPLE_01</b>
    Regards
    Nanda

    Hi Mathew
    Thanks for your reply. I had already made some changes in my coding you can check that below
    *& Report  ZADOBE
    REPORT  ZADOBE.
    DATA : is_customer TYPE scustom.
    DATA : it_bookings TYPE ty_bookings.
    DATA : IT_CONNECTIONS TYPE TY_CONNECTIONS.
    DATA : iv_image_url TYPE string.
    DATA : iv_sending_country TYPE adrc-country.
    DATA : it_sums TYPE TABLE OF flprice_t.
    DATA : docparams TYPE sfpdocparams.
    DATA : formoutput TYPE fpformoutput.
    DATA : outputparams TYPE sfpoutputparams.
    DATA: FM_NAME TYPE RS38L_FNAM.
    PARAMETERS : pa_cusid TYPE scustom-id.
    SELECT SINGLE * FROM scustom INTO is_customer
    WHERE id = pa_cusid.
    SELECT * FROM sbook
    INTO CORRESPONDING FIELDS OF TABLE it_bookings
    WHERE customid = pa_cusid.
    outputparams-nodialog = 'X'.
    outputparams-getpdf = 'X'.
    *outputparams-adstrlevel = '02'.
    CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
    ie_outputparams = outputparams
    EXCEPTIONS
    cancel = 1
    usage_error = 2
    system_error = 3
    internal_error = 4
    OTHERS = 5.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    docparams-langu = 'E'.
    docparams-country = 'US'.
    docparams-fillable = 'X'.
    CALL FUNCTION '/1BCDWB/SM00000080'
    EXPORTING
    /1bcdwb/docparams = docparams
    customer = is_customer
    bookings = it_bookings
    CONNECTIONS = IT_CONNECTIONS
    * IV_IMAGE_URL =
    iv_sending_country = 'US'
    * IT_SUMS =
    IMPORTING
    /1bcdwb/formoutput = formoutput
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    *MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    *WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    CALL FUNCTION 'FP_JOB_CLOSE'
    * IMPORTING
    * E_RESULT =
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    <b>Now its going to short dump saying that</b>
    Short text
        Function parameter "IV_SENDING_COUNTRY" is unknown.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "ZADOBE" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
        Function module "/1BCDWB/SM00000080" was called
        with the parameter "IV_SENDING_COUNTRY".
        This parameter is not defined.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_DYN_CALL_PARAM_NOT_FOUND', was
         not caught and
        therefore caused a runtime error.
        The reason for the exception is:
        Function module "/1BCDWB/SM00000080" was called
        with the parameter "IV_SENDING_COUNTRY".
        This parameter is not defined.
    Regards
    Nanda

  • Runtime error in Adobe forms

    Hi,
    I am getting a run time error when i create ADOBE form and try to save. I am using SAP GUI 7.10 and ADOBE livecycle version 7.1. I did tried with ADOBE livecycle version 8.0 and getting same problem.
    NOTE:  This is the first ADOBE form i am trying to create in company.
    Below are the dump details ...Please let me know if any of you  have faced similar problem....Thanks
    Short text
        The current application triggered a termination with a short dump.
    What happened?
        The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).
    Error analysis
        Short text of error message:
        Control Framework : Error processing control
        Long text of error message:
         Diagnosis
             An error occurred when the system tried to process the commands
             from the Automation Queue on the presentation server.
             There are several possible reasons for this:
             - The installation of the SAP GUI on the presentation server is
             faulty or obsolete.
             - There is an error in the application program
             - There is an error in the SAPGUI or an integrated control
         Procedure
             1. Make sure that you have imported the appropriate Support
             Package, the current kernel, and GUI patch for the release of your
             system
             2. Check whether the error occurs locally on one or a few PCs, or
             generally on all PCs. Note whether the error only occurs for some
             users, for example because of a specific Customizing setting.
             If it only occurs locally, this suggests an installation problem
             with the PC. Check the installation; if necessary, reinstall the
             software. In the dump, search for the SY-MSGLI field, since it may
             point to the cause of the error.
             3. Activate the Automation Trace (in accordance with SAP Note
             158985).
             4.Start the transaction and continue until the screen immediately
             before the dump.
             5. From the System -> Utilities menu, choose Autom. Queue,
             Synchronous Processing.
             The status bar of the GUI displays the text:
                "Automation synchron flush mode on"
             6. If you now proceed with the application, the short dump will
             display the ABAP call that caused the error; the Automation Trace
             will contain the error on the presentation server.
             7. If necessary, load the short dump and trace files on to
             sapservX, so that SAP can analyze them.
        Technical information about the message:
        Message class....... "CNDP"
        Number.............. 006
        Variable 1.......... " "
        Variable 2.......... " "
        Variable 3.......... " "
        Variable 4.......... " "
    Trigger Location of Runtime Error
        Program                                 SAPLOLEA
        Include                                 LOLEAU02
        Row                                     29
        Module type                             (FUNCTION)
        Module Name                             AC_SYSTEM_FLUSH
    Source Code Extract
    Line  SourceCde
        1 FUNCTION AC_SYSTEM_FLUSH .
        2 *"----
        3 ""Lokale Schnittstelle:
        4 *"  IMPORTING
        5 *"     VALUE(CALLED_BY_SYSTEM) TYPE  C OPTIONAL
        6 *"  EXCEPTIONS
        7 *"      CNTL_SYSTEM_ERROR
        8 *"      CNTL_ERROR
        9 *"----
       10   data: sysubrc like sy-subrc.
       11
       12   CALL FUNCTION 'AC_FLUSH_CALL'
       13        EXPORTING
       14             SYSTEM_FLUSH = 'X'
       15             CALLED_BY_SYSTEM = CALLED_BY_SYSTEM
       16        IMPORTING
       17             MESSAGE_NR   = sysubrc
       18             MESSAGE_TEXT = SY-MSGLI.
       19
    20   sy-subrc = sysubrc.
    21
    22   CASE SY-SUBRC.
    23     WHEN 0.
    24     WHEN 1.
    25 *     system_error
    26       MESSAGE ID 'CNDP' TYPE 'X' NUMBER 007 RAISING CNTL_SYSTEM_ERROR.
    27     WHEN 2.
    28 *     method_call_error
    >>       MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR.
    30     WHEN 3.
    31 *     property_set_error
    32       MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR.
    33     WHEN 4.
    34 *     property_get_error
    35       MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR.
    36     WHEN OTHERS.
    37       RAISE CNTL_ERROR.
    38   ENDCASE.
    39
    40 ENDFUNCTION.

    Hi Chandra,
    you can try following.
    Before saving PDF form, put external breakpoint in FM
    AC_FLUSH_CALL_INTERNAL.
    Save PDF Form, i guess it should go to this FM. Check which exception is setting sy-subrc = 2.
    (There are different checks in this FM for checking ActiveX, javabeen support etc).
    Hope this will help.
    Although, I never encountered the error you mentioned
    Regards,
    Mohaiyuddin

  • ISR service error :No Adobe Form Is Assigned to the Scenario...

    Hi Gurus,
    I am getting this error when I try to run any of the ISR based scenarios like Code of Conduct service, PCR etc..
    com.sap.pcuigp.xssfpm.java.FPMRuntimeException: No Adobe Form Is Assigned to the Scenario
         at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:111)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.raiseExceptions(FcISRProcessEvent.java:1948)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callRFCIsrGetFormUrl(FcISRProcessEvent.java:1042)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.setTemplateSource(FcISRProcessEvent.java:459)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callRFCIsrProcessEvent(FcISRProcessEvent.java:798)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callIsrProcessEvent(FcISRProcessEvent.java:380)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEvent.callIsrProcessEvent(InternalFcISRProcessEvent.java:1234)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEventInterface.callIsrProcessEvent(FcISRProcessEventInterface.java:127)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEventInterface.callIsrProcessEvent(InternalFcISRProcessEventInterface.java:409)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEventInterface$External.callIsrProcessEvent(InternalFcISRProcessEventInterface.java:577)
         at com.sap.pcui_gp.isr.isrprocessevent.showform.VcISRShowForm.onBeforeOutput(VcISRShowForm.java:215)
         at com.sap.pcui_gp.isr.isrprocessevent.showform.wdp.InternalVcISRShowForm.onBeforeOutput(InternalVcISRShowForm.java:435)
         at com.sap.pcui_gp.isr.isrprocessevent.showform.VcISRShowFormInterface.onBeforeOutput(VcISRShowFormInterface.java:137)
         at com.sap.pcui_gp.isr.isrprocessevent.showform.wdp.InternalVcISRShowFormInterface.onBeforeOutput(InternalVcISRShowFormInterface.java:136)
         at com.sap.pcui_gp.isr.isrprocessevent.showform.wdp.InternalVcISRShowFormInterface$External.onBeforeOutput(InternalVcISRShowFormInterface.java:212)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.callOnBeforeOutput(FPMComponent.java:602)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:568)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:437)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:195)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
    Pls do let me know how to solve this problem.
    I tried the configuration checks in the manuals..
    The Webservice check returned the correct version of the Adobe version running..
    But the program test FP_PDF_test_00 retuen an SOAP error..
    I have maintained detinations in the java visual admin
    with url : http://abapserverhostname:8000
    and user as ADS_AGENT password as in abap system.
    Pls tell me how should I solve my problem.
    helpfull answers will be greatly awarded...
    Regards,
    Ramesh

    Hi Raja,
    the basis have solved the problem and the configuration checks for ADS are succesful now.
    Now i try to create change the code of conduct application iview change the name space to
    sap.com/pcgui~isr(dont mind the spelling i have given the right component)
    application name= IsrForm
    application parmetrs = (given according to older thread messages)
    but nothing is coming up. I get the Ie message saying
    Security settings does not allow page to be displayed correctly and only a "cross" icon is appearing at the top of the page..
    Pls tell me what should i do now..
    Regards,
    ramesh

  • MSS-Create Requisition Request -Error in Adobe Form

    Hi all,
    We are trying to configure MSS -> create requisition request using standard adobe form ISR_MSSRCF_SRQ3.
    We have configured standard HCM process HR_MSSRCF_REQUISITION for it. When entering all
    the mandatory fields in the form and clicking on 'check and send' , it displays an error
    "you must enter a requisition title'
    although we have already entered req. title in the field.
    Anyone faced this issue before?
    Please provide your inputs...

    What was the solution finally? Would be glad if you could share.
    Many thanks.

  • Output type processing error for adobe forms

    We have created one output type in NACE transaction for Application V1(Sales) and attached the Adobe form to that output type. Whevener i am creating or saving a quotation / Sales order that output type is not processesed rather it is giving an Express document error that 'Update was terminated'.
    Please help me out to solve it.

    It is processed as there was a issue in the program.

  • Framework error in ADOBE FORM

    Hi Experts,
    While designing a ADOBE form, I am getting frame work error(exception caught),Could you please advice me  why it was coming?
    Regards,
    Sam.

    Hi Satya,
    You are not attached any link?
    Can you explain in detail why it was coming?It's helps me alot.
    Regards,
    Sam.

  • Error opening Adobe Form - "Processing exception during a "Render" operatio

    Hello All
    I am getting the following error while debugging the adobe form.
    Processing exception during a "Render" operation.#Request start time: Tue Jan 04
    07:11:02 GMT 2011#com.adobe.ProcessingException: com.adobe.ProcessingException:
    ##Specific error information:#a file-system error has occurred (^0)#INTERNAL ER
    ROR! Badly formed SStringKey found in StringKey::GetKey().###Exception Stack Tra
    ce:#com.adobe.ProcessingException: com.adobe.ProcessingException: ##Specific err
    or information:#a file-system error has occurred (^0)#INTERNAL ERROR! Badly form
    ed SStringKey found in StringKey::GetKey().###at com.adobe.ads.request.ADSReques
    t.processOperations(Unknown Source)##at com.adobe.ads.request.ADSRequest.process
    The error in the portal is displayed as
    The following error text was processed in the system DE1 : WebDynpro Exception: ADS call failed ADS: com.adobe.ProcessingException: com.adobe.ProcessingException:(200,101).
    The error occurred on the application server de1cen00_DE1_00 and in the work process 7 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: RAISE of program CX_WD_GENERAL=================CP
    Method: CREATE_PDF_DDIC of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF of program CL_WD_ADOBE_SERVICES==========CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    The form was working fine till we made some small changes in the form.
    Please let me know if anyone faced similar problem before. Appreciate if you provide me any leads regarding this error.
    Thank you.
    Ranganath

    Hi ,
    I am getting following error while try to generate file .I try all teh option given in the post above but still same issue is there.
    com.sap.tc.adobe.pdfobject.base.core.PDFObjectRuntimeException: Processing exception during a "Render" operation. Request start time: Thu Sep 04 01:26:28 CDT 2014 com.adobe.ProcessingException: com.adobe.ads.security.IllegalFileAccessException: <Template><Name> error: access to /usr/sap/MKD/J06/j2ee/cluster/apps/alu.com/alsr~sln~form~creation/servlet_jsp/webdynpro/resources/alu.com/alsr~sln~form~creation/root/Components/com.alu.alsr.sln.form.creation.wd.comp.slnsupplilerformtemplatecomp.SLNSupplierFormTemplateComp/SLNSupplierFormTemplateCompView_InteractiveForm_fr.xdp is not allowed Exception Stack Trace: com.adobe.ProcessingException: com.adobe.ads.security.IllegalFileAccessException: <Template><Name> error: access to /usr/sap/MKD/J06/j2ee/cluster/apps/alu.com/alsr~sln~form~creation/servlet_jsp/webdynpro/resources/alu.com/alsr~sln~form~creation/root/Components/com.alu.alsr.sln.form.creation.wd.comp.slnsupplilerformtemplatecomp.SLNSupplierFormTemplateComp/SLNSupplierFormTemplateCompView_InteractiveForm_fr.xdp is not allowed at com.adobe.ads.request.ADSRequest.processOperations(Unknown Source) at com.adobe.ads.request.ADSRequest.process(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:47) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:74) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute(Interceptors_Transaction.java:39) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke(Interceptors_Transaction.java:23) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:191) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:23) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at com.sap.engine.services.ejb3.util.BeanMethods.executeReflectMethod(BeanMethods.java:314) at com.sap.engine.services.ejb3.jacc.ExecuteMethodPrivilegedAction.run(ExecuteMethodPrivilegedAction.java:38) at java.security.AccessController.doPrivileged(Native Method) at javax.security.auth.Subject.doAs(Subject.java:394) at com.sap.engine.services.ejb3.jacc.ContainerJ2EESecurityProviderBaseImpl.doAs(ContainerJ2EESecurityProviderBaseImpl.java:262)

  • SOAP Frame work Error for ADOBE FORMS

    Dear Concerned,
    I am trying to incorporate ADOBE forms in my SAP ECC 6 system, Kindly tell me what are the system configuration that i need to do.
    I have created a demo FORM but when it try to actvate it gived error message
    "SOAP Frame work error"
    Best of regards,
    Gaurav Sood

    Dear all,
    I am unable to login to J2eee Admin when i try to run go.bat file it gives error message JAVA_HOME not defined in envoirnment variable.
    Please help me with steps to login into J2EEE Admin.
    Thanks & Regards,
    Gaurav Sood

  • Error in Adobe forms in CE SP3

    Hi
    I have used Adobe Interactive form in a Web DynPro DC after doing the necessary configuration for ADS in CE SP3. But when I run the application I receive an exception somethis like this
    com.sap.tc.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Interactive Form Operation Failed
    Caused by: com.sap.tc.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: PDFDocument Processor failed to process RenderRequest...
         at com.sap.tc.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:55)
         at com.sap.tc.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:89)
         at com.sap.tc.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:112)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:567)
         ... 61 more
    Caused by: com.sap.tc.adobe.pdfobject.core.PDFObjectRuntimeException: Processing exception during a "UsageRights" operation.
    Request start time: Wed Feb 27 19:55:39 IST 2008
    com.adobe.ProcessingException: Credential login error while applying usage rights to PDF: /usr/sap/CE1/J01/j2ee/cluster/server0/temp/adobewa_CE1_18726550/DM-6001642253044533767.dir/DM-5495524542707707125.tmp
    Specific error information:
    error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    Non-empty file name required
    Caused by: com.adobe.document.pdf.CredentialLoginFailure: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0.
    I have done all the configuration by following the blog in
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/7290. [original link is broken] [original link is broken] [original link is broken]
    Below file has been used for installing ADS credential
    P12 File: 20070730_0004205_P14.pfx
    Also the server has been restarted after all the configurations are done.
    What would be required more to overcome this error.
    Thanks & Regards
    Sudip

    Sap Note 858325
    The test should be carried out using a program that in turn calls the function module to be tested.
    This is because in se37 the functions modules FP_JOB_OPEN and FP_JOB_CLOSE are called automatically

  • Text Object Error in Adobe forms

    Hello Friends,
    I am trying to include a text object in Adobe PDF-based print form.
    In the context, I have created a node for the text. I chose the Text Type as “Include Text”. I am able to choose the required Text Object and Text ID from the respective search helps. When trying to activate the form, I am getting an error saying that I did not specify a text name. I tried to rectify this error but could not do so.
    Please help me out on how to rectify this error.
    Points will be rewarded for useful answers.
    Thanks,
    John.

    Are you giving the text name in single quotes.

  • Java script error with adobe form

    Hi All,
    We had installed Adobe Document server recently.
    while trying to open the ess - expense detail form through PDF we are gettng following error in sequence
    Intenet Explorer Script error
    1. 'sapUrDomainRelaxing' is undefined
    2. object expected
    3. 'ssr' undefined
    then we are getting blank page .
    but if are changing the mode and open the expense detail through HTML then everything is ok.
    we had checked the following
    1) namespace defnition
    2) services active in transaction SICF
    3) there is no problem with the installation of Adobe server.
    4)There is no mismatch with the server version
    in order to open ess/mss application through adobe any other pre-requiste has to be met at browser and server side
    any ideas would be welcomed
    ofcourse points will be awarded
    Expecting urs valuable reply
    Regards,
    vijay.

    Hi
    atlast we scaled down reason for this error is that problem with the installation of ACF.
    BUt unfortunately the file xAcf_NW711_SP00.exe is not available anymore from sap note 766191
    https://sapmats-de.sap-ag.de/download/download.cgi?
    id=F9RUZ3Q7TERUBSMHSXWT3UMEM59IJYIPA931VQD32A1UNAKZ6B
    So if u guys can send me the link to download this file or if u can send me the file through email would be really thankful to you guys.
    Thanks
    Vijay.
    ps: A special thanks to Gurprit Bhatia for scaling down the reason

  • Error with Adobe Forms

    Hi all,
    I configured ADS successfully.
    I developed a simple application and deployed t ,but throwing an exception.Any one help me out.
    com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Processing exception during a "UsageRights" operation. Request start time: Fri Aug 07 15:06:01 GMT+05:30 2020 com.adobe.ProcessingError: Not allowed by credential error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_EPQ_303435850\DM836210183032223208.dir\DM-5777070900698714201.tmp Specific error information: $$$/PDF/PDFCredentialDoesNotSpecifiedUsageRights=credential does not allow setting of specified UB rights General error information: IDL:com/adobe/document/pdf/NotAllowedByCredential:1.0 Exception Stack Trace: com.adobe.ProcessingError: Not allowed by credential error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_EPQ_303435850\DM836210183032223208.dir\DM-5777070900698714201.tmp Specific error information: $$$/PDF/PDFCredentialDoesNotSpecifiedUsageRights=credential does not allow setting of specified UB rights General error information: IDL:com/adobe/document/pdf/NotAllowedByCredential:1.0 at com.adobe.ads.request.UsageRights.execute(Unknown Source) at com.adobe.BaseADSRequest.doWork(Unknown Source) at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source) at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79) at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92) at SoapServlet.doPost(SoapServlet.java:51) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Caused by: com.adobe.document.pdf.NotAllowedByCredential: IDL:com/adobe/document/pdf/NotAllowedByCredential:1.0 at com.adobe.document.pdf.NotAllowedByCredentialHelper.read(NotAllowedByCredentialHelper.java:67) at com.adobe.document.pdf._PDFDocumentStub.setUsageRights(_PDFDocumentStub.java:286) at com.adobe.EJB_PDFAgent.setUsageRights(Unknown Source) ...
    Thanks
    Madhu

    Hi,
    Following links may be helpful.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/97/ccfc3f0ac2c642e10000000a1550b0/frameset.htm
    The most important SAP Notes for SAP Interactive Forms
    Common Problems with SAP Interactive Forms by Adobe - PART I -
    Thanks and Regards,
    Gauri

Maybe you are looking for