How to track the queries for a given info object

Hello All,
I have info object 0COORDER, I wan to know what are list of queries built on this particular info object
Full points just for solution or suggestion
varsha

Hi
This can be easily found in Meta Data Repositry. RSA1 --> Meta Data Repositry --> Choose the category Infoobject and search for your required infoobject, here you get following Info:
1. Display Attributes of the Info Object
2. Navigationla Attributes of the Info Object
3. Queries in which they are used.
4. Used by which MP,Cubes,DSO, Info Set , Transfer Rules etc.
Regards
Raj Rai

Similar Messages

  • How to Track the valuation for IC Stock Transfer

    Hi Folk,
    I have a requirement for Intercompany Stock Transfer Where Plant "A" place PO to Plant "B" and Plant "B" does the Stock Transfer to Plant "A". Both the plant belongs to differnet company code. But both the company code share the same Chart of Account.
    The Issue here is how the Plant "B" maintain the valuation for the Stock Transfer as there is no invoicing generated for this.
    Should you need any further information / clarifiction pls feel free to let me know.
    Pls share your expertise with me.
    Looking forward to hear from you at the earliest.
    Thanks,
    Nihar

    In intercompany STO delivering plant should invoice to recieving plant and it will have the accounting entries as well.Keep in mind that both plants are related to different company codes.Accounting will be done as normal sales process in delivering plant.
    Regards
    Sunil

  • How to Validate the Domain for a given email id. Is a valid or invalid

    Hello Frndz,
    I am trying to validate the domain of a given email as a valid or invalid using the below SQL Block. But the values are hard coded into it.
    Please suggest me some way to validate the email id Domain dynamically, so that it can be identify that the domain exsists or not.
    Please help me. Thanks in advance.
    DECLARE
    l_domain_pos VARCHAR2(50);
    l_at_pos VARCHAR2(50);
    BEGIN
    FOR DOMAIN_CHCK IN (SELECT * FROM s_cnct_test WHERE PROCESSED ='N')
    LOOP
    BEGIN
    l_at_pos :=substr(DOMAIN_CHCK.email_addr,instr(DOMAIN_CHCK.email_addr,'@'));
    l_domain_pos := SUBSTR(l_at_pos,INSTR(substr(DOMAIN_CHCK.EMAIL_ADDR,instr(DOMAIN_CHCK.EMAIL_ADDR,'@')),'.'));
    IF ((l_domain_pos ='.com') OR(l_domain_pos ='.net')OR (l_domain_pos ='.nic.in') OR(l_domain_pos ='.co.in')) THEN
    UPDATE S_CNCT_TEST SET
    DOMAIN_STATUS ='Y',
    PROCESSED = 'Y',
    NEW_COMMENT = 'VALID DOMAIN'
    WHERE ROW_ID = DOMAIN_CHCK.ROW_ID;
    ELSE
    UPDATE S_CNCT_TEST SET
    DOMAIN_STATUS ='X',
    PROCESSED = 'N',
    NEW_COMMENT = 'NOT A VALID DOMAIN'
    WHERE ROW_ID = DOMAIN_CHCK.ROW_ID;
    END IF;
    COMMIT;
    END;
    END LOOP;
    END;

    Hi,
    Try something like this
    SQL> create table s_cnct_test(id not null primary key
                            ,email_addr, domain_status,processed, new_comment)
    as
        select 1, '[email protected]', 'Z1', 'N', 'D1**************************' from dual union all
        select 2, '[email protected]', 'Z2', 'N', 'D2***************************' from dual union all
        select 3, '[email protected]', 'Z3', 'N', 'D3*************************' from dual
    Table created.
    SQL> create table valid_domain(domain varchar2(64) not null
                             ,constraint valid_domain_pk primary key (domain))
    Table created.
    SQL> insert into valid_domain(domain)
        values ('.com')
    1 row created.
    SQL> insert into valid_domain(domain)
        values ('.net')
    1 row created.
    SQL> insert into valid_domain(domain)
        values ('.nic.in')
    1 row created.
    SQL> insert into valid_domain(domain)
        values ('.co.in')
    1 row created.
    SQL> commit
    Commit complete.
    SQL> create function domain(pi_email_addr in s_cnct_test.email_addr%type)
       return varchar2
       deterministic
    as
    begin
       return substr(substr(pi_email_addr, instr(pi_email_addr, '@'))
                    ,instr(substr(pi_email_addr, instr(pi_email_addr, '@')), '.'));
    end domain;
    Function created.
    SQL> update s_cnct_test s
       set domain_status =
              nvl((select 'Y'
                     from valid_domain
                    where domain = domain(s.email_addr)), 'X')
          , processed = nvl((select 'Y'
                     from valid_domain
                    where domain = domain(s.email_addr)), 'N')
          , new_comment =  nvl((select 'VALID DOMAIN'
                     from valid_domain
                    where domain = domain(s.email_addr)), 'NOT A VALID DOMAIN')
    where processed = 'N'
    3 rows updated.
    SQL> commit
    Commit complete.
    SQL> select *from s_cnct_test
            ID EMAIL_ADDR     DO P NEW_COMMENT                 
             1 [email protected]  X  N NOT A VALID DOMAIN          
             2 [email protected]   Y  Y VALID DOMAIN                
             3 [email protected] Y  Y VALID DOMAIN                
    3 rows selected.Regards
    Peter

  • How To Track the Errors For LSMW Idoc

    Hello Expert
    While working on Material Master Idoc getting an error message
    Error 51 Application not posted
    Details: IDoc included in IDoc packet containing an error: transfer it separately
    How do i tackle this
    Thanks

    Hi,
        I hope idoc is failing because of problem with the application data. Its not because of RFC. You told that you were getting 51, it means inbound idoc...if its problem with RFC, before creation of idoc itself it should be there...but now idoc created successfully and tried to post / create application document. there it was failing.
        Can you give details some thing like, which inbound FM you are using to post the idoc & idoc type.
    Regards,
    DJ
    reward, if its useful

  • How to identify all the information for a given company code?

    Hi,
    Our company provides data migration services for SAP and other ERP applications. Our customers provide us the specifications for extractions and conversions. We use one or more 3rd party tools to extract data from legacy systems into text/Excel files. Customers use LSMW to load generated files.
    We just got an unusual request. This customer wants to get ALL the data from SAP for a given company code and dump into Excel. They would do some manual editing on the data and load it into a new SAP client.
    In the past, customers would be more specific in their requirements. For example, they will mention Materials, Customers, Inventory, etc. In this case, the customer simply wants ALL the data for a given company code.
    Q1. Is everything in SAP related to company code, either directly or indirectly? For example, can materials be filtered by company code?
    Q2. The tools that we use let us extract data from SAP using SQL-like queries. How do I identify ALL the tables that I would need for a given company code?
    My feeling is the customer themselves are not clear on what they really want. Perhaps they are expecting us to guide them.
    I would appreciate any thoughts that you may have.
    If there is a more appropriate forum for this question, please let me know.
    Thank you in advance for your help.
    Regards,
    Peter

    hi
    t001w is the master table for plants, u can see all plants in this table.
    regads:
    rajesh.k

  • How to get start date of the period for a given date from cube

    I have a situation where i need to find the start day of the period for a given date. is there a way to know that. i want to use that in my report. i enter the date from my report(i have date parameter), depends on the date, i want to display the start day
    of the period. how can i write expression for that in my report?
    ram

    Hi ramprasad74,
    According to your description, you are using Analysis Services as a data source for the report, the cube has hierarchy: Fyear, FQuarter, FPeriod, fweek, Fdate. You want to add a date parameter to the report, after you changed value of the parameter, the
    report will return the first day of FPeriod.
    To achieve your goal, we need to add a parameter to the report, then use the parameter in mdx query. For detail information, please refer to the following steps:
    In the Report Data pane, right-click on a dataset created from a SQL Server Analysis Services data source type, and then click Query. The MDX query designer opens in Design mode.
    On the toolbar, click Design to toggle to Query mode.
    On the MDX query designer toolbar, click Query Parameters symbol. The Query Parameters dialog box opens.
    In the Parameter column, click <Enter Parameter>, and then type the name of a parameter.
    In the Dimension column, choose a value from the drop-down list.
    In the Hierarchy column, choose a value from the drop-down list.
    In the Default column, from the drop-down list, select a single value.
    Click OK. 
    In query designer dialog box, type the mdx query like below:
    with member [Measures].[FirstChild]
    as
    [Date].[Fiscal].currentmember.parent.firstchild.name
    select {[Measures].[FirstChild]} on 0,
    [Date].[Fiscal].[Date].members on 1
    from
    ( SELECT ( STRTOSET(@ParameterName, CONSTRAINED) ) on 0
    from
    [Cube]
    Here are relevant threads you can reference:
    https://social.msdn.microsoft.com/forums/sqlserver/en-US/c7146ac3-40ea-4d53-b321-c707aebbd405/how-to-pass-date-parameter-to-mdx-query
    https://social.msdn.microsoft.com/forums/sqlserver/en-US/fd12a865-bc90-4a65-af42-ce38a8cfa29b/pass-date-time-parameter-to-mdx-query-ssrs
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

  • How to find out the infoProvider for a given dimension table?

    Experts:
    In RSA1, I want to find out the infoProvider for a given dimension table.
    But I am not sure how to display the tables linked to a given infoProvider.
    Could you provide a way to display all tables linked to a given infoProvider?
    Thanks a lot!

    See, The dimension table starts with Dcubename1 and incremental Dcubename2 .... so on
    Ex.ZSD_C01 is your cube name
    Dim tables starts for this is /BIC/DZSD_C011 /BIC/DZSD_C012 ...
    Goto - LISTSCHEMA  - derive cube name from given dim table and enter cube name  - execute - will show you all the tables

  • Hi, I followed the instructions to apply for the Made For iPhone Program. After submission of the necessary documents and information, I have not heard back from Apple. How to track the application progress? Can someone help?

    Hi, I followed the instructions from Apple MFI website, to apply for the Made For iPhone Program. After submission of the necessary documents and information, I have not heard back from Apple for couple weeks. How to track the application progress? Can someone help? < Edited by Host >
    Thank you.
    Best Regards,
    Gerald

    Hi Gerald
    This is a user-to-user forum, and your message will not be received by Apple. You will need to sign into your Developer/MFI account, and contact Apple that way. This can be done here.
    P.S Please do not post your e-mail address here.
    Taylor

  • How to track the transport request number for the Role/Composit Role

    Hi,
    How to track the transport request number for the Role/Composit Role.
    Thanks,
    Ravi

    Use transaction SE03 Transport Organizer Tools
    Execute "Search for Objects in Requests/Tasks" with objects of types:
    R3TR     ACGR     Role
    R3TR     ACGT     Role - User assignment
    Regards

  • How to track the history of supplier sites used for tax reporting (1099)

    Hi,
    Oracle financials doesn't allow two supplier sites setup as tax reportable sites (Unless one is inactive). Suppose if the supplier uses site1 for the year 2009 and site 2 for 2010 and now there is site3 setup as tax reportable. All three sites were setup in 2009 and all three sites are active. Supplier chosen different sites for each year as their tax reportable site.
    How do we know which site oracle used to send 1099 for 2009 & 2010? How to track the history of supplier sites used for tax reporting (1099) in previous years?
    Thanks in advance.
    Regards,
    Ram

    Would the begin_date, end_date and status columns on HZ_PARTY_SITES_USES be any good? Our R12 installations is too new to have accumulated much data yet, but I would look in those columns first.

  • How do I change which application is the (default) for a given file type?

    For .pdf files, I have set the application behaviour to "Always Ask", because sometimes I want to open the pdf, sometimes I want to save it. So far so good.
    Now, when I want to open the .pdf, I have added an application to the dropdown list, so now I have "Adobe Reader 9 (default)" and "okular".
    The problem is this: I *never* open using Adobe Reader. I always want to use okular, but Adobe Reader always appears first on the list, as it is the 'default'. This means I always have to click on the dropdown and select "okular", i.e. an extra step every time I want to open a pdf.
    How do I change which application is the default?

    Yes, I know that. That was the first sentence of my question, but it is not the problem I have.
    I want to change which application is the (default) for a given file type, and this cannot be done from the settings.

  • How to track the transported Variant for a program

    Hi All ,
    Can anyone please let me know how to track the modifications done on program variants , and how to track if it has been transported .
    Thanks In Advance .

    Hi Balaji
    Variants are stored in the table VARID.
    Pushpraj

  • How to delete the queries in  BW Production which are no longer existing.

    Hi,
    How to  delete the queries in BW production which are no longer existing in DEV.
    1. I tried Using RSZDELETE in Production it is not getting deleted and the below message given.
    Query object 4A7V83T3RB4ABIOKSDJT2HWDL is blocked. Deletion has been cancelled.
    2. I tried creating another query in dev with the same technical name and send a transport with deletion
    it is not working.
    Please advise me on this for any function module or any other method.
    Thanks
    Surya

    Hi,
    If you transported the query from DEV and now you want to delete it, you should open a BEx request (Dev Class under which it was originally transported -- or-- Standard - type) in DEV delete the query and move the transport to Production.
    As far as your error is concerned, usually  when you  can delete a query using the delete option in query designer itself,
    Business Explorer> query-> delete objects , when you press execute the system offers you a list of dependent objects on the query(workbook,views), in case the sysytem is unable to delete them i.e.they being used as a input query for a characteristic variable (replacement path),then system throws this error.You can delete these all depndents under there prescribed roles , fav s & then proceed.
    Hope this will be expedite.
    Thax & regards.
    Vaibhave Sharma

  • How to track the login time and logout times of clients

    hai
    please give me the solution
    suppose there are 5 systems connected in LAN.
    how to track the login time and logout times of clients
    for a given time(may be one day or 1 hour) using any programming language.
    please give me the solution

    When the client logs in you write the client's ID and the current time to a database. Likewise when the client logs out. Assuming of course that you have a program that knows when those events occur.

  • How to track the flow of Sharepoint SSRS report requests to troubleshoot slowness

    How to track the flow of requests of Integrated SSRS report links in Sharepoint.
    We are using SSRS with Sharepoint for reporting purpose. The issue is some of the reports get generated fast and some other reports generation is very slow. When the sql query of these reports RDL file is executed, the records are shown fast.
    Also even on clicking the "Add Subscription" link of "Manage Subscriptions" of a report is very slow for some reports, while it is fast for other reports.
    I tried enabling SQL profiler to track the requests.  I have checked profiler log for the SQL statements with exec sp_executesql. But they are not helpful.
    Pls advice on how to track the request of flow of SSRS report request in sharepoint and how to troubleshoot the slowness in  "Add Subscription" link, response of some reports.

    Hi Pradeesh,
    According to your description, my understanding is that you want to track SharePoint SSRS report requests to troubleshoot the performance.
    Developer dashboard is very help full while troubleshooting the issues related to performance in SharePoint 2013.  You can have a try.
    About Developer dashboard, you can refer to the links:
    http://www.sharepoint-journey.com/developer-dashboard-in-sharepoint-2013.html
    http://msdn.microsoft.com/en-us/library/office/ff512745(v=office.14).aspx
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for

  • Bt infinity ordered and told what speed i would re...

    Last week i ordered BT Infinty, Told what speed i would recieve 56mb/s 20mb  I confirmed this with my telephone number and placed an order and a date was set for an engineer to set up infinty, I cancelled my current isp gave bt my migration code, But

  • Problem in XI with RFC Comunications

    HI Gurus I try to configure a scenario synchronus with RFC but when i send the message the system show me the next error: " <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> - <!-- Inbound Message --> - <SAP:Error xmlns:SAP="http://sap.com/xi/

  • Visited link color on unvisited links

    This isn't a major issue, just a curiosity, but does anybody know why I often find links on Google and Wikipedia and the like that are purple, like links to pages I've been to, yet I've never visted them? They're not websites I don't remember visitin

  • Taxes PO Printing

    Hi, I am facing a problem while printing PO 1) I am entering taxes like Excise,VAT,CST,Cess etc    I want that taxes to be printed in PO 2) If multiple line items with diffrent tax conditions are there how can I print that in PO 3) How to treat diffr

  • Unable to install Leopard 10.5

    I bought my MacBook 07/08 and it recently had a problem with the hard drive, requiring the hard drive to be replaced. I installed my start up disks fine, but when I came to install my Mac OS X Leopard disk it ejects the disk when you restart. If you