Field's Table of Origin

Dear All,
What is the TCode to find the Field linked to its Table (not vice versa) or/and To how many Tables it is being linked?
Best regards
Niranjan

Hi Niranjan,
You can try to enter the field name in Data Type in SE11 and then click on the where-used button and choose Table fields.
Another place to try the same is in SE80 > repository information system > ABAP dictionary > Fields > Table fields
Hope this helps...

Similar Messages

  • To find out the Table of Origin and Field in Table of Origin.

    Hi Experts,
    I am in the middle of completing someone else's documentation after a handover.
    Here are th columns that I need to update in the documentation:
    1) Field in Extraction Structure     2) Description of Field in the Extraction Structure 3) Table of Origin 4) Field in Table of Origin
    Most of them are already done. There are only four tables from which all these fields originate.
    Could you let me know how should I find out where a field has originated from.
    Thanks in Advance.
    Regards,
    Chandu.

    Hi,
    it will depend on the datasource: you'll to do the hereunder in the source system
    - if LO/LIS (2LIS....) you can goto LBWE, extract structure maintenance; in the filed selection screen you'll see e.g. "MCtttt ffffff text"; usually the tttt is the table and ffffff is the field. Cross check if the field is really in the table via SE11.
    - if generic, then goto RSO2 and then it will depend if it is a view/table/domain; double click on it or goto SE11; if infoset SQ01; if extract structure then you'll have to analyze the function module extractor ABAP code;
    - for others it will depend....
    hope this helps...
    Olivier.
    Message was edited by:
            Olivier Cora

  • CRMT_BW_DS_ACTIVITY- Field and table origin

    Hi Guys,
                   I am working with this extractor CRMT_BW_DS_ACTIVITY. I am trying to find the origin table and the origin field for each of the fields in this extractor.The sap help document is of no use, for example the first field i look at in the help is ACTIVITY_PARTNER (extract stucture field), the sap help says the origin table is PARTNER and origin field is PARTNER_NO. But in the CRM system there is no table called PARTNER. Can some one shed light on this please.
    Thank you and points for useful replies

    hi,
    add CRMD_ ...
    you can try BWA1 and give datasource name,
    tab 'mapping', add CRMD_ to value in column Segmentname.
    e.g field ACTIVITY_PARTNER, table name is CRMD_PARTNER
    How to find out the tables related to CRM datasources?
    hope this helps.

  • Table of origin for a field in extract structure ??

    Is there a way to look at the extract structure of a datasource and know the tables from which its pulling the data from ?
    I know I can always get them from help.sap.com by going to datasources and can look at the table of origin for a particular field...
    I was wondering if I can look at the same information on the system.
    I appreciate your replies ..
    Thanks,
    Rishi.

    Rishi,
       we can know get the tables in different ways, the best way and easy way to search the tables is HELP.SAP.COM as you said. you can use communication structure, ST05, SM50.
    All the best.
    Regards,
    Nagesh Ganisetti.

  • Table of origin for a specific field in the extract structure

    Hello
    I'm currently working with the sap bw data source 0HE_SLC_PCP_1 (higher education & research). Now, I'd like to know the name of the table of origin where the GUID 16 (CQGUID; field of the according extract structure) is stored on the R/3.
    Can someone tell me how I can find that table? Unfortunately, the SAP documentation doesn't contain that data source, only e.g. 0HE_SLC_REG_1 --> http://help.sap.com/SAPHELP_NW04s/helpdata/EN/38/26957aad7545e2b4d79aa4675cfa18/content.htm
    Thank you for your help
    Patrick

    One option is you find the data element of that field GUID.
    Now go to SE11 transaction and in data type put that data element and press where used list. In that select tables.
    This will give you a list of tables where that field is used.
    But again if there are lots of them it will be difficult to find.
    The only option in that case is debug the extractor and find out.

  • Table of Origin from R/3 system?

    Hi all,
    I am able to find Data elements and field names for the Datasource for the Data Target "Vendor evaluation" from help.sap.com.
    But the "Table of Origin" column is empty in tht DataSource for "Vendor Evaluation".
    I tried to find it out from Metadata Repository also, but cudnt find it.
    so can plz help me clearly by giving the expalnation,so as to from where can i get the "Table of Origin"?

    check this thread with the same question
    Table of origin is missing

  • Regarding LO_OBJID field of table DMS_DOC2LOIO...

    Gurus,
    I am new to DMS and spposed to achieve a given scenario. I have system connection established succesfuly as follows.
    Filenet -> ACSAP -> SAP DMS.
    So whenever I create original document while creating a   DIR in CV01N, I choose it from the desktop. Then when I click on checkin, it asks me for storage category and then I it gets saved in content server (here filenet).
    I assume that only when I am checking in the document, the doc archive ID will be created. So the LO_OBJID field in table DMS_DOC2LOIO will get populated with archive doc ID of the content server.
    But I am seeing that the field  LO_OBJID gets populated even when I just create the original document from the desktop. So how the  LO_OBJID of the DIR is linked to actual archiv doc ID in SAP.
    Please help.
    Regards,
    Rajesh.

    I think i have the same issue ,  can you tell me how to solve the issue ,
                                  thank you very much

  • Update PRODH field from table T179T

    hi,
    i want to update PRODH field from table T179T into table VBRP. for this we
    need to take selection option also.
    selection option will be :
    ·             Sales Organization (field VBRK-VKORG)
    ·       Billing Date Range (VBRK-FKDAT)
    ·       Distribution Channel (Vbrk-vtweg
    while i have done this for one field by using hard code but like:
    TABLES: VBRP.
    CLEAR VBRP.
    UPDATE VBRP SET PRODH = 'PLC01' WHERE VBELN = '0008300051'.
    SELECT SINGLE * FROM VBRP WHERE VBELN = '0008300051'.
    WRITE: VBRP-VBELN,VBRP-PRODH.
    but this is not the right way. please guide me how to solve this.

    TABLES: VBRP.
    CLEAR VBRP.
    UPDATE VBRP SET PRODH = 'PLC01' WHERE VBELN = '0008300051'.
    <b>commit work.</b>
    SELECT SINGLE * FROM VBRP WHERE VBELN = '0008300051'.
    WRITE: VBRP-VBELN,VBRP-PRODH.
    use commit work after update statement.
    But this code would make vbrp-vbeln as plc01 only.
    If you want to get the prodh value from t179t, then write a sleect on t179t and then update.
    TABLES: VBRP.
    CLEAR VBRP.
    select single prodh
      from t179t
    where......
    UPDATE VBRP SET PRODH = t179-prodh WHERE VBELN = '0008300051'.
    commit work.
    SELECT SINGLE * FROM VBRP WHERE VBELN = '0008300051'.
    WRITE: VBRP-VBELN,VBRP-PRODH.

  • Open T-code on double click of field in table maintenance

    Hi Gurus,
    I have one scenario, I have to show a transaction on double click event on a field of Table Maintence.
    Please guide me in this .
    Is there is any event in Table Maintenance Events to capture double_click of a field.
    Regards,
    Sowmen

    1. In the field attributes of the particular field there is a chechbox  in display tab which says respond to double click, check that.
    2. Assign the fuction code "PICK" for function code F2 in GUI status.
    3.Now whenver you double click the field function code "PICK" gettes triggeed.
    Now you can wrie yyou code based on this function code.
    CASE sy-comm.
    WHEN 'PICK'.
    *If you want the name of the field and the value in that field use the below code.
    GET CURSOR FIELD gv_field VALUE gv_cursor_value.
    *DO your operation based on the field and the value.
    ENDCASE.
    Regards,
    Smithesh

  • Field and Table for PGI status updation

    Hi All,
    I want to know in which field and table the PGI status will get updated.
    i.e. once we do the PGI for a delivery in which table will this PGI status gets updated.
    Thanks in advance for help.
    Harini

    Hi Harini,
    In Table VBUK you 3 different status related fields for  sales documents.
    Over all status field name GBSTK ( here it gives the total status of praticular sales document) here you see options
    A  Not yet processed      ( This means its complete open)
    B  Partially processed     ( This means the sales doc is partially processed)
    C  Completely processed  ( This means the sales doc is completly processed)
    Delivery status  and over all delivery status field name LFSTK and LFGSK respectively, these 2 fields will be same always ( here it gives the total status of praticular sales document) here you see options
    A  Not yet processed      ( This means its completly  open)
    B  Partially processed     ( This means the delivery doc is partially processed)
    C  Completely processed  ( This means the delivery doc is completly processed)
    So overall status can be  different then delivery or overall delivery status.
    If sales document has 100 quantity for 1 material, if delivery is done for 50 quantity.
    Then over all status field name GBSTK will be B  Partially processed and delivery and overall delivery will be C  Completely processed  .
    Regards
    vK

  • Field  and Table name for purchaser

    I want to know the field and table name for purchaser id and purchaser name.
    Plz help me.

    Dear
    Purchaser name are define in Header level data in Purchase Order EKKO & Purchase ID define as a Purchasing Group
    Purchser Name EKKO-ERNAM
    Purchase I D  EKKO-EKGRP
    Regards
    Aamir

  • Where can i get   SALES  ORGANIZATION    FIELD and TABLE

    Can anybody tell me   where can i get   FIELD  and   TABLE  Name   OF  " sales organization    "

    Dear Sandeep,
    u will find VKORG is the Sales Organisation .
    u will find this Field in every related SD Module Table...
    Like ...VBAP,BKPF ..etc..
    Hope it helps...!!!
    Pls reward if Helpful...!!!

  • Storage Location Wise Stock Value field and Table

    Hi ,
    Please let me know the storage location wise stock value field and table.
    Regards
    Suresh

    Hi Suresh,
    As per my understanding it is not possible in a single Table.
    If this is required for customized Z report then use this logic it may gives the correct information.
    In the combination of MARD and MBEW.. From MBEW you can get the value for each Base Unit of Measure then multiply that value with storage location stock.
    It may usefull to u..in the mean time i will try for some other option.
    Please revert if u have any query.
    Regards
    Durga Sana

  • How can find  database field and table name

    how can find the underline database field name,table name from java page. Example. in oracle apps when we go purchaseing super user then supplier base then supplier and find supplier detail .

    Hi,
    depends on your model. If you work with ADF BC then you can use ViewLinks to access parent or detail infromation programmatically. See the developer guides for more information. Note that you wont access the tables directly but the collections that represent the records
    Frank

  • Purchase Order released date field and table name

    Hi,
    Please tell me the  Purchase Order released date field and table name.
    Regards
    Deepak

    Hi,
    Table : EKKO.
    Fields : FRGKE,FRGZU.
    You can get release date of PO from CDHDR  table.
    give object value as your po number and check.dont forget to give leading zeros.
    The udate will be date field and transaction will be me29n for relaesed po.

Maybe you are looking for

  • How to add the IP address helper command to the switch

    Hi I am trouble shooting a SF 200-48P and I am a bit lost without a CLI not used to the GUI. What I need to know is how to add the IP address helper command to the switch? I have a number of IP phones which are not getting an IP address from DHCP (PC

  • I am on my last try for my password

    I am on the final try for my password on my laptop.  I don't understand what I am doing wrong.  I am putting in the password using the number keyboard on my laptop.  And now I am on my last try before it wipes everything off my phone.  And yes it is

  • ***iPod Touch to MacProTower iTunes

    Hi My iPod Touch has all the music on it as I want it. But then I updated my MacPro Tower to Leopard and done a clean install and forgot to back up ITunes. Please can anyone tell me how I can put the songs on my iPod Touch back into the MacPro, well

  • Special ledger report writter problem

    I use GR21 to create a report, in key figure section, I de-select BHSL, but when I save, it says: The key figure BHSL-I was automatically activated. so I can't de-selct BHSL, how can I de-selct BHSL?

  • Error deploying in Studio when using 2 data sources

    I have built a cube using multiple datasources in Essbase Studio. The sources are Oracle database and EPMA dimension server. When I deploy the cube, I receive the following error. However, when I deploy using one source and specify DSN, it works. It