What is the table to find the Stock-in-Transit Quantity of a STO ?

Hi
What is the table to find the Stock-in-Transit Quantity of a STO ?
Thanks
Maruthi
Edited by: MARUTHI RAM on May 12, 2009 3:00 AM

no table, it is calculated from goods issues done in delivery and goods receipt done in the PO.
You can find the values of goods issue and receipt in extra records in table EKBE

Similar Messages

  • What's the tables to find the relationship between OPT and SUV

    Dear CRMers,
      Now, we're trying to find the tables to get the Survey and Answer of Survey to certain opportunity. Any one could give me the details. Any suggestions are appreciated.
    Best Regard
    Gerald

    Hi Gerald,
    Below is the list of tables which may be useful for both lead and Opportunity, but maintenance of this table is not possible through SM30, You can change the maintenance status in the ABAP Dictionary (SE11).
    CRMC_SVY_LEAD
    CRMC_SVY_LEAD_T
    CRMC_SVY_OPPT
    CRMC_SVY_OPPT_T
    These below tables store the values and also the questionnaire id.
    KLAH: Attribute Set Name, ID
    INOB: Object ID, BP Number
    KSSK: Object ID, Attribute set ID
    CABN: Attribute ID and name
    CAWN: Attribute name and values
    AUSP: BP GUID, Attribute Name, Value, Object ID
    CRM_SVY_DB_SV and CRM_SVY_DB_SVS. These tables contain the actual survey response but encrypted in XML format.
    Hope the above info may help you.
    Regards
    SRIM

  • What is the Table for Stock-in-Transit quantity ?

    Hi
    In which Table does the Stock-in-Transit quantity store.
    Thanks
    Maruthi

    Hi
    Check  the table MARC fielld TRAME(stock in transit). I think this field will be updated only for STO in the same company code.
    You can use the Tcode MB5T to get the Stock in transit details.
    Also check the FM MB_ADD_TRANSFER_QUANTITY.
    You can use MSEG table with STO Purhcase order number and with movement types
    641     TF to stck in trans.
    642     TR to stck in trans.
    643     TF to cross company
    644     TR to cross company
    645     TF cross company
    646     TR cross company
    647     TF to stck in trans.
    648     TR to stck in trans.
    based on your requirement.
    Regards
    S.Senthil

  • What is the name of the table for finding user exit !

    What is the table name to find the user exit !

    Hi,
    Goto to the table tstc and enter the transaction code for
    which u want to find out the User-Exits. Check out the
    program name from the result. Goto SE38 and dee that
    program in display mode. Then search for the string Call
    Cutomer-Funtion. All the result of search are the user
    exits defined there for that transaction.
    SAP user exits (enhancement names that we see in SMOD transaction) are all stored in the table MODSAP. The field NAME contains the enhancement name and the field MEMBER contains the name of the function module that will be called if the customer enhancement exists and is active. The customer enhancement projects are stored in the table MODACT. There, the NAME field is the name of the project and MEMBER is the name of SAP enhancement (that from the MODSAP).
    So, if you are in some include, you can use where-used-list to get to the function module name. Then you find the SAP enhancement name from the MODSAP by supplying the function module. And finally, you find the customer enhancement projects by querying the MODACT with the SAP enhancement in the field MEMBER.
    cheers,
    vasavi.
    kindly reward if helpful.

  • Using column value is it possible to find the table name in the database?

    Hi all,
    using column value is it possible to find the table name in the database?
    guys i need the table value
    Note:
    oracle-9i
    for example:
    i don't know NIC(column value) in which table in the database.
    Thank you,
    with regards,
    JP.
    Edited by: Guest on Feb 27, 2012 5:42 AM

    Hi,
    As far as I understand what you are asking for I would suggest 4 data dictionaries that will help you to know the table name from the column names
    1. USER_TAB_COLS
    2. ALL_TAB_COLS
    3. DBA_TAB_COLS
    4. COLS
    These can give you detail information about the columns and respective tables at user, schema, dba level. Further information on the table can be found by querying ALL_OBJECTS table giving table_name as Object_name, or you can join the data dictionaries too.
    To know about various data dictionaries avalible in Oracle please query select * from cat;
    Let us know if you need further assistance.
    Twinkle

  • What is internal table? read the another questions

    What are internal tables? How do you get the number of lines in an internal table? How to use a specific number occurs statement?
    send me replay also

    hi,
    try this links....
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35de358411d1829f0000e829fbfe/content.htm
    An internal table is one of two structured data types in ABAP. It can contain any number of identically structured rows, with or without a header line.
    The header line is similar to a structure and serves as the work area of the internal table. The data type of individual rows can be either elementary or structured.
    Internal tables provide a means of taking data from a fixed structure and storing it in working memory in ABAP. The data is stored line by line in memory, and each line has the same structure. In ABAP, internal tables fulfill the function of arrays. Since they are dynamic data objects, they save the programmer the task of dynamic memory management in his or her programs. You should use internal tables whenever you want to process a dataset with a fixed structure within a program. A particularly important use for internal tables is for storing and formatting data from a database table within a program. They are also a good way of including very complicated data structures in an ABAP program.
    Fields of Internal Tables
    SY-TABIX
    Current line of an internal table. SY-TABIX is set by the statements below, but only for index tables. The field is either not set or is set to 0 for hashed tables.
    APPEND sets SY-TABIX to the index of the last line of the table, that is, it contains the overall number of entries in the table.
    COLLECT sets SY-TABIX to the index of the existing or inserted line in the table. If the table has the type HASHED TABLE, SY-TABIX is set to 0.
    LOOP AT sets SY-TABIX to the index of the current line at the beginning of each loop lass. At the end of the loop, SY-TABIX is reset to the value that it had before entering the loop. It is set to 0 if the table has the type HASHED TABLE.
    READ TABLE sets SY-TABIX to the index of the table line read. If you use a binary search, and the system does not find a line, SY-TABIX contains the total number of lines, or one more than the total number of lines. SY-INDEX is undefined if a linear search fails to return an entry.
    SEARCH <itab> FOR sets SY-TABIX to the index of the table line in which the search string is found.
    SY-TFILL
    After the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TFILL contains the number of lines in the relevant internal table.
    SY-TLENG
    After the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TLENG contains the length of the lines in the relevant internal table.
    SY-TOCCU
    After the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TLENG contains the initial amount of memory allocated to the relevant internal table.
    i think this will solve your problem don't forget to reward points.
    regards,

  • What is the table to get the all planned orders related to a sale order

    Hi,
    May i know what is the table to get the all planned orders related to a sale order. My scenario is make to order scenario. we can get my out put final product by completing the nearly 916 planned orders.(Like major assemble,sub assemble). From this scenario i want the total orders related to a sale order. ( The planned orders from sale order to sale order will change. i.e 1 sale order will have 916 planned orders and one sale orders will generate 920 like that will chage when running mrp.). Now i want to pick the total planned orders for a sale order in a report. please guide me.
    Regards,
    Mastan.

    Hi,
    Use the table PLAF... in this table pass the sale order no in the filed KDAUF and then execute...issue here is once the planned orders are converted production orders, these planned orders are deleted from the system....so you will not able to see them.....
    Thanks
    Kumar

  • Table for finding the pending Purchase order Quantity

    In me2l or me2m , There is a quantity which appears next to "Still to be delivered" and "Still to be invoiced" . I am getting only structure name . Can anybody please tell me the table name for the same . I searched a lot and i am unable to find it.. The requirement is urgent , so, please help me out..
    The structure and field name that i am getting are
    Still to be delivered : RM06A-OWEMG
    Still to be invoiced :RM06A-OREMG
    Thanking you in advance,
    Shankara Narayanan T.V

    Hello Shankar,
    The data that you're trying to obtain is not stored in any table, as far as I know. The values are calculated in the program and then displayed on the list.
    Regards,
    Anand Mandalika.

  • When i do file, save for web, i get an error that says " the operation could not be completed. The system cannot find the path specified." What can fix this?

    when i finish a file and try to "save for web", i get an error box saying The operation cannot be completed. The system cannot find the path Specified.
    What can i do or where do i look?

    ELEMENTS 12 AND ELEMENTS 13
    Upgraded to 13 Thinking might resolve the issue.
    Was working fine up until we had "Tech" come in the office and "up grade some stuff"
    then all of a sudden i started getting this message, something happened but i don't have a clue what.

  • Is it possible to find the  table based on the Date ?

    Dear Team ,
    Is it possible to find the table based on the Date ?
    I have created an table ,But forgot the Table Name .
    Is it possible to find the Tables created on particular Date .
    Regards ,
    Augustine

    as date is record the time also below query will work.
    select * from user_objects
    where
    object_type = 'TABLE' and
    to_date(created,'DD-MON-YYYY') =to_date('<your date value in DD-MON-YYYY format>','DD-MON-YYYY');
    Edited by: shaileshM on Feb 24, 2010 9:39 PM

  • Hw to find the table name of the perticular field is stored in db,usingFM

    Dear all,
    I need to find out the table name of the perticular field is storing in database using FM (note: using Function Module or any standard program , not manually like press F1 -> technicall setting etc.. .) 
    [ Exmple: Field: "MATNR" is stored in table : MARA, so i need the program/FM  to findout MATNR is stoed in MARA table ]
    i need this  FM for update values of  material master ( mm01 ) stored in different warehouse using module pool program.
    it's very urgent , please send me reply asap.
    thanks,
    best regards
    srinivas

    hi Srinivas,
    Please use the following logic:
    types:
        begin of t_find,
           field(40),
        end of t_find.
    data:
        lt_find  type table of t_find,
        ls_find  type          t_find,
        lt_found type table of RSFINDLST.
    ls_find-field = 'MATNR'.
    append ls_find to lt_find.
    CALL FUNCTION 'RS_EU_CROSSREF'
    EXPORTING
       i_find_obj_cls                    = 'DTEL'
       I_SCOPE_OBJ_CLS                    = 'TABL'
       NO_DIALOG                          = 'X'
    TABLES
       I_FINDSTRINGS                      = lt_find
       O_FOUNDS                           = lt_found
    EXCEPTIONS
       NOT_EXECUTED                       = 1
       NOT_FOUND                          = 2
       ILLEGAL_OBJECT                     = 3
       NO_CROSS_FOR_THIS_OBJECT           = 4
       BATCH                              = 5
       BATCHJOB_ERROR                     = 6
       WRONG_TYPE                         = 7
       OBJECT_NOT_EXIST                   = 8
       OTHERS                             = 9
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    The table lt_found has the details for the tables having MATNR as a field; field lt_found-object will have the table names.
    Hope this helps,
    Sajan Joseph.

  • What is the table which stores the SM04 currently active users data

    HI all,
    what is the table which stores the SM04 currently active users data in sap?
    plzzzzzzzzz help me..
    Thanks  all in advance ,
    Malti

    Hi,
    Pl. check in tables USR02/USR01 for the list of users & logon data.
    Regards,
    SDS

  • What r all the tables  used for the following report

    hai
    what r all the tables  used for the following report
    report:
    <b>
    •     Report that displays all the late shipments in a particular period of time</b>
    send important fields for this tables also
    thanks in advance.

    Hi,
       Imp table are vttk,vttp,vtts.
    Regards
    Amole

  • When creating installer files, there is an error:the system cannot find the customResource2052.dll file, what's the problem?

    I am using labview2009, when I create a installer, there is an error report as blow:
     Error: Windows SDK function returned an error. (Error code -12)
    Error accessing a resource module "E:\工作资料\项目资料\绿盾\builds\Untitled Project 1\...\Volume\supportfiles\customResource2052.dll".
    The system cannot find the file specified.
    *** Error Details:
    Error in MDF API function: _MDFBuildDist_Build
    Error in MetaToolbox::UpdateResourceString.
             strId: 3; New String:     ; LangId: 2052
    Windows function LoadLibraryEx returned an error. Error code: 2
    *** End Error Report

    Hi super008,
    The error can be due to some improper installation of a driver or any NI SW that the Installer requires.
    Have you recently installed or Uninstalled any NI Software ?
    Also -
    You can see in the KB below -
    That it could also happen due to some incompatibility with the .NET framework or adding exception in the AntiVirus.
    SDK Error Code -12 When Building a LabVIEW Installer or Installing LabVIEW
    http://digital.ni.com/public.nsf/allkb/AFC375154EFBD6AE8625760B005FB723?OpenDocument
    One more question :
    Do you have any idea what is this resource :
    E:\工作资料\项目资料\绿盾\builds\Untitled Project 1\...\Volume\supportfiles\customResource2052.dll    ????
    is "Untitled Project 1" your project ?

  • Table to find the interfaces for a system

    Hi,
    I need to find the number of inbound and outbound interfaces for a particular system.
    Is there any specific table to find the total number of entries?
    <b>WE20</b> is a transaction to find it out manually. But I guess there is some table where we can find it in a easier way.
    Kindly reply...
    Thanks!.

    Hi
    You need to find the Message type and IDoc types
    use table <b>EDBAS</b> for IDOC types and
    <b>EDMSG</b> for finding message types
    <b>EDPP1</b>  for all partner profiles
    <b>EDP12 and EDP13</b>  for inbound and outbound views
    Reward points if useful
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

Maybe you are looking for

  • How can i connect my printer to my computer without any chords

    Help me connect my printer to my laptop please

  • Creating a pseudo foreign key trigger

    hi i want to create a trigger that will act like a foreign key and check whether the value being entered already exists in two separate tables. I want it to not allow entry if the id already exists in: either none of the tables; or both the tables. I

  • Just a little problem

    When I am playing my music through iTunes 7 the song, that I am playing, randomly seem to skip down a few places. It's kind of hard to explain and I hope I am not making it too difficult to understand. E.g Say I am playing - Sgt Peppers Lonely Hearts

  • BI and ERP (HR) on the same box

    Hello, the question is about running together in one instance the transactional system (SAP HR on Netweaver 2004s) and the BI of the Netweaver 2004s. Any experiences with that or criteria for going for that architecture? Kind regards, Ralf

  • Lightroom 5 perpetual license and updates question

    Hi, I'm looking to buy a boxed version of Lightroom 5. I wonder if this would permit me to future upgrade to latest version (e.g. as of now is 5.6 if I understand correctly). Thanks.