Seite 1 von 1

Interactive Forms

Verfasst: 27.11.2008, 11:21
von ekaraca
wer könnte mir helfen:

Problem:

ich bekomme die folgenden Fehlermeldung:

   ADS: com.adobe.ProcessingException: Could not retrieve(200101)

und

   die Ausgabe Parameter wird nicht gefüllt
     fp_formoutput <-- leer.

Könnte das evtl. durch  falsches ADS-Konfiguration sein ???

Achtung: Wenn ich den Parameter

                fp_docparams-fillable = [font=Verdana]'N'. [/font][font=Verdana]
[/font]

benutze, dann wird das Formular erstellt, aber ich kann den Formular nicht füllen usw.

Unten steht mein ABAP-Code:



SPAN {
font-family: "Courier New";
font-size: 10pt;
color: #000000;
background: #FFFFFF;
}
.L1S31 {
font-style: italic;
color: #808080;
}
.L1S32 {
color: #3399FF;
}
.L1S33 {
color: #4DA619;
}
.L1S52 {
color: #0000FF;
}

fp_outputparams-nodialog = 'X'. " suppress printer dialog popup
fp_outputparams-getpdf = 'X'. " launch print preview

call function 'FP_JOB_OPEN'
  changing
    ie_outputparams = fp_outputparams
  exceptions
    cancel          = 1
    usage_error     = 2
    system_error    = 3
    internal_error  = 4
    others          = 5.

*fp_docparams-langu = 'E'.
*fp_docparams-country = 'US'.
fp_docparams-fillable = 'X'.
fp_docparams-dynamic  = 'X'.

call function fm_name
  exporting
    /1bcdwb/docparams  = fp_docparams
    mtart        = wa_mtart
*    maktx        = wa_maktx
    matnr         = wa_matnr
  importing
    /1bcdwb/formoutput = fp_formoutput <-- leer, wird nicht gefüllt
  exceptions
    usage_error        = 1
    system_error       = 2
    internal_error     = 3
    others             = 4.
if sy-subrc <> 0.
*   error handling
  message id sy-msgid type sy-msgty number sy-msgno
          with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.

...

...