ALL variables in one single report

Hi Experts,
I have one requirement, i am creating report on multi provider , so i have to create report to include all variable and it's definition(for wht purpose the variables are created means with description in report.).
So is there any posibility Please explaine me clearly how we crarte report on all variables.
Thanks in advance
Bharati

Hi Bharati,
Still not clear about the requirement ......
There is a table for variable name and its description been stored.  Please do generic extraction using table of view and load data to cube.  then generate a report on top of it.  But purpose of variable may be differ for each report , identifying of the purpose of the variable not possible with out manual intervention.   eg. i have calmonth variable reference to document data which ready for input .. using the same I am deriving a customer exit variable to populate ytd or mtd how will you analyze this ??  if I want to use same variable to any other report which used to used as it is based on doc date..
Thanks
BVR

Similar Messages

  • Multiple Reports inside one Single Report

    Post Author: maximus85
    CA Forum: Crystal Reports
    Hi....I'm having this problem of having multiple reports inside one single report. Basically what i wanted to built is a Dashboard that contains 4 main subjects:i)Sales   -    Contains graph that can be drill down for further detailsii)Internal Process   -  Contains tables that can be drill downiii)Profit/Lossiv)HRAs far as i know, since all four are of different fact table data, they cannot be all thrown inside one single report to be built on. So i came out with using subreports instead for each components and then finally putting them all together as subreport inside the main report(Dashboard).However, i just realized that by doing that, whenever i clicked on the reports that i wanted to drill down with, it will prompt that particular report that i clicked into a new page, and then from there only i can perform drill down.Is there anyway to enable me to straight away drill down the Sales and Internal Process reports from the main reports(Dashboard) instead of having to click twice as that will be unnecessary right?Or mayb if there's another better ways to do what I have to do? Please do advise and suggest......Thanks alot.......

    hi chack,
    doesnt matter or preferrably both, as long as i can export all the reports in 1 page into 1 excel, or 1 pdf.

  • There are two transactions ZJPVCS303 and ZJPVCS303_US for one single Report

    When run as a batch program, (currently this is the case), or withT-Code ZJPVCS303 the selection screen is unchanged (except for additional sales area above)
    - When run as T-Code ZJPVCS303_UL (UL stands for Upload) the selection screen is changed.  The unix file option is no longer available, and the user is able to upload a local file (in the same format as the current unix file, but tab delimited) to the program for processing.
    Requirements:
    There are two transactions ZJPVCS303 and ZJPVCS303_US for one single Report.
    ->When ZJPVCS303 Transaction is executed, the file is uploaded from the Application
      server to SAP R/3. The selection screen parameters would be:
      Logical Filename:
      Sales Organization:
      Distribution Channel:
      Division:
    ->When ZJPVCS303_US Transaction is executed, the file is uploaded from the Presentation Server
      to SAP R/3. When this transaction is executed, it should not have the 'Logical
      Filename' parameter anymore on the selection-screen. Instead it should only have
      Local File name on the presentation server:
      Sales Organization:
      Distribution Channel:
      Division:
        The same thing is applicable for the other transaction ZJPVCS303. When transaction ZJPVCS303
    is executed, it should not have the 'Local Filename' parameter anymore on the selection-screen. Instead it should only have
    Logical Filename:
    Sales Organization:
    Distribution Channel:
    Division:
    So how should I make these parameters invisible depending on the transaction codes execution.
    I have an idea of using MODIF ID, LOOPING AT SCREEN...MODIFY SCREEN.
    I have an idea of using SY-TCODE.
    EX:
    AT SELECTION-SCREEN OUTPUT.
    IF SY-TCODE = 'ZJPVCS303'.
    LOOP AT SCREEN.
    IF SCREEN-GROUPID = 'GRP'.
       SCREEN-INPUT   = 0.
       SCREEN-INVISIBLE = 1.
       MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ELSEIF SY-TCODE = 'ZJPVCS303_US'.
    LOOP AT SCREEN.
    IF .....
    ENDLOOP.
    ENDIF.
    ENDIF.
    But I am not able to get the output which I require. Please help me out.

    Hello Rani
    Basically the transaction determines whether upload starts from application server (AS) or presentation server (PC). Thus, you will have the following parameter:
    PARAMETERS:
      p_as_fil          TYPE filename   MODIF ID unx,  " e.g. Unix server
      p_pc_fil          TYPE filename   MODIF ID wnd.  " e.g. Windows PC
    AT SELECTION-SCREEN OUTPUT.
      CASE syst-tcode.
    *   transaction(s) for upload from server (AS)
        WHEN 'ZJPVCS303.
          LOOP AT screen.
            IF ( screen-group1 = 'UNX' ).
              screen-input = 0.
              screen-invisible = 1.
              MODIFY screen.
            ENDIF.
          ENDLOOP.
    *   transaction(s) for upload from local PC (PC)
        WHEN 'ZJPVCS303_US.
          LOOP AT screen.
            IF ( screen-group1 = 'WND' ).
              screen-input = 0.
              screen-invisible = 1.
              MODIFY screen.
            ENDIF.
          ENDLOOP.
       WHEN others.
       ENDCASE.
    Regards
      Uwe

  • How to pass a bind variable from one SQL Report to Another

    Hello~
    I've created a link on one SQL Report page (Page 1). I would like a value from Page 1 used in the SQL on Page 2 to determine the result set. The Where Clause in SQL Query containing the bind variable is as follows:
    AND hp.party_name     = ':District_Account'
    When I run Page 1 and click on the link to execute Page 2, I get 'No Data Found'. The setup of the link is as follows:
    Column_Name = District_Account
    Link Text = #District_Account#
    Target = Page in this application
    Page = 2
    I'm a rookie working in V1.6...any help would be greatly appreciated!
    Thanks,
    Becky

    I don't see any parameter being passed in that URL. A little sample: http://htmldb.oracle.com/pls/otn/f?p=33203:4<br>
    when you click on the edit link the URL looks like this:<br>http://htmldb.oracle.com/pls/otn/f?p=33203:5:16073998852455071705::NO:5:P5_TABLE_NAME,P5_OWNER:PRESIDENTS_THEMES%2CBLUETEST<br><br>
    where P5_TABLE_NAME and P5_OWNER are the items and PRESIDENTS_THEMES and CBLUETEST are the values.<br><br>
    The SQL on the filtered report looks like:<br>
    SELECT *
    FROM all_tab_cols
    WHERE table_name = :P5_TABLE_NAME
      AND owner = :P5_OWNER<BR><BR>

  • How should i use the two results sets in one single report data region?

    Hi frnz,
     I have to create a report using the below condition...
    Here my given data  set query gives you the two result sets ,so how should i use that two result sets information in single report....when i accessing that data set query it will take the values off the first result set not for the second result set.
    without using sub report and look up functionality..... if possible
    is there any way to achieve this.....Please let me know..
    Thanks!

    You cant get both resultsets in SSRS. SSRS dataset will only take the first resultset
    you need to either create them as separate queries or merge them into a single resultset and return with ad additional hardcoded field which indicates resultset (ie resultset1,resultset2 etc)
    Then inside SSRS report you can filter on the field to fetch individual resultsets at required places. While merging you need to make sure metadata of two resultsets are made consistent ie number of columns and correcponding column data types should be same.
    In absence of required number of columns just put some placeholders using NULL
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Diplay all rows for a single report in OBIEE 11g

    Hello All,
    Do we have any way to display all rows by default for only one report in OBIEE 11g rather than the regular 25 rows and clicking on all the rows. Without changing the configuration on instanceconfig.xml.
    Please advice.
    Thanks,
    VidyaS.

    Using Table View:
    Table Properties->Edit View
    Se the max number at 'Rows per Page'
    Or use Pivot Table View
    If helps pls mark as correct
    Edited by: Srini VEERAVALLI on Jan 8, 2013 8:12 AM

  • How to mute ALL audio in one single go in an edited multicam clip?

    Hi there
    I'm having to replace some audio in an already edited multicam clip. (there are mulitple audio parts I'm replacing by the way)
    How can I mute ALL of the audio in one go, as I have about 400 cuts and am currently having to mute one by one per cut.
    thanks

    Easy. Select them all. In the inspector, click the Audio tab. Under "Channel configuration", uncheck the box which would say something like "400 selected clips".

  • LOV Attaching all variables in one column

    hi i have LOV which suppose to select town and go and attach that town suburb and postal code in separate column,whats happening in my jsff page is when i select town it attach all 3 values in one column but when i test my view it works fine,each value is attach in its column. am in jdeveloper 11.1.1.6.0
    my LOV IS
    <ViewAttribute
        Name="City"
        PrecisionRule="true"
        EntityAttrName="City"
        EntityUsage="UamAddress"
        AliasName="CITY"
        LOVName="LOV_City">
        <Properties>
          <SchemaBasedProperties>
            <CONTROLTYPE
              Value="combo_lov"/>
          </SchemaBasedProperties>
        </Properties>
      </ViewAttribute>my jsff LOV IS
    <af:selectOneChoice value="#{bindings.City.inputValue}"
                                              label="#{bindings.City.label}"
                                              required="#{bindings.City.hints.mandatory}"
                                              shortDesc="#{bindings.City.hints.tooltip}"
                                              id="soc3" simple="true">
                            <f:selectItems value="#{bindings.City.items}" id="si3"/>
                          </af:selectOneChoice>i try to put town id as partial trigger in suburb and postal code column does not work
    Edited by: adf0994 on 2012/10/29 9:27 AM
    Edited by: adf0994 on 2012/10/29 9:31 AM

    Can you post a List Return Values (+Configuration+ tab for LOV) along with Selected part of Display Attributes (+UIHints+ tab) for your LOV ?

  • Different layouts in one single report

    Hi,
    My report consists of 6 different spreasheets, 2 has Landscape layout and 4 has Portrait layout.. so i m trying to create 2 portrait in Header section, 2 Landscapes in Main section, and 2 portrait again in the trailer section.. i have six diff queries for six sheets.. i created one Lanscape in main section with the matrix query.. i m trying to create 1 portrait in trailer section (tabular ) ..... but when i finish this tabular and try to run it, it changes the layout for matrix report in the MAIN section ???? does it overwrite the original layout, which was set for diff query ?
    How to solve this ???? I tried with report block as well...
    Pleaseeeeeeee help..

    Hi,
    bring your two different layouts in seperate frames and write format triggers on this frames to show or suppress them (depending on your input). Connect the two frames with an collabsing anchor.
    Regards
    Rainer

  • Can I create one single  crystal report using 2 bex queries

    HI all,
    I have 2 bex queries and has to develope a single crystal report .Is it possible???? If so, than how to connect two bex queries  and develope  one single crystal report.Any other option is also fine. I mean ....no need to use crystal..( I can go for one single webi..).But need to know the approach ...
    or else...can I create universe on 1 bex and other universe on other bex ..and go for one single webi report..
    Only problem is client is particular about one single report(either crystal or webi)
    if i go for webi ...I know we can use link universe option but I dont know whether it works fro OLAP environment.
    Please let me know if I can link OLAp universes and go for 1 single webi report.
    Any help is appreciated.
    Thanks in advance,
    Mahathi

    You can use either CR or WebI.
    In CR Designer create the report using the SAP toolbar (Create report from query) based on the 1st BEx query. Then use the Database expert (first entry in the Database menu) to add an additional connection to your 2nd BEx query (+Create new connection->SAP BW DX query). You can then join the results of the 2 different queries in the database expert also.. Please note that if you do NOT want to join the result sets, then it is more efficient to use subreports. Create two different CR reports, each based on one of the BEx queries and then use one of those as your main report and insert the other one into it as subreport. Once embedded you do not have to keep the separate .rpt file of your second report.
    For Webi you must build 2 universes, each based on one of your BEx queries. In your report you can add multiple queries based on different universes. You can join the results sets here by using the Merge dimensions button in the report editor area.
    Regards,
    Stratos
    PS; Keep in mind that joining a large number of rows at report level (either in CR or WebI) can cause performance problems. If this is your requirement, how many rows do you expect to get back from each individual query?

  • Rolling up data into a single report, CRMOD just cannot do it?

    So far as I've learnt, CRMOD is unable to do reports such as this and I'm hoping someone will correct me as I find it to be quite a crippling deficiency in terms of flexibility in delivery reports that clients want.
    Take this example of an ERD:
    http://img215.imageshack.us/img215/1574/erdg.jpg
    Portfolio would be a Custom Object 1, Account Allocation and Financial Info would be Custom Object 4 and 5 let's say.
    Portfolio to Account Allocation is a many-to-many relationship, hence the intermediate Account Allocation object which also has fields of its own.
    As far as I know, I will not be able to report on, an aggregate of all the financial info (e.g. SUM of a currency field in Financial Info) of all the accounts associated to a portfolio. Because of the way CRMOD reports tries to make a link between ALL objects in a single report, putting all 4 together won't work since Financial Info is not in any way linked directly to Portfolio or Account Allocation.
    I know I can link Portfolio to Account Allocation and Account (with the metric from Account Allocation), but then I cannot bring in Financial Info at the same time.

    I am aware of the Portfolio object in the GWM vertical, I was just using it as an example entity to show how the relationships are. :)
    I've used Combined Analysis many times before, but it will not help for a situation like this.
    But yeah, just seeing if any new workarounds to this have come up recently. Personally I find this to be one of the biggest deficiencies with the CRMOD reporting engine.
    It would be great if they would just provide an option to write Oracle PL/SQL code to pull data out from tables ourselves sometimes, then we can specify our own INNER/OUTER joins haha. :D

  • Report from Grid Control:Monthly Growth of each database in Single Report

    Hi,I want to make the report from Grid Control for Monthly Growth of each Database for Capacity planning
    I can See under Report->Storage->Oracle Database Tablespace Monthly Space Usage
    But this is only for once database and I want to include all the database in single report that too with limited INfo
    Want the format something like..just wanted to make you guys
    Database     Actual Size on 1st     Actual Size on 30th     INcrease in Size
    1.
    2.
    Something close to above format will do...
    Thanx
    Gagan

    Hi Thanx for the reply
    But Which Tablespace Metric You are talking about?I can See 5-6 Tablespace Metric and infact I dont want the data at the tablespace level and I want the total size of the database and growth in last month as shown in ' Oracle Database Tablespace Monthly Space Usage '.
    But Thanx again for the reply
    Regards
    Gagan

  • Report from Grid Control:Monthly Growth of Each Database on Single Report

    Hi,I want to make the report from Grid Control for Monthly Growth of each Database for Capacity planning
    I can See under Report->Storage->Oracle Database Tablespace Monthly Space Usage
    But this is only for once database and I want to include all the database in single report that too with limited INfo
    Want the format something like..just wanted to make you guys
    Database     Actual Size on 1st     Actual Size on 30th     INcrease in Size
    1.
    2.
    Something close to above format will do...
    Thanx
    Gagan

    Hi Thanx for the reply
    But Which Tablespace Metric You are talking about?I can See 5-6 Tablespace Metric and infact I dont want the data at the tablespace level and I want the total size of the database and growth in last month as shown in ' Oracle Database Tablespace Monthly Space Usage '.
    But Thanx again for the reply
    Regards
    Gagan

  • How to display results set of multiple reports into a single report table

    Our goal is to create a single report (or dashboard) that shows the "funnel" of object creations related to each campaign. The flow goes from Activity to Lead to Opportunity as well as multiple steps within each (ie. Unqualified Lead -> Qualified Lead, etc).
    We currently have 3 separate reports in three different subject areas, each reporting the different metrics and we would like to combine the output into a single Unified report.
    For example what we currently have is:
    Activities:
    Campaign Name # of Activities
    Campaign A 12
    Campaign B 26
    Leads:
    Campaign Name # of Leads # of Qualified Leads
    Campaign A 10 4
    Campaign B 20 18
    Opportunities:
    Campaign Name # of Opportunities # of Opps per Sales Stage ... # of Wins Closed Revenue
    Campaign A 3 2 1 $1,000.00
    Campaign B 10 8 3 $2,800.00
    What we want to see is:
    Combined:
    Campaign Name - Campaign Cost - # of Activities - # of Leads - # of Qualified Leads - # of Opportunities - # of Opps per Sales Stage - # of Wins - Closed Revenue
    Campaign A - $423.00 - 12 - 10 - 4 - 3 - 2 - 1 - $1,000.00
    Campaign B - $ 1,000.00 - 26 - 20 - 18 - 10 - 8 - 3 - $2,800.00
    We have tried using the "Combine with similar analysis" but the number of columns for each subject area differ. We also tried creating multiple UNION criteria (one for each column), but in the case of # of Opps per Sales Stage and Closed Revenue, those are not "Metrics" fields, so they won't combine.

    Hi, You may have to create some dummy fields to equate the no. of field in each of the report matching the data type too and get a one single report using combined analytics and then using the resultant data you can create a simple pivot like below. Haven't tried it before
    -- Venky CRMIT
    Hi Venky,
    I am facing the same problem. Can you please say Steps how to create resultant data and Combine in pivot Table .
    Please Help me .
    Thanks in Advance .
    My mail id is :
    [email protected]

  • XML as source in SSIS: needed one single tab as destination

    Hi
    As source in SSIS I have an XML file and as destination an Excel file. SSIS produces in Excel as many tabs as blocks in XML. The last column in every tab contains some IDs like for instance employee_id. Such IDs are not found
    in the XML file. In my understanding SSIS produces itself these IDs to keep track of connected (nested) blocks.
    Currently I use vlookup on those IDs to "manually" put together all tabs in one single tab. Isn't it possible to automatically get all data from XML in one single Excel tab?
    By simpy importing XML in Excel (without SSIS) you also get not only one single tab. Well, depending on some import options you can actually get one single tab but it's not easily readable because some shifts - as you go to the right the line number increases
    like this:
    Name   Town   Age
    Paul
                London
                              44
    Thanks!
    Gabi
    gec

    I have created an XML file as you have provided. It is displaying in 2 lines in an excel sheet when I import the file. Refer the below xml.
    <?xml version="1.0" encoding="UTF-8"?>
    <root>
    <Transaction>
    <Employee mode='SAVE'>
    <EmployeeNumber>12345</EmployeeNumber>
    <CodeName>John Heller</CodeName>
    <BadgeID>12345</BadgeID>
    <PortraitPicture/>
    <EmployeeTimeAxis mode='SAVE'>
    <DateOfBirth>1900-11-21</DateOfBirth>
    <CostCentresLevel1 mode='SAVE'>
    <CostCentreNumber2>0</CostCentreNumber2>
    <Value>0</Value>
    </CostCentresLevel1>
    <Insurance mode='SAVE'>
    <InsuranceType>2</InsuranceType>
    <InsuranceCode>22</InsuranceCode>
    </Insurance>
    </EmployeeTimeAxis>
    <AddressData mode='SAVE'>
    <AddressNumber>12345</AddressNumber>
    <Country>UK</Country>
    <ZIP>11111</ZIP>
    <City>London</City>
    <Language>E</Language>
    </AddressData>
    <Outpayment mode='SAVE'>
    <PaymentCentreNumber>1</PaymentCentreNumber>
    <OutpaymentCurrency>0</OutpaymentCurrency>
    <SwiftPaymentType>0</SwiftPaymentType>
    <Type>1</Type>
    <BeneficiaryAccount mode='SAVE'>
    <BeneficiaryType>23</BeneficiaryType>
    <BeneficiaryCountry>UK</BeneficiaryCountry>
    <BankNumber>12345</BankNumber>
    </BeneficiaryAccount>
    </Outpayment>
    </Employee>
    </Transaction>
    <Transaction>
    <Employee mode='SAVE'>
    <EmployeeNumber>22222</EmployeeNumber>
    <CodeName>John Heller</CodeName>
    <BadgeID>12345</BadgeID>
    <PortraitPicture/>
    <EmployeeTimeAxis mode='SAVE'>
    <DateOfBirth>1900-11-21</DateOfBirth>
    <CostCentresLevel1 mode='SAVE'>
    <CostCentreNumber2>0</CostCentreNumber2>
    <Value>0</Value>
    </CostCentresLevel1>
    <Insurance mode='SAVE'>
    <InsuranceType>2</InsuranceType>
    <InsuranceCode>22</InsuranceCode>
    </Insurance>
    </EmployeeTimeAxis>
    <AddressData mode='SAVE'>
    <AddressNumber>12345</AddressNumber>
    <Country>UK</Country>
    <ZIP>11111</ZIP>
    <City>London</City>
    <Language>E</Language>
    </AddressData>
    <Outpayment mode='SAVE'>
    <PaymentCentreNumber>1</PaymentCentreNumber>
    <OutpaymentCurrency>0</OutpaymentCurrency>
    <SwiftPaymentType>0</SwiftPaymentType>
    <Type>1</Type>
    <BeneficiaryAccount mode='SAVE'>
    <BeneficiaryType>23</BeneficiaryType>
    <BeneficiaryCountry>UK</BeneficiaryCountry>
    <BankNumber>12345</BankNumber>
    </BeneficiaryAccount>
    </Outpayment>
    </Employee>
    </Transaction>
    </root>
    Regards, RSingh

