Issue printing labels in Adobe form via Datamax printer

Hi,
We have developed an Adobe form which contains a barcode for the label.
This label gets printed fine when we print it on the printers in the office headquarters.
However, at the plant location where it is supposed to be printed, the labels are not getting printed.
The printer at the plant location is Datamax H-4212.
Any idea what's wrong? Will the Adobe form need to be changed for this?
Please help.
Regards,
Anusha

Hi,
Which device type do you use to create the spool and print? Only the device types described in the following note are possible with Adobe forms:
685571 - Printing PDF-based forms
I suggest you try with device type PDF1 and SAPPDFPRNT as per SAP note 1444342.
Regards,
Aidan

Similar Messages

  • Printing Issue for Labels in Adobe forms

    Hi,
      I have created a form for Label printing using Adobe Forms. Label size is 6.4 X 4.3 inches..The print preview is fine, even when i take the printout, the entire label can be seen. However onsite when the client is using his Label Printer, it is printing only the below half of the Label, i.e. Only Half the Label is being printed, that too below part.
    Could someone guide me as to what can be wrong.
    Thanks and Regards,
      Vanessa

    I too am facing the same problem. The print preview looks  fin but when the client is using with his Zebra Label printer, it is eating out top 7 lines of the data and thus printing remaining data on the top half of the Label.

  • Adobe Form via RFC - spool order

    Hello experts.
    When I'm calling an Adobe Form via RFC I'm not getting the spool order in the target system. The Form is issued with:
      fp_outputparams-device  = 'PRINTER'.
      fp_outputparams-NODIALOG = 'X'.
      fp_outputparams-DEST = '5175'.
      fp_outputparams-REQNEW = 'X'.
      fp_outputparams-REQIMM = 'X'.
      fp_outputparams-COPIES = '001'.
    If I call the Form function within the target system, the spool order is created.
    I'm doing something wrong? Or the spool order could not be created via RFC function call?
    Thank you a lot!

    There are no exceptions regarding the RFC call. I'm starting to believe  that with this approach, I won't get a spool request. Hopefully that isn't a problem for my company.
    I'll leave the question unanswered in case anyone comes up with a well-funded answer.
    Regards,
    Andrés Sarcevic.

  • Labels in adobe forms

    Hi
    Does anyone has nice easy and elegant solution to print  labels in adobe forms ? , solution such as the "Envelopes an Labels" in Microsoft WORD.
    My particular problem is to print 8 labels in page (with 2 columns) from internal table witch contain the data.
    Thanks

    Hi ,
    For this, in the layout part of the form you must define 8 content area into the master page .
    Then for each record of your internal table on pagination tab you must set to go to next content area at end of record.
    I'll do it for a QM forms and it works
    There's a sample of this solution in SAP, have a look at QM_SAMPLE_LABEL1.
    Regards

  • Shipping label using ADOBE FORM

    Hi All,
    I have to design the shipping label using adobe form,
    please see the design details and the layout.
    kindly help me with the step by step procedure to succeed the same with the program.
    1. Design Details
    A output type ZLAB will be maintained for delivery document in SAP. The fields that needs to be captured has been mentioned above. The Logic for picking the values in SAP are,
    Sl.No
    Label in the form
    Logic
    1
    Shipper Release
    LIKP-VBELN
    2
    Customer Part Number
    Based on the VKORG, VTWEG, KUNNR and MATNR as in the VBAK/VBAP pass the values in KNMT and get the Value of field KDMAT
    3
    Engine Manufacturer
    Fixed Value
    4
    Engine Group or Model Number
    MATNR from VBAP. Get the sales order number from table VBPA by passing the LIKP-VBELN.
    5
    Engine Serial Number
    Get the OBKNR value by giving the input to LIEF_NR as LIKP-VBELN. Input the OBKNR value in Table OBJK and get the SERNR values.
    6
    Engine Build Date
    Get the field VGUID by passing the LIKP-VBELN to the table VLCDELIVERY
    7
    Engine Family Name or Number
    Pass the VBAP - CUOBJ in FM VC_I_GET_CONFIGURATION and get the Engine family code value.
    8
    Certified Gross Engine
    check kW always
    9
    Emission Control Label Affixed
    always check yes
    10
    Labeled for Replacement Engine in US
    Need to check with Onsite
    11
    Convert the Customer Number + Delivery document number as Bar
    code.
    Regards,
    Lakshmi Narayanan V

    Do you need the image to be a part of the file (ie, embedded on the page), or just as an attachment to it? The latter is easily done, the former not so much.
    Either way it requires that the file be used in either Acrobat or Reader XI, though.

  • Error while opening the ADOBE FORM via mail

    Hi to all,
    I have created a program to attached ADOBE FORM to mail.
    When I execute the program, it sends ADOBE FORM to my mail ID successfully.
    But when I open my mail and try to open attached ADOBE FORM, it gives error
    ADOBE READER COULD NOT OPEN u2018PDF FORM (1). PDFu2019 because it is either not a supported file type or because the file has been damaged ( for example, it was sent as an email attached and wasnu2019t correctly decoded).
    Please can any tell me, what the problem is and what the solution is for that?
    I shall be thankful to you for this.
    Regards
    Pavneet Rana
    Edited by: pavneet rana on Aug 1, 2011 2:22 PM

    Thanks for reply,
    below is the code.
    data:
      l_fm_name         TYPE rs38l_fnam,
       l_formname   TYPE fpname VALUE 'ZTESTF1' ,
      fp_docparams      TYPE sfpdocparams,
      FP_FORMOUTPUT     TYPE FPFORMOUTPUT,
      fp_outputparams   TYPE sfpoutputparams.
    data:  I_ATT_CONTENT_HEX  type SOLIX_TAB.
    START-OF-SELECTION.
    data: st  TYPE  ZTABFM11.
    data: it type table of sflight.
    data: wa like LINE OF it.
    data: wa_st like LINE OF ST.
      fp_docparams-langu   =      'E'.
      fp_docparams-country =      'US'.
      fp_docparams-fillable =      'X'.
      fp_outputparams-nodialog = 'X'.
      fp_outputparams-preview =   'X'.
      fp_outputparams-device   =  'LP01'.
      fp_outputparams-getpdf  =   'X' .
      fp_outputparams-dest   =    'LP01'.
      fp_outputparams-reqimm  =   'X'.
      fp_outputparams-reqdel  =   'X' .
      fp_outputparams-xfpoutdev = 'LP01'.
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = l_formname
        IMPORTING
          e_funcname = l_fm_name.
      E_INTERFACE_TYPE           =
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = fp_outputparams
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 4
          OTHERS          = 5.
    select * from sflight into TABLE it.
      loop at it into wa.
        wa_st-CARRID = wa-CARRID.
        wa_st-CONNID = wa-CONNID.
        wa_st-FLDATE = wa-FLDATE .
        wa_st-PLANETYPE   = wa-PLANETYPE.
        append wa_st to st.
        endloop.
      CALL FUNCTION l_fm_name
        EXPORTING
          /1bcdwb/docparams  = fp_docparams
              st               = st
        IMPORTING
          /1BCDWB/FORMOUTPUT = FP_FORMOUTPUT
        EXCEPTIONS
          usage_error        = 1
          system_error       = 2
          internal_error     = 3
          OTHERS             = 4
       CALL FUNCTION 'FP_JOB_CLOSE'
      IMPORTING
        E_RESULT             = result
       EXCEPTIONS
         usage_error          = 1
         system_error         = 2
         internal_error       = 3
         OTHERS               = 4
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          BUFFER                = FP_FORMOUTPUT-PDF
      APPEND_TO_TABLE       = ' '
    IMPORTING
      OUTPUT_LENGTH         =
        TABLES
          BINARY_TAB            = I_ATT_CONTENT_HEX  .
    CLASS cl_bcs DEFINITION LOAD.
      DATA:
      lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
      lo_send_request = cl_bcs=>create_persistent( ).
    Message body and subject
      DATA:
      lt_message_body TYPE bcsy_text VALUE IS INITIAL,
      lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
      APPEND 'Dear,' TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Fill the details.'
      TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Thank You,' TO lt_message_body.
      lo_document = cl_document_bcs=>create_document(
      i_type = 'RAW'
      i_text = lt_message_body
      i_subject = 'flight details' ).
      DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
      TRY.
          lo_document->add_attachment(
          EXPORTING
          i_attachment_type = 'PDF'
          i_attachment_subject = 'flight details'
    I_ATTACHMENT_SIZE =
    I_ATTACHMENT_LANGUAGE = SPACE
    I_ATT_CONTENT_TEXT =
    I_ATTACHMENT_HEADER =
          I_ATT_CONTENT_HEX  = I_ATT_CONTENT_HEX  ).
        CATCH cx_document_bcs INTO lx_document_bcs.
      ENDTRY.
    Add attachment
    Pass the document to send request
      lo_send_request->set_document( lo_document ).
    Create sender
      DATA:
      lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
      l_send type ADR6-SMTP_ADDR value 'mail id '.
    lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
      lo_sender = cl_sapuser_bcs=>create( sy-uname ).
    Set sender
      lo_send_request->set_sender(
      EXPORTING
      i_sender = lo_sender ).
    Create recipient
      DATA:
      lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
    lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
      lo_recipient = cl_cam_address_bcs=>create_internet_address( l_send ).
    Set recipient
      lo_send_request->add_recipient(
      EXPORTING
      i_recipient = lo_recipient
      i_express = 'X' ).
    lo_send_request->add_recipient(
    EXPORTING
    i_recipient = lo_recipient
    i_express = 'X' ).
    Send email
      DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
      lo_send_request->send(
      EXPORTING
      i_with_error_screen = 'X'
      RECEIVING
      result = lv_sent_to_all ).
      COMMIT WORK.
      message 'Form sucessfuly send to person' type 'I'.
    plesase can any one, provide the soultion.
    i shall be thankful toy you for this.
    regards
    pavneet rana

  • Editable issues in sap interactive adobe form

    Hi Experts,
    we are using AdobeLiveCycle designer to create the pdf form out of sap. After creating the form to interact with sap.
    When we execute the program automatically pdf will download the particular folder. In that pdf form is not an editable mode at the time. And it will change the editable mode on next day.
    so, please suggest the solution to close the issues.  
    The following error message occurs when opening this form in Reader and attached screenshot also.
    "This document enabled extended features in adobe reader the document has been changed since it was created and use of extended features is no longer available. Please contact the author for the original version of this document "
    Regards,
    Satheeshkumar.M

    Hello Satheesh
    Is this issue resolved ?
    Also mark this Discussion with a Correct Answer and Helpful Answer where appropriate.
    See http://scn.sap.com/community/support/blog/2013/04/03/how-to-close-a-discussion-and-why  
    Even if you discovered the solution without any outside contributions, it helps others to understand what the solution turned out to be
    Regards
    Sandy

  • Can I invoke outlook 2010 from an Adobe form via a submit button

    Currently We use Adobe 8.0 and we can invoke Lotus notes on a windows XP machine.
    We are now going to Microsoft Outlook 2010 can we still invoke Outlook via a Submit button on the form. Thanks

    What is "Adobe 8.0"?

  • Calling Adobe form via ABAP Web Dynpro

    Hi
    Ive followed the below WIKI and have encountered an issue and finding it rather frustrating to resolve
    http://wiki.sdn.sap.com/wiki/display/WDABAP/CallAdobeFormthroughABAPWebDynpro
    Im fairly new to this to pls excuse my ignorance
    The message Im getting when I check for errors in my MAIN view is
    ""A label must refer to element "DISPLAY_NO".""
    The procedure tells me the follow
    a) Create a label and bind its 'Label for' property to the UI element.
    b) Select the label's 'Text' property, bind it to an appropriate context attribute or, alternatively, set the quick info (or accessibility description - if one exists) for the UI element.
    c) Either set the visibility of the label to "visible" or set the element that the label refers to as invisible.
    Im just not sure where to correct this under my DISPLAY_NO element
    Im not sure if thisis the reason why im getting the UNCAUGHT_ EXEPTION - CX_WD_GENERAL runtime error as well
    Telling me my object Z************* does not exist
    Regards
    Justy

    Hi...
    in your view for element DISPLAY_NO, There is no label. So create one label and
    in corresponding label properties bind its 'Label for' property to the display_no ui element.
    And did you activate your component ? if above is the error, you will not able to activate the component. So first check and activate component. if you get any error related to DISPLAY_No, then follow the above procedure.
    if you have any doubts, post the same back
    Regards
    Srinivas

  • Performance issue with Adobe forms

    Dear SAP Experts,
    We have the following issue/requirement from our client. The client is on SAP ECC 6.0 - production environment.
    The client is highlighting  performance issue while accessing the adobe forms for HR and FI business process ( both static and interactive ).
                    Examples are
        FI – Invoice Approvals
                    HR – Job Salary Change
    The client is asking us to provide best practices surrounding:
    1.       How to improve the performance of the adobe forms while accessing in SAP.
    2.       Is there any other technology which we can use in SAP to replace the adobe forms which has better performance factor.
    3.       Are there solutions such as webdynpro floor plan manager, UI Fiori which can be alternately used?
    Regards,
    Sakthi

    Hello Priya,
         Adobe forms are easy to develop and much more comfortable than SAP Scripts and Smartforms. Initially they are a bit difficult but once you have your hands on, they are the most simplest things in ABAP.
    Performance in Adobe forms is a mix of both fine tuning the Layout as well as back end coding.
    Performance in Adobe forms cannot be done overnight. A lot of care has to be taken during the initial stage of development.
    As far as my experience is concerned, please consider the below points while developing SAP Adobe forms.
    1) Avoid Scripting (Javascript/Formcalc) as much as possible inside the form. It drastically reduces the performance and makes the form to execute slower. If you still want to use scripting(which cannot be avoided for some requirements), use Formcalc since it is comparatively faster than JavaScript.
    2) Try to avoid the coding inside the Form Interface. You can always handle the maximum coding in the Driver program and pass it to the form.
    3) Use Form Caching.
    For forms that have fixed layout, its a good way to increase the performance of form rendering. In the layout, go to Form Properties. Then Click on Defaults tab and select Allow Form Rendering To Be Cached On Server. Then Click OK.
    For forms that have flowable or dynamic layout, render the forms on the client side because it improves performance.
    Last but not the least, please go through the below post by Otto Gold which is worth a read at least once.
    How to write a messy form

  • Adobe form Through Email

    Hello Gurus,
    My requirement is to send the Adobe form via Email as attachment.
    Am using FM "FP_JOB_OPEN", Generated Adobe Form FM and FP_JOB_CLOSE.
    Here, am getting PDF format in "FPFORMOUTPUT-PDF".
    As "FPFORMOUTPUT-PDF"  is in format of xstring, We need to convert it to Binary and for this am using FM "SCMS_XSTRING_TO_BINARY". 
    Code:
    data: li_att_content_hex type standard table of x.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        BUFFER     = FPFORMOUTPUT-pdf
      TABLES
        BINARY_TAB = li_att_content_hex.
    Later, am using the FM "SO_NEW_DOCUMENT_ATT_SEND_API1" to send a mail.
    As a result am getting the mail with attachment as PDF but when I try to open the attachment it gives me an error as "It wasn't correctly decoded".
    Please, Let me know about this issue.
    Thanks in advance.
    Regards,
    Usha

    hi,
    Refer to this link..
    Re: Attachment in ADOBE form

  • Adobe Forms in Guided Procedures

    Hi all,
    I have the 'My First Days' Guided Procedure assinged to a user and am trying to customize it for a demo. I am trying to display an adobe form in a separate section in the My First Days Procedure and so far have been able to configure the action and block in order to display the adobe form.
    When i try to add the Adobe form as a 'Interactive form' type, it gives me an error saying 'Could not retrieve template fields: Wrong document format or adapter mismatch.'
    I have checked the adobe configuration and it seems to be working fine. Can anyone tell me why i get this error and what is the best way to resolve this issue?
    Also, if Adobe forms work fine for manager self service in our systems, should they work fine in the Guided Procedures too ?
    Thanks,
    Bhushan.

    Dear Alan,
    Yes i have generated the form's submit URL... It works fine when the pdf is saved in the users desktop and upon clicking the submit button it kicks of a Process with a Visual Approval callable object..
    However my requirement is that the Adobe form be submitted online during GP runtime.. The process is initiated by the User in the portal (not offline) who wants to put in a request. When the user initiates a process an Adobe form is opened to him in which he fills in his request. This request is then <b>forwarded for Approval</b>.. After Approval a digital signature need to be attached to the document and further on it needs to be sent out to other User Groups.. In case the request is <b>rejected</b> then the control goes back to the requestor who can either modify his request and send it again for approval or simply delete the request.. Throughout the whole process Print of the request can be taken at any time. Considering the requirements of Print & Digital signature i think using Adobe would be the way to go.. What do you think about implementing such a requirement in GP with Adobe UIs? Is it the right way of going about it?
    Quite an interesting nut to crack.. Ain't it ??
    Cheers
    Nitesh

  • Adobe Form - Data Binding for static text

    Hi Experts,
    I'm trying to create a new label with Adobe Forms (not interactive).
    So I've created an interface with a table LABEL_DATA (import) and many variables (import) and a new Form with Layout.
    I tried to bind some text fields with the imported variables und fields from the table, they're all available in the context, but all fields are still empty (preview and print).
    Field are Text Fields
    Type is : Read Only
    Data Binding is : $record.LABEL_DATA.KDMAT
    Can someone please help me?
    Thank you.
    Regards,
    David

    Hello David,
    In your interface, have you declared LABEL_DATA as GLOBAL Data ?
    You can fill the table and variables in the INITIALISATION in the interface.
    Then you can use the Global table and variables in the form.
    In case you are missing some values; you can debug the code in INITIALISATION section. Get the import tables in INITIALISATION and filter the required values into Global Table and variables.
    Regards
    Sandy

  • Adobe form / interactive form

    Hi all,
    I am trying to create a printable adobe form that will be called within a program. I created the program that calls the different function modules and the adobe form via SFP. Now I am trying to insert a field into the form which should be open for input. The users just want to add something into this field and then print it. So the input should be saved in the adobe doc. or be printed.
    Is this possible? How can I do this. Any idea?
    I tried to set the parameters of the field and also set the export parameter '/1bcdwb/docparams' of the module calling the form to 'fp_docparams-fillable = 'X'. This doesn't work.
    Thanks and best regards,
    Viktoria

    Reader credential rights missing. Now it works.

  • Sending email by attaching adobe form through BSP

    Hi All,
    I'm working on the e-recruitement project.
    I have requirement that on the publication page there is table view where all the publication and there posting channels are displayed.
    Now i have to create a button " Send Email". by selecting the the required posting channel when i click on the button send email.
    It should pick the data overview form and this form should be attached to email and should be send to the respective posting channel.
    Can you please guide me to solve this issue.
    Your commnets will highly appreciated.
    Regards,
    Nikita.

    Look at this [document|https://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/e0bba346-cb84-2910-2aa9-ba1f8a1c8617&overridelayout=true] to create & send adobe form via email.
    You can use the same code for BSP too.
    Raja

Maybe you are looking for