Summary Report  is carried over to other reports when the reports

Hi ,
Did anybody have an experience of a customized invoice report that needs to show invoice summary amounts in all pages if the invoice has more than one page? My company requires that the summary amounts have to be at the bottom of each page.
I created three repeating frames (A, B1 and B2). A is the invoice line group. B1 and B2 are in the same group of invoice header. B1 is the invoice customer information and B2 is the invoice summary information. In this case, I can force B2 stay at the bottom.
The invoice report will be fine if only one invoice is printed (the summary amounts will show up at all pages if the invoice page is more than one). But the problem will appear if a user tries to print mutiple invoices at the same time, i.e., run report in range. The summary amounts in the first invoice will be carried to all other invoices, which means that the summary amounts do not reset at invoice level.
Please help!!!

Hi FJK,
Thank you for your quick response!
The invoice will print the summary amounts at all pages when a user prints one invoice at a time. The summary amounts will not display correctly if muitlple invoices are printed at the same time (I have parameters of invoice_number_low and invoice_number_high that allows users to print invoices in range). The summary amounts in the first invoice will be carried to other invoices, which are not correct.
Sean

Similar Messages

  • Getting the variant name when the report program is run in background

    Hi All,
    How to get the variant name for the report program when run in background? My requirement is to create an email attachement with the name 'variant.XLS', where variant = selection screen variant, when the report program is run in background. The system field SY-SLSET holds the variant name only when run online.
    Any pointers to this will be highly appreciated.
    Thanks and regards,
    Nilesh.

    Hello Nilesh,
    Please find the algo:
    1. Call the FM: GET_JOB_RUNTIME_INFO to get the background job details.
    2. Select data from TBTCP using these details:
    DATA:
    FP_EVENTID   TYPE BTCEVENTID
    FP_EVTPARM   TYPE BTCEVTPARM
    FP_ACTIVE    TYPE BTCXPGFLAG
    FP_JOBCNT    TYPE BTCJOBCNT
    FP_JOBNM     TYPE BTCJOB
    FP_STEPCNT   TYPE BTCSTEPCNT.
      CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
        IMPORTING
          EVENTID                 = FP_EVENTID
          EVENTPARM               = FP_EVTPARM
          EXTERNAL_PROGRAM_ACTIVE = FP_ACTIVE
          JOBCOUNT                = FP_JOBCNT
          JOBNAME                 = FP_JOBNM
          STEPCOUNT               = FP_STEPCNT
        EXCEPTIONS
          NO_RUNTIME_INFO         = 1
          OTHERS                  = 2.
      IF SY-SUBRC <> 0.
    *   Error calling FM: GET_JOB_RUNTIME_INFO
      ENDIF.
    DATA: FP_VARIANT TYPE BTCVARIANT.
      SELECT JOBNAME JOBCOUNT STEPCOUNT VARIANT
      FROM   TBTCP
      INTO TABLE L_IT_TBTCP
      WHERE  JOBNAME   = FP_JOBNM
      AND    JOBCOUNT  = FP_JOBCNT
      AND    STEPCOUNT = FP_STEPCNT.
      IF SY-SUBRC = 0.
        SORT L_IT_TBTCP BY JOBNM JOBCNT STEPCNT.
        READ TABLE L_IT_TBTCP INTO L_WA_TBTCP INDEX 1.
        IF SY-SUBRC = 0.
          FP_VARIANT = L_WA_TBTCP-VARIANT.
        ENDIF.
      ENDIF.
    Hope this helps.
    BR,
    Suhas

  • Crystal Report Runtime Error 9.0.Could not open the report

    Hi,
    Getting the Crystal Report Runtime Error 9.0.Could not open the report while Run on Launch Application. Actually in Launch Application, created a link for exe which is having crystal reports. We can open the Crystal Reports from the exe outside B1.
    Note: SAP 2007, Crystal Report 2008 is using.Normally can open crystal report.
    Any help to fix the error is appreciated.
    Thanks & Regards,
    Parvatha Solai.N

    Hi,
    Please post screen shot of error message here.
    Thanks & Regards,
    Nagarajan

  • Need to send Automatic mails when the report successful or Fail.

    Hello Experts,
    Created one report for reconciliation to check BW and R/3 figures.
    There are exceptions designed using reporting Agent settings on the same report.
    (When the values from R/3 to BW are matching it shows Green color and if the values are not matching report shows red color in the columns.)
    There are some mandatory variables for Company code, Period and Currency Type.
    Selections for  Company code and Period are fixed but We have three currency types (00,10,30)
    Reports needs to be executed for three currency types.
    Requirement is that
    when the report is executed for One currency type  (Ex u2013 00)
    If the key figure column shows Green color , Immediately mail has to be sent to necessary mail IDs saying the status successful.
    If the key figure column shows Red color , Immediately mail has to be sent to necessary mail IDs saying the status Failed.
    Like this the same report has to be executed for other two currency types and send the the same status as above phenomenon.
    Sending mails can be taken care by BASIS people with SMTP configuration.
    I want to know the development needs to be done from BW side.
    Are there are any settings in BW to send the message as Successful  when the report shows green color and message as failed when red color appears in the report.
    Regards,
    Siva.

    Hi,
    As i understand you need to set up an alert framework.
    Please check :
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b6d59590-0201-0010-5f9d-adb9f6b14d80?quicklink=index&overridelayout=true
    This can also be achieved using BEx broadcaster
    Please check :
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/efdbd593-0e01-0010-4eb1-a09ffedd550a?quicklink=index&overridelayout=true
    Hope this helps.
    -Vikram

  • When the reports will be posted to the report node

    Hi ,
    I am wondering that when the reports will be posted to the report node. Whether the reports are posted to the node once the creation of the single report finishes or the post action will be performed until the finish of the process?
    Anyone has this experience ?
    Thanks in advance!

    on a process like PSJob, each individual process is treated as a separate instance. every instance gets posted separately.
    the overall distribution status gets updated once the complete job finishes.
    that is same with single processes or reports. the overall process status can get updated at the end, but the posting of report to the report node will be done as soon as the instance run completes. it does not wait to transfer the complete reports at the end of the job.
    Thanks

  • The last day of the month when the report is run

    Hi,
    I am working on custom outbound idocs for FICO module through INTERFACE Program  the third party sytem needs <b> "The last day of the month when the report is run"</b> so is there any sytem field or standard SAP Sytem Table field which can give me that value.plz let me know ASAP.
    Other wise should i develop  custom logic.

    Hi,
    Try this way.
    Selection-screen
    PARAMETERS: p_bldat LIKE bsis-bldat .
    INITIALIZATION.
      DATA: v_end_date LIKE sy-datum.
      CALL FUNCTION 'LAST_DAY_OF_MONTHS'
        EXPORTING
          day_in            = sy-datum
        IMPORTING
          last_day_of_month = v_end_date
        EXCEPTIONS
          day_in_no_date    = 1
          OTHERS            = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      p_bldat = v_end_date.
    Thanks,
    Anitha

  • Pull other attributes into the report

    Hi,
    I am customizing the user reports,where I need some other attributes.
    I am trying to get some other resource attributes from LDAP,These attributes are mapped in the resource schema.If you try to create a user report,then u will see some attributes that can be displayed,
    How can I add other attributes to that list.How can I go about this.
    Thanks,
    Pandu

    Hi,
    to change descriptions dynamically based on some conditions
    crtate text variable with replacement path. in context menu of info object u will find properties there beside description field there is one yellow color icon click on that and create one variable with replacement path.
    this will replace with some other char variable in ur report.
    based on conditions u require create one char var. and replace text var with this char var.
    assign points if it helps,
    thanks,
    pavan.

  • Sending an email when the report is being refreshed

    Hi All,
    Is it possible, in Answers, to send an email automatically when a report is being refreshed ?
    Thanks in advance,
    Lau

    You can do this multiple ways, As you mentioned using conditional ibot also. You should have flag or indicator in your database saying that ETL load was done. Then based on conditional request run a ibot. But the trick is after completing this ibot you need to turn of the flag.
    Other easiest way is Create a report which runs ibot, Make sure you checked Oracle BI Server Cache feed check box, save the ibot. At the end of ETL execute a command which runs the ibot job for you. There is a command mode application available in Oracle BI called SASchInvoke.exe. This application will run the ibot for you.
    here is the blog which explains more about it.
    http://oraclebizint.wordpress.com/2008/03/06/oracle-bi-ee-101332-integrating-schedulerdelivers-into-other-applications/
    - Madan

  • Web part created on a subsite for a sharepoint list in another site using sharepoint designer, to show only the subsite's reports. Connection dropping off and showing all the reports

    I crated web parts in the sub-sites (we have about 10 subsites) using sharepoint designer from a main list in another site.  Then used web part to show only the  ubsite's reports - using connection to the main list.  Problem is, the connection
    is dropping off and showing all the reports on the main list that are confidential.  this has happened 3 time lately.  Could someone explain why it happens some times?  I had to fix it by adding the web part again and connecting it
    Thanks, Subathy.

    Hi George,
    If you want to use a top level site "department" list column in all sub-sites, you can go to top level site and create a
    lookup type "Site column" to look up the value from the department list, then all sub-sites can use this lookup type site column created in top level site.
    Thanks 
    Daniel Yang
    TechNet Community Support

  • Graphs not shown in EXCEL, when the reports server is secured with SSL

    We installed a SSL certificate on the reports server to run as https instead of http and the graphs in the reports stopped working for desformat=EXCEL. The graphs in the pdf output run fine.the version we are using is Oracle reports 10g

    Hi,
    I had similar kind of problem and see below for details.
    I am using Vertical bar charts in my RTF Tempalte and output format is EXCEL. When i am prevewing from BI Publisher desktop output it is showing the charts . When i Used same template and running in the server side(i.e oracle applications concurrent manager ) it is not showing the charts in the output. If i run the same template through oracle applications concurrent manager with PDF output it is showing charts in the output.
    Please share your thoughts/experiences/suggesition regarding this.
    If any help appreciated.
    Thanks,
    Dinesh

  • Oracle Apps.XML reports ending with warning when the report output contains

    Hi I have XML reports. When we run these reports as concurrent program through Oracle Apps. window and if the report output contains special characters(like Chineese data) in between of English, then the concurrent program is ending with warning. If we remove special characters then it is working fine or when we run the report query directly from backend it is working fine.
    We are importing this data from legacy system into oracle apps. and we can't control these characters or decode them with some other charactes.
    Can any one guide me how to get the XML report output with special characters.
    Thanks in advance.
    Chandra Babu Lankipalli.

    Hi Hussein,
    The concurrent program is ending with Warning. It is unable to publish output file.
    For the same when we remove special characters and run the program it is completing and generating the
    output. The log fine is as follows when the data file contains special characters.
    Custom Application: Version : UNKNOWN
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXFA_AR_WIN_EXCEPTION module: XXFA AR Wintrack Customer Interface Exception Report
    Current system time is 23-MAR-2009 05:33:19
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_CUST_ERRORED='3'
    P_CUST_SUCCESS='0'
    P_CUST_TOTAL='3'
    P_REQUEST_ID='4661283'
    P_USER_NAME='SYSADMIN'
    APPLLCSP Environment Variable set to :
    XML_REPORTS_XENVIRONMENT is :
    /d01/oracle/fadevora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /d01/oracle/fadevora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    Report Builder: Release 6.0.8.25.0 - Production on Mon Mar 23 05:33:19 2009
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Enter Username:
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 4661284 on node FAHQSNA01SFTD03 at 23-MAR-2009 05:33:20.
    Post-processing of request 4661284 failed at 23-MAR-2009 05:33:21 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 23-MAR-2009 05:33:21
    Thanks in advance.
    Chandra

  • Report header disappered for one user for all the reports

    Hello All,
    For one of my user the report header is disappered - for all reports he will execute.
    for all other users - they can see the header.
    How to solve this issue ?
    Thanks and Regards
    JJ

    it was related to SAP GUI - solution was to reinstall SAP GUI

  • How to Fecth data from LDB FMF when the report is already using LDB FMB

    Hi ,
    i have a standard program(T. Code - FMB_PT01) that uses logical database FMB.
    When I run this report it will display Budget value and Budget consumed  value.
    When the user double click on total amount .
    Another report RFFMTO10X will be called using submit statement.
    It will show the Respective  Budget Consumption value totals acc to the value type .
    In Report RFFMTO10X  data is retrieved using  logical database FMF .
    But now my requirement is to bring  budget consumed total wrt to value type field from Report RFMTO10X in to  the basic 
    output list.
    For that I have copied standard Report RFFMREP_LDB_PT01 into ZReport and I have added new field in the fieldcatlog.
    but how to bring the budget Consumed wrt to Value type in the basic output  list..
    Please help me
    Regards,
    Edited by: victor B on Jul 4, 2009 12:35 PM

    Hi,
    you can try to call another program using submit and that program will export your required data into memory (EXPORT statement). After successful call of the second program you get your data from memory (IMPORT statement). Or you can try to call subroutine in the second program and use subroutine interface to pass data to and from second program. BTW the logical databases are obsolete so you can also write your own logic to get required data directly from DB.
    Cheers

  • Save when the report run in BPC and pull&show LAST Rundate-BPC5.0

    All,
       We have one report on which we forecast positions and send data to BPC. Next time when we open report we also see the old forecast data and we never new data. I was wondering, is there a way I can save the "Report Run date   in BPC when we send data using script/procedure   and next time when user pulled up the report we can show the "last time ran" date? This way user knows when the last time he/she ran the report. Otherwise he/she has to keep manual track of run date.
    Thanks.
    Saquib
    SAP BPC version 5.0

    Not sure what you are asking...
    1) '' isn't the same thing as NULL. '' is an empty string.
    2) The "0" simply set the format of the output string created by the ToText function.
    When you use the ToText function the default output is to add a decimal followed by 2 places after the decimal...
    For example:
    IF {#DetailRTotal} = 22
    The default of ToText({#DetailRTotal}) would be 22.00.
    If you want to trim that down to just 22, you would change the formula to this...
    ToText({#DetailRTotal}, "0")
    The format is now set to display at least 1 whole number and no decimals.
    In fact, if you want to clean up your formula... Re-write it like this...
    RIGHT(ToText({#DetailRTotal}, "0000000"), 7)
    This will force a 7 character minimum format in in the ToText function and the RIGHT(........, 7) will trim off any characters that exceed the 7 character limit.
    So if  {#DetailRTotal} = 22
    RIGHT(ToText({#DetailRTotal}, "0000000"), 7) will yield 0000022
    If  {#DetailRTotal} = 123456789
    RIGHT(ToText({#DetailRTotal}, "0000000"), 7) will yield 3456789
    HTH,
    Jason

  • How to import for other mac when the initial set up as already been done?

    I've just got a new macbook from my organization but the IT people have already set up the system in order to install some applications. I know that when you open a new system, you can choose to import data from your old computer but how can you do this when the set up as already been performed without importing the data from the old computer? I don't want to reinstall the system since I would loose all the new applications and the IT people don't want to reinstall them.
    My old laptop is an Ibook G4 1.07 with 10.3.9 and the new one is a macbook 2.16 GHz with 10.4.10.
    Thanks for any help
    Thierry

    Hi Thierry,
    You can connect the two Macs in *target disk mode*, see this document:
    http://docs.info.apple.com/article.html?artnum=58583
    and copy any file you need from the iBook to the MB.
    Start with the safest though:
    Use the "import" functions in all applications that offer this possibility.
    Only with the files that you can't import through GUI, you can go on further and copy the Applications Support files, the Preferences, etc
    (usually in Home/Library, some rare cases in Macintosh HD/Library).
    Axel

Maybe you are looking for

  • SEEBURGER adapter - How much does it help?

    We have a PI box just installed and we'll be implementing a few EDI transactions with some business partners. I was told that SEEBURGER is the preferred EDI adapter for EDI transmissions from PI (XI). 1 - How much does SEEBURGER help the development

  • Does the iMac have the ability to view a second video input?

    Basically can a VGA input show on an iMac? I have a desktop that I'd still need for certain work related software packages. I'd rather not have a a second monitor on my desk. Thanks.

  • How two merge two apple accounts

    I have two apple id's. One from my mobile me and one from the i-cloud. I want to merge tehm into one. Is this possible and if so how does this work?

  • Output audio is dead meters are working

    Final Cut Express 4.0.1 on iMac 10.6.8.  I just turned on my mac and the FCE came up as usual.  Problem there is no sound.  When I go to iTunes sound is fine.  The meters are working but no sound.  How did I mess it up? Dale

  • Can't open iphoto becaused it's damaged

    I had to reinstall iLife 11 and now my iphoto can't be opened. please tell me what to do to repair it