Expanded Selection Criteria in Document Printing Form

Hello
It would be helpfull to have the Expanded Selection Criteria option similar to this function implemented in the Documentation Generation Wizard or the Pick and Pack Manager in version 8.82.
On this way it would be possible to set further limitations for mass printing of documents according to already defined criterias (default and user defined fields).
Best regards

Hi,
You may check here: https://cw.sdn.sap.com/cw/community/ideas/sme/b1
Thanks,
Gordon

Similar Messages

  • Print Layout Designer (PLD) - Displaying Selection Criteria

    Does anyone know how to display the selection criteria on a pld form.  Specifically, I would like to display the selected 'Item Property' on the Inventory > Inventory Reports > Items List report.
    I noticed on the Inventory > Inventory Reports > Inactive Items report that it displays the Date From selection criteria and the document types selected, but I can't figure out how it is doing this. They are Text fields and I don't see any dependencies.
    Thank You

    Vaughn,
    The selection criteria are pre-build to be included on some of the reports and are not on others.  If they are not available on the PLD template you could not add them.
    Suda

  • Debtor Statements Selection Criteria always printed

    Hi all,
    When I print out my cust receivables aging report, is there a way to stop the selection criteria from being printed also?  I am printing summary report, one page per customer.  This is the statement that the cust receives in the mail.
    Thanks,
    John

    John O'Brien 
    Select all the selection creteria fields in debtor aging report PLD
    and detick visble and save changes.
    Jeyakanthan

  • Disable printing selection criteria in SAP reports

    Hi,
    Is it possible to disable the print of the selection criteria when i print an report from SAP.
    Now i always get an extra print and that is not usefull.
    thx
    Mark

    Hi,
    Are u refering to The serial number and batch management report if so that can be disable by print prefernces....
    Try it.
    Regards
    Chidambaram

  • Selection Criteria page printing in the inventory reports

    Hi,
    Selection Criteria page printing in the inventory reports only. How to avoid that?
    For example: batch number transaction report.
    Thanks,
    Olga

    Hi Olga,
    Do you mean you do not want those Selection Criteria to be printed out?  I am afraid that can not be disabled out of box.  The work around could be printing to PDF file first and print the file to printer later.
    Thanks,
    Gordon

  • How to drag out additional field in document printing in B1

    Hi all expert,
    My customer need additional field or information to be show at the document printing window in standard B1. Example like customer name or user define field for warehouse.
    The standard B1 document printing is limited with the form setting is disable. User wanted additional information like printing status, warehouse(using user define field) , customer name able to show out on the document printing window screen.
    Any idea about it? How can i to do it besides using SDK? If using SDK, what is the code i should write?
    Can you give some sample code?
    Regards,
    Eric Tan

    Hi all friends,
    My question still un-answered yet. I think i have to clarify here.
    What i mentioned is when user go -> Sales A/R -> Document Printing, select A/R Deliveries. A list of A/R Deliveries display in the windows form.
    There is only limited field available in the windows form. User now wanted additional field like customer name & warehouse appear also at the document printing form. But the form setting for this windows is dissable.
    I know we can done it using the PLD. But..Can we add in the information like customer name & warehouse code in the document printing form before print out. User need this information to control which warehouse A/R deliveries note have to print out. Example we have 10 deliveries order, it may be need delivery order 1,3,5,8 to print out.
    Thanks. Hope you guy can help.
    Regards,
    Eric Tan

  • Display/Print the Selection criteria entered by USER on the ALV Report o/p?

    Hi Experts,
    I hv a requirement of to print/display the Selection criteria entered by user in the selection screen.........on the top portion of the ALV report output lay out.
    There is a FM for this purpose, but, I forgot its name!!
    So, let me know the FM or FMs, so that, will choose, which is best one,
    or the piece of code, which covers all select-option entries..........appreciated.
    thanq
    Edited by: SAP ABAPer on Sep 3, 2008 6:35 PM

    Use the Function RS_REFRESH_FROM_SELECTOPTIONS get the selection details, now format the data accordingly in the TOP_OF_PAGE using the calss CL_DD_DOCUMENT.
    Check the below mention code.
    REPORT  ztest_page.
    TABLES: sflight.
    DATA : it_flight TYPE TABLE OF sflight WITH HEADER LINE.
    DATA BEGIN OF it_sel_opt OCCURS 0.
            INCLUDE STRUCTURE rsparams.
    DATA END   OF it_sel_opt.
    SELECT-OPTIONS: s_carrid FOR sflight-carrid.
    START-OF-SELECTION.
      SELECT * FROM sflight INTO TABLE it_flight
       WHERE carrid IN s_carrid.
    END-OF-SELECTION.
      CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
        EXPORTING
          curr_report     = sy-repid
        TABLES
          selection_table = it_sel_opt
        EXCEPTIONS
          not_found       = 01
          no_report       = 02.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program          = sy-repid
          i_callback_html_top_of_page = 'TOP_OF_PAGE'
          i_structure_name            = 'SFLIGHT'
        TABLES
          t_outtab                    = it_flight
        EXCEPTIONS
          program_error               = 1
          OTHERS                      = 2.
    *&      Form  top_of_page
    *       text
    *      -->DOCUMENT   text
    FORM top_of_page USING document TYPE REF TO cl_dd_document.
      DATA : dl_text(255) TYPE c.  "Text
    * Add new-line
      CALL METHOD document->new_line.
      CALL METHOD document->new_line.
      CLEAR : dl_text.
    * program ID
      dl_text = 'Program Name :'.
      CALL METHOD document->add_gap.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_heading_int.
      CLEAR dl_text.
      dl_text = sy-repid.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
      CALL METHOD document->new_line.
      CLEAR : dl_text.
      dl_text = 'Selection Criteria'.
      CALL METHOD document->add_gap
        EXPORTING
          width = 34.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
      CALL METHOD document->new_line.
      CLEAR : dl_text.
      CONCATENATE 'SELECT Option' 'SIGN' 'OPTION' 'LOW' 'HIGH'
      INTO dl_text SEPARATED BY cl_abap_char_utilities=>horizontal_tab.
      CALL METHOD document->add_gap
        EXPORTING
          width = 34.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
      CALL METHOD document->new_line.
      LOOP AT it_sel_opt.
        CLEAR : dl_text.
        CONCATENATE it_sel_opt-selname  it_sel_opt-sign
         it_sel_opt-option it_sel_opt-low it_sel_opt-high
        INTO dl_text SEPARATED BY cl_abap_char_utilities=>horizontal_tab.
        CALL METHOD document->add_gap
          EXPORTING
            width = 34.
        CALL METHOD document->add_text
          EXPORTING
            text         = dl_text
            sap_emphasis = cl_dd_area=>heading
            sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
        CALL METHOD document->new_line.
      ENDLOOP.
    ENDFORM.                    "top_of_page

  • Suppress Printing of Selection Criteria page

    Hi Experts,
    Long shot - is there any way to suppress the printing of the first page summarising the Selection Criteria on printing Management Reports etc?
    Thanks

    You can set the preliminary page to a print layout, that is set (in Document Properties/Page Form / Printer ) to a non-printing printer.
    (There are five preliminary page in the layout designer document type list.)

  • Installing and Configuring Adobe Document Services For Print Forms

    Hi,
    I want to use Adobe Document Services,for Print Forms Scenario,on ABAP side.
    I installed the Adobe document Services following the steps in the Installation Guide.I obtained the Credentials file and supplied it during installation.
    Then i followed the steps in the configuration Guide,except for the SSL connection part, as i have chosen Basic Authentication .
    The Web Service is running and on opening the home page,when i test the method rpData,it asks for Username and password,when i supply my username password it says, user does not have rights to method rpData.
    I even tried using J2ee Admin rights,user with SAP_ALL rights, and ADS_AGENT.
    When i test the service from ABAP side,using the RFC destination i created on Client 400,from where i want to use it, the test shows status code OK.
    When i test a form through transaction SFP,it asks for  USERNAME and password,which i tried as my USERID,ADMIN ID with SAP_ALL rights, even with the users i created during Configuration like ADS_AGENT, ADSUser etc.
    Our J2ee Engine is installed on Client 200,i installed the ADS on Client 200 and created the users ADS_AGENt(service user with role SAP_BC_FP_ICF) and ADSuser on Client 200.
    I also activated the ICF services and created the destination for the destination service using Visual Administrator.
    My Issues:
    1)To test the Webservice,what USER ID password needs to be supplied?Do i need some Special role or rights?
    2)During Configuration ,when i create a USer in SAP Web AS ABAP for Basic Authetication,after creating ADSCallers Role and assigning to ADSUSer ,in Visual Administrator,after selecting com.adobe/AdobeDocumentServices*AdobeDocumentServicesAssembly.jar ,under ADSCallers,i ama ble to see the both the users ADSUser(user in j2ee Engine for basic authentication ), and ADSUSER (user type system in ABAP),are visible,
    When try to add ADSUSEr by choosing ADD,from USER Tree , it doesn't do so.So i Added the ADScallers group instead,thus indirectly both users added.Can this be a Problem?
    3)What else do i need to do?Am i missing something?
    Please help.
    Regards,
    Siddhartha

    Hi all,
    I am having an issue in which my ecc could not use properly the ADS on the EP.
    I could properly execute FP_PDF_TEST_00 from se38 transaction which gives the correct version no of ADS.  Also I am able to get the correct version no by giving username and password at http://<J2EE_host>:<J2EE_port>/AdobeDocumentServices/Config  which seems like the ADS is working properly in EP.
    However when the abaper is trying to run his form using spf like ZFORM_VENDOR  it is showing error like
    " Error during activation Message no. EU837 "
    Can you please shed some light on what all steps I need to check to ensure that ADS is working properly ?

  • Syntax for sum in Smart Form based on Selection criteria in Program.

    Hi,
    We have created smart form for printing confirmation entries in desired format. We have given some selection criteria in the program. Now, we want to do the sum of certain fields in the smart form based on selection criteria given in program and selection screen.
    But we are getting wrong sum in the smart form than expected.
    When we debug the program during run time, we are getting correct records as per our expectations. But result of sum in the out put is not as per given selection criteria.
    Do we need to establish link between "select option" and "Smart form"? How can we use internal table created for select option in the smart form?
    Thanks & regards
    Vijay

    Hi,
    There will be no option to sum the values in smartforms, You just have to sum and append the data to internal table and display the internal table data in the form.
    Regards,
    Satish

  • Urgent. Selections in PDF print forms

    How to make selections in PDF print form and connect them with fields on the form?
    For example, we get the number of a document and other attributes as IMPORT.
    But we need to put out other data according to this number of the document(information) on the form. How to make it?
    And how to make One body page print a few times (depending on the amont of positions in the document)?
    HELP PLEASE.

    1. Your interface, application program and form layout need to be modified accordingly. You can refer to <a href="http://help.sap.com/saphelp_nw04/helpdata/en/c8/4adf7ba13c4ac1b4600d4df15f8b84/frameset.htm">the documentation</a> on how to do this.
    2. In the Designer, 'Restrict Page Occurences' on the Object > Master Pages properties for your master page.
    Regards,
    Francois

  • Print Selection Criteria-Token in report prepared with CR

    Hi,
    How to print the Selection Criteria---Specially 'From Date' and 'To Date' for a report prepared with Crystal Report tool to be viewed within SAP Business One 8.8 (The report uses Token Parameters for SBO 8.8 Viewing)
    Thanks,
    Saikat

    Hi Bala,
    Ok...So can help me on this.......
    The token in my Report is :
    Date : Static-Type: Date-Allows Range Values
    Within SBO 8.8 displays as Date : From <Date Selection Field> To <Date Selection Field>
    Please note its a single token allowing range values.
    Formula I am using: {OPOR.DocDate}>={?Date} AND {OPOR.DocDate} <={?Date}
    Now I need to print the selected 'From Date' and 'To Date' in the Report.
    If there is any other process to do the same then please let me know the same.
    Thanks,
    Saikat

  • Printing a selection from a document using HP E Print

    Hello all,
    Is it possible to print a selection from a document using e-Print? I currently can emailt he entire document to my printer however that is it.

    Hi dayanks101,
    Thank you for being a member of the HP Support Community. I see that you would like to learn how to choose which pages print from a multi-page document.
    Since you have the document in an email already it’s fairly easy to choose which pages you would like to print if you are using the HP ePrint app. I’m presuming that you have already download the HP ePrint mobile app to your iPad and added your email account to the app.
    Please follow these steps after you have opened the HP ePrint app
    Choose the email with the document you need to print.
    Please choose the document you want to print (for my screen shot the file is titled “scan 2014_05_29 08-55-01.pdf). This will load the document with the available print options.
    Please tap on “Page Range”. It will give you the options of ‘Single’ or ‘Multiple’.
    If you are choosing to print just one page please choose ‘Single’ and then choose the page you would like to print.
    If you are choosing to print a range of pages please choose ‘Multiple’ and then choose the page range you would like to print.
    I hope this helps you print just want you need.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • FBZ5 print form for payment document , where is configuration for form ?

    Hello everyone.
    in transaction code FBZ5 print form for payment document.
    which transaction code that used for configuration form for print in FBZ5.
    plese help.

    Hi,
    Forms developed by ABAPer, discuss with Technical people.
    as a functional we can use form for check printing based on our comp requirement.
    FBZP (Payment method per comp code) we are assign form, that same form we are using for FBZ5 also.
    Creation Form T.Code: SE71
    Regards
    Viswa

  • How to ignore the selection criteria temporary page in print

    Hi Experts,
    I use 2007A and when i would like to print example a Trial Balance then the system prints the selection criteria on the first printed page .
    How can I delete or ignore this option? There's no need for this print.
    I was searching in help files but with no success.
    Thanks,
    Eszter

    In Administration > System Initialization > Print Preferences > General Tab
    There is a checkbox for "Print SAP Business One Generation Message"
    Uncheck it to not print the first page with selection criteria.
    Hope this was what you were looking for.

Maybe you are looking for