Maybe you are looking for

  • Line Item Value change in MIRO Transaction

    I have one  requirement i.e as follows. <b>Line Item Value change in MIRO Transaction</b> After getting the items in table control of  the miro screen of a particular order. I have to clicked on edit own condition of selected item. then it will show

  • Why can't I sign into my iMessage on my iPhone 4?

    I've been logged into my iMessage for as long as I've had my phone. Now all the sudden it sends all my messages as text messages. I went into my settings and tried to log into my my iMessage again but it keeps giving me an error message that it can't

  • Some features not available to Automatic User

    We have 2 new macs running Leopard and are having the same issue with both. As the default automatic user, some features are not available. For example, the eye icon for QuickLook does not appear in any of the windows, such as the Finder. In Mail, th

  • Syncing my iPhone 4s on both iMac and MacBook

    Help! When I got my iphone I only had our iMac, which was what I org. synced my phone to.  Since then I have purchased a MacBook and connected it to my MacBook (without any data loss, that I know of)  I do remember receiving messages of such the firs

  • Error while using the sample My Contacts portlet

    Hi, I am trying to use sample portlet "My Contacts" in my portal's page but getting the following error: Compilation of JSP File '/portlets/collaboration/nativedb/contact/Content/index.jsp' failed: Errors found in C:\bea\weblogic81\samples\portal\por