Report designer issue:data not coming

Hi Folks,
I have an issue with bex report designer.
The thing is i have created a query in query designer and that is my data provider for report designer.
I am applying some formatting rules and executing it.
The problem is i am not geting any records except the fields.
Could anyone help in this regard.
Regards

HI,
There are different sections in a Report Designer. G0Header, G1 Header, Det, G1Footer, G0Footer
G0 Header: Contains only the labels of the feilds that is displayed on the top of every page.
G1 Header: is a level 1 header which is displayed Beneth the Group0 Header
Detail: will display the values of Query Elements(Key/Text) placed in this section.
G1 Footer: Will be displayed once for each G1 Header that is displayed. This Can have the totals.
G0 Header: Will be displayed at the end of the page. The footer can have page nuber or totals.
For Example:
To design a simple report having Distribution Channel and Sales Amount. The report can be designed as
G0 Header: [Distribution Channel].Key [Distribution Channel].Text [Sales Amount]
Detail: [Distribution Channel].Key [Distribution Channel].Text [Sales Amount].Val
G0 Header: [Result]                                                                [Sales Amount].Sum
Thanks,
Saranya

Similar Messages

  • SLED date not coming automatically

    hi,
    As per my client requirement they will enter the production date only in goods receipt and SLED date have to come automatically at GR time. I already maintain the Total shelf life and minimum remaining shelf life in material master.i activated SLED for plant and movement type but SLED date not coming automatically.
    If i l enter SLED date more than my Total shelf life period , then system automatically updating the total shelf life period in batch master record. how to avoid this issue? i want whatever shelf life entered in GR should have to recorded not system calculated based on master data(Total-shelf life)
    Thanks
    Muthuraman.D

    Dear all,
    i am using internal batch numbers at the time of goods receipt  provide me  some solution for above issue?.....
    Thanks
    Muthuraman.D
    Edited by: muthuraman d on Nov 7, 2011 12:18 AM

  • Multiple Version Issue. data not matching

    Dear all,
    pleas help me in this issue..
    we have the Apo (DP) Cube.  we are running the reports on this cube..
    when we run the query we are giving the Verion ( means week)  in the selections.. data is coming but.not matching with Apo..data..
    we  assumed that data is coming more. beacuse it might taking the data of previous year also.
    so we included the Calyear and aksed user to selct both, vesrion as well as year.. because their req is for multiple version with historical data.
    They want to see the data for multiple versions with historical data...  even though data  is not matching..
    what we had done is again deleting all the data from Cube and dso an datasource , again loading... this time we asked user to run the report and match it    the data is matching.. with vesrion
    But when we go for historical data with mutiple version. its not matching ,
    pleas help me out where to find out this probelm , what could be the cause ,.
    how to chek
    Awaiting your valuble fedback. its an uregnt issue.
    if any thing else required pls let me know

    Txs for your valuble reply..
    We had checked that .
    but when we unload and again loaded  data this time it is matching on giving the version...
    Where as in case of Multiplr versions . data is coming more.. donno wheather it is mixing up the duplicate data . or what not able to underand.
    can you pls tell me steps how to analyse with your patiency...
    Where and all we need to chek ....
    Awaiting Your reply.

  • Report prints Saved Data not Refreshed Data

    We were running VS 2005 and using the Basic CR 2005 Basic that comes with it.  We upgraded to use CR 2008 and found MANY issues after we went live in production that were apparent in the development.  This has caused a lot of stress with us as well as our users.  Iu2019ll summarize everything we found, possible workarounds and the open issues including the Printing/Loading of Saved Data.
    First, it was reported that printing changed.  It turns out when PrintMode = u2018PDFu2019 (default setting) it now asks after you choose u2018EXPORTu2019 (use to be u2018OKu2019) that it asks to Open or Save the Adobe.  When our customers were running 20 some reports at a time and we had hundreds of users, this became a nuisance for the heavy reporting users and a training issue in general for us.  With research, I found that we can change the PrintMode to be u2018ActiveXu2019.  This was much better when we were testing.  However, in Production it became a nightmare.  If the user is on a Domain that disallows itu2019s user from installing software or if the user has tight security settings, this became a nightmare.
    The second thing reported was that it was exporting to the wrong format.  It was exporting into RPT format.  It turns out with CR2008, it automatically defaults to RPT and the new pop-up, doesnu2019t isnu2019t clear to the user they even have a choice (the pop-up is much prettier, but it doesnu2019t look like a dropdown anymore).  In addition, they reported it was taking twice as long to export (we think it was related to export file type now).  With CR2005 Basic, it would have no default selection and if the user didnu2019t pick one, it would remind them they need to pick one.  After much research, I found there is no way to customize the operation of the export without writing my own export.  My users 90% of the time want to export to PDF and Excel the rest of the time.  Since we arenu2019t using a CR Server like product, they NEVER will do RPT.  There is no way with CR2008 to limit this list or to default the File Format.  So now, if they forget to select the type, they get the wrong file format instead of being reminded to select one.  Since the new pop-upu2019s dropdown selection isnu2019t easily apparent, this was a BIG issue for us.  Since I have close to 300 reports on 7 websites, this will be a lot of work for me to write my own code and change all the ASPX page to use my own control.
    The third thing reported was that the default name on Exporting was changed.  Export uses the ID property of the Crystal Report Viewer as the default name of a file on export.  When it replaced the viewer on all our pages, it set the ID to CrystalReportViewer1 instead of preserving the original ID.  We now have to go back and change them to what we wanted manually.  BEAWRE of this!  For our power users who wanted to export 40 reports they now have type the name in manually on all of them.  What took minutes now takes over an hour for them to do, until we can fix all the pages.
    Now it was reported that some reports are showing OLD data.  It turns out there shows Saved Data from design time.  In our site, we have a parameter page which getu2019s user selected parameters, save to a session and then load the report page using the session variables, and then redirect them to the report page which on page load we set the reports parameters.  We use the CrystalReportSource using ODBC.  The report has all the connection information.  Well if the user happens to select the same parameters I used at design time, it wonu2019t pull the data from the database.  They see our test data instead which is garbage.  If they select different parameters, display the report and then go back and select the original parameters, they will get the correct data.  This can be catastrophic for us!  So I added at the beginning of the Page Load before setting parameters the following:
         If Not Page.IsPostBack Then
                CRSServiceAlertsReport.ReportDocument.Refresh()
         End If
    This seemed to work.  A pain to add on every report page though when it wasnu2019t necessary before.  But then I just got called this morning and they say when they print, it prited the OLD data.  It seems the refresh pulled new data and updated the display in the viewer but the ActiveX print still used the original Saved Data!  I couldnu2019t find a solution for this.  I found switching PrintMode back to u2018Pdfu2019 worked but now I have the extra click issue again, which I described above.  I tried setting the reports u2018Discard Saved Datau2019 option but it still had the data!
    In the end, had I known about all these issues I would have NEVER upgraded to CR2008.  Iu2019m still looking for help on getting by the following:
    u2022     Stop using Saved Data at runtime (either on Display or Print)
    u2022     Getting the PrintMode=u2019Pdfu2019 to just pull up Adobe in Open mode without prompting the user.
    u2022     Remove File Type options from Export
    u2022     Set the default File Type options to nothing or something I want.
    Another nice feature to have would be the ActiveX control for printing to be part of the .NET Framework so users donu2019t need to download it.  Come on BO is a big company Iu2019m sure they can work with MS.  

    What is that method to clear Saved Data; I looked and couldn't find it.  I never had to call one in the prior version of CR 2005 Basic in .Net.  With the .NET controls, it always refreshed the data before.  This is a change in behavior for me.
    As for the Print using Adobe, with CR2005 Basic, it didn't prompt the user to Open or Save before.  This is new behavior.  It used to just open the report in Adobe in memory before without this specific prompt (it did have the first prompt for All or specific pages, but it would just open after that).  This is a change in behavior from prior versions and it has caused me several issues. 
    Many users don't like change and I didn't know to communicate this to them.  They were taken by surprise.  We'll learn to live it I guess, but I would ask you just to consider, why have an option to "Save" to PDF when you choose to print?  I would think you would use Export if you want to save.  It would never hurt to add an option to allow alternatives either.
    As for including with .NET Framework, it was just an idea.  I know how hard it can be working with third parties.  However, given that CR Basic comes with it, I thought it may be possible to work with them.  The better the integration the better the product is for the developers.  I was thinking the button could call JavaScript/Java to print instead of an ActiveX, or some other method.  Since I donu2019t know how the Control works, I couldnu2019t say.  It just would be nice.  I had a smiley face after that request, it didn't come out right when I saved the post.
    I still don't understand why .Refresh will update the data in the viewer but printing using the ActiveX Control will still print the saved data instead of refreshed data.  Since I never used this in the prior version I don't know what it would of done or not, but it just doesn't seem right it shows one set of data, and prints another.
    In addition, why the designer still saves data with the report when you state not to, I think may be a problem still.
    Edited by: Thomas Johnson on Nov 21, 2008 12:26 PM

  • Report Designer - Issue in inserting the query

    Hi
    I'm facing problem when inserting the query in the Report Designer. Following is the steps I take to create new report in report designer.
    1. Developed the query in Bex Analyzer.
    2. Click on new in Report Desginer.
    3. Click on 'Insert Data Provider'.
    4. And at this point it self system throw a message saying that "Do you really want to delete this section? Query will be removed if it is not used in any other section.'
    Has anybody come across thos type of issue.
    Please advice if I'm going wrong any where.
    Regards
    Rohini

    Hi,
    You mean you have created query in query designer right....
    because a query/workbook.query view created bt Bex abalyzer can't be a data taregt for report designer
    Cheers,
    Swapna.G

  • BI7 report designer issue

    Hi, Folks,
    The Report designer is not functioning, received this message when attempting to insert a data provider:
    Error while loading query metadata , Check the query and portal setting.
    RSBOLAP  018  Java system error: call FM BICS_CONS_GET_VIEW_DEF_J_PROXY to ProgId NWPORTAL_PORTAL_NWP on host NWPORTAL with SSO not authorized: Authentication failed.
    Pls give me a hand.
    If it is basis issue, can you tell me which note do I need to check?
    Thanks in advance,
    Sam

    Hi,
    Check this OSS note  1061091and 916090
    Hope This helps,
    With Regards,
    PCR

  • Date not coming in proper format after applying formula in Update Rules

    Hi All,
    I have two time characteristics "Goods Issue date" and "Goods Return date" and One key figure "No. of days elapsed".
    The key figure "number of days elapsed" is being calculated by taking difference of "goods issue date" from "goods return date", but the format for that is not coming proper for example:-
    Goods Issue Date is 21.06.2006
    Goods Return Date is 22.08.2006
    According to formula No. of days elapsed shud be 62
    but it is coming as 04.03.0001.
    Please help as it is a urgent requirement.
    Much Appreciated,
    Sunil Morwal.

    Dear Sunil,
      Kindly check if creating 2 new KeyFigures (DATE) will be of help by assigning the said "two time characteristics" values.
      From these 2 new KYFs, apply your formula..
      Hope this helps..
      Thanks.
    Message was edited by: Arnold Padiernos

  • Report designer - Check Data Provider button missing

    Hi,
    We are in Bi 7.0 Sp 17. I found out that reports designer with hierarchies don't offer the 'check data provider' button- In field catalog, over the query, right button. If report has a fixed structure button appears...
    I need it to refresh the dataprovider with new filter values set in the query
    Have you noticed this? Do you think it's a bug in report designer or can it be my sapgui version?
    Regards,
    Ruben

    Hi Ruben,
    I think I am correct in the following, it is my understanding that the Check Data Provider button only works on fixed (Static) structures not dynamic characteristics.  Therefore if you add in additional characteristics (dynamic) after you have inserted the dataprovider into the report designer then you will not be able to use the Check Data Provider button.
    Please see the following link for explanation.
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/8a95791b1f22a8e10000000a1553f6/content.htm
    If you find additional help on this please share, as RD has caused lots of "challenges" and is still in development as far as I am concerned.  Be glad when its superceded.
    Regards
    Nick

  • CRIO DMA FIFO transfer Issue-Voltage not coming to correct channels

    Hi All,
    Using crio 9073 and NI 9205, I am transferring Data (Channel data type = FXP, Word length 37 bits, 16 bits and FIFO also same data type) from FPGA DMA (Requested No of elements configured in FPGA is 16383) To RT DMA (Requested number of elements in 32744)
    FPGA notes:
    Total channels =16 (Differential mode)
    Loop time of FPGA =20 ms (Per read 20 samples from each channel, so 320 samples per iteration)
    RT notes:
    SCTL=running at 10 ms where DMA transfer happening do that check remaining elements and then do DMA as well.
    Issue:
    When I run the code in above scenario, whatever different voltages given to 4 channels (loop backed 9263 to 9205, fpga interactive mode and only giving 4 channels voltages now just for testing) and i do DMA in RT side, decimate the 320 data and i found Channel 0 voltage given in FPGA is not coming in 0 index of the decimated array in RT DMA read data, instead Channel 0 voltage is coming in Index 7 of the RT DMA read data.  Channel 1 coming at index 8...vice versa… Seems, some data shifting happening.
    But in FPGA i could see correct differential voltage coming to correct channels (Ch 0 is 1.4 V ,FPGA indicator shows me correct voltage at index 0 a 1.4 and vice versa)..
    Please suggest me why this is happening and what is best way i can get correct channel voltage data in RT based on my above conditions.

    This is how I do where I need to only measure continuos analog values through FIFO. I don't use calibrated analog channel. I use raw analog channel and do calibration in host VI. I have attached screenshot of my code. I put 123456789 check sequence in build array function in FPGA VI.
    If I want to read 2000 samples then I keep FIFO 4000 at host side.
    I keep sample count in multiple of no. of channel. In my code build array has 3 element so I read 3*X. where X number of sample required per channel.
    If you don't understand from code let me know.
    PBP (CLAD)
    Labview 6.1 - 2014
    KUDOS ARE WELCOMED.
    If your problem get solved then mark as solution.
    Attachments:
    FPGA VI.jpg ‏205 KB
    FPGA 2.png ‏92 KB
    Host VI.jpg ‏168 KB

  • Data not coming in cube...

    Hi,
    I have loaded data in ODS but when loading the data from this ODS to cube it is not fetching any data in the cube. I have created the DTP to transfer data from ODS. but no data is coming in cube.
    Any mistake I have to correct? or any setting I have to check?
    Please let me know.
    Thanks,
    Jeetu

    Hi Ravi,
    I presed execute button from DTP in schedule tab.
    It is showing DTP as green , no error is there.
    But no records are loaded from ODS through DTP.
    Thanks,
    jeetu

  • Data not coming from DOE to Mobile After defining Rule for device attribute

    Hi All,
    I have created a DO and rule for it.In case of Bulk Rule for all definition when i triggere extract from Portal then all the data comes to outbound queue but when i define rule for Device attribute then no data comes to my Outboun queue.Here is the scenario what i am doing :
    1. I have order header in my backend which has a field named "Work_Center" and this will be criteria field.
    2. In CDS table i have all the records for all the work center.
    3. Now in RMM under customized , i have added an attribute named "Work_center".
    4. Now i defined a rule with Device attribute mapping and activated the rule.
    5. Now on Portal i assigned this data object and in the device attribute tab i assigned the value(this value exist in CDS table for few orders) of a   Work center to the attribute "Work_Center" .
    6. Then i triggrere extract but its Outbound queue is empty, what could be the reason.
    Is my approach is correct
    Regards,
    Abhishek

    Hi Abhishek,
    You can check one ore thing, after you have performed all the steps till step 5, i.e. just before triggering
    extract. Check if the AT table for ur DO has entries based on the criteria specified by you...
    1. In the workbench click on the Data Object, and then right click and select "View Metadata".
    2. Select Distribution Model tab.
    3. Now select your DO's Association table.
    4. For the input field DEVICE ID specify your corresponing device id,and also for status field specify it 
        as "I"  and execute
    If there are any entries now in the AT table, and on triggering extract if they are not coming to the
    outbound Q there is some EXTRACT Q blocked. And is there were no entries in the AT then the rule
    specified is not  the satifying.
    Thanks,
    Swarna
    Now if you have entries w

  • Data Not coming From DSO to Cube

    Hi All,
    I have data in DSO. When i run the DTP , request status is green.
    Now when i go to cube and see the data the request has came but data has not transferred .....
    The Request Status is green in cube but data is not cuming....
    No transferred data.
    How can bring data in cube..??
    Regards,
    Rohit

    Hi,
    When you loaded the DSO......after that are you loading the cube for the first time?If so .....and still data is not coming..then check if the last loaded request somehow got deleted from the DSO....
    If after loading the DSO....you have already loaded the cube...and this is the second time you are loading the cube.........then obviously it will pick 0 records...........since delta DTP always picks the fresh new request..........if there is no new request in the source .......then it will pick 0 records.......
    Also both the cased are not working.........then check the End routine or Start routine.if any.......
    Thanks and Regards,
    Debjani.......

  • Report Designer Issue

    Hi,
    I'm executing my query in report desiner but as per the requirement i need to delete some of the columns in the report designer of the selected query.
    when i'm selecting the column and click on delete colum it is not deleting the column.
    Please advice me to use this funcitonality.

    Hi,
    on which frontend SPS you are? Maybe there is an OSS note for it.
    Regards,
    Juergen

  • Actual delivery Date not coming in the extractor 2LIS_11_V_SSL

    Hi
    I am trying to get the Confirmed and Actual Delivery date for a Order from ECC in BIW. The extractor 2LIS_11_V_SSL has both these fields. But when I check the data in the extract checker (RSA3) in ECC, I always get the Actual Delivery Time as Blank.
    Is there any problem with the standard extractor? Or anything needs to be done to get this field from ECC.
    The BI Content Version in ECC is 703 SP 4.
    Actually I want to know whether the Order is delivered on Time or not, Is there any way like status which can tell me if the Order is "Delivered on Time" or not
    TIA
    Abhishek

    Yes we were using the field MCEX_I_LFDAT Actual Delivery Date. It only gets filled for confirmed deliveries and is blank for other orders.
    Though the values were not tallying with what the Functional Team wanted. So now we are using the field MCEX_I_WADAT (Acttual Good Issue Date) from the source system. We are still using the extract 2LIS_11_V_SSL for the same. This field is filled from the Deliveries from the Source System.
    Both the Extracts 2LIS_12_VCHDR, 2LIS_12_VCITM also have Actual Goods Issue (GI) Date and no Actual Delivery Date. Though these come from different fileds in different tables.
    Closing the Post.
    Thanks
    Abhishek

  • Data not coming to BW from SAP system from last 7 days....please help

    Hi Experts,
    I am monitoring the process chain from last 7-8 days but no data is coming to BW from SAP R/3 . then i checked in SAP R/3 system in RSA7 there weree no queues it was empty. then i checked LBWQ and some MCEX03,MCEX11,MCEX13,MCEX04 were there and i double clicked on one of them then i saw the status in queue as NOSEND . we have used QUEUED DELTA as update mode in LBWE. now i want to bring data for last 7-8 days in BW system. please can anyone provide me the detail steps for this as it is our PRODUCTION system. please provide the steps...!!!!

    Hi,
    Go to SM37 in your R/3 environment and check if there are any jobs starting with LIS* in released status. This is the job which would push the entries from LBWQ to RSA7 for specific applications. If there are no jobs, this is the reason for your problem.
    If you do find any job there, then double click on them to check their frequency. Generally it should be hourly.
    If there is no such job, then go to LBWE. For each of your applications, click on Job Control and maintain the job scheduling. In the start date, maintain it as periodic job. Then simply schedule teh jobs. Once the jobs are scheduled, after every run of them, LBWQ would get cleared.
    Then it would get picked from RSA7 by the BI job.
    Edited by: Rahul K Rai on Dec 8, 2010 4:00 PM

