BEX Query Views - Reqd in PRD but need to create in Dev - Data Issues

Hello Bw Gurus 
BI 7.0 ECC 4.7
We have a BEx Query in BI production which uses a work centre hierarchy. The user wants to create query views on this query to use in BI production.
Our normal transport procedure of a new development object would be BI DEV - QA - PRD
However the DEV environment does not have all the work centres and the data of PRD. So if the query view needs to be created in DEV then we could not set up the view correctly as there is not the workcenters or the data in DEV.
Hopefully that makes sense?
Apart from allowing Query Views to be created in BI PRD directly is there any solution?
Best,
Steve Jones

If you need exact char values for workcenter to create your views you can quickly create the master data (just the values you want) in Dev and use them to create the views...

Similar Messages

  • Bex Query view

    Hi Expert,
    For my requirement I need to create query view from basic query.In the basic query I have more than 10 chars and some key figure. In the query view i need only 3 char & some keyfigures. I have created a query view with those keyfigures wat I requires but for char how to select only 3 char from 10 chars in the basic query.
    Can any body suggest me any thing.
    Thanks
    Vinod

    Hi,
    Run the query in BEx Analyzer.
    Right click on results -> Select Query Properties.
    In the Row/Characterastics section, keep your 3 characterastics and move the remaining 7 characterastics to free char section. and press OK.
    Now, you will see the report with key figures for only 3 characterastics..
    Save it as a view.
    Hope this clarifies.
    Best Regards,
    Srinivas.

  • Variable with proposed value in BEX Query View

    Dear SAP-Gurus,
    I have a Web Application with some views on one query. In the inital screen i show the popup for entering the global variable values. Now my question; is it possible to give a global variable used filled by exit and used in these queries a proposed value, receeived by user exit?
    With normal query this works, but not with a query view.
    any suggestions?
    kind regards.
    Jürgen

    Hi,
    if anyone has the same problem - you just have to set the parameter variables_clear=x in webtemplate.
    same applies to bookmarks, if you want the variables to be filled by your exit.
    regards
    Jürgen

  • BEx query Authorization works in BW but fails in WebI

    Have a BEx query which has 5 fields marked as authorization relevent.  Some of the fields use BW Auth variable in the BEx query, although not all fields do.  The BEx query runs fine and does not throw any authorization failures.  One of the fields is Org Unit, which uses hierarchy node variable.  This field and its user variable exist in two different queries, using different multiprovider. 
    One BEx query and its corresponding universe and WebI report fails when user tries to refresh Org Unit prompt values in WebI, however a secondar query with identical field and variable does not fail.  A trace on BW side does not reveal any authorization failures.  We tried refreshing the universe and even creating a whole new universe, refreshing it, etc.. however the issue is not resolved. 
    Has anyone seen this problem before?  If so, how did you resolve it.

    Hi,
    You need Single sign-on (SSO).
    Regards

  • (SOAP to File) but need to create multiplefiles...

    Hi ,
    My scenario is.. as following
    SOAP Sender and File receiver..
    I am getting one SOAP request with multiple item inside.. I want to create separate file for each item.. that means .. for each request I need to create separate files ..
    Let me know options.. I am trying by Message Split by making target message Unbound through Message Mapping and signature tab..
    Is there any other option.
    Thanks,
    Bhupesh

    Hi ,
    Please refer this blog /people/ranga.rajan2/blog/2010/03/17/multi-mapping-with-a-simple-scenario--fledgling-kit
    regards.,
    V.Rangarajan

  • Need to create 'Characteristics' using data from legacy system

    Hi All,
            I need to create the 'Characteristics' in SAP using the data from legacy application. The allowable values list defer between characteristics.
    1) which upload tool & method I can use?
    Thx,
    Gopi

    no problem, lsmw is fine to read from text files, you can define the path & format in step 'Specify Files'
    Message was edited by:
            Harris Veziris

  • RDA for Transactional Data Changes (But needs to load as Master Data to IO)

    Hi,
        I would like to use RDA to load Data changes into IO (Not for DSO).
    I tried using this, i can able to load data into PSA. But, from PSA to IO, No datapackage is getting transfered. i.e. Transfered records = 0.
    We considered several options i.e. remote cubes etc. We need to implement RDA.
    Note: I have gone through the Documentation on RDA. Which SAP mentioned, RDA won't support for Master Data if we have aggregates. We don't have any Aggregates build on my cubes.
    Thanks in advacne!!!
    Nagesh Ganisetti.

    RDA DTP is used for supplying data to the Data Store Objects but not to the Master data infoobjects...
    Please follow the links to get to know more on this..
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/f98e07cc483255e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/fa50e40f501a77e10000000a422035/content.htm
    thanks
    hope this helps..

  • Selection criteria is fiscal year/period but need to restrict KF by date

    Hi,
    I have query where selection criteria is based on fiscalyear/period and in result I need to have Netvalue for all the sales order by created on date for that fiscal year/period.
    For eg if I have entered fiscal year/period as 008.2007, I should get net value for all the orders that have created on date between 08/01/2007 to 08/31/2007.
    Can anyone help me about this please.

    Hi DV
    Here is the code
    put it in I_STEP=2
    WHEN 'EXIT NAME"
    READ TABLE I_T_VAR_RANGE INTO loc_var_range with key vnam = 'userinput variable name'
    v_fiscal_year = loc_var_range-low_0(4)
    v_period = loc_var_range-low+4(3)
    CALL FUNCTION 'FIRST_DAY_IN_PERIOD_GET'
              EXPORTING
                i_gjahr              = v_fiscal_year
              I_MONMIT             = 00
                i_periv              =  Give your fiscal year variant name
                i_poper              = v_per
             IMPORTING
               e_date               = v_date_beg
             EXCEPTIONS
               input_false          = 1
               t009_notfound        = 2
               t009b_notfound       = 3
               OTHERS               = 4.
            CALL FUNCTION 'LAST_DAY_IN_PERIOD_GET'
              EXPORTING
                i_gjahr              = v_fiscal_year
              I_MONMIT             = 00
                i_periv              =  Give your fiscal year variant name
                i_poper              = v_per
             IMPORTING
               e_date               = v_date_end
             EXCEPTIONS
               input_false          = 1
               t009_notfound        = 2
               t009b_notfound       = 3
               OTHERS               = 4.
            CLEAR s_range.
            MOVE:
              v_date_beg TO loc_range-low,
              v_date_end TO loc_range-high.
              loc_range-sign = 'I'.
              loc_range-opt = 'BT'.
            APPEND s_range TO e_t_range.
    Thanks
    Tripple k

  • Need to Create Customer Master Data under Multiple Sales Areas

    Hi Gurus,
             My requirement is to create a customer under multiple sales areas by processing the Inbound Idoc function module "IDOC_INPUT_DEBITOR"( After generating Outbound Idoc and outbound is processed successfully).
             But, when I am trying to send the multiple sales areas information in segment "E1KNVVM". It is creating the customer under first sales area filled in first E1KNVVM segment and it is giving error that "Fill all required fields SAPMF02D 0111 ADDR1_DATA-NAME1" and it is not creating the customer under other sales areas.
            Following are the details of the Outbound Idoc which I have processed.
            Idoc Basic type : DEBMAS06
            Message          : DEBMAS
            I have filled required fields in E1KNA1M and E1KNVVM segments. But filled E1KNVVM segments  twice with different sales area data.
          Please help in solving this problem?

    is it really just one IDOC?
    I have never seen that SAP just does a part of one IDOC.
    the structure of DEBMAS ist like this:
    E1KNA1M
    --E1KNVVM
    E1KNVPM
    E1KNVDM
    E1KNVIM
    --E1KNB1M
    which means for your example it should be like this
    E1KNA1M
    --E1KNVVM
    E1KNVPM
    E1KNVDM
    E1KNVIM
    --E1KNVVM
    E1KNVPM
    E1KNVDM
    E1KNVIM
    --E1KNB1M
    and in this case I am very certain that it would never just process and create the part for one sales area.
    Maybe your customer already exists from ealier tests with just one sales area.
    Display your IDOC in WE02 or WE05 and make sure you have a value in name1 field

  • Need to Create 2 Columns Data in CSS Without Table

    Here is what I am trying to do without using a table layout
    at all:
    STATE TOTAL
    AZ 1000
    AL 2000
    So can anyone point me to where I can learn this online or
    any good tutorials on CSS and tabular data, etc. I came up with a
    solution in CSS but the right side with the numbers were always one
    level beneath where it should be and I could never get them to line
    up properly...Thanks
    Dante

    Apply a repeat region to that can You?
    Dave
    "Malcolm N_" <[email protected]> wrote in message
    news:[email protected]..
    > On Mon, 24 Mar 2008 21:44:56 +0000 (UTC),
    "Dante45Chicago"
    > <[email protected]> wrote:
    >
    > >Here is what I am trying to do without using a table
    layout at all:
    > >
    > > STATE TOTAL
    > > -----------------------------------
    > > AZ 1000
    > > -----------------------------------
    > > AL 2000
    > > -----------------------------------
    > >
    > >
    > > So can anyone point me to where I can learn this
    online or any good
    tutorials
    > >on CSS and tabular data, etc. I came up with a
    solution in CSS but the
    right
    > >side with the numbers were always one level beneath
    where it should be
    and I
    > >could never get them to line up properly...Thanks
    > >
    > > Dante
    >
    >
    > OK - always up for a challege :-)
    >
    > quick and dirty
    >
    > <style type="text/css">
    > body {
    > font-family: Geneva, Arial, Helvetica, sans-serif;
    > font-size: 1em;
    > }
    > body {
    > margin: 0; padding:o}
    >
    > p.box1 {
    > width:5em;
    > border-bottom:1px dashed;
    > float:left;
    > border-top-width: 1px;
    > border-right-width: 1px;
    > border-left-width: 1px; }
    > .clearfloat {clear:both;}
    > </style>
    > </head>
    > <body>
    > <p class="box1">STATE</p>
    > <p class="box1">TOTAL</p>
    > <br class="clearfloat" />
    > <p class="box1">AZ</p>
    > <p class="box1">1000</p>
    > <br class="clearfloat" />
    > <p class="box1">AL</p>
    > <p class="box1">2000</p>
    >
    > </body>
    > </html>
    > --
    >
    > ~Malcolm N....
    > ~

  • 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

  • How to prevent end user to create a Query View and save back to BW Server?

    Dear All :
    Do Someone know that how to setup authorization for Bex Query View Creation? We want to prevent end user to create a Query View to save back to BW Server his favorite folder. when our user run Bex Query, he can base on this query and use Bex Analyzer's save function to save a Query View and save into his favorite folder.
    My question is :
    1. Can we set up a Authorization to prevent end user to save Bex Query View?
    2. Or can I remove Save function from Bex Analyzer to prevent end user use save function, But Developer should not to be prevent .
    Thanks for all of your kindly response.
    Best Regard
    Lawrence Kuo

    Hi.
    Yes, you can do it like you outline in your point 1):
    You need to use the authorization object S_RS_COMP for this. This object let's you control what parts/components of a query the user can do stuff to. So, in your case, you need to have a role for the users, where you do not grant create-access to the component QVW, and then you need another role for developers, where you grant full access or whatever you need for your developers.
    See [this post|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a6c54319-0e01-0010-20a4-fb81ad32f330?QuickLink=events&overridelayout=true&5003637661135] and the [SAP Help entry|http://help.sap.com/saphelp_nw70/helpdata/en/80/1a6859e07211d2acb80000e829fbfe/content.htm].
    You will also need to use the authorization object S_RS_COMP1. If you already have a productive system with users doing reporting, both objects will be maintained in one of the roles already.
    You also want to consider using the object S_RS_PARAM to allow users to create variants for the variabel screen.
    Good luck.
    Jacob

  • Where to write IF THEN ELASE statements in BEX Query Designer

    Hi All,
    I need to write a formula in query designer...
    saying that to display the all Quantities in KGs.. Now articles are in Grams and KGs...
    So here i need to perform calculation like... if article is in KGs divide by 1, else if article is in Grams divide by 1000.
    where can i write this logic to perform calculation ...
    Thanks in advance..
    ravi.p

    hi chetan,
    No its not work.. why because i  need to convert the unit of measure in Masterdata Attribute values... that means ) ' 0grooss_wt'.  this is  attribute as a keyfigure of ' 0material' .. this ' 0gross_wt' values has to convert in KGs. at Present ' 0gross_wt' values are in KG and Grams...
    I can change these values in update rules by writting  Routine.. But I need to convert it in KGS at BEX Query Designer Level..
    I need calculate like this
    quantity sold * Gross Weight. 
    here Gross Weight is the formula variable which replacing the values of gross weight...
    i tried by creating conversion types in RSUOM t-code. but it works on keyfigures of infocube.. not on attribute values of master data...
    is there any solution to solve this Problem...

  • Structure copy in BEx query Designer?

    I created structure in BEx Query Designer in BI PRD which is our BI production system.
    I'd like to copy structure to BI DEV which is our BI development system.
    Is is possible?
    If you have any solution, tell me about that.
    Thanks.

    Hi
    If you want the object which is there in PRD to DEV system means, the only way is to do transportation. but to do reverse transportation, you should have STMS connection from your PRD to DEV system.
    The better way is to create the structure again in DEV system.
    If you want to go with reverse transportation, consult your basis person.
    Regards,
    Venkatesh

  • Exporting BEx Query results to CSV or other files.

    Hi All,
    We have a report designed in WAD, which uses a BEx query to display department’s information. Because of amount of data in the results it crashes when u get all the Free Characters into ROWS(Error is : Result set too large(552244 cells); data retrieval restricted by configuration (maximum =500000 cells).  It is a requirement from the user to have all the free characteristics in the rows( which I can understand is not the right way to go ahead). As it is crashing when you add last characteristic(WBS Purpose)  into the rows, they aren’t able to export data into spread sheet from the results. (as there are no results)
    Now my question is…..is there any way we can export the results from BEX query into any format for example text or csv? If yes, can we schedule that process? Please note that this characteristics are displayed as hierarchies.
    Am new to SAP BW and its been only six months since I have been in this role. Any help would be much appreciated???
    I looked online and some where in the forum it was mentioned of using program RSCRM_BAPI, but looks like it needs some sort of downloads from SAP.
    Is there any other way to export the BEx query results?
    Cheers
    Sandeep

    Hello Sandeep,
    You can use the Item "Context Menu" in your WAD and in the properties by default you can see the Options:
    Export to Excel & Export to CSV will be there and also there are many options which you wanted to see.
    It works for you!!!
    With Regards,
    PJ.

Maybe you are looking for

  • Adding a new field to the Address Data for a business partner

    Hi Experts, I am trying to add a new custom field to the address data (all structures and tables) that is linked to a business partner on SAP CRM via EEWB. Structure is the address structure wthin BUS_EI_EXTERN. Table is BUT020. I have been told that

  • Applet location in a Web project

    Hi All, I have a question regarding deploying an applet in JDeveloper 10.1.3. The applet is part of a web project so when compiling the project the .class file ends up in WEB-INF/classes together with the servlet classes and not visible from the appl

  • Elements 9

    While microsoft outlook is setup in photoshop and windows on my pc, when trying to send emails as attachments in Photoshop I get the error message "Elements Organizer could not finish creating your email message. Make sure Outlook is selected as the

  • Oci not loaded (Call to undefined function oci_connect)

    hi i have oracle linux with oracle database 11gR2 i install php with oci as the following link : http://oss.oracle.com/projects/php/dist/documentation/installation.html but when i try phpinfo() i found just only *" /etc/php.d/oci8.ini"* in the result

  • 9iAs 9.0.3 unable to process JSP. HELP !!!!

    Hi, I recently installed Oracle 9iAS 9.0.3 on my windows 2000 server. The installation went seccussfully and I could access all the sample pages that came with the server. However, when I deploy my application to 9iAS and tries to call the JSP page I