SOURCE TABLE FOR GRN IN MM

Hi,
Please let me know how to find the source table for GRN in MM .
Thanks  in Advance,
Manu

Hi,
You can also use ST05..
Switch on the SQL Trace..
Execute the transaction..
Switch off the SQL Trace..
You can see the tables that were used in the transaction.
Reward points if found helpful..
Cheers,
Chandra Sekhar.

Similar Messages

  • Source tables for forms and tabular forms must have a primary key.

    Why does HTML DB 2.0 return the message
    "Source tables for forms and tabular forms must have a primary key."
    when trying to generate a "Report and Form" page based on a view defined like "create view <applicationschema>.a as select * from <sourceschema>.b" ?
    It should be possible for HTML DB to "see" that the table "<sourceschema>.b" already has a primary key.
    bw - Christian

    Christian,
    In the create application wizard, when creating form or tabular form pages, you can only use tables with primary keys, and not views, because that wizard is automatically deriving the primary key from the table definition. If you want to build forms on views or tables without a primary key, you need to use one of the create form wizards while working on an existing application. Those wizards allow you to pick your own column as a primary key column.
    Regards,
    Marc

  • How to identify the source column and source table for a measure

    Does anyone have a query that I can use to positively identify the source column and source table for a cube measure in an SSAS cube?  Visual Studio shows ID, Name, and Source, but it is nearly worthless in a large cube and database.
    Also - the same for a dimension would be great.
    If no query exists for this, can someone please explain how to find the source column/table for a measure and for a dimension?
    Thanks.

    DMVs don’t expose the DataSourceView content. AMO is much better suited for object model operations like
    this than the DMVs. PowerShell is also sometimes an option, but in this case C# code would be much easier because analyzing the contents of the DataSourceView is much easier using the .Net DataSet class.
    Hope this helps.
    Reeves
    Denver, CO

  • Multiple source tables for Measures dimension.

    Hi,
    We have two different SQL source tables for the Measure dimension in our project. Both the tables have the same structure but the Measures they contain are different. Based on certain condition Essbase will have to pick up Measures from one of the two tables. So basically the source table changes based on the condition. Is it possible to design rule files to achieve this? Please help me with this.
    Thanks,
    Krishna

    as I am sure many will say essbase and load rules are not really an ETL tools.^^^ :)
    Glenn is going to counter with a "I know how to do this in three steps using create column as text, join, and a oft-overlooked but awesome command that everyone but Tom Tortolani (I think I have the spelling on that right -- he was the Arbor employee that wrote Load Rules) forgot.
    I 100% agree with John -- why not do it in SQL?
    Regards,
    Cameron Lackpour
    Edited by: CL on Jan 23, 2013 6:33 AM
    Misspelt Tom's name

  • How to identify EBS Source tables for SC and OM modules?

    Hi,
    I need to identify EBS source tables for Supply Chain and Order Management module.
    What prefix I should check in EBS tables?
    Is there any document on this?
    Regards
    Sudipta

    Check etrm.oracle.com
    For order Management you should check with OE
    Purchasing PO and inventory INV and I guess for ASCP MSC
    Mahendra

  • What is the source table for repository browser info?

    Hi guys,
    I need to create report for everyday's data refresh, mostly like what repository browser does. So what is the source table for repository browser info? I am in OWB 10gR2. Thanks a lot.

    I believe the runtime audit browser uses the views that start with "RAB" in the control center.
    But it would probably better if you used the Audit Execution views. More information can be found in the "API and Scripting Reference" document...
    http://download.oracle.com/docs/cd/B31080_01/doc/owb.102/b28225/api_2runviews.htm
    In order to get access to the Public views from SQL Plus using a schema other than the control center, I believe you need to grant the ACCESS_PUBLICVIEW_BROWSER sys privilege to each OWB user. Look at Note:434718.1 for more information.

  • Source  table for info object

    Hi,
    Can anybody tel me the  SOURCE TABLE FOR the Info Object <b>Plant</b>  technical name is " 0PLANT "..Is coming under Info Cube  "Purchasing Data "..
    Thanks in advance
    Umesh mc

    Barbara,
    Did you do the replication of the datasources ?
    Goto SourceSystem -> select your BW system -> right click replicate datasources.
    Then refresh your object tree, it should show you the datasource.
    Hope this helps,
    GSM.

  • Source tables for ST03 data - can only find structures!

    Does anyone know which tables feed the structures (e.g. STA1) for ST03?  I've searched all over the place and all I can find are structures.  I need to run a query against the source tables.  Thanks for your help.

    Hi,
    See whether ST03N will meet your needs?
    For more options see SAP and SAP notes for MONI or TCOLL or ST03(N) (e.g. SAP notes 12103, 143550 and function module SAPWL_ACCNT_GET_SYSTEM_USAGE).
    Cheers,
    Julius
    This coding also helps to understand it a bit:
    *&      Form  TRANSLATE_TCODE_REPORT
    *       Translate/repair report and tcode names of statistic records   *
    *  -->  TCODE     transaction code
    *  -->  DYNPN     dynpro number
    *  -->  ttype     task type
    *  -->  USER      user name
    *  -->  TERMNL    terminal ID
    *  <->  REPO      report
    *  <--  ENTID     entry ID
    FORM translate_tcode_report     USING
                                       tcode LIKE sapwlpfnrm-tcode
                                       dynpn LIKE sapwlpfnrm-dynpronr
                                       ttype LIKE sapwlpfnrm-tasktype
                                       user  LIKE sapwlpfnrm-account
                                       terml LIKE sapwlpfnrm-terminalid
                                       repo  LIKE sapwlpfnrm-report
                                       entid TYPE entry_id_type.
      CLEAR entid.
      entid-type = 'R'. "field TCODE_OR_REPORT contains a report name
      CASE ttype.
        WHEN tt_autoabap.
          entid-tcode_or_report = repo = 'AutoABAP'.
          EXIT.
        WHEN tt_bufref.
          entid-tcode_or_report = repo = 'Buf.Sync'.
          EXIT.
    * 5.0 bei Tasktypen ALE, RFC, CPIC wird der TCODE mitgeliefert
        WHEN tt_ale.
          IF NOT ( tcode IS INITIAL ).
            entid-type   = 'T'.
            entid-tcode_or_report = tcode.
            repo = 'ALE'.
          ELSE.
            entid-type = 'R'.
            entid-tcode_or_report = repo = 'ALE'.
          ENDIF.
          EXIT.
        WHEN tt_rfc.
          IF NOT ( tcode IS INITIAL ).
            entid-type   = 'T'.
            entid-tcode_or_report = tcode.
            repo =  'RFC'.
          ELSE.
            entid-type = 'R'.
            entid-tcode_or_report = repo = 'RFC'.
          ENDIF.
          EXIT.
        WHEN tt_cpic.
          IF NOT ( tcode IS INITIAL ).
            entid-type   = 'T'.
            entid-tcode_or_report = tcode.
            repo = 'CPI-C'.
          ELSE.
            entid-type = 'R'.
            entid-tcode_or_report = repo = 'CPI-C'.
          ENDIF.
          EXIT.
      ENDCASE.
      CASE repo.
        WHEN 'SAPMSYST'.
          CASE dynpn.
            WHEN '0011'.
              entid-tcode_or_report = repo = 'Logoff'.          "#EC NOTEXT
            WHEN '0020'.
              entid-tcode_or_report = repo = 'Login_Pw'.        "#EC NOTEXT
            WHEN '0040'.
              entid-tcode_or_report = repo = 'MainMenu'.        "#EC NOTEXT
            WHEN '0010'.                   "nicht mehr R2 Lgout !!
    *          entid-type            = 'T'.
    *          entid-tcode_or_report = '/LON'.
    *          repo                  = 'R2 Lgout'.
              entid-tcode_or_report = repo.
            WHEN '0050'.
              entid-type            = 'T'.
              entid-tcode_or_report = '/LON'.                   "#EC NOTEXT
              repo                  = 'R2 Login'.               "#EC NOTEXT
            WHEN '0200'.
              entid-tcode_or_report = repo = 'New Pswd'.        "#EC NOTEXT
            WHEN OTHERS.
              entid-tcode_or_report = repo.
          ENDCASE.
        WHEN 'SAPMSSY0'.                   "Logon and other system exits
          CASE dynpn.
            WHEN '0120'.
              IF tcode = 'SE38' OR tcode = 'SA38' OR tcode = 'SE80'.
                entid-tcode_or_report = repo = 'Rep_List'.
              ELSE.
                entid-tcode_or_report = repo = 'Login_Ok'.
              ENDIF.
            WHEN OTHERS.
              entid-tcode_or_report = repo.
          ENDCASE.
        WHEN 'SAPMSSY2'.                   "BTC Control
          CASE dynpn.
            WHEN '4004'.
              entid-tcode_or_report = repo = '(B)SCHDL'.
            WHEN '4005'.
              entid-tcode_or_report = repo = '(B)STRTR'.
            WHEN '4006'.
              entid-tcode_or_report = repo = '(B)ZOMBI'.
            WHEN '4007'.
              entid-tcode_or_report = repo = '(B)EVDRI'.
            WHEN '4008'.
              entid-tcode_or_report = repo = '(B)EXTSC'.
            WHEN '4009'.
              entid-tcode_or_report = repo = '(B)AUTOD'.
            WHEN '4010'.
              entid-tcode_or_report = repo = '(B)SWTCH'.
            WHEN OTHERS.
              entid-tcode_or_report = repo = '(B)OTHER'.
          ENDCASE.
        WHEN 'SAPMSSY3'.                   "ABAP Debugger
          entid-tcode_or_report = repo = 'Debugger'.            "#EC NOTEXT
        WHEN 'SAPMSSY4'.                   "Update control
          entid-tcode_or_report = repo = 'Upd Ctrl'.            "#EC NOTEXT
        WHEN 'SAPMSSY6' OR 'SAPMSSY8'.     "Auto ABAP (SAPMSSY8 since 4.5)
          entid-tcode_or_report = repo = 'AutoABAP'.            "#EC NOTEXT
        WHEN 'SAPMSSY7'.                                        "Scheduler
          entid-tcode_or_report = repo = 'Schedulr'.            "#EC NOTEXT
        WHEN 'SAPMSEDT'.                                        "Editor
          entid-tcode_or_report = repo = 'Rep_Edit'.            "#EC NOTEXT
        WHEN OTHERS.
          IF repo IS INITIAL.
            IF dynpn IS INITIAL.
              IF user = sapsys_user.
                IF terml IS INITIAL AND ttype NE tt_btc.
                  entid-tcode_or_report = repo = 'System'.      "#EC NOTEXT
                ELSE.
                  entid-tcode_or_report = repo = '?'.
                ENDIF.
              ELSE.
                entid-tcode_or_report = repo = 'Aborted'.       "#EC NOTEXT
              ENDIF.
            ELSE.
              entid-tcode_or_report = repo = '?'.
            ENDIF.
          ELSEIF tcode = 'SE38'   OR
                 tcode = 'SA38'   OR
                 tcode = 'SE80'   OR
                 tcode = 'SARP'   OR       "SARP ausfiltern (Berichtsbaum)
                 tcode = 'SART'   OR       "SART ausfiltern (Berichtsbaum)
                 tcode = 'GR55'   OR       "GR55 ausfiltern (Berichtsbaum)
                 ttype = tt_btc   OR
                 tcode IS INITIAL.
            entid-tcode_or_report = repo.
          ELSE.
            entid-tcode_or_report = tcode.
            entid-type            = 'T'.
    * removed in release 6.30
    *        IF entid-tcode_or_report(3) CA space OR
    *           entid-tcode_or_report    CA '!'.
    *          entid-tcode_or_report = '!XYZ'.
    *        ENDIF.
          ENDIF.
      ENDCASE.
    ENDFORM.                               " TRANSLATE_TCODE_REPORT

  • Creating time source table for time dimension?

    hi exports
    can any one helps to create time source table or view_ for time dimension for awm_ mapping ?
    thanks
    Edited by: 1008794 on May 30, 2013 12:21 AM

    No. Thank you very much for reply.I have solved my problem
    Edited by: 1008794 on Jun 3, 2013 6:30 AM

  • Source Tables for Hierarchies

    Hi,
    I have a particular hierarchy defined in BW. It has several nodes in that. I found out from the transfer structure that the hierarchies have the Source from R/3.
    I just want to know the R/3 tables from which the values for these hierarchies is populated.
    Is there any place in either BW or R/3 where i can find the name of the table from which i can get the source table name.Pls clarify
    Sajan.M
    Message was edited by: Sajan Rajagopal

    hi,
    try
    - go to help.sap.com, click 'search documentation', option 'netweaver'
    - type in your hierarchy's datasource name
    - you will get a result list, in right side, click 'datasource'
    - you may get the datasource page with a list of field and r/3 origin table
    this is not always 'luck', if not get it, try another several ways mentioned in Roberto's weblog
    /people/sap.user72/blog/2005/09/05/sap-bw-and-business-content-datasources-in-pursuit-of-the-origins
    hope this helps.

  • A question about the multiple source table for the logical table

    Hi All,
    I am to test, having two physical sources for an logical table, but it is failing as it is always getting data from only one table rather than two tables.
    !http://picasaweb.google.com/KSivaUS/OracleForumQuestions#5433761212378087346!
    Any suggestion or inputs would be appreciated.
    Thanks
    Siva

    your 2 measure columns are in the same unique - low level??
    your connections look good.
    which is the result if you bring only the sales column at your report??is it the sum of the 2 datasources??
    try to repass again all your bussiness model.or make an other one.
    fisrt pass your fact with 2 sources and then your dimensions....
    as i can see you have customer_dim,do both of your columns have the appropriate key to this dimension??try to make a physical connection from both fact sources to this dimension as well as for time...
    if you do it in this way ,there is no possibility not to work
    hope i helped...
    http://greekoraclebi.blogspot.com/

  • Source tables for Query views and book marks

    Hi Gurus,
    We are planning to recreate Query views based on a perticular query from ODS to cube.
    1. Is there a table that can provide me all the query views created on the portal, Created by(User Name), description based on the query name.
    Basically i am looking for the following:
    INPUT: Query Name
    OUTPUT:
    List of all the query views created on that query
    The user name or id who created the query view
    Description of the query view
    2. I tried in meta data repository but it only gives me query views create in older version of the portal and not 7.0.
    Appreciate your immediate assistance.
    Thanks,
    Ravi Ananthuni

    Hi Ravi,
    You can get the views created on the query and the ods too. But not through table...
    This may not the right process but you can find what you want.
    Open WAD --> add any web item into the template --> On the left pane --> Generic --> Data Provider --> Query/View --> Click on the View icon present there.....
    A popup window opens --> Click on Infoareas --> Goto your Info provider present there --> Expand it, you will find the query created on the info provider and the Views created on that query.
    Hope this helps u...
    Regards,
    KK.

  • Source tables for VK13

    Hi. I need to prepare a transaction which will display price-changes history. Very similar is VK13. I'd like to ask which tables keep data about:
    - date of price change
    - amount of new price
    - type of price
    - other info (dates from, to ...)
    <b>But the most important thing: WHO (user) set that new price</b>
    I'd be very thankful for giving me some advice. Greetings. P.

    TABLES: CDHDR, CDPOS, A071, A073, KONP

  • Data type could be same base on source table for blank column

    We have an employee table as mentioned structure.
    EMPNO NUMBER(4),
    ENAME VARCHAR2(10),
    JOB VARCHAR2(9),
    MGR NUMBER(4),
    HIREDATE DATE,
    SAL NUMBER(7,2),
    COMM NUMBER(7,2),
    DEPTNO NUMBER(2)
    I want to create a view base on the same/exact structure data type-length. So is there any way we can define Data type while creating view.
    Actually, I need to create a view base on above structure but only want to get deptno and sum of salary column from emp table and rest of column will remain blank.
    Thanks

    Something like this???
    CREATE OR REPLACE VIEW v_tmp AS
         SELECT NULL empno,
                NULL ename,
                NULL job,
                NULL mgr,
                NULL hiredate,
                sal sal,
                dept_no
           FROM employees
       GROUP BY dept_no;
       Cheers,
    Manik.

  • Source Tables for Integration Directory(Config)

    I'm trying to identify all of the tables used in the configuration....So I can pull the data and help me generate a report on the configuration of our system, documenting each Configuration scenario from   thru all the Rvcr Dets and Interface Detu2026to  each receiver.
    I'm identified some tables (Ex:SSRVCHANNEL or SSRVCHANNELATT).   But still see I'm missing pieces. (EX: where is Variable Substitution info stored or Interface Determination data)
    Anyone out there able to shred some light in this area.
    Thanks.

    Have you tried this search on the Java stack? I believe ID configurations would be stored more on Java stack.
    Regards,
    Prateek

Maybe you are looking for