Maybe you are looking for

  • How do I know if my device is data roaming?

    I turned on the device in a remote area on the Canadian side of US-Canada border near MI. Seemed that it was picking up 3G signal as it displayed "3G Verizon connected".  Does this mean it was not roaming.  How do I know when it is roaming or not wit

  • Time Machine won't complete backup to a new drive

    I've recently replaced my WD MyBook 1TB drive because it was beginning to fail. The current replacement is a LaCie 2TB. I use time machine to select the drive and start a backup and it runs for a little while and then fails with no message at all. I

  • What causes choppy streaming video?

    I have a problem with playing streaming video on my powerbook. The video is choppy but the sound is fine. What exactly causes that? I have a 6 Mbps DSL connection at the house, so I figured it was something internal with the Powerbook. Would this be

  • My system disk icon has a question mark in it and does not open now

    my system disk icon has a question mark in it and does not open now and my devices name is gone when i click on FINDER, my favourites is there with the following listed under it- ALL MY FILES AIRDROP APPLICATIONS DESKTOP DOCUMENTS and under documents

  • JTextArea selection color

    Hi I want to be abel to set diffrent colors in a textarea by selecting a interval of text och and then selecting a color. How is this done? I dont mean the selection color, the actual text. The purpose is to have an textarea with lots of news text, a