Two report instances created by one recurring scheduled instance

I have one scheduled recurring report  instance that looks to be creating two seperate successful completed instances when it runs daily.  There is only one report file and one recurring instance but each completed instance has seperate titles.  How can one be removed / deleted?  Or, is there some way to id how / where the second instance is be created?

Moved to businessobjects Forum

Similar Messages

  • Two idocs are created for one output message type

    hi all,
    we are communicating our sap idocs to external system using ALE.It is working smoothly.
    Our problem raises here,
    .idocs are creating at the time of output type attachment for purchase orders.But rarely,two idocs are creating for one message type.It means two idocs are created for same Purchase order.It makes complications for the external system.
    anyone can help me pls?
    thnks in advance..........

    thanks jurgen for ur reply,
    jurgen, the second idoc is not an "ORDCHG",It is the replica of first idoc.This one has also "ORDERS" message type.The only difference between these idocs are the time.It means the difference between the time field segments of these idocs have only three(3)seconds difference.We think that its from the system error.If it is not from the system error pls give me the explanation.
    thanks in advance.......

  • Two different invoices created for  one order for two different lines

    Hi All,
    I have an order with four line items that was shipped on the same day, invoiced on the same day and all lines have the same delivery number yet two inovices were created for this order..one for the first three lines and one for the last line.
    Can anyone please explain what can cause this to happen?
    Thanks
    A/A

    Hi Asgar,
    If a single order has been split into two invoices, you should check the values of the mandatory columns. During Autoinvoice, the grouping is based on the madatory columns and also your grouping rules. If any of the mandatory column has a different value, it will split into different invoice.
    Please refer the following metalink note for further details
    Subject: How Autoinvoice Grouping Works
    Doc ID: 98772.1
    Hope that helps.
    Thanks,
    Anil

  • Two shipments getting created by one delivery

    Hi,
    I have a problem in which 2 shipments are getting created for one Delivery document, whereas only 1 Shipment document should be there. When I analysed the shipment documents, I found that the shipment route and forwarding agent are different in both the documents.
    Any idea why this is happening? Also, want to know-
    1. Is it possible to combine deliveries of different Routes and Fwd agents into one shipment document (VT01N) ?
    Thanks.

    hello, friend.
    it is possible to have 2 or more routes and 2 or more agents in a collective shipment.  in this case, there is a main route and the sub-routes become stages.  it is possible that each stage could have a different agent.
    in your case as originally stated, you may not combine more than 1 route or agent in an individual shipment.  if your items in the delivery document have different routes or agents, then these items will be split into different shipments.
    regards.

  • Merge Two Reports in Excel Analyzer - One To Many Relationship

    I want to show AR Data with CO Data - e.g. a bill + Income and it's associated account ssignemnt on the FI/CO side. I want the report to be able to show a cost centre manager to be wary of the income credited to their cost centre when a debtor has been raisedaas they may not fully pay the bill. To do this I'm using the standard DSO for AR & GL line items. Fisrtly I run a query on GL line item data where the user can select from a cost centre variable to look at credits to their cost centre. This produces a list of source documents that are used (via replacement path variable) in a second query. The second GL Query gives me a list of the allocation numbers for those line items. Had to be two queres as there are two GL postings that needed linking (this is because the cost assignment comes from a ceratin acc type and the debtor information comes from another acc type). I then use the allocation number (again via a replacement path variable) to run a third query on the AR data that shows all bills and payments linked to that allocation number. It seems to work ok.
    However I have put these three queries in an Excel Analyzer workbook. All the user does is enter a cost centre when running the report. Each query is on a different sheet but what I'd like to do is merge the data on to the one sheet. I want to see the bill and it's payments from the AR data matched up with the cost assignment from the FI/CO data. This would be a one to many relationship e.g. one bill may have it's cost assignment split over more than one cost centre. Is there anyway to do this using simple excel functionality?
    So I'd like to see:
    Allocation No. 12345 Bill £100 Revenue £50 Cost Centre 1234 £25
                                                                           Cost Centre 2345 £25
    Anybody any ideas?

    Hi,
    Thanks for your answers.
    I did explore using infosets but really struggled with joining the data and getting a sensible output. For example where a bill was done in installments I was getting 12 lines (e.g. one for each month) rather than just one. THis meant it looked liked they'd paid twleve times as much etc.
    I did also try report to report. Which to my mind worked ok. Except the customer wanted it all in "One" report rather than having to drill down to see data.
    I'll try a multiprovider but I'm worried that I'll end up with similar issues as I had when using the infoset.
    Cheers
    Joel

  • Best practice for creating a bulk of new instances

    Hi,
    My customer has a requirement to create a bulk of 30,000 new instances by scanning a database table (an export from a billing system) which contains a list of a call center tasks (interactive) to be performed. They will be executed throughout the month.
    What is the best way to do it? If the answer is "this is a worst practice" that's a good answer too, but the question is how do I provide a solution to their needs.
    When the process was executed as is we ran into the maximum limit of 1,000. Configuring the automatic item queue removed the 1,000 limit exception but caused JTA timeout and other exceptions against the engine database.
    It seems to me that some sort of division into bulks of a few hundred instances should be the way to do it instead of just exploding the engine with so many instances. Am I right? If so, how would be the best way to code it? If not, any other suggestions?
    Any recommendations would be highly appreciated.
    Thanks,
    ~ronen

    Hi,
    Know how you feel.
    Others are sure to have other ideas, but here are a thoughts:
    1) You might also want to consider only creating 995 in a single transactional boundary at a time. Once 995 have been created, end the transaction so it will commit. You could then fire another transaction that creates another 995. Keep doing this in separate transactions until all have been created. Sure you know many ways you could keep track of where each group of 995 ended and where your next group of 995 should begin, but a common technique is to keep track of the last row processed in a separate database.
    2) Sure you've thought of this, but consider running this from a Global Automatic that is scheduled to run at a time when everyone's gone home. The last thing you want is to get complaints from the end users about performance. Their interaction will be degraded and your creations will take longer.
    3) If you can, be especially conservative about your instance size when creating instances in a batch. Avoid adding attachments and binary variables as they are being created (both of these can potentially be huge). Get rid of the incoming argument variables that you do not need right away in the process. Many times you can look up the additional information downstream when needed later in the process.
    4) Note what is happening immediately downstream of your Begin activity in the process. If for example, you have more than one automatic activity that immediately follow the Begin, consider either turning all the automatic activities it a procedure (one transaction) or set your process to "Greedy" execution. If you have a Multiple activity immediately after the Begin, you might be creating 10x the number of instances (e.g. your Multiple's logic creates 10 copies). If the is the case, you might want to throttle back the number of instances created in one transaction even further.
    Hope this helps,
    Dan

  • Schedule Webi (and Crystal) report without creating a new instance

    Hi all,
    I'm looking for the way to not create a new instance of the report when we schedule a report? Is it any actions on the InfoObject object? Or is it just impossible to do?
    Thanks in advance !
    Edited by: jerome.vervier on Nov 21, 2011 11:40 AM

    Hi,
    With regards to your query, whenever a report is scheduled an instance of it will be created.
    Therefore, it is not possible to schedule a report without creating an instance.
    Regards,
    Shreyans

  • How to create two or more JVM in one machine ?

    Hi to some background ,I want to invoke RMI call to a server ,and I have written the following client code ,that access a getCounter()to show the incremented static variables value ,each time calling the getCounter() will increment the static variable by 1.That code is deployed in the server.
    PDOS_Remote_Interface service1 =(PDOS_Remote_Interface)Naming.lookup("rmi://x.xxx.xxx.xxx/REMOTE_SERVICE");
    String s1= service1.sayHello();
    int cont1 = service1.getCounter();
    System.out.println(">>>>>> "+s1);
    System.out.println(">>>>>> cont1 "+cont1);
    PDOS_Remote_Interface service2 =(PDOS_Remote_Interface)Naming.lookup("rmi://y.yyy.yyy.yyy/REMOTE_SERVICE");
    String s2= service2.sayHello();
    int cont2 = service2.getCounter();
    System.out.println(">>>>>> "+s2);
    System.out.println(">>>>>> cont2 "+cont2);
    This is working fine with even two different server (I mean in two physically different machine(x ip and y ip) ,there ip are different )
    with following output :
    Server Says Hai!
    cont1 0
    Server Says Hai!
    cont2 0that is static variable is not shareing as they are in two different server
    Now My problem:
    I want to hit the one and only server ,In this case Service1 and Service2 are getting the remote instance from only one machine .And when I am doing that I am getting the static variable incremented ,That is following output
    Server Says Hai!
    cont1 0
    Server Says Hai!
    cont2 1Is this possible to create two JVM instance in a particular machine ..??
    I mean I want the first output (both static variable shows 0)in second implementetion (using only one machine )???

    Yes, but the naming service is only going to accept one registration for a given name.

  • Display Two Report IN ONE

    hi Expert,
    how to display two report in one please help me .
    Regards,
    Hamad

    Hi,
    Refer the sample code:
    CLEAR w_event.
    w_event-name = slis_ev_top_of_page.
    w_event-form = 'TOP_OF_PAGE'.
    APPEND w_event TO i_events1.
    CLEAR w_event.
    w_event-name = slis_ev_top_of_page.
    w_event-form = 'XTOP_OF_PAGE'.
    APPEND w_event TO i_events2.
    DATA: lv_repid LIKE sy-repid.
    lv_repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
    EXPORTING
    i_callback_program = lv_repid
    i_callback_user_command = 'USER_COMMAND'
    i_callback_pf_status_set = 'PF_STATUS'.
    *-- Vendor Schedule List
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
    it_fieldcat = i_field_cat1
    is_layout = w_lay_out1
    i_tabname = '<I_TABLE>'
    it_events = i_events1
    TABLES
    t_outtab =<b> <i_table>.</b>  Data for Report 1
    *-- Error Lsit display
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
    it_fieldcat = i_field_cat2
    is_layout = w_lay_out2
    i_tabname ='I_ERROR' 
    it_events = i_events2
    TABLES
    t_outtab = <b>i_error[].</b> -  Data for report 2
    w_print-reserve_lines = 2.
    w_print-no_print_listinfos = c_x.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
    is_print = w_print.
    ENDFORM. " f0504_create_list
    *-- Top of Page
    FORM top_of_page.
      WRITE: sy-title.
    ENDFORM.
          FORM xtop_of_page                                             *
    FORM xtop_of_page.
      WRITE: 'Error Records'.
    ENDFORM.
    Reward points if this Helps.
    Manish

  • Combining two reports with headings and body into one

    I currently have two seperate XML reports for Oracle projects. One report prints out all the Labor information. One prints out Expense information. The users want those two reports married into one. So if there was Labor data in the XML that would report would print first, break to a new page and Expense data in the XML the second report would print.
    I have that working. Now what I need to find out how is how not to print anything if, for example, the XML had no Labor data. The way I have it configured now, even if no Labor data it is still printing the headings for the Labor.
    Any suggestions?
    Thanks,
    Nancy

    Thanks Vetsrini,
    The report has parameters of project number and draft invoice number. The XML has always had both labor and expense on it.I orginally created 2 templates. One that only picked up labor and one that only picked up expense.
    Now they want to just run one report and if both labor and expense print both out on same report, but seperating them.
    BI Publisher 5.6.3
    27459.xml is an example of xml that has no labor on it. just expense. so would just want the expense to print but the labor headers are showing up.
    27267_Invoice1_Labor2.xml is an example of xml that has both labor and expense.
    I you can look at that would be great.
    How do I paste? Can I just email you?
    Thanks!

  • Run two reports but generate one output

    I have developed two reports, one is a detail (portrait style) and another is a summary report (landscape). Now I need to provide an option that will run both the reports but display the output in one document (the document should contain both the detail and summary content).
    Ideal scenario would be to call the report one after another but capture the output in one file but I am not sure whether it's possible in Reports.
    Any help is highly appreciated. Thanks in advance.
    Sundar

    Hi DC,
    Thanks for your reply. I tried to figure out how to create a new section by looking at the document i have (building reports), it directs me to create a new report block and treat it as a new report. Is that what you meant? I tried to follow the report wizard but it's only displaying the summary total columns not the details (i know it's difficult to troubleshoot without viewing the report). I just want to make sure i am at the right place creating a new report section.
    Again thanks for your reply.
    Sundar

  • Oracle Reports : one query - two reports?

    Help, please, Oracle Reports 10g.
    I have a query, need to make two reports in one. They are similar, just couple parameters are different, say, entreprise type and region;
    How do I display these two reports in one? I tried to make parameters as placeholders, package variables, put an trigger on outer frames for reports. parameters do change their values but just the same report displays twice. where is the trick?
    Thank you

    The way I have done this in the past was to create 2 master frames, 1 for each report and then put conditions on each frame as to when it is to appear. Hope this helps..

  • Create multiple portal instances with only one database?

    Can someone create multiple portal instances with only one database?
    If so, how is this done, just by running the portal configuration wizard?
    How are most people running with multiple developers working on portal? Do they share a portal instance, or create their own?
    Thank you very much!
    Phillip

    i'm currently using 9ias rel 2(9.0.2) and i have install one infrastructure and two mid tier, hoping that this will create two portal, but it didn't. Can you please tell me how to do create two portal within one server.
    thanks and regards;
    andrew

  • Replace report by latest instance created

    Post Author: mafg99
    CA Forum: WebIntelligence Reporting
    Hello. How can I replace the report by the latest instance created? What I mean is, we have a report and we have schedule it to run everyday. What I need is that the link to the report (the report name), opens the latest instance created (so, I don't have to click on "View Lastest Instance"). Thanks. Manuel

    Post Author: mafg99
    CA Forum: WebIntelligence Reporting
    Hello.
    I found the solution:
    1. Log on to the Central Management Console.
    2. Click BusinessObjects Enterprise Applications and click InfoView. 
    3. Scroll down, select View the latest successful instance of the object under the Object Listing section and click the Update button. 
    4. Log off InfoView and then log back in and open the Web Intelligence or Desktop Intelligence report.

  • Two reports in one region

    Hi,
    I have region and I want to add two reports to this region, every report has diffrent query
    can I do this in Apex ??
    Thanks for all.
    Best Regards.
    Mohd.

    This can be done in several different ways:
    1. the way it was done in my demo application
    2. modifying region templates and making the regions to appear beside / below each other in order to look as one
    3. using HTP.p to create your own region / reports manually.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

Maybe you are looking for

  • Date wise planning

    Hi, How can i do date wise planning for quantity of a perticular activity. i.e, a activity called excavation is attchched to a WBS, its total qty is 500m3, i have given basic start and finish date for it. but how can i do date wise planning for qty f

  • Help! Can't use Text tool in Photoshop CS5

    When I launched Photoshop this morning and opened a file containing text and an image, I got the following error message: "The type layers in this document were rasterized because something prevented the text engine from being initialized." When I cr

  • Blackberry App World won't open when you click on icon

    Blackberry App World won't open when you click on icon, I have done reboot and batt pull and redownloaded - any ideas

  • Need to add date field on select screen of report RM06INP0.

    Hi All, I have to create a new report ZRM06INP0 as a copy from RM06INP0 and add a field in the selection. When the selection "Price Determination w/o PO" is not picked then we need a maintainable field from the info record. The default for the date i

  • Missing font in iWeb template

    I'm new to iWeb but am not new to Apple's. I've been experimenting with the Doodle template and whenever I launch iWeb an error message comes down saying that there is a Missing Font which is Handwriting-Dakota. The only option it gives me to resolve