Help required in developing a BEx query

I have requirement in which I need 12 columns for 12 months. User enters month and year while executing the report. The report should display output from January till the month entered for the year entered by the user. Remaining months should come for prior year.
Ex: If a user enters month=4 and year=2007.
Then the output should in the report should be, months 1-4 for the year 2007 and months 5-12 for the year 2006.
Please advice on how to design it.
Thank you,
sam

Sorry for that,
Here is what I did,
Create a variable for posting period
Put posting period in column.
Create 2 selections for the KF.
Restrict 1st sel from Jan – Variable-1
Restrict 2nd sel from Variable – Dec

Similar Messages

  • Help required in developing SQL developer extension

    Hi,
    We have a requirement to develop an extension for Sql Developer. The requirement matches the Reports framework in Sql Developer.
    We need to have a separate dock as in reports where we can navigate through the tree and execute some predefined queries.
    I implemented this using the Docking Sample of Sql Developer extensions. I am able to show a separate dock with the tree hieararchy of the nodes and adding context menus to the nodes.
    But , the problem is how do we integrate this UI with the queries and how do we prompt the user to select the connections and other bind variables.
    We can do this by using an XML file and importing it in the reports. But, we need a separate dock for our functionality.
    I tried modifying the reports API by obtaining the code from the oracle.sqldeveloper.report.jar . But , facing problems while compiling the modified code to a jar.
    Any help in this regard is appreciated.
    Edited by: 883431 on Sep 8, 2011 12:32 AM

    Sorry for that,
    Here is what I did,
    Create a variable for posting period
    Put posting period in column.
    Create 2 selections for the KF.
    Restrict 1st sel from Jan – Variable-1
    Restrict 2nd sel from Variable – Dec

  • Help Required -- Can we use SQL Query to READ data from SAP MDM Tables

    Hi All,
    Please help.........
    Can we use SQL Query to READ(No Creation/Updation/Deletion  just Read) Data from SAP MDM tables directly, without using MDM Syndicator.
    Or direct SQL access to SAP MDM tables is not possible. Only through MDM Syndicator can we export data.
    Thanks in Advance
    Regards

    All the tables you create in Repository comes under A2i_CM_Tables in Database named as your repository name. So the tables names are fields of table A2i_CM_Tables. Now i tried it but cant make it.
    Now, I dont think its possible to extract all fields in tables and there values using select query. May be pure sql guy can do that or not.
    But there is no relation of data extraction and syndicator. Data is viewed in Data Manager. and you can also store data in a file from DM also.
    BR,
    Alok

  • Help required for a Remote cube query

    Hi,
    We are working on Remote cube, which has a source from a view built on R/3 base table. I need to extract the data to BW based on a current date due to huge volume of data(performance reasons) in the table. I have used an exit on R/3 to restrict to current date but the extract checker was showing the valid data ie only for current date. When i had built a query on Remote cube, the Report was showing complete data(restriction not working). We have even tried using an inversion routine in transfer rules to pass the selections to the Source system even then it doesn't work. Could you help if you have come across same kind of situation or you can suggest an alternate solution on the same but we have to use Remote cube.
    Any suggestions asap would be highly appreciated and rewarded with full points.
    Regards,
    Raj

    I can think of two ways to do it
    Simple with no ABAP coding is a view
    Create a view between a timestamp table and your big table
    Put an entry into your timestamp table of the current date - then use a selection of this inside the view
    Unforutunately you cannot use SY fields inside database views (otherwise you could have used these as a selection condition in the view)
    The best way to do it is using a function module and passing the data from the query into the SQL statement
    I prefer to do it the last way and also pass data through a generic structure - thus you manipulate the data inside the intial loop in the function module and don;t utilise further loops downstream in transfer rules
    (to try and keep the reponse time down)

  • Help required with developer licensing

    Hi
    My name is Mike Spiers and I have enrolled on behalf of my employer, Newman University (UK) as an Apple developer so that we can produce apps for iOS.  I understood from the outset that this was the most appropriate type of license for us to have as we primarily wish to be able to produce such apps to support our research work rather than deliver tuition to students on development of software for iOS, though that may come in the future.
    Having now enrolled, agreed to license terms, provided payment details etc., I now wish to be able to add my colleagues so that each of us can use this developer license, as I have been led to believe via Apples enrollment recruitment process.
    Can somebody please provide me with some guidance as to how to go about this?  We essentially require the ability for any of us (there are only a handful of us working on these projects) to be able to develop software and submit it to the Apple store under our corporate banner for subseqent user download/installation.
    Thank you.
    Regards,
    Mike Spiers
    Newman University
    Birmingham
    England

    Sell, give, there is not much difference anymore. The difference is the distribution. If this is for public distribution then you are taking the correct approach. If you want to have multiple people be able to submit apps in the unversity's name, then you will need a business account. You can contact Apple and see about changing your account type. It might be easier to just start the process of opening a business account. It may take some time. In the interim, you can continue with what you have and have only one person be responsible for submissions. Anyone else can develop and test in the simulator. If they have their own, individual accounts then they can test on a device. if you decide to open a new business account, you can transfer your app over to the new account. If you try to change your current account, there may be other issues you will need to plan for. I suggest contacting Apple Developer support directly and asking. Either way, it is going to take some time.

  • Help required in generating the following query

    Hi all,
    i need solution regarding the following problem.
    we got many number of groups ,each group containg many number of names,each name containing some items under that
    i had written a query stating that select item where grp  =[0%] and name =[1%] from a table
    it will execute and dispaly a window with two fields at the first field i entered group and in the second field when i select for existing values it shows all the items of all groups
    but we need only items that belong to the group that we enter in the first field
    any one tell me the query regarding this requirement

    HI,
    The alternative solution is: develop your add-on, which get the filtering window, and connects the 2 parameters inside, then runs the query and displays it in a matrix/Grid.
    It is not takes so many time.
    Regards,
    J.

  • Help Required with an OUTER JOIN Query

    Hi,
    I need a list of records carrying UserID and ALL SectionIDs and SectionTitles he/she is associated
    with so I created following query:
    SELECT UsersSections.UserID, Sections.SectionID, Sections.SectionTitle
    FROM UsersSections, Sections
    WHERE UsersSections.SectionID(+) = Sections.SectionID AND UsersSections.UserID = 1
    Where my tables are:
    - UsersSections (UserID, SectionID)
    - Sections (SectionID, SectionTitle)
    The problem is that if I exclude WHERE UserID = '1' clause the query return the desired result i.e. ALL Sections
    And ALL Users associated with the any Section(s). But I need results for a particular UserID but
    Including WHERE UserID = '1' clause only return records for that User only not the sections he/she belongs to which was the purpose of using OUTER JOIN.
    Any help will be highly appreciated.
    Thanks.
    AKG

    userssections.userid (+) = 1

  • Help required in Development of Dynamic forms

    Hi all,
    I want to design dynamic form (using forms 6i), in which the end user will display the screen according to his own requirement i.e on the run-time screen user want to display particular field or not.
    In this we have to re-arrange the position of the fields at the run time.Suppose, if the one field is not displayed then immediate next displayed field should take the position of the first non-displayed field.
    Can anybody share their ideas ??
    Regards.
    Ashutosh

    Francois Degrelle wrote:
    Have a look at the Steve Cosner QA utility, that exactly does what you want.I have changed my website address, since AOL has terminated their user web hosting service. I now use my employer's system where they have made space available for staff. So the QA utility form (and several others) are now at:  http://userwww.sfsu.edu/~stevec/forms/index.htm
    The source for QA.fmb is also available to download.
    I offer an apology for popping up a number of old threads. I have been editing all the links to the old AOL site that I can find, and when I change them, the forum software pops the thread back to the top.

  • Business scenario: how to develope a Bex query

    In the SAP datawarehouse, in my company, We have a billing cube,(SD)  which gives billing doc number wise information about the division,(ours is a multi-division company),product line, customer, invoice value.We have another Transactional ODS, which is from FI side,which gives division,billing doc number,customer and age-wise buckets of customer's outstanding. The user requires division wise, *product line wise* ,customerwise, invoice wise report of outstanding.
    Whatithe best way, by which I can join thses toget billdoc,division,product line,customer, invoice value, age wise outsanding. Not all invoices will be outsatnding, i.e billing cube will have more records than outsatnding ODS.

    Hi
    I dont what the problem u r facing here.... Why dont u join these in Multi provider....... and build a report on that...
    Correct me if im wrong...
    Khaja

  • Help Required for Open Sales opportunity query

    Hi Experts
    I need to create a query on Open Sales Opportunity where quotation has not been submitted. also all opportunities with respective sales quotation
    How can i link Opr1 ( Stage), OOPR, oqut table.
    Regards
    Raman

    Thanks Gordon ,
    But this query is for all sales opportunity linked with Sale quotation. also it showing only last quotation .
    In case in 1 sales opportunity i have 3 quotation how can it will manage toh show all quotations linked with one opportunity.
    Regards
    Raman

  • Help required in developing Wage Return Interface

    Below is a part of the requirement:
    This XML file will be packed into .zip format and senT to the Tax Authority outside SAP. There are two methods for this there is a BAPI channel and a FOS channel.  SAP recommends all clients to use the FOS channel because for BAPI user-exits are required. The FOS channel allows client to send files via a secured FTP connection. It is the responsibility of client  to send this file via FTP.  This step should be automated.
    Kindly let me know what is a FOS channel??.

    got it

  • BO Universe on BeX Query in Lumira

    Hi All,
    I have a requirement of accessing a BeX query in Lumira and do visualizations on it. As Lumira is not capable of accessing BeX query directly, I think, I would need to create a universe on InfoCube, for that BeX query, and then consume that universe in Lumira. Thereafter, I would need to create different datasets for different queries.
    Now, I have two questions:
    1. Is this approach correct? Is there any other more efficient methos than this?
    2. Can I create a universe on BeX query directly? Is it possible?
    When I'm following first approach (universe on InfoCube using IDT) and trying to consume that universe in Lumira, I am getting below error:
    And when I'm following 2nd approach (universe on BeX query using UDT), I am not able to view that .unv in List of Available universes in Lumira.
    Please help.
    Thanks Much,
    Purnima

    Explanation on the error you faced:
    The data acquisition of medium-large, large, and very large datasets from UNV or UNX universes is not supported on default installations of both SAP BusinessObjects Business Intelligence platforms 4.0 and 4.1.
    It is recommended for customers that want to acquire such datasets to install a SAP BusinessObjects Business Intelligence platform (SAP BIP) server dedicated to SAP Lumira and significantly increase the value of the Maximum Character Stream Size of the Web Intelligence Processing Server on that particular server. Note that increasing this value on a running SAP BIP server can impact the memory consumption and performance of any BI clients tool running on that installation, particularly Web Intelligence. While this practice is not formally discouraged, we advise customers implementing this solution that they might face memory consumption increases and longer document data refreshes so they will need to monitor the SAP BIP server's behavior adequately to control the impacts.
    Can you try to place some filters to limit the data volume retrieved?
    Best regards
    Antoine

  • BEx query publishing to Web

    Hi All,
    I developed a BEx query , I want to publish that in Web.Can anybody give steps for that how can we link the BEx query to Web.How to publish?What is the difference between Web Template and attaching a BEx query to Web?
    Pls clarify me
    SM

    Hi,
    Two possiblities:
    1. The simple one: click on the green checkmark in your Bex Query Designer. Then your query is published in the web using the default template (i think its name is 0ANALYZER).
    2. The more complicated (but more fun):
    Use the Web Application Designer (WAD).
    Create a new Web template in WAD
    The drag a table component into the template
    and last, link between the component and your query.
    Save your template and execute it, and voila, your query is in the web (in a web template that you designed!).
    Assign points if this helps,
    Xibi

  • Bex query for BW abap report/ transaction

    Hi Experts, Here is a scenario: I developed ABAP program in BW using multiple DSOs for complex logic. Since I cannot use abap program directly in BO reports, I need to develop a query in BW for my abap program. Is it possible to develop a bex query for BW abap report / transaction in BW? I have limited knowledge on BW and BO. Please help me. Thanks in advance Raghu

    First of all thanks for your suggestion Matthew..!
    As you said, I created virtual info cube based on function module.
    In the info cube, I defined (4)dimensions and (1)key figure.
    In the fucntion module, appropriate below parameters defined and code written for the data table (e_t_data)
    CALL ZFM_XXXXXXX 
    EXPORTING   
    i_infoprov =                " Name of InfoProvider   
    i_th_sfc =                  " rsdri_th_sfc: List of Characteristics    
    i_th_sfk =                  " rsdri_th_sfk: List of Key Figures
    *   i_t_range =                 " rsdri_t_range: Range List
    *   i_tx_rangetab =             " rsdri_tx_rangetab: Table from Range List
    *   i_first_call =              " rs_bool       First Call
    *   i_packagesize = 100000      " i             Package Size 
    IMPORTING   
    e_t_data =                  " standard table:  Data Table   
    e_end_of_data =             " rs_bool       :End of Data Reached   
    e_t_msg =                   " rs_t_msg      : BW: Table with Messages
    Test:
    Right click the info cube and choose "displayed data", immediately it triggered above function module.
    when I see the import parameters data,
    no characteristcs data in i_th_sfc. But, key figures has data (1 record) in i_th_sfk.
    Not sure, Did I missed anything? Please help me.
    Thanks in advance

  • Copy BEx Query from one SAP BI system to another SAP BI system?

    Experts please help me to Copy a BEx Query from one SAP BI system to another SAP BI system?
    Thanks in Advance.......

    HI,
    Just assume like below,
    you are creating your query in Development server(BI),
    Before creating query, you go to SE09(t code), here you create a workbench request by clicking the create button.
    Give some description here to be identified by you in future.
    Now a requested will be generated(ex: DW5K50098) with prefix of your server name.
    now you go to query designer, you create query, when you save the query, it will ask you request, now you click button 'own request'. you choose request(create by you in SE09).
    it will be saved under this request, now you will have one more request under your request in SE09
    parent request(DW5K50098) and child request(DW5K50099).
    First you click child request and relese(click lorry button in se09),second you click parent request and lorry button.
    next steps will be related to your organization, you can ask your team leader, he will be taking care of it.
    Regards,
    Ranganath.

