I am designing query based on dso

Hi,
         i am designing query based on dso. in my query  production orders have multiple operations.when i execute my query report is showing only latest operations.we need to all operation.how can i fetch.
ex :   production order                  operation
           100000141                            10,20,30,40,50
when i exceute the query query is showing only  100000141 & 50.query is not showing 10,20,30,40 opeartions.please help me.
Thanks & Regards,
chandu.

Hi Chandu,
Check for the filters and variables for production order operation
in query designer.
Also check if that field is restriced to particular values, and check for any periodic restrictions.
Hope this helps...........
Rgs,
I.R.K

Similar Messages

  • Query Based on DSO - Bad Performance

    Hi,
    I have few query's based on DSO 0FIGL_O14. The data size is too large in this nearly in crores. I have vendor credit report based on this. I run this query for a month and the performanceis too bad.. i get a time out error.
    kindly suggest how can i improve my query performance which is based on DSO. I have checked the query read mode which is 'H'.
    Thanks
    Dipika

    Hi,
    If none of above (index/change in query) works, I would go ahead with multiprovider/logical partio...
    hope below link is helpful to you.
    Physical Vs Logical Partitioning
    Regards,
    Vinay
    Edited by: Vinay Joshi on Mar 4, 2011 9:56 PM

  • BEx query based on virtual cube donu00B4t display a valid List of Value (LOV)

    Hello
    I have a problem with an invalid LOV. The scenario is the following; There´s a BEx query based on a virtual cube. The query has an exit variable on caracteristic that is based on 0CALMONTH.
    At Universe Designer I simply create a connection, a universe based on this query and export.
    At Web Intelligence (also at Live Office), when I try to execute de query, the prompt to fill my exit variable display a list of value that doesn´t match with the values of the caracteristic at the cube.
    Actually, the list at the prompt starts with 01.0000 and finishes with 05.0968.
    In Universe Designer, the option to edit the list of values is not available. But I think that editing the LOV is not the correct way.
    I´ve tried creating a new query based on the DSO that is the source of the virtual cube. In this case, I had a valid list. Unfortunately, I can´t use this DSO.
    Did anyone already have this problem?

    Hi James,
    can you explain what you mean with "input length for that filed" ?
    The field in the table is varchar2(120). I coudn't found options for the List of value.
    Thanks for your response
    Carsten
    null

  • How to increase performanceof query based on Infoset?

    How to increase the performance of a query based on a Infoset?
    As per designing of query, all the necessary fields are placed where they are required.

    Hi  Akshara ,
    To improve performanceof query try to remove unnecessary characteristics, attributes, or key figures ,Superfluous conditions or variables .Large InfoCubes and Complex hierarchies .Variables populated by user exits
    For characteristics specify either variables or restrictions .
    You can create indexes on DSO and Aggregates on cubes (if any).
    Please go through the links :
    http://help.sap.com/saphelp_crm40/helpdata/en/77/4a213cc534f20ae10000000a11402f/content.htm
    Re: Performance of query built on infoset
    Query performance issue - Infoset query
    Hope you will find this helpful.
    Regards,
    Jaya

  • SELECT QUERY  BASED ON SECONDARY INDEX

    Hi all,
    CAN ANYONE TELL ME HOW TO WRITE SELECT QUERY BASED ON SECONDARY INDEX.
    IN WHAT WAY DOES IT IMPROVE PERFORMANCE.
    i KNOW WHEN CREATING SECONDARY INDEX I NEED TO GIVE AN INDEX NO -iT SHOULD BE ANY NUMBER RIGHT?
    I HAVE TO LIST ALL PRIMARY KEYS FIRST AND THEN THE FIELD FOR WHICH I AM CREATING SECONDARY INDEX RIGHT?
    LETS SAY I HAVE 2 PRIMARY KEYS AND I WANT TO CREATE SEONDARY INDEX FOR 2 FIELDS THEN
    I NEED TO CREATE A SEPERTE SECONDARY INDEX FOR EACH ONE OF THOSE FIELDS OR ONE SHOULD BE ENOUGH
    pLS LET ME KNOW IF IAM WRONG

    HI,
    If you cannot use the primary index to determine the result set because, for example, none of the primary index fields occur in the WHERE or HAVINGclauses, the system searches through the entire table (full table scan). For this case, you can create secondary indexes, which can restrict the number of table entries searched to form the result set.
    You create secondary indexes using the ABAP Dictionary. There you can create its columns and define it as UNIQUE. However, you should not create secondary indexes to cover all possible combinations of fields.
    Only create one if you select data by fields that are not contained in another index, and the performance is very poor. Furthermore, you should only create secondary indexes for database tables from which you mainly read, since indexes have to be updated each time the database table is changed. <b>As a rule, secondary indexes should not contain more than four fields</b>, <b>and you should not have more than five indexes for a single database table</b>.
    <b>What to Keep in Mind for Secondary Indexes:</b>
    http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21eb2d446011d189700000e8322d00/content.htm
    http://www.sap-img.com/abap/quick-note-on-design-of-secondary-database-indexes-and-logical-databases.htm
    Regards
    Sudheer

  • Problem with query based LOV

    Hi,
    Maybe someone could help me with the following. I think it is a shortcoming of HTMLDB, but I'm not sure.
    I've got a Select List item, P10_PERSON, which resides in a tabular form. The Select List is based on a query, say:
    select name   display_value
    ,      id     return_value
    from   personAs is should be, P10_PERSON shows only the names.
    When my action is an insert or modification, the results will be writen in the table PERSON_MEETING.
    Now I want to make sure that the same person coulden't be selected a second time for the same meeting. So I alter the query based LOV with the following:
    select name   display_value
    ,      id     return_value
    from   person
    where  id not in (select person_id
                      from   person_meeting
                      where  meeting_id = :P10_MEETING_ID)This sounds correct and works in Designer, but not in HTMLDB. The NAME isen't shown anymore, instead the ID is shown in the page.
    Is this because the person doesen't actually exists anymore in the LOV after it has been saved (stored in PERSON_MEETING)? If so, does anyone knows a work-around?
    Thx!
    Message was edited by:
    F. Klein
    (removed typing error)

    I've got 3 tables. PERSON, MEETING and PERSON_MEETING.
    They have the following structure:
    # PERSON            #
    # ID   NUMBER       #
    # NAME VARCHAR2(50) #
    # MEETING                   #
    # ID          NUMBER        #
    # DESCRIPTION VARCHAR2(100) #
    # PERSON_MEETING    #
    # ID         NUMBER #
    # PERSON_ID  NUMBER #
    # MEETING_ID NUMBER #
    #####################In PERSON there are 3 records, in MEETING there is only 1.
    PERSON:
    ID     NAME
    1      KEVIN
    2      BILL
    3      JOHN
    MEETING
    ID     DESCRIPTION
    1      DEVELOPERS MEETINGNow I want to link the persons to a meeting in the PERSON_MEETING table.
    The column MEETING_ID will be filled automatically through a variable or parameter (I don't know the exact term).
    I defined the PERSON_ID column as an query based select list with the query:
    select name   display_value
    ,      id     return_value
    from   personThis works perfectely, the select list (or lov) shows KEVIN, BILL and JOHN. When I select BILL and save my adjustment, the following record will be shown in PERSON_MEETING
    PERSON_MEETING
    ID     PERSON_ID     MEETING_ID
    1      2             1Now that I inserted BILL as a participant for the Developers meeting he should be removed from the select list. Only KEVIN and JOHN should be in the list. Therefore I change the query of the select list into:
    select name   display_value
    ,      id     return_value
    from   person
    where  id not in (select person_id
                      from   person_meeting
                      where  meeting_id = :MEETING_ID):MEETING_ID is the item in the page containing the ID of the meeting.
    When I make this adjustment, the select list only contains KEVIN and JOHN (as it should), but the first record shown on the page (record with BILL) doesen't show BILL anymore, instead his ID will be shown (2)...

  • Query based on Multiprovider as Datasource

    Hii,
    I am trying to use query , based on MultiProvider(1cube,2DSO) , as datasource. I want to save the query output in a target . But in the DTP only data from one of these infoprovider is fetched to the target.Where as the query output shows data from all three infoprovider correctly.
    Please help on this.
    Thanks,
    Dillip.

    Hi Dillip,
    i have a suggestion on this, once you design a report on the multiprovider you just run in portal from there you can download this output to excel........................

  • Query based on ODS showing connection time out

    Hi,
    I have a query based on an ODS. The selection criteria for the query is Country which is a navigational attribute of the ODS. When i exceute the query using a country with lesser volume of data the query runs fine. But when i choose a country that has more number of records the query shows 500 connection timeout error sometimes and sometimes it runs fine for the same country.
    I tried to execute the report using country as input variable - First i executed the report using a country with lesser volume of data it worked fine as usual and then i added another country with larger volume of data in the filter criteria and the old problem cropped up.
    Could you please suggest a solution?
    Appreciate your response.
    Thanks
    Ashok

    Hi,
    Its not recommneded to have a query on DSO which gives huge amount of data as output.
    For small amount it should not be a problem.
    Shift your queries to a multicube as recommended by SAP and build the multicube over the cube which loads from the DSO.
    SAP recommends to create queries only on multiproviders.
    If not possible then you can try to create indexes on DSO on the characteristics field which are used in filter and global selections in the query.This can improve the query performace.
    But this will create performance issue while loading data to the DSO.
    So you need to do a trade off.
    Thanks
    Ajeet

  • Designing Query.

    Hi,
    In want to design query in which i want to get count of number of orders which falls into buckets(<5 days ,5-10 days,10-15 days,15-20 days) based on age(age = present system date - required date(key figure)) .
    For that i created formula for Age = present date - required date.
      from the age i am not getting how to count the orders which fall into respective bucket.
    Thanks in Advance.
    With regards
    KPS Moorthy

    Hi,
    you have to create  4 formulas and then use count.
    <5 days
    5-10 days
    10-15 days
    15-20 days
    You will get age . (using Age = present system date - required date(key figure)).
    So in Column 1 create formula  ( ( Age ) < 5 ) * 1
    In Column 2 create formula  ( ( Age > =5 ) AND ( Age <= 10 ) ) *1
    In Column 3 create formula  ( ( Age > 10 ) AND ( Age < 15 ) ) *1
    In Column 4 create formula  ( ( Age >= 15 ) AND ( Age < =20 ) ) *1
    Then in Column 5 you create formula and add all columns from 1 to 4 here you get total count in single column.
    Thanks
    Reddy

  • Design query

    Evening all
    I have a fairly basic design query and I woz wondering if anyone could help/come up with ideas/ laugh at it
    The application is a data transfer application for sending programs from a windoze based pc to expensive industrial machinery
    The application is designed to download files to the computers serial port, with a queue facility in order that the user can select mulitple files to download, the queue is needed because it takes forever to download a 400K file via a serial port running at 4800 baud, or even 9600 baud
    no problem so far, Ok
    Question 1. whats the best form of preventing a write operation to a file after its been added to the queue? I'm thinking I dont want someone to alter a file thats going to be downloaded , basically for safety reasons
    Additional read operations on a file are not a problem ie, sending the same data to multiple serial ports
    Question 2. the application in question is able to write to either COM1 or COM2 and can have a download running on each port concurrently. whats the best way of arranging the queue? have one queue object, or have multiple queue objects , each one tied to a serial port ?
    The other problem is the occurance of a system crash (usually caused by my boss turning the PC off because he's a pillock), would writing the queue objects to disk after every queue operation be a good idea, so that when the system reboots, it can see if there are any queues waiting to be processed.
    Boris
    Question 3 . will this thing ever make me more money?

    Evening all
    I have a fairly basic design query and I woz wondering
    if anyone could help/come up with ideas/ laugh at it
    woz.

  • San/storage design query Netapp + SAN

    I have a design query that I'm hoping someone can help with
    We need to provide the network connectivity to some netapp storage (ethernet based) and:
    30 X 10gb
    50 X 1gb servers.
    I have had a lot of issues trying to find cisco 10gb Ethernet switches to match the above requirements. The new sfp+ twinax cabling seems to be
    the only thing that is available and this is no good for serve connections.
    I have settled on the Nexus 3064 interlinked with its 48 ports of 10gb fibre capacity for the servers that require 10gb and Cisco 3750x series
    switches for the 1gb Servers. The 3750 provide the x-stack port channelling too and will provide the layer 3 connectivity also.
    Is this a good design and will this work?
    Any advice will be greatly appreciated.
    Thanks
    Sam

    Jonathan See wrote:I have a design query that I'm hoping someone can help withWe need to provide the network connectivity to some netapp storage (ethernet based) and:
    30 X 10gb
    50 X 1gb servers.
    I have had a lot of issues trying to find cisco 10gb Ethernet switches to match the above requirements. The new sfp+ twinax cabling seems to be
    the only thing that is available and this is no good for serve connections.
    I have settled on the Nexus 3064 interlinked with its 48 ports of 10gb fibre capacity for the servers that require 10gb and Cisco 3750x series
    switches for the 1gb Servers. The 3750 provide the x-stack port channelling too and will provide the layer 3 connectivity also.
    Is this a good design and will this work?
    Any advice will be greatly appreciated.
    Thanks
    Sam
    Sam.
    It'll work, but I question why you need the 3750X switches in this at all.
    The 3064 has 48 1/10 gig fixed ports giving a total of 96 1 or 10 gig ports (depending on tranciever). You only need 80. You can use the quad SFP ports to link the 3064's at layer 2, giving you up to a 160 gig backbone link between them, and then just connect your servers (be they 1 gig or 10 gig) across the two 3064's, or alternately use two of the quad ports (80 gig) to link the 3064's and use the other 2 to provide 8 extra 10 gig ports per 3064 unit which can be linked to other switches in your network.
    The 3064 will also do layer 3 on the 'base" license level (everything except BGP, full OSPF (OSPF limited to 256 routes at base level) and full EIGRP (stub only)), or full layer 3 routing at LAN Enterprise license level.
    Unless you perceive a need to expand your 1/10 gig port requirements beyond the 96 fixed ports available across two 3064's, then I can't see a need for the 3750's at all.
    Cheers.

  • Query based Infoset doesnt accept condition...

    Hi
    In BI, My Bex designer query is based of an infoset. This query works fine without condition, but if i give condition in the query, it doesn't work & give message:
    "Could not find any data to display. This might be due to the current selection of variable or filter values"
    Even as per query condition, i have data in infoset. Could u pls. let me know wht should i do?
    Thanks...

    Any Suggestion would be appreciated.
    Actually query on inofset working fine but once i put condition of PO delivered Qty = 0, it doesn't give any query output whereas data exists for this condition in infoset

  • Query based taxonomy from scratch gives NoSuchMethodError...

    I'm trying to create a query based taxonomy following the instuctions specified in the help docs: KM Platform -> Admin Guide -> Content Mgmt -> Taxonomies and Classification -> Creating a QBT -> from scratch. I created an index on a newly created (hence empty) folder in the 'documents' repository. So, essentially, the data source points to that folder. Also, I selected 'TREX Classification' on the 'Service' drop-down while creating the index. I left the crwler profile as blank. Then I went on to create a new 'Query Based Taxonomy'. I was able to create it alright, but as soon as I click on it to add folder and the such, I get this error:
    java.lang.NoSuchMethodError
         at com.sapportals.wcm.repository.manager.taxonomy.TaxonomyNamespaceManager.getDocumentTaxRMRids(TaxonomyNamespaceManager.java:1876)
         at com.sapportals.wcm.repository.manager.taxonomy.TaxonomyNamespaceManager.getTaxonomyClassResources(TaxonomyNamespaceManager.java:1831)
         at com.sapportals.wcm.repository.manager.taxonomy.TaxonomyNamespaceManager.addChildDocuments(TaxonomyNamespaceManager.java:1942)
         at com.sapportals.wcm.repository.manager.taxonomy.TaxonomyNamespaceManager.getChildren(TaxonomyNamespaceManager.java:368)
         at com.sapportals.wcm.repository.CollectionImpl.internalGetChildren(CollectionImpl.java:966)
         at com.sapportals.wcm.repository.CollectionImpl.getChildren(CollectionImpl.java:179)
    Any help in solving this is highly apprecaited.
    We run EP6 SP2.
    I did NOT create a 'crawler profile' for this set up.
    thanks,
    Biju.

    Hi Biju,
    re. your NW'04 SP stack 4 migration intention:
    NW'04 is still in ramp-up (SP stack 4 is the current shipment bundle of it) so at the current point in time, only participating ramp-up customers can use it.
    A migration from EP6.0 SP2 to NW'04 will be possible (but not during the ramp-up phase).
    From a Knowledge Management & Collaboration perspective, we will port most of the NW'04 SP stack 4 functions to EP6.0 SP2 as well. These functions will be shipped as EP6.0 SP2 Patch 5 (planned shipment date beginning of Q4 / 2004) so for mid-term, you can also plan to stay on EP6.0 SP2 if you have no other pressing reasons for going to NW'04 (e.g. enhanced Web AS functions).
    This feature porting from NW -> EP6.0 SP2 is an 'only-once' action, however, and NetWeaver will be the release for new features in the future.
    Regards,
    Joerg

  • Include Button that executes PL/SQL procedure to SQL query based region

    I would like to add two columns to a SQL query region.
    These columns would not be sourced from the query, but rather would be used to execute a PL/SQL procedure.
    For example, I would like to have a manager approve or deny adding an additional employee to the department.
    There would be one button for APPROVE. And, one button for DENY.
    The PL/SQL procedure would execute to perform the required DML based upon the selected action (either APPROVE or DENY).
    A sample output would look like this:
    <APPROVE>, <DENY>, John Doe, Accountant
    <APPROVE>, <DENY>, Jane Doe, Accountant
    Is there any way to add a button to a SQL Query based report region where that button executes a stored proc? If so, what is the basic process for doing this?
    Thanks!
    -Reid

    Is there any way to add a button to a SQL Query based report region where that button executes a stored proc? If so, what is the basic process for doing this?Conditional page item? You can associate processes with buttons on a page

  • Query based on a date range

    I want to query based on a date range. I wrote the following EJB QL:
    "select object(a) from ActionItems as a where a.dueDate
    between ?1 and ?2"
    But when I deployed the application to Oracle's EJB server, I got the following error:
    Auto-deploying biogen.jar (No previous deployment found)... Invalid type for expression (a.dueDate BETWEEN ?1 AND ?2)
    EJB QL statement : 'select object(a) from ActionItems as a where a.dueDate between ?1 and ?2'
    EJB QL method : public abstract java.util.Collection ActionItemsLocalHome.findByDueDateRange(java.sql.Date,java.sql.Date) throws javax.ejb.FinderException
    at com.sun.ejb.ejbql.parser.EjbQLParser.parse EjbQLParser.java:218)
    at com.sun.ejb.ejbql.EjbQLDriver.parse(EjbQLDriver.java:86)
    at com.sun.ejb.sqlgen.SQLGenerator.generateSQLForEjbQLQueries(SQLGenerator.java:704)
    It works fine for a number range, but does not work for a date range.
    Any one has an idea on how to write a correct EJB QL for a query based on date range?
    Thanks.
    Jingzhi

    Re-posted. Please help!

Maybe you are looking for

  • HT201232 os x server 3.2.2 and yosemeti

    I have a mid-2013 13" macbook air with 1.7GHZ intel 5000 gnu cpu, 8GB RAM, 128GB flash drive. Now when I had mavericks installed in April 2014 I bought os x server 3.1.1. It worked fine then. I upgraded to os x yosemite beta when it was offered by ap

  • Can't get rid of application update

    I have updated the Subliminator to the latest version of the app on your iPad.  However, the update seems to still appear in the update list in the App Store because my iPad is IOS5, not IOS6.  I have tried turning iPad off and back on again to clear

  • Inactive DataSource  - two clients in Development System

    Hi, I have two developement clients 100 and 130. What ever changes I make in Client 100, it is supposed to reflect in Client 130. We use developement Client 100 to make any changes and use Client 130 to extract/trasnsfer data to BW system.  I activat

  • TS1702 I upgrade and the passbook feature is not working ? How to get it to work

    How to make password work. Upgrade and it is not working when I try to open the passbook states that can not open App Store

  • Proxy login issue

    I have an issue with webaccess. When logging into the client, I can browse the email without any issues. If I want to proxy to another account, I click on the account and can open their email - however, closing the window does not take me back to my