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

Similar Messages

  • 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

  • How can i print Selection criteria on report

    hi
         i want to print my selection criteria on the report i.e.
      i have to select-options 1. plant 2. date
    then now i want to to print these on header of report as:
         HEADING
         PLANT :  <SELECT-OPTIONS for Plant>  TO <SELECT-OPTIONS for Plant>
         DATE   :  <SELECT-OPTIONS for Date>  TO <SELECT-OPTIONS for Date>
         then data for report .
      how i can do it .

    The SELECT-OPTIONS can be referenced like and ordinary table in your ABAP.  So if your select-option is called S_PLANT it is a table with fields LOW, HIGH, OPTION, SIGN.
    LOW is the 'from' value, HIGN is the 'to' value, OPTION is the comparison (BT, EQ etc) and SIGN is I or E (include or exclude).
    Remember is is possible (unless you have defined your select options to limit it) to enter multiple row and exclusions in select-options, so you cannot be sure of a simple 'from' and 'to' range.
    Regards,
    Nick

  • How to add a new selection criteria in a report painter

    Hi
    I would like to know how to add a selection criteria in a report painter. I believe in Gen data we can add our selection criteria but my there is no option to select  company code in that. Can anyone help me in this
    Thanks in advance
    Sankar

    hi sankar,
    When u click on the Gen. Data Selection on the right side of the screen you can see the Available Characteristics.
    On the same side u can see with the 3 colors blue, yellow and white....
    Click on the that , in that screen click on the Administrator option.
    There in that screen UNCHECK the company code.
    Click on the ACTIVATE and CLOSE it.....
    Again SAVE the table settings.... then you can find the Company code..
    Hope this will helps u out...
    Ranjit Kumar 

  • Selection criteria in GR55 Reports

    Hello,
    Where do I customize the selection criteria in the GR55 reports? It's bringing a Controlling Area default that is 0001 and I want to change it to bring the controlling area from the company code defaut.
    I changed it in SU3 and worked for myself, but I wonder where can I change for all the users.
    Thanks
    Barbara

    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

  • Displaying selection criteria in ALV report output

    Hello,
    I’ve been using REUSE_ALV_GRID_DISPLAY function module to display my report content in ALV.
    My report’s selection criteria has parameters, select options, checkboxes and radio buttons.  As part of the ALV output, I want to display the criteria that the user had selected in the selection screen.  I was hoping to do that via parameter "i_callback_top_of_page" and fill the selection criteria in the header area.  I'm using REUSE_ALV_COMMENTARY_WRITE to fill the header area. 
    However, the header area takes too much of view space in the output if I put all the selection screen information in it.
    Is there a way to make the header area scrollable?  What is a good way of displaying the selection criteria information as part of the report output?
    Appreciate your help.
    ss

    Hi SS,
    1. The purpose of displaying / writring
       selection information
       in alv is
       for identifying what the user has seleccted,
       directly from the report (when its printed)
    2. So, the option of priting/writing
       it on the TOP of alv, is ok.
    3. However, U can also choose to WRITE
      it at the BOTTOM (instead of top)
    4. Try to utilise maximum spacing (horizontally)
       field1 : abcd      fidl2 = xyz  field3 = ppp
       field4 : mnc       etc.         etc.
    regards,
    amit m.

  • Change Selection criteria for existing report in Report painter

    Hi Experts,
    We are on 4.7, using report painter for getting reports for Cost center & Profit Center. For one of the report we have selection criteria as Cost center and cost center group, but now user want us to add new selection field as Cost element and cost element Group to same report. We have tried all the options from GR32 ->Edit-> General Selection, but we don't find cost element in Key figure listed there.
    Please let us know how can we add the new field to selection criteria. We also would like to know is this is possible with existing report  to add new fields or not? Is that we need to create new report for this?
    Thanks in advance..
    Shilpa

    Shilpa-
    In my opinion the best way to troubleshoot issues like this is to go to SAP delivered standard reports and see how they are setup. For example, in your case you want to add cost element and cost element group to your report. There is one standard report from SAP - Transaction :S_ALR_87013611 which has both cost center, cost center group and cost element, cost element group in the selection criteria. You can look how this report is set up, and maintain your report in a similar fashion. Atleast this way, it will give you an idea.
    Go to transaction code GRR3 and under library look for report "1SIP-001". By double clicking on the row, you will see how it is maintained.
    Hope this helps.
    Shail

  • Disabling printer selection screen

    Hi All,
    I have developed a smartform which will be printed throug a normal report.
    When i am executing the report, i am getting the pop up screen for selecting the output device, etc...i want to disable this screen, so that after executing the report, i can directly see my output with out this printer selection pop up screen.
    Thanks,
    Raju

    Hi Raj,
    here is a piece of code.
      DATA:
        W_INPUT   TYPE SSFCOMPIN,
        W_CONTROL TYPE SSFCTRLOP.
      W_INPUT-DIALOG = 'X'.
      CALL FUNCTION 'SSFCOMP_OPEN'
        EXPORTING
          INPUT = W_INPUT
        EXCEPTIONS
          ERROR = 1.
    LOOP AT IT_FINAL INTO WA_FINAL.
          W_CONTROL-NO_OPEN   = 'X'.
          W_CONTROL-NO_CLOSE  = 'X'.
            CALL FUNCTION FNAME
              EXPORTING
                CONTROL_PARAMETERS = W_CONTROL.
      ENDLOOP.                          
      CALL FUNCTION 'SSFCOMP_CLOSE'
        EXCEPTIONS
          ERROR = 1.
    The above can be also used for Single spool generation.
    Thanks & regards,
    Dileep .C

  • " STEPS TO  CREATE SELECTION CRITERIA IN WEBI-REPORTS ! "

    Hai friends ,
                                Let me know the procedure  to create a Selection Criteria on the webi-reports . Based on the Selection criteria, I should execute the report.

    aNSWERED

  • Using custom fields of Infoset as Selection Criteria in Query Reporting

    Hi Experts,
    I have created one Infoset based on LDB PNPCE and added some custom fields to it. Coding has been done for the custom fields.
    But these additional custom fields are not available as selection criteria while creating the query.
    Can you please tell me how to use the custom fields as selection criteria?
    Reply soon
    Thanks in Advance.
    Raveesh

    Hello Guys,
    I just noticed that it is possible to select custom fields as selection criteria in case of SAP Query,
    but NOT is case of Infoset(Adhoc) query.
    Can anyone tell me the whether it is possible to select the custom fields as Selection Criteria in case of Infoset Query?
    Thanks in Advance,
    Raveesh

  • Navigational Attrribute of 0plant in Selection criteria of the Report

    Dear ALl,
    We are facing an issue where we ares entering the inputs for Report Selection Criteria
    plant
    fiscal year period
    currency type &
    company code ( company code is the navigation attribute of the plant )
    When we enter plant, fiscal year period & currency with out company code we get the output. But when we enter the value for company code it doesnt shwo the data it shows no applicable data found.
    hence i would like to understand whetther we can use the company code which is the navigation attribute of the plant in the selection screen of the report via a variable?
    If yes why is my report showing no applicable data found. Request your suggestion on  this.
    Thanks & Regards
    K janardhan Kumar

    Hi Janardhan,
    Please check if your Plant Master data is loaded as well.
    Another check you can do is, when you run the report only on Plant, Fiscper and currency, drill down on Company Code (which is attribute of Plant) and see the values you get there. That might give you a hint.
    Also, you can check if for the company codes you enter while selection, is there transactional data present for the corresponding Plant.
    Other than this, its perfectly alright to use a navigational attribute as selection filter in the report.
    Thanks,
    Abhishek.

  • How to control the printer selection popup in SAP SCRIPT .

    Hi all,
    I have written a print program which is calling 5 different layouts forms and printing all the shipping related documents such as packing list, delivery note, shipping label etc . The print program is
    attached to a single output type ZEDM. 
    The issue is that for printing every document a pop-up comes for the printer selection and i want
    only one pop-up and all the document should be printed.
    Can anyone tell how to control the pop-ups.
    Thanks and Regards,
    Syed

    Hi,
    Open the form with dialog once. and then other forms pass ' ' to dialog parameter in OPEN_FORM .
    Open the form for printing
      Capture the return code
      Capture messages
    Other froms
    Open the form for printing
      Capture the return code
      Capture messages
    Whenever you have a new form use START_FORM
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          device                      = 'PRINTER'
          dialog                      = 'X'
          form                        = p_fname
          language                    = sy-langu
          OPTIONS                     = p_itcpo
        EXCEPTIONS
          canceled                    = 1
          device                      = 2
          form                        = 3
          OPTIONS                     = 4
          unclosed                    = 5
          mail_options                = 6
          archive_error               = 7
          invalid_fax_number          = 8
          more_params_needed_in_batch = 9
          spool_error                 = 10
          codepage                    = 11
          OTHERS                      = 12.
      IF sy-subrc <> 0.
        w_retcode = 1.
        PERFORM protocol_update.
      ENDIF.
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          device                      = 'PRINTER'
          dialog                      = ' '
          form                        = p_fname
          language                    = sy-langu
          OPTIONS                     = p_itcpo
        EXCEPTIONS
          canceled                    = 1
          device                      = 2
          form                        = 3
          OPTIONS                     = 4
          unclosed                    = 5
          mail_options                = 6
          archive_error               = 7
          invalid_fax_number          = 8
          more_params_needed_in_batch = 9
          spool_error                 = 10
          codepage                    = 11
          OTHERS                      = 12.
      IF sy-subrc <> 0.
        w_retcode = 1.
        PERFORM protocol_update.
      ENDIF.
    CALL FUNCTION 'START_FORM'
        EXPORTING
          form      = w_fname
          language  = sy-langu
          startpage = 'PAGE'
          program   = sy-repid.
    Regards
    Krishna

  • Limited drop down list in selection criteria in Crystal Report

    I have designed a Crystal Report to produce Item Labels using Crystal Reports for SAP Business One.
    The design has a Dynamic parameter for the selection of Item Code, linked to the OITM table in the database
    The customer database has 5000+ items.
    When I run the report, either in the designer or in the viewer, I get 5 pages of item codes to select from, but they stop at 1000 items.
    Is this a bug with Crystal, or is there some configuration I can change to correct this issue?

    Closed

  • Selection criteria in XL Reporter

    Hi,
    I am currently writing a sales report using XL Reporter.
    It needs to allow user to specify the document date and Item Group that they want to look at.
    (a) Item Group
    The only dimension that I can retrieve "Item Group" is Dimension Item.
    If I create a parameter for Item Group refering to Dimension "Item", the Item Group displayed for selection is duplicated because there are > 1 item group in OITM.
    Is there a way to get around it?
    (b) Documentation Date
    How to set up a parameter that refer documentation date?  I can't use dimension "Financial Period" because the use needs to specify document date wanted not Financial Period wanted.

    In case anyone is interested
    (a) Item Group - reply from SAP support, by design, it is attached to Dimension Item.
    (b) Document Date - use Dimension "Transaction Row", Attribute "Document Date"

  • How to suppress blank page and selection criteria in SPOOL ?

    My Z program submits two programs to spool and converts the ABAP List in the spool to PDF and emails.
    After upgrade to ECC6, the first (a report painter report) resulting PDF there was one blank page and the contents were displayed on second page. For the second report (RKPEP003 - CJI3)  the selection criteria that the report used was printed as the first page of output and the result on a subsequent page. The same thing happens when I individually execute these two reports directly in SE38 with the same selection criteria. I believe the blank page is there in the spool because when I view the spool as a RAW, there is a P in the first column, however the spool shows that there is only one page in the first and two in the second (this is true - one for selection criteria "which I don't want" and then the actual content). In 46C, when I look at the RAW view of the spool there is no additional P's in the first column.
    I do not want to have the blank page on the first report and the selection criteria listed on the output of the report. How can I do that ? I am thinking get_print_parameters can in someway get me there, but I am not sure.
    Thanks
    Hari
    Edited by: Hari Sudarsanan on Apr 8, 2009 7:28 PM
    Edited by: Hari Sudarsanan on Apr 8, 2009 8:05 PM

    The first report painter program writes a regular ABAP list.
    The second outputs an ALV.

Maybe you are looking for

  • Why is my JavaServiceFacade persist() method is receiving NULL object

    My jDeveloper version is 11.1.1.3.0 I have a jspx in which i want to save an employee into my DB on the click of submit button. I have made an entity object(Employee.java) made from a table EMPLOYEE. I then exposed this entity bean using a JavaServic

  • How do I get a byte array from an object passed into the JNI?

    This is what my java code looks like: public class streamedData protected byte[] m_value = null; public byte[] getByteArray () return m_value; /* code not pertaining to this question snipped. */ jclass streamedDataClass = env->GetObjectClass(jstreame

  • Why is iPhoto 9.4.2 so big?

    I just upgraded to iphoto 9.4.2 from v8. The application (app) file was only 406.1mb in size but is now a whopping 1.6gb. It appears to work OK although not surprisingly it takes a few seconds to load. Can anyone explain why it is so much bigger?

  • Using a Data Object in Place of a Database Connection

    <p>We've got about 2000 users that will need to access the same data set for an on-demand report.  We're using logic at report run time to restrict how much of that data set a given user can see.  We'd like to avoid the stress on our database server

  • Import from iphoto fails every time.

    Import from iphoto fails every time.