Maybe you are looking for

  • Adobe Premier Pro CC has stopped working win 7 64 bit

    I have a Quadro KM3000 Nvidia, in a Dell M6700.  Pre Pro has been working fine until I downloaded the latest version.  I use SSD's.   I have read other threads and already tried the following: Downloaded the latest drivers (26 Sep 2014) Tried to upda

  • Unicode conversion errors

    Hello everyone, I´m working with a subroutine for testing Unicode in our programs. In UTF-8 there´s no problem. Then I switched the keyboard, language and location in my computer´s settings to czech and try to upload czech texts to UNIX directory lik

  • IMac G5 + PowerMac G5

    I know this is stupid but... I heard something where you can hook up an iMac G5 to the PowerMac G5 and both will work better. Can this be possible

  • Tecra R10-10W - Can't create partition during installation

    I got Tecra R10-10W and I switched from Vista to XP. I used Windows XP Toshiba recovery disk for this. I was not able to create partition on hdd during the installation. I wonder did I miss something? How can I split my hdd into 2 parts? Should I re-

  • Fpga crio mysterious activity in program

    Hello, i have the following problem, my crio 9076 (Slot 1 9411, Slot 2 9474) does mysterious things when running the fpga code every ~108 seconds the hardwar givs an peak at DO 02 from the 9474, it look like the hardware reset the code maby someone h