Output coming wrong when Query  executed

Hi,
I Extracted herarchial data TO  infocube 0FIGL_C01.
I also installed Standard Query 0FIGL_VC1_Q0001.
Now, all data is coming correctly upto infocube 0FIGL_C01 AND TO 0FIGL_VC01.
(as you know ,the data flow to virtual cube ,once we  load it to standard info cube ).
But when query is executed ,It is displaying wrong output .
Can any one tell why ?
Can you tell what internal execution take place.ie..whether any  fumnction module is executed when the standard query is
executed .How the data  flow from infocube to virtual infocube and to query?
(all objects i used are standard )
Thanks,
Naresh.

Hi,
It should give correct values, see if you are missing something while reconciling.
Have a look at this FM:RS_BCT_FIGL_DATA_GET_VC1
Go through this document:
[Handling Balance Sheets and Profit and Loss Statements in SAP BW 3.0|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/2f6d9790-0201-0010-dcbc-e099c7c049a2]
Hope it helps...
Regards,
Ashish

Similar Messages

  • When query executed????

    if i want that when someone execute query on a form, my condition executes, how to do it?

    Welcome to the Oracle Forums. Please take a few minutes to review the following:
    <ul>
    <li>Oracle Forums FAQ
    <li>Before posting on this forum please read
    <li>10 Commandments for the OTN Forums Member
    <li>Announcement: Forums Etiquette / Reward Points
    <li>How to ask questions the smart way
    </ul>
    Following these simple guidelines will ensure you have a positive experience in any forum; not just this one! ;-)
    Lets start with some of the basics. What is your Forms version, Client OS version; if web deployed, your browser and Java versions and any error messages you might be receiving.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Personalise value icon not available when query executed from portal

    Hi
    The personalise value icon is not available when the query is executed from the portal.
    Is this the norm or is there anything i must change?
    Regards
    Shalini

    Since you have not given us much information to go on, I will start with the basics...
    Have you activated the Personalization DSOs (0PERS_WTE, 0PERS_BOD & 0PERS_VAR)? 
    If not, you will need to do so in tcode SPRO (SAP Reference IMG --> SAP NetWeaver --> Business Intelligence --> Settings for Reporting and Analysis --> General Settings for Reporting and Analysis --> Activate Personalization in BEx)
    Are you running a BW 3.5 query or a BI 7.0 query?
    If BI 7.0, the way to set personalization values has changed. You have to open the personalization section of the variables refresh screen by clicking on "Show Personalization Values" at the top of the screen, then move the desired variables down to that section.
    Hope some of this helps...
    Bob

  • ORA-03114 not connected with Oracle when  I execute Query

    Hi!
    I have a Problem with Oracle 9 but I don't know what wrong.
    When I execute this query I get an error everytime:
    select * from
    perleist pl
    left outer join leikat l on pl.lsnr = l.lsnr
    where pl.von < sysdate
    and
    pl.id not in
    select idperleist from rechaus
    where buch_schl <> 'STRN'
    It's not the complete select but the point is I use
    "left outer join leikat l on pl.lsnr = l.lsnr"
    ( not the (+) - Opoerator) and a "not in" -Clausel.
    Without the "not in" -Clausel the select runs fine.
    Sorry for my bad english g
    Thx for help :)
    Michael

    Hi!
    My Selection doesn't run :((
    The Selection runs with (+) -Join and not with "left outer join" .
    i need the "left outer join" couse the Application runs on Oracle
    and Interbase with same Selections. Other Selections with "left outer Join"
    are running under my Oracle 9.2 Database.
    Here something I tested:
    Selection runs with (+)- Join and count ():
    select count(pl.id) anz
    from perleist pl , leikat l
    where
    pl.lsnr = l.lsnr (+)
    --left outer join leikat l on  l.lsnr = pl.lsnr
    and (pl.von <= to_date('30.09.2002', 'DD.MM.YYYY')) and (pl.bis >= to_date('01.09.2002', 'DD.MM.YYYY'))
    and (l.RelAbr = 1)
    and (pl.AufnNr = 13464)
    and (pl.id not in (select idperleist from rechaus where ((BuchSchluessel <> 'STRN') or (BuchSchluessel is null)) and (StornoDat = to_date('30.12.1899', 'DD.MM.YYYY')) and (AbrJahr = 2002) and (AbrMonat = 9)))
    Runs without count() and with "left outer join" :
    select --count(pl.id) anz
    from perleist pl
    left outer join leikat l on pl.lsnr = l.lsnr
    where (pl.von <= to_date('30.09.2002', 'DD.MM.YYYY')) and (pl.bis >= to_date('01.09.2002', 'DD.MM.YYYY'))
    and (l.RelAbr = 1)
    and (pl.AufnNr = 13464)
    and (pl.id not in (select idperleist from rechaus where ((BuchSchluessel <> 'STRN') or (BuchSchluessel is null)) and (StornoDat = to_date('30.12.1899', 'DD.MM.YYYY')) and (AbrJahr = 2002) and (AbrMonat = 9)))
    Error ORA-03114 when usinf count () and
    "left outer join":
    select count(pl.id) anz
    from perleist pl
    left outer join leikat l on l.lsnr = pl.lsnr
    where
    (pl.von <= to_date('30.09.2002', 'DD.MM.YYYY')) and (pl.bis >= to_date('01.09.2002', 'DD.MM.YYYY'))
    and (l.RelAbr = 1)
    and (pl.AufnNr = 13464)
    and (pl.id not in (select idperleist from rechaus where ((BuchSchluessel <> 'STRN') or (BuchSchluessel is null)) and (StornoDat = to_date('30.12.1899', 'DD.MM.YYYY')) and (AbrJahr = 2002) and (AbrMonat = 9)))
    Selection runs without "not in"
    Selection runs without count()
    Selection runs with (+) and not with
    "left outer join"
    Thx for help :)
    MD

  • How to execute the output of the below query automatically

    Hi All,
    I want to execute the output of the below query automatically, instead of manually copying it and execute.
    select 'alter database ['+name+'] set recovery simple' from master.sys.databases where database_id > 4 and state_desc = 'online'
    Please provide me a script to do this.
    ThanK
    Kate

    EXEC sp_MSforeachdb N'ALTER DATABASE [?] SET recovery simple';--- This will set the recovery model for all the system database.The query provided by Vikash16, meets my requirement. Thank you.

  • My Library Column does not exist when I execute a Caml Query

    Hello,
    I am new to SharePoint programming.  I am trying to understand how I can access the documents in a Library Folder and obtain the field values for each document in the container.  With this in mind I have pieced together the following code from
    various posts that demonstrate how to to this:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Microsoft.SharePoint.Client;
    namespace ConsoleListItemsInFolder
        class Program
            static void Main(string[] args)
                ClientContext ctx = new ClientContext("http://mwp_lenovo");
                List DocumentsList = ctx.Web.Lists.GetByTitle("Claims Documents");
                CamlQuery camlQuery = new CamlQuery();
                camlQuery = new CamlQuery();
                camlQuery.ViewXml = "<View Scope=\"RecursiveAll\"> " +
                                "<Query>" +
                                "<Where>" +
                                            "<Eq>" +
                                                "<FieldRef Name=\"FileDirRef\" />" +
                                                "<Value Type=\"Text\">/Claims Documents/11111111 Stuart Little</Value>"
    +
                                             "</Eq>" +
                                "</Where>" +
                                "</Query>" +
                                "</View>"; 
                ListItemCollection listItems = DocumentsList.GetItems(camlQuery);
                ctx.Load(
                    listItems,
                    items => items
                    .Include(
                        item => item["Title"],
                        item => item["Claim Number"],
                        item => item["Policy Number"],
                        item => item["Policyholder Name"],
                        item => item["Document Type"]));
                ctx.ExecuteQuery();
                foreach (ListItem listItem in listItems)
                    Console.WriteLine("Title: {0}", listItem["Title"]);
                    Console.WriteLine("Claim NUmber: {0}", listItem["Claim Number"]);
                    Console.ReadLine();
    When I execute the code with the debugger ctx.ExecuteQuery(); throws the following error:
    Microsoft.SharePoint.Client.ServerException was unhandled
      Message=Column 'Claim Number' does not exist. It may have been deleted by another user.  /Claims Documents
      Source=Microsoft.SharePoint.Client.Runtime
      ServerErrorCode=-2147024809
      ServerErrorTypeName=System.ArgumentException
      ServerStackTrace=""
      StackTrace:
           at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream responseStream)
           at Microsoft.SharePoint.Client.ClientRequest.ProcessResponse()
           at Microsoft.SharePoint.Client.ClientContext.ExecuteQuery()
           at ConsoleListItemsInFolder.Program.Main(String[] args) in c:\Users\matt.paisley\Documents\Visual Studio 2012\Projects\ConsoleListItemsInFolder\ConsoleListItemsInFolder\Program.cs:line 37
           at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
           at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
           at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
           at System.Threading.ThreadHelper.ThreadStart()
      InnerException: 
    These columns do exist in the Library as verified in Library Settings.  Many of the Library column names contain two words divided by a space.  Is this causing the problem?  Does SharePoint maintain a less offensive representation of the field
    name internally?  If so, how can I get it?
    If I run this code with only the title, then it runs fine.
    I Thank All in advance for any assistance that you can provided.
    Regards,
    Matt Paisley
    Matthew Paisley

    Hello
    In addition to Geetanjali Arora answer, change also those other columns
      item => item["Claim Number"],
      item => item["Policy Number"],
     item => item["Policyholder Name"],
     item => item["Document Type"]
    If you don't know the internal name of a column,
    go to the list containing the columns
    go to "list settings"
    scoll down to the "columns" section
    click on one of your columns et take a look a the url of the new page, you should found parameter "&Field=" => What is after is your field internal name (the one you should use in your CAML query)
    Best regards, Christopher.
    Blog |
    Mail
    Please remember to click "Mark As Answer" if a post solves your problem or
    "Vote As Helpful" if it was useful.
    Why mark as answer?

  • Getting an error when query is executed

    Hi,
       I have created a query in designer.
    When i Execute the query i am getting an error like this:
    "Warning your user master record is not sufficiently maintained for object 0VENDOR"
    I have this Vendor in the dimentions but i did not use this in any Rows but still i am getting it.
    what might be the cause.
    And also people i am new to this forum, can any one tell me how to give the points for correct answers.
    I really appreciate your patients.
    Regards,
    Pallavi

    Hi,
    Welcome to SDN.
    Please check wheather you are using any navigaional attributes of 0VENDOR in the query. Try to load the master data of 0VENDOR, run the attribute change run and excute the query.
    To assign points you can able to see some colours for every answer, depending upon the answer how it helps you can check the radio button
    Cheers,
    Malli.

  • Getting error when we execute query in RSRT1

    Hi Gurus,
    I Loaded Transaction data in "0CCA_C11" cube and also loaded master data too.
    but when i execute query in RSRT1 i am getting error message
    1) Could not enter feature 0COSTCENTER__0PROFIT_CTR with SID 133 into table /BI0/SIOBJNM
    2)System error in program CL_RSR and form GET_CHANMID-02- (see long text)
    3)Error when generating dataProvider.
    For 0COSTCENTER i loaded master data but for '0PROFIT_CTR' i am unable to load Hierarchy data because still the request is yellow even showing 58 from 58 records.
    can any once can help me to soleve this issue.
    Thanks in advance.
    Raju.k
    *points to be assigned.

    Raju,
      Try replicating your hierarchy DS and reload data.
    hope it helps,
    balaji

  • Output is wraped when executes in background

    Hi gurus
    In my report my total output length is approximate 750 chracter...
    when i executes it in background  the output is wraped  and
    single line becomes  three lines  that looks veru awkward ..
    is there any way to sort out this problem
    Thanks in advance

    Hi,
    Increase the line-size in the report statement and try
    report zprog line-size 1023.
    Vikranth

  • Error message when I execute a query

    Hi,
    When i execute a query appears the message "Error specify a value for variable Z...". I can't execute the query.
    This situation exist from a new release of SAP-BW (7.0).
    Thanks and best regards.
    CV

    Hi Christiano,
    Try these SAP Notes...
    SAP Note Number: 955515
    SAP Note Number: 333208
    SAP Note Number: 1074801
    Also check this thread...
    error
    Hope these helps u...
    Regards,
    KK.

  • Drill Down when data is coming from a query

    Hello experts,
    I have one question regarding the drill down functionality. For sake of simplicity, let's assume we are working on a pie chart.
    i) Data is coming from a query (via the universe).
    ii) The data source is really the query itself, it is not coming from the excel sheet. In other words, the query is not first copied to the excel sheet and then fed to the pie chart. Pie chart directly uses the query binding.
    ii) When a slice in the pie is clicked, I want to copy that slice's information into a cell (basically the drill-down functionality).
    I wasn't able to achieve this functionality.  I think the problem is the 'source data' field in the 'insertion' tab. I select 'Row' as my insertion type and I also select a destination. However, when it comes to selecting 'source data' I have nowhere to point to since my source data is the query (query binding is not an option here). So, since I have no real source data, I cannot drill down and copy the values to the destination cell.
    The workaround is to copy the query data into excel first, but I don't that is an elegant solution. Is there any other way to achieve this?
    Regards,
    Guven.

    Hello David,
    You confirm that mapping the whole column would be an option, right?
    Here is why I asked this question: Let's assume I have a dashboard that displays the types of encounters in a hospital. Some examples of encounter types are: emergency, elective, newborn, etc... Currently, in the database, there is data for these 3 types. So, the dashboard contains a pie chart and each slice corresponds to the number of visits by patients for this encounter type (e.g. 450 emergency encounters, 9900 elective encounters and 32 newborn encounters).
    Tomorrow, a new encounter type could take place in the hospital and this of course has to be reflected in the dashboard. If I make the assumption that there are only 3 encounter types, then the dasboard would be missing information. So, in this case, should I be mapping the whole column to the pie chart?
    Regards,
    Guven.

  • Dump when i executed bex query

    i execute bex with my user ( i am sap_all), i haven't problem.
    when i executed this same report ( with variable autorisation), i have this dump:
    the dump:
    Erreur d'exécution     GETWA_NOT_ASSIGNED                                                          
    Date et heure          11.12.2009 17:26:11                                                                               
    Désignation                                                                               
    Field symbol has not yet been assigned.                                                      
    Causes                                                                               
    Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLRSEC_CHECKS" had to be terminated because it has               
        come across a statement that unfortunately cannot be executed.                               
    Solutions                                                                               
    Note down which actions and inputs caused the error.                                                                               
    To process the problem further, contact you SAP system                                       
        administrator.                                                                               
    Using Transaction ST22 for ABAP Dump Analysis, you can look                                  
        at and manage termination messages, and you can also                                         
        keep them for a long time.                                                                   
    Analyse des erreurs                                                                               
    You attempted to access an unassigned field symbol                                           
        (data segment 32774).                                                                               
    This error may occur if                                                                      
        - You address a typed field symbol before it has been set with                               
          ASSIGN                                                                               
    - You address a field symbol that pointed to the line of an                                  
          internal table that was deleted                                                            
        - You address a field symbol that was previously reset using                                 
          UNASSIGN or that pointed to a local field that no                                          
          longer exists                                                                               
    - You address a global function interface, although the                                      
          respective function module is not active - that is, is                                     
          not in the list of active calls. The list of active calls                                  
          can be taken from this short dump.                                                                               
    Comment corriger l'erreur                                                                               
    If the error occures in a non-modified SAP program, you may be able to                       
        find an interim solution in an SAP Note.                                                     
        If you have access to SAP Notes, carry out a search with the following                       
        keywords:                                                                               
    "GETWA_NOT_ASSIGNED" " "                                                                     
        "SAPLRSEC_CHECKS" or "LRSEC_CHECKSF06"                                                       
        "LOOK_UP_STAR_VARIABLES"                                                                               
    If you cannot solve the problem yourself and want to send an error                           
        notification to SAP, include the following information:                                                                               
    1. The description of the current problem (short dump)                                                                               
    To save the description, choose "System->List->Save->Local File                           
        (Unconverted)".                                                                               
    2. Corresponding system log                                                                               
    Display the system log by calling transaction SM21.                                       
           Restrict the time interval to 10 minutes before and five minutes                          
        after the short dump. Then choose "System->List->Save->Local File                            
        (Unconverted)".                                                                               
    3. If the problem occurs in a problem of your own or a modified SAP                          
        program: The source code of the program                                                      
           In the editor, choose "Utilities->More                                                    
        Utilities->Upload/Download->Download".                                                                               
    4. Details about the conditions under which the error occurred or which                      
        actions and input led to the error.                                                                               
    end ******************
    best regard
    francoise

    Try applying the following OSS Notes into your BW system. These should resolve the issue.
    [OSS  Note 1244842 - Termination LOOK_UP_STAR_VARIABLES-01-|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1244842] (relevant for BW 7.00 SP20, BW 7.01 SP3, BW 7.10 SP7 or BW 7.11 SP1)
    [OSS Note 1290949 - Dump GETWA_NOT_ASSIGNED for Query on InfoSet|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1290949] (relevant for BW 7.00 SP21, BW 7.01 SP4, BW 7.10 SP8 or BW 7.11 SP2)

  • Query execute() API goes for inifinite wait (Hang)

    Hi
    I am using BDB XML 2.4 in Fedora core-4. when I execute xquery update operation followed by FLWOR get query, the execute() API goes for infinite wait. We have tried setting NOWAIT flags to see if it waits for lock, but the program is in INFINITE wait (hang) state.
    Below is the sample code and query I have used.
    #include <dbxml/DbXml.hpp>
    using namespace DbXml;
    int
    main(int argc, char **argv)
         std::string containerName = "myContainer.dbxml";
         std::string docFilename = "./NECB1.xml"; // the filename
         std::string queryString1 = "declare namespace SWI='SWI'; <getBulkResult> { let $i :=collection()//SWI:wmanIfBsOfdmaDownlinkChannelTable return ($i)} </getBulkResult>";
    std::string queryString = "replace node collection()//SWI:wmanIfBsOfdmaDownlinkChannelTable/SWI:wmanIfBsOfdmaDownlinkChannelEntry[@ifIndex='2']/SWI:wmanIfBsOfdmaDownlinkCenterFreq with <SWI:wmanIfBsOfdmaDownlinkCenterFreq>3</SWI:wmanIfBsOfdmaDownlinkCenterFreq>";
         try {
              u_int32_t env_flags=DB_CREATE|DB_INIT_LOCK|DB_INIT_LOG|DB_INIT_MPOOL|DB_AUTO_COMMIT|DB_RECOVER|DB_INIT_TXN;
              DbEnv *clEnv = new DbEnv(0);
    clEnv->open("/tmp",env_flags,0);
              XmlManager mgr;
              if (mgr.existsContainer(containerName))
                   mgr.removeContainer(containerName);
              // Now it is safe to create the container
              XmlContainer cont = mgr.createContainer(containerName);
              u_int32_t cf =1000; //time out value in micro seconds
              clEnv->set_timeout(cf,DB_SET_LOCK_TIMEOUT);
              // All Container modification operations need XmlUpdateContext
              XmlUpdateContext uc = mgr.createUpdateContext();
              // Create the file input stream
    XmlInputStream *myStream = mgr.createLocalFileInputStream(docFilename);
    // Put the document in the container
    cont.putDocument(docFilename, myStream, uc, 0); //TODO try without last parm(0)
              std::cout << "File loaded" << std::endl;
              // Querying requires an XmlQueryContext
              XmlQueryContext qc = mgr.createQueryContext();
              qc.setDefaultCollection(containerName);
              qc.setNamespace("SWI","SWI");
              std::cout << "update query " << std::endl;     
              XmlQueryExpression expr = mgr.prepare(queryString, qc);
              XmlResults res = expr.execute(qc);     //modify
              std::cout << "get query " << std::endl;     
              XmlQueryExpression expr1 = mgr.prepare(queryString1, qc);
    XmlResults res1 = expr1.execute(qc);     //getbulk
              std::cout << "The query modify, '" << expr.getQuery() << "' returned " <<
              res.size() << " result(s)" << std::endl;
              XmlValue value;
              std::cout << "Result 1: " << std::endl;
              while (res.next(value)) {
                   std::cout << "\t" << value.asString() << std::endl;
              std::cout << "The query 2 bulk , '" << expr1.getQuery() << "' returned " <<
    res1.size() << " result(s)" << std::endl;
              XmlValue value1;
    std::cout << "Result 2: " << std::endl;
    while (res1.next(value1)) {
    std::cout << "\t" << value1.asString() << std::endl;
         } catch (XmlException &xe) {
              std::cout << "XmlException: " << xe.what() << std::endl;
         return 0;
    Sample output:
    ===========
    [root@localhost santhosh]# ./query
    File loaded
    update query
    get query
    ^C
    Please let me know what could be the issue. Do I need to set any transaction related flags? I hope it should through exception if any setting/query is wrong.
    Thanks,
    Santhosh

    Hi Santhosh,
    Because you aren't using explicit transactions, your update query is being auto-transacted, and the read-only query is running without a transaction. This is very bad, and is giving you a self-deadlock situation. You should use an explicit transaction for your queries.
    John

  • Output mismatch between BEx query output and WebI Report output

    Hi All,
    I have a BEx query in which there are only characteristics placed in rows.
    There are combinations of the values of the characteristics giving different records in the query output.
    Date is one of the characterisctics in the query output.
    There is an output mismatch between the query output and the WebI report output in the following case:
    When there are 'Not Assigned' or '#' or blank values, there are additional entries(rows) in the WebI report, giving repeating or wrong entries in the Date field. This is incorrect data.
    Is this because of the  'Not Assigned' or '#' or blank values of the Characteristics or is there any other reason?
    How do I fix this?
    Please helo me with this.
    Thanks and Regards,
    Srilakshmi B

    Hi Rajesh,
    I need to verify the WebI report output for records with # and 'Not assigned' values for the cHracteristics in the report.
    So I cannot check the WebI report by hiding the # or Not assigned values.
    The problem is that in the Query output the records are like these shown below:
    Char1                    CHar2                          CHar3                       Date field
    A                             B                                 C                                Date1
    #(Not assgined)      #(Not assgined)      #(Not assgined)             No value
    Where as the WebI report output is as below:
    Char1                    CHar2                          CHar3                       Date field
    A                             B                                 C                                Date1
    #(Not assgined)      #(Not assgined)      #(Not assgined)            Date1
    As shown here, there are wrong/repeating entries for the Date field in the WebI report output.
    Please check this and let me know what could be the issue and how do I fix it.
    Thanks and Regards,
    Srilakshmi B

  • SQL Query Executing longer time

    Hi , The below SQL query executing longer time . Please help to Improve the query performance. The query continuously running for more than 24 hours and failing with roolback segment error. Not getting the final output. Most of the tables are having milions of records.
    Select distinct
    IBS.ADSL_ACCESS_INFO,
    IBS.LIJ ,
    regexp_substr(OBVS.REFERENTIE_A,'[[:digit:]]+') as O_NUMBER,
    DBS.CKR_NUMMER_CONTRACTANT,
    DBS.DNUMBER
    FROM CD.IBS,
    CD.OIBL,
    CD.IH,
    CD.ODL,
    CD.OH,
    CD.DBS,
    CD.OBVS
    Where IBS.END_DT = To_Date('31129999', 'ddmmyyyy')
    AND OIBL.END_DT = to_date('31129999', 'ddmmyyyy')
    AND DBS.END_DT = to_date('31129999', 'ddmmyyyy')
    AND OBVS.END_DT = to_date('31129999', 'ddmmyyyy')
    AND OBVS.REFERENTIE_A LIKE 'OFM%'
    AND OIBL.INFRA_KEY = IH.INFRA_KEY
    AND OIBL.ORDERS_KEY = OH.ORDERS_KEY
    AND IBS.INFH_ID = IH.INFH_ID
    AND ODL.ORDH_ID = OH.ORDH_ID
    AND DBS.DEBH_ID = ODL.DEBH_ID
    AND OBVS.ORDH_ID = ODL.ORDH_ID
    Order By IBS.LIJ
    All the columns which are present in the where condition are having either Index/key (Primary/unique) except END_DT column.
    Please Advise

    Predicate pushing can help when it greatlly restricts the number of rows - you must experiment - might not work with all predicates pushed (as shown here)
    select distinct
           ibs.adsl_access_info,
           ibs.lij,
           obvs.o_number,
           dbs.ckr_nummer_contractant,
           dbs.dnumber
      from (select infh_id,adsl_access_info,lij
              from cd.ibs
             where end_dt = to_date('31129999','ddmmyyyy')
           ) ibs,
           (select infra_key,orders_key
              from cd.oibl
             where end_dt = to_date('31129999','ddmmyyyy')
           ) oibl,
           (select ordh_id,regexp_substr(obvs.referentie_a,'[[:digit:]]+') as o_number
              from cd.obvs
             where end_dt = to_date('31129999','ddmmyyyy')
               and referentie_a like 'OFM%'
           ) obvs,
           (select debh_id,ckr_nummer_contractant,dnumber
              from cd.dbs
             where end_dt = to_date('31129999','ddmmyyyy')
           ) dbs,
           cd.ih,
           cd.odl,
           cd.oh
    where oibl.infra_key = ih.infra_key
       and oibl.orders_key = oh.orders_key
       and ibs.infh_id = ih.infh_id
       and odl.ordh_id = oh.ordh_id
       and dbs.debh_id = odl.debh_id
       and obvs.ordh_id = odl.ordh_id
    order by ibs.lijRegards
    Etbin

Maybe you are looking for

  • Avoid automatic insertion of CR's and LF's

    Hello! How can I avoid the automatic insertion of CR's and LF's by JSP tags? I am developing a XHTML application with Cocoon which uses JSPs. One of my "pages" is composed of a list of images which need to be inserted side by side, without any spaces

  • Can't drag and drop adresses in mail anymore

    Hello, Since I upgraded to Maverick (OS X 10.9 (13A603)), I can't drag and drop adresses from the adressbook to mail anymore (even Cc or Cci). (I did the last update of Mail) Never had this problem with Lion or Mountain Lion. I've seen in the forums

  • Callable object with external backend

    Hi everyone! Is it possible to create a form (the callable object) in Guided Procedures which takes its data from an external database? For example, say I want to create a callable object in Guided Procedures which picks up user information from an M

  • How many pages can Muse handle?

    How many pages and/or how big of a site can Muse handle? Thanks, Roddy

  • Installation issues with premiere elements 10

    I am trying to re-install premiere elements 10 on my PC. I have windows7. I keep getting an error message at the end of install saying that there is an error in installing shared technologies... It's never done this in the past and disc is fine. Help