Scheduled report gets no data but returns success status

I have a large scheduled webi report which normally takes 2 hours to run against SAP BW. Sometimes, the report will complete very quickly (within 30 miunutes) and returns success, but there is no data in the report. Is this a WEBI problem  or some sort of BW time-out? The thing bothers me is that it should not have returned success.
I'm using 3.1 SP2, FP 2.5.

How much huge data you have?? (No.of rows -- In WebI)
Scheduling done by User logged in BO or Administrator??
If User, he/she have rights to do that(data access) or have only Schedule right??
Thank You!!

Similar Messages

  • Condition field in XL Reporter Get Other Data function

    I want to use the XL Reporter "Get Other Data" function to get data from a file not in the current Business Partner dimension  BPA.  Using the SalesPerson code SlpCode, I want to get the SalesPerson Name, SlpName. What is the value for the condition field to restrict the retrieval to just the one record that matches the SlpCode in the BPA dimension?  I've tried ocrd.SlpCode=oslp.SlpCode.  I've tried SlpCode=oslp.SlpCode. But I either get all the names in the Salesperson file or I get some type of syntax error.

    Jim,
    When you say I should be able to pass a parameter, do you mean while using the XLR "Get other data" function?  I thought that's what I was doing when I filled out the Get other data screen with the userid, password, then I specified the OSLP table, requesting SlpName in the Fields section, and then in Condition, I specified OCRD.SlpCode = OSLP.SlpCode.   When the report ran, I got a "#ixGetData error: The multi-part identifier "OCRD.SlpCode" could not be bound".   I tried substituting the BPA dimension qualifier, ie: BPA.SlpCode, but got the same error.
    If I removed the initial qualifier in the Condition field, ie: SlpCode = OCRD.SlpCode, when I ran the report I got ALL Salespersons names, not just the one that matched the SlpCode field on the current Business Partner line.

  • All iPhone 4's in building not getting 3G data, but all older iPhones are

    A few people in our office purchased new iPhone 4's over the weekend. All of us were 1st gen through 3GS iPhone users.*
    Everyone who has the new iPhone can't get any data over 3G, but all 3GS or older phones are pulling data as normal. I don't think it's a signal attenuation/bumper issue as I'm getting 5 bars.
    I spoke with both Apple and AT&T a few times. Apple is as confused about it as I am and AT&T suggested I return the phone and try another (obviously not the problem).
    If I drive a mile down the road, 3G works fine.
    We're at a bit of an impasse; we have 30 days to return the phones and we all love our old iPhones and have no interest in using anything else, but if we can't resolve the issue, I'm not sure what options we're left with. Has anyone else had this problem?
    *these are all personal accounts, not business, so you can rule out an account issue

    Bryann wrote:
    This issue is tied, from my experience, to the base band change in iOs4 of how the iP4 is connecting to the least congested tower vs. the stronger signal tower. If you think about it towers aren't that close together so if the closest tower is overloaded and the iP4 is connecting a tower that is not as congested but is two, or farther, miles away you may still technically have 3G service but your not going to be able to connect data wise. This is a major issue and hope I Apple finds a compromise between the old method and the new of how the iP4 connects to towers.
    interesting. if you don't mind me asking, you said "from my experience"....you've seen this problem before?
    was this change in 4.0 or 4.0.1 (which looks like it could be the culprit)?

  • TS1139 I'm trying to process my first iPhoto order and I can't get past the fact it won't accept my telephone number. Thinking this may be a format glitch, I have tried to get around this but no success. Any suggestions? Yours in frustration:( CW

    I'm trying to process my first iPhoto order and I can't get past the fact it won't accept my telephone number. Thinking this may be a format glitch, I have tried to get around this by spacing but no success. I live in Australia and the prefix is +61.  Any suggestions welcome? Yours in frustration:( CW

    Experiment - or search these forums - someone discovered a solution and it was a format issue
    The US format for phone numbers is 10 digits  AAA-PPP-NNNN - you do not include the 01+ here typically - maybe if you can out your digites in that format it will work
    Hopefully someone from down under will tell how they do it
    LN

  • Getting min date, but also max time?

    Hello!
    Sorry for the question, sort of new. I can figure out how to get the minimum date for records, but I was wondering if its possible to get the minimum date, but if there is more than one date for a loan number, get the last time it was submitted. Its kind of hard to explain, but here is a quick example...
    LOAN_ID          SUBMIT_DATE          SYSTEM_CURRENT_DECISION     
    1234567890     8/5/2009 2:55:19 PM          I                         
    1234567890     8/5/2009 3:01:48 PM          R                         
    1234567890     8/24/2009 9:13:04 AM          R     
    1234567890     8/24/2009 9:13:22 AM          I
    So for the loan number 1234567890, the record that would need to be selected would be the second one (8/5/2009 3:01:48 PM     ) since 8/5/2009 is the minimum date, but the last time this loan number had a decison on this date was at 3:01:48 PM. Here is a quick query that I put together to pull in the minimum date (which works). But I was not sure how to include both getting the minimum date, but if there were several submits on that minimum date, then get the last entry for that date. Thanks for any help that you can provide!
    select
    zip.loan_id,
    zip.submit_date,
    zip.SYSTEM_CURRENT_DECISION
    from zippymgr.table zip
    (select zip_tmp.loan_id, min(zip_tmp.analysis_date) as min_DATE
    from zippymgr.cmmc_zippy_results zip_tmp group by zip_tmp.loan_id
    ) zip_min
    where
    zip.loan_id = zip_min.loan_id
    and
    zip.analysis_date = zip_min.min_DATE
    and
    zip.analysis_date > '30-MAY-2009'

    Using the keep dense_rank aggregate function:
    with my_tab as (select 1234567890 loan_id, to_date('05/08/2009 14:55:19', 'dd/mm/yyyy hh24:mi:ss') submit_date, 'I' system_current_decision from dual union all
                    select 1234567890 loan_id, to_date('05/08/2009 15:01:48', 'dd/mm/yyyy hh24:mi:ss') submit_date, 'I' system_current_decision from dual union all
                    select 1234567890 loan_id, to_date('24/08/2009 09:13:04', 'dd/mm/yyyy hh24:mi:ss') submit_date, 'I' system_current_decision from dual union all
                    select 1234567890 loan_id, to_date('24/08/2009 09:13:22', 'dd/mm/yyyy hh24:mi:ss') submit_date, 'I' system_current_decision from dual)
    --- end of mimicking your data
    select loan_id,
           max(submit_date) keep (dense_rank last order by trunc(submit_date) desc, submit_date) submit_date,
           max(system_current_decision) keep (dense_rank last order by trunc(submit_date) desc, submit_date) system_current_decision
    from   my_tab
    group by loan_id;
       LOAN_ID SUBMIT_DATE SYSTEM_CURRENT_DECISION
    1234567890 05/AUG/09   I                     

  • I have a macbook air bought in 2010 wit liquid damage that might has affected the SSD card. I need to get my data but apple won't help. Authorized dealers never seem to have the same model to try whether the SSD card works. How can I get my data quickly?

    Hi
    I have a macbook air bought in 2010. It has liquid damage that might or might not affected the SSD card. I need the data on my SSD card for work and I need it urgently. Apparently Apple won't get the data out, even if I have apple care... Licensed apple dealers need to have the same macbook air model so they can insert the SSD card and check whether the data is there, and they never seem to have one...
    I'm really disappointed with apple. It's been two weeks and I haven't been able to find out whether the SSD card is holding my data. It can't take that long to do it in store... How can they sell a product and then wash their hands on the matter?
    Anyway, enough with the apple rant. I need to get this data urgently so I need to find out how I can get it out of the card. The SSD card and data might be fine so I don't want to take it to a data recovery centre and get charged loads.
    Thanks for your help.
    Olatz

    See this link for a 4870 card, best instructs for flashing for a noob like me. (last lowest price was $150 for a 1GB vRAM 4870 from TigerDirect).
    http://web.me.com/jacobcroft/4870Flash/4870Flash.html
    However, not every 4870 card will work with the ROM currently floating around out there. BEWARE!
    Link to recovering a bricked card:
    http://forums.techpowerup.com/showthread.php?t=64328

  • Schedule Monthly Reports with Dynamic Dates, but also allow Ad-Hoc Running

    Post Author: Dan-Mica
    CA Forum: General
    I am trying to find a way to schedule a report that has an as_of_date, and a start and end date.
    When running monthly it will be scheduled to run on the 11th of each month.  The as of date will be the 10th of the month.  The start date will be the first day of the year and the end date will be the last day of the previous month.
    I have written the report using date functions to calculate the correct dates, and this can be scheduled.
    Now the users are asking to be able to run ad-hoc versions of the report and choose the dates that they use.
    What I don't know how to do is to schedule the job to run monthly as above, but also allow the users to choose the start and end dates and as of dates for the report? 
    Besides writting two versions of the reports is there another way to do this???
    Thanks for the help....

    Hi,
    U can use Infoset Query for report in HR. T-Codes are SQ03, SQ02 AND SQ01. By SQ03 create user group. then SQ02 -infoset and by SQ01 create reports.
    try this. it works.
    Regards
    Nas

  • Define a join in Webi Report which gets the data from two Excel files

    Hello,
    I have the following excel records as a source for my Webi Report:
    Excel 1
    Excel 2
    Date
    Month
    Month
    Year
    Year
    Total Number of Days
      in Month
    No. Of Exec
    Functional
      Area
    Now I need to show No. of executions/Total Number of Days in Month per functional area (Where Month of Excel 1 is Month of Excel 2).
    For this:
    I have Merged, Month of Excel 1 and Month of Excel 2,     Year of Excel 1 and Year of Excel 2.
    Created a variable vNoofExec , No. of Exec/Total Number of Days in Month.
    Created a graph, with Merged Month, Merged Year, vNoofExec with Region Color on 'Functional Area'.
    But, it doesn't work.
    If I replace vNoofExec with No. Of Exec I get the data, but not with vNoofExec.
    Any Idea how we can get a solution for this?
    Best regards,
    Praveen.

    Hi Amit,
    Thank you for your reply.
    I tried putting them in a table to see if I am getting the value for vNoofExec but, no, I am not getting. Here is the dummy data for both the excels:
    1. Excel 1:
    Year
    Month
    Week
    Date
    No. Of Exec
    Functional Area
    2013
    1
    30
    26
    1
    FA1
    2013
    2
    21
    20
    12
    FA2
    2013
    3
    21
    21
    1
    FA3
    2013
    4
    21
    22
    5
    FA4
    2013
    5
    21
    23
    2
    FA5
    2. Excel 2:
    Year
    Month
    TotalDays
    2013
    1
    31
    2013
    2
    28
    2013
    3
    31
    2013
    4
    30
    2013
    5
    31
    What I found is, if I create a measure like, [No. of Exec] where ([Functional Area]="FA1") and use this measure in the graph I am able to see the data even if I use Total Days in the Graph, but, I cannot create multiple measures like this because for me number of Functional Areas will be changing always.

  • Report  Query - PO dates-urgent!!

    Hi Experts,
    I want to know if there is any quicker way to get the validity dates from all the Open Purchase documents (Purchase Scheduling Agreements) Our requirement is: We want to populate all the validity dates for the following.
    1) First we need to identify all the open PSA's (which should have open target qty or open Invoices)
    2) PSA's (Purchase Scheduling Agreements) Header valid From and To dates
    3) Souce list valid dates
    4) Condition valid dates
    Except for the first one, I can go into Tables EKKO, EORD & AO16 to get the dates but I am finding difficult to arrive at the open orders. Can you pls guide me if there is any easier way?
    Regards,
    Madan

    Thanks for your replies. I think, the real solution for this problem is first to identify the open orders. Then it will be easy to go ahead using those PO's to arrive at Doc.Header data (EKKO) and condition dates (AO16) and Source list dates (EORD). To look for deleated or blocked items, EKPO would be helpful
    Since only dates are required, we don't need to go further (ex:KONH, KONP, KONM/KONW.) We are also not bothered about Sch lines (EKET) or Pur order history (EKBE)
    Inorder to arrive at open orders, I am thinking to use Field: AUTLF (Complete Delivery) in the table: EKKO. Do you think it is the correct one? We have thousand of orders to look into and if some did not got picked up, I'll be blamed, so I am worrying. From the standard ME3N report, by choosing Selection pattern 'M-OFFEN' would not help because of large data and difficult to export.
    Your suggestions in this regard would be helpful.
    Regards,
    Madan

  • Scheduled report sent twice

    Crystal 10.0
    This has happened to two of my reports now and I can't see anything wrong. I've loaded the report in the normal way and confirmed its working, then added a schedule to send it automatically to a number of people (individual email addresses entered). The report runs at the designated time, but two copies of the report are sent.
    Looking at the history tab the report has two success instances a second apart.
    Has anybody encountered this before?

    The same thing has happened with us.  We are new to Business Objects and we were successful in scheduling reports to e-mail, but in InfoView the reports are sent twice.  We thought it was "Keep an instance in the history" checkbox, but that didn't work either.

  • Scheduling Reports to FTP

    Hi,
    I have a requirement of scheduling reports to a FTP. I checked venkat's blog he wrote on how to schedule reports to a drive but iam confused how to schedule reports to FTP server. Its possible in bipublisher but iam looking the same to implement in answer's
    Thanks,
    Phani.

    Hi,
    Check this....Its in BIP..Might clear you doubts how to implement..http://gerardnico.com/wiki/dat/obiee/delivers_advanced_publication
    Regarding deliver dashboards via FTP(No its not possible)...Check this....General OBIEE Questions - Scheduling and Exporting!
    Regards,
    Srikanth
    Edited by: Srikanth Mandadi on Oct 10, 2010 9:17 AM

  • Power Query occassionally connects, seems to load, but returns only 200 rows with 1 error

    I have a Power Query that i have used for few weeks, successfully, but occasionally requires being run a few times to return records.  Just lately it seems to require run more than a few times to make it work. 
    When it doesn't return records , it seems to connects and start retrieving data, but returns only randomly like 100 - 200 rows with 1 error.  The error doesn't have any message. So its hard to troubleshoot from that perspective.
    Query appends two other large and merges in a few others. The data sources are either csv files, Sharepoint Lists and tables in workbook.
    I haven't identified anything in terms of environment or query changes that might cause this.
    When it finally does retrieve all records,  it might be after i have done the following things, but i can't say for certain exactly what did the trick:
    * to run query multiple times
    *maybe simply changing anything in query resolves issue
    * making upstream queries (that are merged or appended into this query)  to Not Load to worksheet or model, eg just have connection
    I'd think this type of error and situation while not common is encountered by others.
    Does this ring a bell for anyone, and if so, can you please shed some light on the reasons and resolutions for this?
    Thanks!

    If you click on "1 error" it should show the editor with a query that will select the rows with errors. This unfortunately might not show all errors for various reasons, but you should try it.
    If that doesn't work, here's an example of how to retrieve error details.
    Suppose the following query:
    = Table.FromRecords({[A="B", B="C" + 1]})
    Notice how we're using the + operator with a string and number. This will result in an error.
    I can create a custom column that uses the 'try' operator over the B column. This returns a record with details which I then expand to retrieve the message.
    let
    Source = Table.FromRecords({[A="B", B="C" + 1]}),
    #"Added Custom" = Table.AddColumn(Source, "Custom", each try [B]),
    #"Expand Custom" = Table.ExpandRecordColumn(#"Added Custom", "Custom", {"HasError", "Error"}, {"Custom.HasError", "Custom.Error"}),
    #"Expand Custom.Error" = Table.ExpandRecordColumn(#"Expand Custom", "Custom.Error", {"Message"}, {"Custom.Error.Message"})
    in
    #"Expand Custom.Error"
    Let me know how this works for you.
    Tristan

  • Not able to get the data from synchronous Webservice To BPEL process

    Hi All,
    My requirement is : Third party has some webservice.They are pushing data to that Webservice(Wsdl).
    Third part WSDL example : http://ipaddress:port/name/Service.svc?wsdl ( This is just example format of their WSDL)
    After that I need to get that data into my BPEL process and update my system.
    When I built My Snchronous BPEL process I imported third party WSDL(http://ipaddress:port/name/Service.svc?wsdl) through 'import WSDL' in dialog.After that I automatically got the (request and response schema elements) parameters from that WSDL.I gave input and output of the BPEL process from those elements.
    I pasted that third party URL iin SOAPUI and I got their operations and schemas.Based on that I had choosen the elements for 'input' and 'output' of the BPEL processes.I am also getting the schema structures in 'Assign' or 'Transform' activity.
    I built the whole process.
    I have the Process.
    Now Client is pushing data to their WSDL(http://ipaddress:port/name/Service.svc?wsdl) as it is their data pushing interface.But that data is not coming to my BPEL process and instance is not being created in EM console.
    As I have imported their WSDL into my BPEL process,I need to get the data.But I am not getting the data.
    Is there any problem in MY BPEL process?
    (or)
    DO I need to use 'Webservice' Adapter in 'Exposed Services' Swimlane in Composite Editor to have the third party URL, so that they Can push the data to that WSDL in turn that data comes into my BPEL process?
    Can anybody help me this case?
    once again my requirement is :
    Client pushes the data through their WSDL url -----> I need to get that data into MY BPEL process --> I have my own WSDl to take that details into my system.

    I will explain the requirement in small paragraph:
    There are two applications.One is our application(X) and another one is third party application(Y).
    I need to update in my application(X) based on data coming from application(Y).
    I am using SOA as a middle tier to have communication between Y and X.
    (Ex: if they send some info like event type 'event1' from Y ,I need to update that 'event1' data in my X application)
    The work at third party application is :
    According their info,They will push data from their end to their WSDL( http://ipaddress:port/name/Service.svc?wsdl ).
    They are telling they can only send the data to their WSDL( http://ipaddress:port/name/Service.svc?wsdl ).
    They will not consume our BPEL process(I think they might be wrong at this point of time).They have one WSDL to send or push the data from their end.
    The work at from our side(SOA & X application)
    From that point ,our BPEL process has to receive that data and update that data into my application(X).
    I hope You understand my requirement.
    Can you guide me through how to achieve this task as they are telling they have to use their WSDL to push the data?
    (or)
    Do I need to take 'Webservice' adapter into Exposed Services Swimlane in Jdeveloper to have their webservice(third party WSDL),If it is So Can you tell me the details how to take 'input' and 'output' for BPEL process?
    (or)
    Can YOu suggest me to talk to them to consume my BPEL process directly?
    Thanks
    Edited by: 899283 on Aug 17, 2012 4:55 AM

  • Schedule report to run daily

    Hi,
    I want the Inventory Audit Report to run automatically daily (and thereby update the Last Evaluated Price).
    I know the report scheduler can schedule reports for user queries, but I need this out-of-the-box B1 report to run automatically with a predefined schedule.
    Thanks,
    Ajay Audich

    Hi Ajay,
    You can not Schedule Standard Report for Scheduling for Email.
    Please check below link for Scheduling Report and Email.
    How to Schedule Report Execution and Mailing
    You can also do this by ALERT Function of SAP B1.
    Please try to create Customized Query and Schedule for Specific Time Interval.
    Please check below link for ALERT MANAGEMENT.
    SAP Business One Queries and Alerts Management
    https://help.sap.com/saphelp_sbo882/helpdata/en/45/06437557240484e10000000a155369/content.htm
    If you have any issue in Creating Query then let us know.
    Hope this help
    Regards::::
    Atul Chakraborty

  • Fun. Module to get MSEG data based on EBELN and EBELP

    I need to get records from MSEG by passing EBELN and EBELP.
    I have written SELECT query.
    I am getting the data, but it is taking much time in Production.
    Is there any Function module to get MSEG data based on EBELN and EBELP.
    Thanks

    Hi ,
           You can select from table EKBE based on purchase order number and Item number .
    Please reward if useful.

Maybe you are looking for

  • HT201263 how do i reset a passcode that i forgot on an ipod touch

    How do I reset a passcode if I forgot the original passcode on an ipod touch

  • Webdb website name size

    Hi, I have installed webdb on hp-ux successfully and am able to build websites. The only problem I am facing is ORA-6502 PL/SQL error. I checked with metalink and it seems the website name exceeds the database name column size (30). Can anyone let me

  • Error for ERS settlement of frieght POs

    Hello All We have an issue where user is trying to settle Automated Freight POs with search criteria as (company code US20) and GR posting date (From- Blank/ To - till date) through MRRL transaction. Errors: 1.Posting date is initial for few of them

  • Adobe Flash Professional CS6

    What to do When Aodbe Flash Professional CS6 Text tool is not working.? I am using windows 8

  • Apps on computer

    I have an icon next to my apps on my computer. It says I have 10 that need to be updated. When I go to update them, the itunes store says they are all up to date. How do I get rid of the icon?