Customer Printing Forms

Hello -
I am using the registration form for customers to register in a warranty program. I would like them to be able to print out the form for their own records and for sending in with a warranty claim. How do I make this happen? I don't see any options for that currently.
Thank you!
L&G

You will need to create a PDF Form workflow as opposed to a Web Form workflow. PDF forms can filled out, saved and printed from Adobe Reader or Adobe Acrobat. If you have Acrobat then you can manually add a print button to you form. You might want to have a look at this : http://forums.adobe.com/message/5508597
Do you still want them to submit the data electronically or do you just care about the print paper form mail back to you?
Gen

Similar Messages

  • Custom Adobe Form as Offline layout in PMS

    Hi Experts,
    We are implementing PMS in EHP5.I have created customozed interactive adobe form.How can i use this adobe form as layout in R/3 for appraisal purpose?
    I could find option Offline layout.But how i should proceed?
    Please help me.
    Regards,
    Arun.

    Hi Arun
    Step 1: Go Tcode: OOHAP_BASIC
                Enchancement Area -  AP     Print Layout
                Define your Enhancement
                Example:
                ZPRINT     XXX print form
                PMP                          PMP PDF
                SMARTFORM     Print Appraisal Documents: Old (with Smart Forms)
                STANDARD     Standard
    Step 2: Go Tcode: PHAP_CATALOG
                On your Template under Layout Tab
                Further - Print Layout -> Plug in your Custom Print Form
    You should be all set.
    Thanks
    RAjdeep

  • SRM 7.0 - customizing for print forms

    Hi gurus,
    we want to use adobe forms for print forms.
    In customizing we are able to switch from smartforms to  adobe forms (sap note 1264423).
    While we are encountering problem in configuring differents output actions  for certain documents: i.e. print different forms on basis of a value of an attribute that belong to the business object. We follow IMG documentation (in T. SPRO: SAP Supplier relationship Management -> SRM Server -> Cross Application basic settings -> Set output Actions and output Format -> Condition-Dependent Document Output) but conditions-dependent forms are not getting printed.
    Please help me solving this issue.
    Luca

    Any help on this?

  • Custom Printing of data forms

    We need custom printing for Hyperion planning forms. We are using Oracle® Hyperion Planning, Fusion Edition - 11.1.2.2..
    Can anyone guide?

    Hi,
    this is what I woudl condider
    - the easiest way would be to use Oracle Reports.
    - write a Java Bean that performs printing
    - use webutil, write to a temporary file and call host on the client to print
    Frank

  • Open Adobe Print Form from ALV Int. Rprt using the XSTRING already present

    Hello Friends,
    I have a typicall issue that how to open a Adobe Print Form when a user double clicks in the ALV Report. Here when the user double clicks in the ALV Interactive Report using the unique ID I am getting the Adobe Form from a FTP location in the Form of XSTRING, now using the ABAP ADOBE PRINT FORM not using WebDynpro Application, I need to process this XSTRING and show up the Adobe Print Form.
    OR
    Is there a way to send the XSTRING to the Output Device or Printer to Display the PDF Form.
    Friends please help me in solving this issue.
    Thanks and Regards
    Pradeep Goli
    Edited by: Pradeep Goli on Mar 19, 2009 1:49 PM
    Edited by: Pradeep Goli on Mar 19, 2009 2:51 PM

    Hi Pradeep Goli,
    it is possible to show PDF in SAP GUI.
    Michal
    REPORT  ZTEST_DISPLAY_PDF.
    * You must create dynpro 500 with custom control named HTML.
    * In this custom control will be displayed PDF.
    DATA: g_pdf              TYPE xstring,
          pdf_my_container   TYPE REF TO cl_gui_custom_container,
          pdf_html_control   TYPE REF TO cl_gui_html_viewer.
    START-OF-SELECTION.
    PERFORM create_and_display.
    FORM create_and_display.
    *** Your code fo filling g_pdf
    CALL SCREEN '500'.
    ENDFORM.
    * PDF preview in HTML control
    module html_control output.
      perform pbo_html_control.
    endmodule.
    module html_control input.
      perform pai_html_control.
    endmodule.
    * PAI
    FORM pai_html_control.
      SET SCREEN '0'.
    ENDFORM.
    * Showing of PDF
    FORM pbo_html_control.
      DATA: l_pdf_alignment TYPE i,
            l_count         TYPE i,
            l_noprint       TYPE fpboolean,
            l_noarc         TYPE fpboolean,
            l_noprintarc    TYPE fpboolean.
    *  CLEAR: fcode.
      SET PF-STATUS 'VIEW_PDF'.
    * container
      IF pdf_my_container IS INITIAL.
        CREATE OBJECT pdf_my_container
          EXPORTING
            container_name = 'HTML'
          EXCEPTIONS
            OTHERS         = 1.
        IF sy-subrc <> 0.
          MESSAGE e150(FPRUNX).
          RETURN.
        ENDIF.
      ENDIF.
    * html control
      IF pdf_html_control IS INITIAL.
        CREATE OBJECT pdf_html_control
          EXPORTING
            parent = pdf_my_container
          EXCEPTIONS
            OTHERS = 1.
        IF sy-subrc <> 0.
          MESSAGE e150(FPRUNX).
          RETURN.
        ENDIF.
    *   alignment
        l_pdf_alignment = pdf_html_control->align_at_left  +
                        pdf_html_control->align_at_right +
                        pdf_html_control->align_at_top   +
                        pdf_html_control->align_at_bottom.
        CALL METHOD pdf_html_control->set_alignment
          EXPORTING
            alignment = l_pdf_alignment
          EXCEPTIONS
            OTHERS    = 1.
        IF sy-subrc <> 0.
          MESSAGE e150(FPRUNX).
          RETURN.
        ENDIF.
      ENDIF.
      PERFORM pdf_show USING g_pdf.
    ENDFORM.
    FORM pdf_show USING p_pdf_data TYPE xstring.
      STATICS: ls_url           TYPE i.
      TYPES: lt_pdf_table(1000) TYPE x.
      DATA:  l_myurl(80)        TYPE c,
             l_url(80)          TYPE c,
             l_pdf_data         TYPE STANDARD TABLE OF lt_pdf_table,
             l_pdf_size         TYPE i,
             l_pdf_line         TYPE lt_pdf_table,
             l_offset           TYPE i,
             l_len              TYPE i.
      l_pdf_size = XSTRLEN( p_pdf_data ).
      l_len = l_pdf_size.
      WHILE l_len >= 1000.
        l_pdf_line = p_pdf_data+l_offset(1000).
        APPEND l_pdf_line TO l_pdf_data.
        ADD 1000 TO l_offset.
        SUBTRACT 1000 FROM l_len.
      ENDWHILE.
      IF l_len > 0.
        l_pdf_line = p_pdf_data+l_offset(l_len).
        APPEND l_pdf_line TO l_pdf_data.
      ENDIF.
      ADD 1 TO ls_url.
      l_myurl(8) = ls_url.
      CONCATENATE l_myurl '.pdf' INTO l_myurl.
      SHIFT l_myurl LEFT DELETING LEADING space.
      CALL METHOD pdf_html_control->load_data
        EXPORTING
          url          = l_myurl
          size         = l_pdf_size
          type         = 'application'                          "#EC NOTEXT
          subtype      = 'pdf'                                  "#EC NOTEXT
        IMPORTING
          assigned_url = l_url
        CHANGING
          data_table   = l_pdf_data
        EXCEPTIONS
          OTHERS       = 1.
      IF sy-subrc <> 0.
        MESSAGE e152(FPRUNX).
        RETURN.
      ENDIF.
    * show data
      CALL METHOD pdf_html_control->show_data
        EXPORTING
          url    = l_url
        EXCEPTIONS
          OTHERS = 1.
      IF sy-subrc <> 0.
        MESSAGE e152(FPRUNX).
        RETURN.
      ENDIF.
    ENDFORM.

  • Problems with custom search form in adf

    Hi,
    I am using JDeveloper 11.1.2.4. please can you help with this issue?
    I've created a custom search form with the help from this link.
    Jdeveloper,Oracle ADF &amp;amp; Java: Implementing custom search form in ADF programmatically (Without using af:query)
    I've created two bind variables SkuBind & ImperfectBind and a View Criteria.
    My problem is when I press Search button, it does not filter based on values of the bind variables in the View Criteria.
    I rightly get bind variable values in the System output though
    Skubind = 1000
    Imperfectbind = N
    but there is no where clause
    where clause = null
    public void SearchOddShoes(ActionEvent actionEvent) {
    AppModuleImpl am = (AppModuleImpl)resolvElDC("AppModuleDataControl");
    ViewObject oddShoeVo = am.getRtnOddShoesVO1();
    oddShoeVo.setNamedWhereClauseParam("SkuBind", skuPgBind.getValue());
    oddShoeVo.setNamedWhereClauseParam("ImperfectBind", imperfectPgBind.getValue());
    System.out.print("Named Skubind = " + oddShoeVo.getNamedWhereClauseParam("SkuBind") +"\n");
    System.out.print("Named Imperfectbind = " + oddShoeVo.getNamedWhereClauseParam("ImperfectBind") +"\n");
    System.out.print("where clause = " + oddShoeVo.getWhereClause()+"\n");
    System.out.print("where clause params= " + oddShoeVo.getWhereClauseParams()+"\n");
    System.out.print("Sql is " + oddShoeVo.getQuery()+"\n");
    oddShoeVo.executeQuery();
    public Object resolvElDC(String data) {
               FacesContext fc = FacesContext.getCurrentInstance();
               Application app = fc.getApplication();
               ExpressionFactory elFactory = app.getExpressionFactory();
               ELContext elContext = fc.getELContext();
               ValueExpression valueExp =
                       elFactory.createValueExpression(elContext, "#{data." + data + ".dataProvider}", Object.class);
               return valueExp.getValue(elContext);
    thanks

    Not clear what part of the code doesn't work. Assuming that you did check that the code you wrote executed
    the problem may be the following.
    You need to add partial trigger on the destination component.
    Add ...
    oddShoeVo.executeQuery();
    AdfFacesContext.getCurrentInstance().addPartialTarget(HERE_THE_BIND_NAME_OF_YOUR_TABLE);
    Also I don't see that you acctually use View Criteria. There are specific way to apply View Criteria programatically and I don't see that you use it.
    The simpliest way is just to change the VO query to embed bind variables into the query
    E.G.
    select 1
    from dual
    where some_column= :P_PARAM1

  • Contents of a custom print program for a custom smartform

    Hi...
    Can you please tell me if we are writing a custom print program from scratch for a custom smartform for which there is no standard form available what are all the things that need to be coded in the print program..
    My doubts on this are if we are configuring this form for output types of PO purchase order for mediums 1,2, 5 and 6 does any extra coding need to be done in the print program that is related to these mediums or is it just a configuration issue..
    Apart from data retrieval part and call the function modules to send the data to smartforms what are the other things that we need to code in a custom smartform..  Anything that we need to code related to printing issues..
    It would be great if someone can post a custom print program for any output type valid for mediums 1, 2, 5 and 6.
    Also my last doubt is do we need to do anything in SE11 in designing a smartform and in what context do we need it...
    Thanks and appreciate your help... Surely will reward for all the helpful answers..
    Thanks again..
    Kanthi..

    Hi,
    yes you need to create your own print program. You need to catch printing information and to send data to your smartforms.
    To send data to your smartforms you need to use structure describe in the data dictionnary.
    This is a peace of code for sending information to a smartform that will be print used an external program (Esker)
      DATA: it_data       LIKE TABLE OF zssf_bl WITH HEADER LINE,
            w_formname TYPE tdsfname ,
            w_fm_name  TYPE rs38l_fnam ,
            is_output  TYPE ssfcompop ,
            is_control TYPE ssfctrlop ,
            is_job_out TYPE ssfcresop .
    *  Récupère le nom du module fonction.
      MOVE 'Z_BL_STT' TO w_formname.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                 = w_formname
        IMPORTING
          fm_name                  = w_fm_name
        EXCEPTIONS
          OTHERS                   = 3.
    * Prépare les paramètres d'impression.
      is_output-xsfcmode   = 'X'.
      is_output-xsf        = 'X'.
      is_output-xsfoutmode = 'S'.
      is_output-xsfoutdev  = 'DOCL'.
      is_output-xsfformat  = 'X'.
      is_output-tdnoprev   = 'X'.
      is_output-tdnoprint  = ' '.
      is_output-tddest     = 'DOCL'.
      is_output-tdprinter  = 'PLAIN'.
      is_output-tdnewid    = 'X'.
      is_output-tdimmed    = 'X'.
      is_output-tddelete   = 'X'.
      is_control-no_dialog = 'X'.
      is_control-preview   = ' '.
      is_control-no_open   = 'X'.
      is_control-no_close  = ' '.
    * Prepare le formulaire
      CALL FUNCTION 'SSF_OPEN'
        EXPORTING
          user_settings      = ' '
          output_options     = is_output
          control_parameters = is_control
        IMPORTING
          job_output_options = is_job_out
        EXCEPTIONS
          OTHERS             = 5.
    * Appels du formulaire.
      CALL FUNCTION w_fm_name
        EXPORTING
          control_parameters = is_control
          output_options     = is_output
          is_bl              = zbl_soustrait
        TABLES
          it_data            = it_data
        EXCEPTIONS
          OTHERS             = 5.
    You need to catch information from the NAST table maybe
    Rgd
    Frédéric

  • Issue in Print Form

    Hi,
    I have created a print form using Adobe LiveCycle designer 7.1 on SAP ECC 6.0 version. The requirement is to mask first 5 characters of a text field (SSN) on the form while displaying but when printed it should print whole SSN.I have used Javascript option to run at client. In the initialize event, I am changing the value(rawValue) to the masked one(for eg. XXXXX9999).In the prePrint event I am passing the correct value of SSN and again in the postPrint event I am changing the value of SSN to the masked one.The form type is set to Print form and Dynamic PDF.I have created a custom program in SAP to creae PDF and download on to the local machine.
    Now the issue is...
    1)When I opened the downloaded PDF and pressed the print button, the whole document goes blank. This is happening in Adobe Reader 7.0.9.
    2) It works as expected with Adobe Reader 8.1.1 but when I close the document it gives error message like - instruction 0XX.. could not be written to memory.
    I have also tried to hide to set the presence attribute to "visible" in prePrint event and to "invisible" in postPrint event instead of changing the value of the field but same issue is happening with Adobe Reader version 7.0.9.
    I need this to work on any version(7.x or 8.x) of Adobe Reader. Please help.
    Thanks,
    Raghu

    Dear,
    print preview and physical printout are two different things.
    PrintPreview:
    The data stream will be sent to the frontend and rendered with windows-fonts etc (for backend prints a simulation).
    Printout:
    Frontend: You need a printer, that maps the character, you have to use SAPWIN or SAPWINCF when using cascading fonts. The rendering will be done in the windows spooler.
    Backend: Your printer needs also a mapping (look like something with UTF8). Also the printer needs the fonts installed because the rendering will be done in the printer!
    If you use the pdf-printer in SAP, you need to upload all necessary fonts (TTF) for the pdf-composer. Also you need a unicode pdf printer for that.
    Regards,
    Christian

  • T60P FCC id's for FCC US custom's Form

    Hello Thinkpad user's
    I'm from Canada and i ship my old T60p to Us California, now, my T60p stay at American custom's and the staff waiting for FCC 740 custom's form.
    Can some one help me to find the FCC id's to fill the custom form and rapidly ship the laptop.
    T60p 8741- c3f
    Thz to all for a fast reply 
    First T22,Next T43,T60P, W700 and S10-3, now W540 (SSD, 16RAM, i7 4800, Etc :-)

    As you have seen above, Apple make their rules/requirements as a condition of obtaining a book selling/free account.
    You wasted time wnadering around the tax website and you  selected the wrong form. All the information required to obtain an  EIN number from the US tax office is on the discussion group.
    Whatever your form filling problems are, only you can decide IF you want to apply to Apple for a suitable account to allow you to submit your  book to their iBooks Store.
    Its an easy process to download the correct document in PDF  form,  print it off,  fill it in and  have  with you when you telephone the corect office in the US. I t will then take about 10 - 15 minutes to answer the question syou will be asked and which you have in writing in front of you to save time.
    BTW, in Aussie, you will also need an ABN number and if you plan selling books, check your banks requirents to recieve payments from the USA.
    If you have an iTunes Connect account  - check out the banking and contracts section for full requirements.
    You can step through the process and opt out anytime without submitting.
    You can start here  for ideas and information.
    https://discussions.apple.com/message/17598506#17598506

  • Best Practice for PDF print forms based on SAP standard

    Hi,
    I have copied the SAP standard PDF form F_D_INT_SCALE_00 to a Z form, and am using it in conjunction with the standard print program RFDZIS01_PDF.  However I need to output some additional fields that are not supplied by the print program / interface (for example Customer VAT number).
    What is the best practice for achieving this?  As far as I can see the only way is to take a copy of the standard print program and modify it to select the extra data, and modify the interface.  I never like taking copies of standard programs though for obvious reasons.
    If I had this requirement with a smartform it would be a simple case of embedding ABAP code into the Z smartform and leaving the print program alone, but unfortunately there is no provision for the non-PDF version of the Interest Letter to be sent by email.
    Thanks in advance,
    Vindaloo

    Thanks for your reply Robert.
    However I think you are referring to Smartforms when you mention Code Initialization and Global Data declarations.  I need to know the best way to modify copies of standard Adobe Print Forms.
    Regards,
    Vindaloo

  • Shopping cart Print Form

    Hi Gurus,
    We just recently implemented SRM 7.0 classic scenario and no changes were made on shopping cart print form provided by SAP.
    We are exploring on the possibility of inputting additional details to be displayed during print out of shopping cart.
    Is there any BADI we can use and smartforms for the changes. Please advice.
    Thanks.

    Hi Gurus,
    I have analyzed the reported issue. Could you please implement the
    BADI BBP_CHANGE_SF_SC and set the custom smartform you require to use
    in the BADI. Once you set the Z smartform name in the BADI the same will
    be used by the system for output.
    I hope this helps you.
    Kind Regards,
    Edel.

  • How to change company code address in Print form used

    Hi.
    I have maintained the company address under the gobal data in config. However when I used the print form to print out the invoice from AP (FBL1N -> correspondence -> Request), the address of the sender / company code is different.
    How do I change the address from the form / invoice ? How to find out where the form pulls the data from ? I tried SE71 but couldn't trace out anytime.
    Please help.
    Thanks.
    Angel

    Check your configuration.
    Please follow the following steps:
    IMG ==> Financial Accounting ==> Accounts Receivables and Accounts Payables ==> Customer Accounts ==> Line Items ==> Correspondence ==> Make and Check Settings for Correspondence
    Define Correspondence Types
    Create Report Variants for Correspondence
    Assign Programs for Correspondence Types
    Define Form Names for Correspondence Print (even you assign your form to blank company code also)
    If you complete these steps you will get the spool request get generated.
    Please ask your ABAPer to change the company code address and logo etc. on the form.
    You go to FB12 - request for the statement
    then go to F.61
    Then go to SP02 - Take print out.
    Regards,
    Ravi

  • Designing Custom CI-Form

    Hi
    I´m working on a custom CI-class with a custom form. Working with Authoring Tool designing the form is a nightmare. So my question is, can i design the layout of the form in any application and after that create bindings ect. in Authoring?
    /Regards

    Hi,
    Yes of sure !
    Try to check this :
    http://social.technet.microsoft.com/wiki/contents/articles/13472.system-center-2012-service-manager-developer-s-survival-guide.aspx
    Extending UI
    SCSM 2012 use WPF (Windows Presentation Foundation) for all UI elements. With
    SCSM 2012 you can extend UI by creating custom elements like:
    Controls (can be placed on existing forms)
    Forms
    Console tasks
    The most common problem with UI componenta is what UI use the IDataItem
    interface and DataAdapters classes to communicate with SDK. So you can't use SDK
    in forms and console tasks directly.
    Overview of the Forms Infrastructure and the Generic Form
    Tasks – Part 1: Tasks Overview
    Open Source
    Projects
    SCSM Incident SLA Management
    SCSM Send Email MP
    SCSM Perf Test Harness
    Examples
    How
    to Create Task Handlers
    Tasks Part 2 – Custom Console Tasks for Create, Edit, Delete
    Creating Custom Forms for Service Manager using Custom Controls:
    Service Request Example
    Create custom UserControl for SCSM 2010 SP1
     (you can use same approach for SCSM 2012)
    Creating a Custom Administration Setting
     (Class, Task, Form, Wizard)
    Service Manager 2012 – How to disable form controls for a Resolved
    or Closed Incident – Part 1
    Service Manager 2012 – How to disable form controls for a Resolved
    or Closed Incident – Part 2
    Insert CI property values into Microsoft Word Template and print
    directly from Service Manager Console
     (console task, Word automation)
    How to add a button to edit ListView item on a custom SCSM form
    Remy BOVI

  • ISU - Print Forms

    hello techies,
    pl tell me what are print forms ? what are different types of print forms ?  any docs and/or links ?
    thanx in advance.

    Please refer below link that explains SmartForms
    http://help.sap.com/saphelp_47x200/helpdata/en/a9/de6838abce021ae10000009b38f842/frameset.htm
    Scenarios
    1) You may want to print order confirmation in a specified format and send it to your customer as soon as you recieve their PO
    2) You may want to print packing slip along with the goods delivered to the customer
    3) You may want to print invoice and mail it your customer
    All these templates to print different kinds of documents in a specified format is called Forms in SAP
    Is this what you are looking for?
    Raj
    Reward points if helpful

  • BADI  to call print form

    Hello Friends,
    I am working on a adobe pdf based print form in the GTS Customs Management module. When the activity message in the communication tab of the customs declaration document is executed by the end user, the adobe form has to be called. Please let me know if you are aware of a relevant BADI that can trigger the print form.
    Thanks,
    John.

    Hi,
    Could you please share the solution also here. I am interested in knowing that.
    Regards,
    Renjith Michael.

Maybe you are looking for

  • FIOS TV Multi Room DVR

    Has anyone else been hung up on after - 10/24 my main tv screen goes blank and they send a replacement box - 10/29 upon return from business trip I learn that new box dropped all 27 hours of recorded programming and reflects no shows to record - this

  • Dynamic Class Instantiating

    Hi, I need to dynamicaly instantiate classes at runtime, that is multiple instances, with different reference variables. I can easily intantiate a number of classes with different object variables, but i need to do it dynamically at runtime. anyone?

  • PE 7 - burn problem on DVD

    Hello, I have already burned DVD in the past with menus with PE7 but now when I try to do it, the program crashes before strating burning the DVD. I can export it to my computer but then I loose my menus. Anyone can help me please? Thanks in advance!

  • Error in connecting to file system repository

    Hi Whn i gav the connection class name as com.bea.content.spi.internal.FileSystemRepositoryImpl , the followin error is thrown. An exception has been thrown while attempting to persist changes for the service: Repository Configuration. Error authenti

  • OpenSSO CLI or alternative

    Hello, I am writing a web application that needs to be able to integrate with openSSO's Federation configuration. Basically I need to be able to find out what SAML2 entities are configured and then be able to delete or import entities. (list-entities