Query on R/3 version

Hello all,
I have one query. In ECC 6.0 for sandbox there is A088 dotted relationship & the same is not in the development client. Any idea as to why?? I assume that incase of upgradation from 4.7 to 6.0 A088 exsist where as if ECC 6 is installed A088 is not there. Am i Right?
Any reply to this shall be very much appreciated.
rgds,

Hi,
Relationship A088 dotted line relationship is newly added from ECC 6.0, seems while upgradation the relationship table was not properly updated.
Good Luck.
Om.

Similar Messages

  • Creating Query using Financial Statement version (Hierarchy)

    Hi All,
    I've created a Query using Finacial Statement version (0GLACCEXT) against the 0FIGL_VC2 Remote cube.I'm not familiar with Hierarchies. Now I want to run the query based on the 0GLACCEXT .It has revenue nodes .Under the revenue nodes there are some g/l accounts.I want to restrict the revenue node and some of the g/l accounts from that  node. When I restrict the InfoObject based on the Revenue node,I'm getting the correct result.But when I combine the revenue node with some g/l accounts ,It's giving the same result i.e. without filtering the g/l accounts.
    But in the workbook ,I can able to filter the query based on the g/l account.
    Now my question is how should I do the restriction in the query designer itself for getting values based on the g/l accounts
    Pls.let me know the solution, &
    I'll assign the points
    Thanks,
    Raji..

    Hello Srinivas,
    The Hierarchy for 0GLACCEXT is getting loaded from tables T011 & RFDT.
    Under this Hierarchy there will be many node.. Under each node there will be GL Accounts..
    If i am correct you want to restrict the query based on GL accounts in the query designer itself.
    the Infoprovider 0FIGL_VC2 contains 0GL_ACCOUNT, you can use that. Use 0GL_ACCOUNT in the Free Characteristics and attach variable to it.
    I hope this information will helps you..
    Thanks & Regards,
    NK.A
    Dont forget to assign points

  • BUSINESS QUERY (used in lower version of BO 6.x) to be migrated to LIVE OFFICE u2013

    Post Author: shikhirgupta
    CA Forum: Migration to XI R2
    We have  requirement in one of the project whereby they have BUSINESS QUERY (used in lower version of BO 6.x) to be migrated to LIVE OFFICE u2013 new product available in BOXI r2.
    This cannot be migrated as BusinessQuery is no longer supported.
    So we need to do a manual task of getting these Business query converted into Live office.
    Please provide me with a writeup stating, what are the challenges, what is the process for converting BusinessQueries to live office, effort required to do the same.

    Post Author: shikhirgupta
    CA Forum: Migration to XI R2
    We have  requirement in one of the project whereby they have BUSINESS QUERY (used in lower version of BO 6.x) to be migrated to LIVE OFFICE u2013 new product available in BOXI r2.
    This cannot be migrated as BusinessQuery is no longer supported.
    So we need to do a manual task of getting these Business query converted into Live office.
    Please provide me with a writeup stating, what are the challenges, what is the process for converting BusinessQueries to live office, effort required to do the same.

  • Spatial Query across schemas. one version enabled table another not -Hanged

    Hi,
    I am executing a PL/sql procedure where a Spatial query run across two schemas. One table(in x schema) is version enabled and second table(in y schema) is Unversioned. Add to that complexity I am running the procedure from third user logon. I think I have enough previleges, as I won't get any error message.
    But, Procedure worked fine when there is no table is version enabled. It started giving problem when one table got version enabled.
    I have tried by setting " DBMS_WM.Gotoworkspace('LIVE');" before running spatial query. But still no luck, process just hangs on the spatial query.
    I tried by using physical name of the Table (table1_LT) which is making it to work. But, as per Workspace manager guide, applications, programs should NOT use, this physical tables(because it is not the correct way on versioned table).
    1. How can I hint to my query, to use a table from only live version?
    2. Why Query is hanging forever (even tried by leaving it over night....)
    Normally it used to take one or two minutes(before versioning..)
    I have posted it Workspace manager forum, But No Luck (people seems to be shy away after seeing "Spatial query" )
    Any help is highly appriciated

    Hi,
    I will need to know more details about the specific query you are performing. So, please do the following:
    1. list the actual query that you are using
    2. generate an explain plan of the query both before and after the table was version enabled. use @?/rdbms/admin/utlxpls or anything that generates the predicate information.
    3. also, give any pertinent details about the table(size of the table, number of rows expected to be returned, column types in the table, etc).
    Based on that, I will see if I can suggest a possible hint that may be able to improve the performance of your query.
    Regards,
    Ben

  • SQL Query to detect Oracle version

    Hello,
    For our application, we need to programmatically detect the version of the Oracle instance. Can someone please tell me if there is any SQL query I can run to get the version information?
    Thank you in advance for enlightening me.
    Pradeep

    hi,
    SQL> select substr(banner,instr(banner,'Release')+8,instr(banner,' - ')-instr(banner,'Release')-8) from v$version where banner like 'Oracle%';
    SUBSTR(BANNER,INSTR(BANNER,'RELEASE')+8,INSTR(BANNER,'-')-INSTR(
    7.3.4.5.0
    SQL> conn scott/tiger@lsc65
    Connected.
    SQL> select substr(banner,instr(banner,'Release')+8,instr(banner,' - ')-instr(banner,'Release')-8) from v$version where banner like 'Oracle%';
    SUBSTR(BANNER,INSTR(BANNER,'RELEASE')+8,INSTR(BANNER,'-')-INSTR(
    8.1.7.4.0
    SQL> conn scott/tiger@lsc67
    Connected.
    SQL> select substr(banner,instr(banner,'Release')+8,instr(banner,' - ')-instr(banner,'Release')-8) from v$version where banner like 'Oracle%';
    SUBSTR(BANNER,INSTR(BANNER,'RELEASE')+8,INSTR(BANNER,'-')-INSTR(
    9.2.0.6.0
    SQL> conn scott/tiger@lsc68
    Connected.
    SQL> select substr(banner,instr(banner,'Release')+8,instr(banner,' - ')-instr(banner,'Release')-8) from v$version where banner like 'Oracle%';
    SUBSTR(BANNER,INSTR(BANNER,'RELEASE')+8,INSTR(BANNER,'-')-INSTR(
    10.1.0.3.0
    SQL> HTH
    Laurent Schneider
    OCM DBA

  • X-path query to get all versions of  a node at a given path in JSP

    hi need a xpath query so that i can list all the versions of a selected node which can be used for restoring the version to that particular one??

    I'm not sure about an xpath query (which was deprecated in JCR 2.0), but here's how you could use the JCR API to retrieve all of the versions from a path:
         * Returns all of the versions at the specified path as a List of Versions.
         * @param session
         *            the currect JCR session, must not be null
         * @param path
         *            the absolute path of the node to retrieve
         * @return the list of versions at the specified path
         * @throws UnsupportedRepositoryOperationException
         *             thrown if the node at the specified path is not versionable
         * @throws RepositoryException
         *             an unexpected exception occurs interacting with the JCR
         *             repository
        public List<javax.jcr.version.Version> getVersions(final Session session,
            final String path) throws UnsupportedRepositoryOperationException,
            RepositoryException {
        final List<Version> versions = new ArrayList<Version>();
        final VersionManager versionMgr = session.getWorkspace()
            .getVersionManager();
        final VersionHistory versionHistory = versionMgr
            .getVersionHistory(path);
        final VersionIterator versionIterator = versionHistory.getAllVersions();
        while (versionIterator.hasNext()) {
            versions.add(versionIterator.nextVersion());
        return versions;

  • Infoset Query not fetching new Versions

    hi,
    I have an infoset Query on Cost center. Earlier that Query was haviing only 1 planning version , ie 0. but now we modified it and added 1 more planning version, ie version 2...
    But wen we are executing the Infoset for the version 2, it is telling " No data selected"
    But the underlying table have data for version 2...
    can anyone help me with this...

    Hi I am executing the  Query, C3, in SQ02. And In SQ01 i checked the infoset, BC02. There i found out that it is made up of a table join of COST and CSSL table. I went to that table and checked. There are two versions. Both Version 0 and version 2. But wen im executing the Query only version 0 is displaying. Not version 2.
    i need to display both.

  • How to query for a firmware version?

    Hi,
    My customer requires to report all firmware versions for all components. How do I acquire a firmware version for a PXI card? I have a number fo card (PXI-5421, PXI-4072, PXI-6653).
    Thanks
    CT

    Hey Cimteker,
    Firmware is handled differently accross various cards. Unfortuantely because of this, there's no one easy way to get firmware versions for everycard since it isn't all handled in the same way. I'm curious what the overall application is and why all of the firmware versions for the cards are needed. The driver version updates all the firmware that's necessary. Because of this, alot of time firmware is driver dependant.
    Do you by any chance have an open service request with this same issue? We're currently looking into the firmware versions for these cards, and I'm wondering if the two issues are tied together.
    The PXI-5421 is an arbitrary waveform generator FGEN device. with FGen, there's a VI inside of the driver that will actually return the firmware. It's called niFGEN Revision Query VI. You can get there by going to NI-FGEN » Utility >» niFgen Revision Query.vi. I also believe niSCOPE has the same situation. 
    Lea D.
    Applications Engineering
    National Instruments

  • Query to retrieve latest version

    Hi,
    I am trying to create a query that retreives the latetst version of a product. There are 2 tables I query from, one has the product number and one has the version- a varchar2(60) datatype. The versions are listed A,B,C..... etc. So I want the query to give me one row for each product with its latest version. This is the query I have thus far,
    SELECT A0.Prod_num, A0.version
    FROM (SELECT A0B.Prod_num, A0.version
         FROM tb_1 A0,tb_2 A0B
         WHERE (A0.tb_1pk=A0B.tb_2pk)) A0
    order by A0.Prod_num
    This returns duplicate rows of products and versions.
    Thanks.

    sybrand_b wrote:
    SELECT A0B.Prod_num, A0.version
    FROM tb_1 a0, tb_2 A0B
    where a0.tb_1pk = a0b.tb_2pk
    and a0.version =
    (select max(version)
    from tb_1 a0a
    where a0a.tb_1pk = a0.tb_1pk
    Question: This aren't the real table and column names, hopefully, are they?
    They are so cryptic the chance for erroreneous statements is 99.9 percent!
    Sybrand Bakker
    Senior Oracle DBASybrand,
    If you think these names are cryptic, the actual names names are much, much worse. This a COTS application and the datatbase object names, for some reason, are completely random and counter-intuitive.
    Thanks for the query solution!

  • Query - data from two versions in the same column

    Hello
    Let me share my business scenario. Maybe you will be able to help me to desgn a query I am looking for.
    I have data in my Info Cube:
    - Version (A for plans and B for actuals)
    - Calendar Month,
    - Sales Amount.
    I would like to create a query which presents Sales Amount per every Calendar Month, but:
    - Data of version B for all of the months before current one (actuals)
    - Data of version A for the current one and all of the nex ones (plans)
    In result I expect the matrix like this:
    Calendar Month     Sales Amount
    2011.01          200 (it is taken from version B - actuals)
    2011.02          300 (it is taken from version B - actuals)
    2011.03          260 (it is taken from version A - plans)
    2011.04          230 (it is taken from version A - plans)
    2011.05          200 (it is taken from version A - plans)
    Is it possible?
    Cheers,
    A.

    Hello Brian,
    Thank you for your answer. It is approach I will use, I think. However let me ask: Would it be possible to have a Version in this layout, too? I mean to see, which value comes from Version A and which comes from Version B? Something like this:
    Calendar Month Version Sales Amount
    2011.01  B  200
    2011.02  B  300
    2011.03  A  260
    2011.04  A  230
    2011.05  A  200
    A

  • SQL Query to find Discoverer version installed

    Hi ,
    As a developer, Is there a back-end DB sql query (or script) that can be run on DB to find the version of Oracle Discoverer installed?
    Will the query be different if Discoverer is used with Oracle Applications (R12.1.3) as compared to a Discoverer running on a plain stand alone Oracle Database (no Oracle apps)?
    thanks,
    gg.

    Hello gg
    The VER_NAME and VER_DESCRIPTION are typically never filled in and can be ignnored.
    The VER_RELEASE is the EUL version as you rightly summised. This version is 100% compatible with Discoverer 11g and if you already have it you can upgrade from 10g to 11g without changing anything in the EUL
    VER_MIN_CODE_VER is the minimum version of Oracle Discoverer that can be used with this EUL. In this case 10.1.2.45.20 is 10g Release 2
    VER_EUL_TIMESTAMP is the date and time this version of the EUL was released by Oracle - again you can ignore it
    The important fields therefore are the VER_RELEASE and VER_MIN_CODE_VER
    Hope this helps
    Best wishes
    Michael

  • How to query which features my version has?

    Hello guys,
    I just would like to learn that which features my oracle version has? So what is the query for that? I forgot which data dictionary table stores this information. Thanks

    select     name
    ,     detected_usages
    from     dba_feature_usage_statistics
    where      detected_usages > 0This will show you which features are being used.
    or
    select parameter, value from v$option order by 1to see what options are available.

  • Report or Query, check for Visio versions - Standard, Professional, etc?

    Hi,
    Just wondering if anyone knows a good method with 2012 of reporting on versions of Visio - e.g. Professional, Standard, Premium etc. I can't seems to find the breakdown anyway.
    I've seen similar queries created for ConfigMrg 2007 Reports, but with the 2012 Report Builder, its not so straightforward to copy and paste a SQL query in (I've tried successfully creating other reports, via "the "edit as text" button, but
    no luck with this sort of report).
    Any help greatly appreciated!
    Thanks.

    http://social.technet.microsoft.com/Forums/office/en-US/07a859bb-d1c8-49a7-8f4c-bcf81b887221/how-can-i-tell-if-visio-standard-or-pro-are-installed?forum=visiogeneral
    if key
    HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Visio\Solution\UML Solution
    exists then you have Visio Pro.

  • Querying for company database version

    Dear Experts,
    Via the SQL Management Studio, what will be the query to allow us to extract the company database version? PL version?.. etc
    Much Thanks in Advance!
    Warmest Regards,
    Chinho

    You can also use the following Query in Company Database
    Select * from CINF
    To know the Version Number from SBO-Common use the following query
    Select * from SINF

  • SQL query return wrong Windows version

    when excuting   'select @@VERSION' returns wrong Windows version. Why?

    when excuting   'select @@VERSION' returns wrong Windows version. Why?
    SELECT @@VERSION will return SQLServer version and not windows version
    Even in case of sql, if you're seeing a different version from what your management studio suggests, then it may be that you're SSMS (client tool) is of another later version whereas the server instance which you're actually connecting to may
    be of different (earlier) version.
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

Maybe you are looking for

  • Credit note..Urgent

    Hi Gurus, When i am creating a credit note with reference to billing document, how to customize that the user should not exceed more than the previous billing doucment value??? Ex: we have raised a billing value of  10000/- our user cannot create a c

  • Recognizing element in the image

    I have an image which is pretty much b&w and it has a black square on white background. How can i determine cooridnates of this square? It is actually scanned doc and these squares are used for calibration and positioning of the scanned image. I gues

  • Empty import folder when importing Mac Mail 6.5 folders to Mac Mail 4.5

    When importing Mac Mail version 6.5 folders into Mac Mail version 4.5 the resulting import folder is completely empty.  The import process happens instantaneously and no error occurs.  Does anyone know if 6.5 is not backwards compatible with 4.5?

  • Firewire connection: Mac OS X (macbook pro) and Windows 7 (hp dv65540)

    I have bought firewire 9-4 pin, and I connected both computers. But neither Mac nor Windows 7 are not visible to each other.I think it should work on the principle plug&play. I know that with writting files from mac os X there are some special condit

  • Update Folio

    I am using the most version of DPS. It seems that the update option is no longer a part of the flyout menu in Folio Builder. I have updated my web Content overlay and I want to update the folio with it. How do you update the folio? Thanks. Dave