Report Data Display

Hi,
I want display data  in a Report if data is not their also , but now i am able to display only if data have
Example:
I have C1, C2, C3, C4, C5 Customers with me but i have shipment and orders for only C1, C2,C3 CUtsomers , But i want to display C4, C5 also , pleasesome one tell me how to do it
CAN Able to display Now
Customer    Shipment     orders  date
C1                 10                1          04/12/2010
C2                  5                  2         04/15/2010
C3                  10                5         04/17/2010
Wanted To display
C1                 10                1          04/12/2010
C2                  5                  2         04/15/2010
C3                  10                5         04/17/2010
C4
C5
Please tell do we have any kind of settings to fullfill my requirement
Thanks,
GAL

Hi GAL BI:
     You need to create an InfoSet with the Customer Master Data (InfoObject) and a DSO containing transaction data for Shipment and Orders.
Also, make sure you define a left outer join between the InfoObject and DSO.
There are a couple of restrictions in using an InfoSet:
- You can't define an InfoSet when the InfoCube is a right operand of a left outer join.
- InfoSets containing more than two InfoCubes are not supported.
Best regards,
Francisco Milán.

Similar Messages

  • Control on Interactive Report Data displaying

    Hi All,
    We are using APEX 4.0.
    Here are the few things that I am trying to accomplish -
    I have created a few interactive reports in different tabs. Each report takes 4 parameters from the screen, and the values get to carry to the next report.
    1. When users first come in to the tab, I don't want the report to be displayed until the SUBMIT button is clicked.
    Currently, we have created an item (dis_flag) and use 1 or 0 to control the display. But, the page always get requery after the users browsing to other tabs and come back. Any other methods that you can advise?
    2. Once the submit button is clickeded, the data should be kept on this page even after the users browsing around the application. No data should be change, until the SUBMIT button is been clicked again. Any ideas on this one?
    The reason that we don't want the report to be displayed first is because the data is huge, and if this is running at the first, some users maybe thinking that something is wrong on the page. That's why we want them to click on submit, so, they know they need to wait. Also, since the report can be huge, we don't want this to be re-query again and again while users are browsing around the application.
    Thank you for any advises that you can give!
    LC
    Edited by: LC on Sep 9, 2011 1:51 PM
    rephase the question

    1 . Put a condition on the interactive report to stop it running when you first display the page - I think you have done this already.
    2. Enable caching for that page (go to the Server Cache tab on Edit Page) - this will also need a condition so that you can actually refresh the report when you need to.
    This should make the browser use the cached version of the report (i.e. the one you ran originally) until you tell it not to.

  • Crystal report - Data display issue

    Hi all,
           I did a crystal report. the labels in the crystal report are
                    QTR1  QTR2  QTR3  QTR4
         If I select  the prompt value as QTR3, the values should display under QTR3, but data is displaying under QTR1
         If I select  the prompt value as QTR3 and QTR4, the values should display under QTR3 and QTR4 columns, but data is displaying under QTR1& QTR2.
    i.e., the data is displaying in an order starting from first column.
    Please let me know if I need to change any prompt settings to get the data in the order I needed.
    Thanks in Advance.
    Regards,
    Viswa

    there are 2 ways this can be done.
    do they only run one qtr at a time?
    you can create a group for each quarter
    create a parameter to pull by quarter.
    in the record selection place this statement
    (if {@qtr}=0 then true else = {@qtr})
    in the parameter place 0 if the qtr is numeric value otherwise place ALL (replace the 0 in the record selection with all if necc)
    this will retrieve all the qtrs or the qtr specified.
    if you create groupings for the qtrs place the value of the qtr in the details section below where you want to display qtr 2.
    you will need to create formulas to differentiate the qtrs.
    if qtr1 in date to date then $ amount
    create a formula for all qtrs. this will display the dollar or value for the qtr date range only. otherwise a zero or null will be displayed.
    right click on the section and go to section expert
    in supress section click on the formual button
    if qtr=1 then true. (keep in mind it is a supression formula so true will supress the qtr, false will display)
    then on the values in the the detail section you can supress those based upon a formula also like above.

  • SSRS report not displaying data in correct order

    Guys,
    I have a SSRS 2012 report not displaying returned records from SQL in the correct order.  Running the stored procedure in SSMS and supplying the parameter values returns the data correctly and running Query Designer in SSRS using the stored procedure
    on the dataset in question, likewise returns the data correctly.  Only when I run the actual report does the data display incorrectly(always last name order).  I've done similar reporting using very similar stored procedures and I've never had this
    problem.  Below is the stored procedure.  "@SortBy" is the parameter with the sorting value. 1=Due Date; 2=Denial Amt and 3=Last name and is passed by SSRS to SQL.  Wish I could supply screen shots.  
    Thanks for any help,
    Dave
    ALTER PROCEDURE [dbo].[RAC_PT_List]
    @Level as int,
    @SortBy as int,
    @PTLName as varchar(30) = NULL,
    @User as varchar(10) = NULL
    AS
    SELECT pat.headerID,
    pat.PT_LName + ', ' + pat.PT_FName AS PTName,
    pat.PT_AcctNo,
    rco.RCO_CLMREF,
    rco.RCO_AppealLevel,
    rco.RCO_LevelNo,
    rco.RCO_AuditorStatus,
    let.LET_DEN_DueDate,
    CONVERT(varchar(12),let.LET_DEN_DueDate) as DueDate,
    let.LET_DEN_Dollars,
    let.userID
    FROM Master_PT_List pat
    INNER JOIN Master_RCO_Work rco on RCO.PT_headerID = pat.headerID
    INNER JOIN Master_Letters let on LET.PT_headerID = pat.headerID
    WHERE (@PTLName IS NULL OR(pat.PT_LName LIKE + '%' + @PTLName + '%'))
    AND (rco.RCO_LevelNo = @Level)
    AND (let.userID = @User)
    --AND (rco.RCO_AuditorStatus <> 'Closed' and rco.RCO_AdminStatus <> 'Closed')
    ORDER BY 
    CASE WHEN @SortBy = '1' THEN LET_DEN_DueDate
    END
    DESC,
    CASE WHEN @SortBy = '2' THEN let.LET_DEN_Dollars
    END
    DESC,
    CASE WHEN @SortBy = '3' THEN pat.PT_LName
    END

    Hi DaveMac1960,
    According to your description, when you render data in report, you find it always shows the data with unexpected order. Right?
    In Reporting Services, if we don't set any sorting in tablix, it will order the data as your query in SSMS or Query Builder. In some scenario, for example, we add parent group for data rows, it will have the rows sort by the group on data field by default,
    and the "order by" in your query will be ignored. So please check the Sorting tab in Tablix Properties, in this scenario, we suggest you delete any sorting in the Sorting tab so that the "Order By" clause can work.
    Reference:
    Sort Data in a Data Region (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • How to make a report to display next 18 months of data with when user select a particular month from the filter in power pivot tabular model.

    Hi,
    i have a  dimension table  with month_key having values (201201,201202,201203.......202011,202012) and month name ( Jan 12, feb 12,......NOV 20, Dec 20)  and a fact  table with columns (month_key ,measure_types, Amount)
    My requirement is to create a power pivot report  in which when a user select a month from the filter, the report should display the (selected month+18 ) month's data against each type . when JAN 12 is selected ,the jan 2012 +18 = june 2013
    , month name should be populated with months till june 2013 only .
    i tried creating calculated column"END DATE " in the fact table with  dax expression to calculate the 18th monh from the current month  as below 
    month_key END DATE
    201201       201306    
    201202       201307      
    and thought of filtering the table with month key <= ENDDATE but it is not working as expected. could you please guide me on this ? Is there any time intelligence function that serve the purpose . Iam using  excel 2010
    ..hence could not do any calculation on the report side also. please suggest .
    Thanks in advance                                                                                                                                               

    Do you need to show the measure calculated for those 18 months as a total on 1 row, or do you need to select a single month and then display on row filters 18 distinct rows?
    The first is trivial as driezl has suggested.
    The second will require a second calendar table.
    I created this example workbook for a coworker who had a similar problem. You will have to use the disconnected table as your filter and pull your related table onto the rows.
    Finally, the easiest way to deal with the sort of date arithmetic you need to do is to restructure your date table to have a series of "Sequential" fields. These fields should be the number of units of time since the beginning of your calendar.
    For example, consider a calendar starting on January 1, 2010. For January - December 2010, [MonthSequential] = 1, 2, ..., 12. For January - December 2011, [MonthSequential] = 13, 14, ..., 24, and so on, incrementing by 1 for each sequential month in time.
    Assuming you have this set up in your date tables (one related to your model - DimDate - and one disconnected - DisconDimDate) your measure would look like this:
    18 Month Measure:=
    CALCULATE( [Measure]
    , FILTER( DimDate
    , DimDate[MonthSequential] >= MAX( DisconDimDate[MonthSequential] )
    && DimDate[MonthSequential] <= MAX( DisconDimDate[MonthSequential] ) + 18
    Please review this example along with the workbook I have linked above.

  • Report not displaying data from one of the infoproviders

    Hi Experts,
    Issue: Report not displaying data from one of the infoproviders
    I have a report 'ReportA' which has multiprovider MP1 as the source.
    MP1 has two Infocubes IC1, IC2 in its design.
    Now, when i execute the report, data from IC1 is displayed. But no data from IC2 is displayed.
    Is there a setting i need to enable in MP1 ? or is there anything else that needs to be enabled ?
    Please reply.
    Regards,
    Suraj S Nair

    Hi All,
    When i display data directly from the multi provider, without any restrictions, i cannot view the data from infocube IC2.
    I feel its not an issue with the Query. It must be a problem with the setting in the Multiprovider MP1.
    Infocube IC2 is a copy of Infocube IC1. Multiprovider MP1 first only had IC1 in its design. It was recently IC2 was also included.
    I checked the Characteristics, all of them are assigned corectly.
    Now, this issue sure has something to do wiht the setting of Multiprovider or please correct me if wrong.
    Regards,
    Suraj S Nair

  • Report not displaying data in Viewer

    Hi All,
    I have a problem, wherein when I run a report on Discoverer Desktop or Plus the report runs fine (with data displayed) but when the same report is run from Discoverer Viewer the report does not fetch any data. It does not even give the error of 'No rows returned'.
    If there are any settings or any other change that needs to be done, please help.
    This is again something very urgent i am looking for. An immediete help will be really appreciated.
    Regards,
    Shruti

    Hi,
    what is the version of Discoverer you are using?
    Also, Is this workbook created in previous versions and upgraded to the existing version?
    log entries in application.log would help in debugging. If you are facing any difficulty to look at the log entires being huge,
    Make sure that you clear or take a backup of the existing application.log, restart the middletier. This will create a fresh application.log file.
    Now, immediately reproduce your issue.This will record the exact log for the event which Viewer is failing to render the report.
    Hope this helps!
    Cheers,
    Prasad Bolla.

  • Report to display IDoc segments data?

    Hi all,
    I have an idoc. That has segements. Each segments has fields. I need those fields data individually in each segement. Is there any reports that displays fields data of each segement and all the idoc data.
    regards
    helpful answeres are surely rewarded

    We can see the Data of the fields in a segment in all the Idocs ( an Idoc type) you have selected.
    1) Go to transaction "WE02".
    2) Enter 'Basic type' of Idoc you are looking for and execute
    3) Click on the last button (List Specific Segment, Shift+ F1) on the application tool bar
    4) enter the Segment you are looking for and press enter.
    5) It will display the Report with the Data of all the fields of the segment of all the Idocs selected.
    Thanks
    Shekar

  • Report to display (actuals data from one cube and plan from another)

    Hi Gurus,
             I have a requirement in reporting to display actual data from one cube and plan data from a different one.
            The example below might give a clear picture of the requirement.
    rows has key figures and columns = months
    Jan |  Feb |  Mar |  Apr |  May |  Jun  ...   ....
    GrossSales
    Net Sales   
    Now if I run the report for Current month (Apr), then for the months of (Jan, Feb and Mar) i need to get the data from CUBE1   and for the remaining months (Apr thru Dec) from CUBE2.
    Similarly when i run the report next month(may), 
    then (data for Jan, Feb, Mar, Apr  from CUBE1)
    and ( May thru Dec from CUBE2)
    Any suggestions.
    Thanks in Advance
    Kumar

    Hi Henry,
         We alreadey have a multi provider which includes
    FinDat Cube(CUBE1) for actuals and Comm.Goals cube (CUBE2) for plan.
    So you suggest that we have two versions of key figure for actual and plan.
    ie. each KF will have two versions.
    actuals = (version 10, FiscPer<curr.mnth, key figure, acutals cube)
    Plan = (version 20, FiscPer>=curr.mnth, key figure, comm.goals cube)
    eg:
    Jan | Feb | Mar | Apr | May | Jun ...
    GrossSales(Act)
    GrossSlaes(Plan)
    Net Sales(Acutal)
    Net Sales(Plan)
    Correct me if I am wrong.
    the report has a lot of key figures, having two versions for each kf will be confusing.
    the user would like to see
    Jan.....| ...Feb  |..Mar |..Apr.....|  May  | 
    GrossSales   Act Value|Act.V |Act.V| PlanVal|PlanVal|
    Net Sales
    where Act.Value is from CUBE1
             Plan Value is from CUBE2
    Thanks
    Kumar

  • BPM reporting not displaying data for newly added field

    Hello All,
    I have a BPM process up and running fine. I have added reporting for monitoring no. of context field. I have also created a VC model for displaying the BPM report data. However, VC application is displaying only the context field that I had selected initially during the New Reporting Datasource creation. It'd not display the reporting data for the field that I added later.
    Please help

    Hi Apoorva ,
    Have you checked in the process repository whether your new process is activated or not?
    Thanks & Regards,
    Rohit

  • Routing Report to display data in CA03

    Hi Experts,
    I am making a report that displays the routings of all materials. In the table PLPO, i can see all the informations of operations its hours. But if an operation is deleted in the routing master then the entry inthe table is not deleted. So when i diaplay the data in the report the delleted operation is also listed. How can i find in the table PLPO that which line is deleted. Is there any link with field ARBID.
    Regards
    SAPXPT

    Hi,
    You will have to read the valid routing operations from the table PLAS. Logic would be PLAS-LOEKZ should be blank.
    Add the above into your program & you will be reading the relevant operations.
    Regards,
    Vivek

  • Data display in report

    Dear All,
    I have a below requirement :-
    Information:-
    I have a report which display Plan Amt and Actual Amt spent during a year. Now assuming we have a data for 2 years i.e. 2009 and 2010 data. I have a optional variable defined for the year object and its default value is 2010.
    Requirement:-
    User want to see Plan Amt for the whole year and Actual Amt should be displayed till last month only. This can be very well achieved through CKF and RKF.
    Problem:-
    Now if user runs the same report and want to see the last year data i.e. 2009 then Plan Amt and Actual Amt both should be displayed for the whole year. i.e. complete 2009 data.
    How do i achieve the above? Kindly give some inputs on the same.
    Thanks
    Anup

    Hi Bala,
    This seems to be a good idea and i had similar thoughts too. But the problem is how do i write customer exit to read the value of calyear variable?? If you can give some samples or suggest some links to go through it would be great.
    Accordingly i can give some inputs to our abapers to help write a customer exit for us...
    Actually we need to give this report by Monday n another crude way of solving this problem would be runnning infopkg twice with full upload and give selection parameters accrodingly in both the pkg. Say in first infopkg we will only load 2009 data, and in second infopkg with full upload again with 2010 data with month selection  as 1 and 2 only.
    We would take this approach if we face problem writing the customer exit.
    Let me know your inputs for the same.
    Thanks & Regards,
    Anup

  • Cisco Historical Report no displays data after an CCX update

    Hi team.
    I have an issue with the Cisco Historical Report.
    On December 14 we performed a version update of UCCX:
    New Version 8.5.1.11004-25
    Old Version 8.5.1.10000-37
    Now I am informed by the Call Center Supervisor can not generate reports in the CHR with dates before 14 December.
    When you request a report, for example, the 1st to March 31, 2012, the error "No report data to display the specified date range." (See attached image Cisco Historical Report (4). JPG).
    When asked the same report, but from the 1st to 31 January 2013, the report is generated successfully and the Supervisor can see the data.
    Anyone have idea why this happens?. You should not miss the update data to make and less with the UCCX server restart. Or can it?.
    Thanks in advance.
    Best regards.
    Ernesto González

    Up

  • Display tooltip on oops alv report data.

    hi friends,
    I have a requirement to display tooltip information on OOPS ALV Report data.
    I done tooltip for the header but i also want to do for it displaying data.
    Eg.
    10 material no. display in the list while i took cursor on 1st material no. then it will display me 1 st material description as tooltip.
    similarly, for 2, 3 and so on.
    Regards,
    Narendra

    hi,
    i think that´s not possible....
    but you can try to work with Drop Down fields....
    add to output table a table LVC_T_DROP  (like colours of a cell )
    Values  could be your material descriptions...
    maybe its also possible to click on a field ( GET_CURRENT_CELL )
    after react with same ucomm like Drop Down.....
    bestreg
    Robert

  • Data display grid font selection

    Does anyone know how to change the font that's used on the "Data" tab when displaying the content of rows in a table?
    I'm trying to view chinese characters which are stored in UTF-8 unicode in the database. I have all the necessary fonts loaded on my machine and the correct NLS_LANG settings.
    I can see western characters, arabic, russian, greek OK in the data-grid, but not chinese or other far-eastern languages. Instead I see little squares instead of the symbols.
    I've checked for font setting in Tools -> Preferences but the only setting I can find is under the "Code Editor" section. This is set correctly (to Arial Unicode MS) and if I copy the "little squares" from the data grid and paste them into a code-edit tab I see the characters correctly displayed.
    So it seems that the "Font" setting for the code-edit tabs isn't used by the data-display tabs.
    Is there a way of making both code-editor window and data-display tab use the same font?

    i would create a standard report.
    i presume the air pressure and humidity are from one field? if not create a formula to display that.
    create groups
    1- a/p humidity field or formula
    2- time
    3- ref-measure- error
    not sure if they are the same field or different.
    you can then place your data in the groups (formulas calcs etc)
    then underlay the groups so they appear on the same line
    then draw boxes around them.
    hope this helps

Maybe you are looking for