Table for MM flow

Hi SDN's ,
        What is the table for MM flow?
Thanks in advance.
Aravind.

hi
good
T024E               Purchasing organization / company code
     T024W               Plant to Purchase organization
T001K               Link plant ( = valuation area) / company code
TVSWZ               Shipping point to plant
     T320               Assignment MM Storage Location to WM Warehouse
7     Material Management (MM) :
7.1     Material document
     MKPF               material document
     MSEG               material document (item level)
7.2     Purchasing
     EKKO               Purchase document
     EKPO               Purchase document (item level)
     EKPV               Shipping-Specific Data on Stock Tfr. for Purch. Doc. Item
     EKET               Delivery schedule
     VETVG               Delivery Due Index for Stock Transfer
     EKES               Order Acceptance/Fulfillment Confirmations
     EKKN               Account assignment in purchasing
     EKAN               Vendor address purchasing
     EKPA               Partner functions
     EIPO               Item export / import data
     EINA               Purchase info record (main data)
     EINE               Purchase info record (organisational data)
     EORD               Source list
     EBAN               Purchase requisition
     EBKN               Purchase Requisition Account Assignment
thanks
mrutyun^

Similar Messages

  • Tables for Work flow levels in IMA11

    Dear Experts,
    Can any one help me out in finding the tables for WORK FLOW Approval Levels and where these tables(standard tables in SAP) are stored in? or can anyone give me the list of tables for workflow in Investment management in IMA11 for approval levels?
    Thanks,
    sanju..

    Hi Sanju,
    For IMA11, please refer the table IMAK.
    Hope it will be useful.  Appreciate with point if it is useful.
    thanks
    Vetrivelan

  • Table for Document flow

    Hi,
    I have a Sales Order. For this Sales Order i Created a Puchase Order.I made a Goods Reciept and an Account Document is created. Can any one tell the table where i can see the Document flow for this Order? I tried VBFA...but i can see only Purchase Order against the Sales Order.Thanks in Advance.
    Challa.

    VBFA is document flow for SD.
    To find receipt for purchase order, look at EKBE with key purchase order Nr and event type VGABE = '1' Goods receipt
    Then to find accounting document, you need to look to BKPF header table with keys AWTYP Reference procedure 'MKPF' and AWKEY Object key (Nr + year)
    Regards

  • Long Time: Fill Internal Header Table for VBUK via Doc. Flow Predeces

    Good Morning Support,
    I have installed DMIS (2006_1_620) and DMIS_CNT (2006_1_620), both atthe level of SP = 13. Data Base = Informix.
    The activity "Header Fill Internal Table for Predicting Flow VBUK via Doc" is taking a long time in execution.
    I wanted to create an index to improve performance according to the note 1256679 but I can not because the tables VBFA and VBFCL are "Table cluster" and I have no way to create index.
    Any suggestions?I open the remote connection.
    Thanks,
    Hugo.

    Hello Hugo,
    There are 2 ways out of this :
    1. Either convert the Cluster Table to Transparent Table.
    2. Enable Cluster Handling by setting P_CLU to Y. But in this case, you will have to set the parameter for all the 3 activities for VBUK i.e.
    a) Fill Internal Header Table for Table VBUK (Initial)                      -
    > TD05X_FILL_VBUK
    b) Fill Internal Header Table for Table VBUK via Document Flow  -
    > TD05X_FILL_VBUK_1
    c) Fill Internal Header Table for VBUK via Doc. Flow Predeces.  -
    > TD05X_FILL_VBUK_2
    Then re-run the previous activities in the above order so that the cluster gets filled.
    Hope this helps.
    Regards,
    Suman

  • Is there a  reference for the flows tables/views?

    Hi,
    for my own htmldb-forum I want to find the last login time of somebody, so I could determine which will be new forum messages for this user.
    Where can I find these informations? Is there a reference for the Flows tables and views?
    Bye,
    Jens

    heheh for learning purpose I been thinking of developing an app like what you have there.
    Is yours done ?
    Can we get have a look ?
    thanks

  • Table design for approval flow

    Hi,
    For our application,we have to create an approval flow in Java.
    We have to maintain the structure in the database.We are using Oracle 10g and we don't have any DBA access.
    The brief structure is as follows:
    there will be an activity which after being created is allocated some cost.
    After allocating the cost,it goes through a first level approval.
    If approved then it has to go through a second level approval and then the activity becomes approved.
    The full flow needs to be tracked in a table structure whether the activity is created/rejected/approved first level/approved second level.
    In a separate table structure we also need to maintain the hierarchy of user,approval 1 and approval 2.
    Could you please suggest me way outs to maintain the hierarchy as well as the full historical data related to the activity after it is created.

    In the workflow system,One request is created by Specific user who belongs to particular role.  Approver are dynamic currently 5 approvers are available but in future the approver may be 'N' numbers. Each stage the status is different. Approver may
    reject or reopen or query the request.. Based on these status the flow will status again from the requester or approver .suppose 4th approver made any query it should go to 3 approver or 1st requester.
    I need to design the table for the above requirements .please advise with schema.
    The basic table structure should look like as,
    REQUESTOR
    REQUESTOR_ID INT
    REQUESTOR_FNAME VARCHAR(100)
    REQUESTOR_LNAME VARCHAR(100)
    REQUESTOR_EMAIL VARCHAR(100)
    REQUESTOR_ROLEID INT
    REQUESTOR_ROLE
    ROLE_ID INT (PK)
    ROLE_NAME VARCHAR(100)
    ROLE_DESC VARCHAR(300)
    APPROVER
    APPROVER_ID INT (PK)
    APPROVER_FNAME VARCHAR(100)
    APPROVER_LNAME VARCHAR(100)
    APPROVER_EMAIL VARCHAR(100)
    APPROVER_CAT VARCHAR(50) -- IN CASE IF YOU HAVE ANY SUBSYSTEM THEN APPROVER CAN BE CATEGORISED.
    STAGE
    STAGE_ID INT (PK)
    STAGE_NAME VARCHAR(100)
    STAGE_PRIORITY INT -- IF REQUIRED, I.E IF THERE IS ANY STATUS PRIORITY ONE AFTER ANOTHER.
    REQUEST_MASTER
    REQUESTLOG_ID INT (PK)
    REQUESTOR_ID INT (FK) REFER REQUESTOR_ID IN REQUESTOR table
    REQUEST_DESCRIPTION VARCHAR(MAX)
    REQUEST_DATE DATETIME
    APPROVER_CAT VARCHAR(50) (FK) REFER APPROVER_CAT IN APPROVER table -- Email to be send to all approvers under this category.
    REQUEST_STATUS INT FK REFER STAGE_ID IN STAGE ENTITY -- SET A STAGE AS DEFAULT STATUS INITIALLY(SAY NEW). UPDATE this field whenever the history information is updated in REQUEST_HISTORY table.
    REQUEST_HISTORY
    HISTORY_ID INT (PK)
    REQUESTLOG_ID INT (FK) REFER REQUESTLOG_ID IN REQUEST_MASTER TABLE
    APPROVER_UPDATED_BY INT (FK) REFER APPROVER_ID IN APPROVER TABLE
    REQUESTOR_UPDATED_BY INT (FK) REFER REQUESTOR_ID IN REQUESTOR TABLE
    UPDATED_DATE DATETIME
    STAGE_STATUS_ID INT (FK) REFER STAGE_ID IN STAGE TABLE
    Regards, RSingh

  • Fill Internal Header Table for VBUK via Doc. Flow Predeces.

    Good Day,
    I'd executed the step Fill Internal Header Table for VBUK via Doc. Flow Predeces in System Analysis Phase. It has been running for the past 7 days. We know that the problem might be that the "update statistics" is not updated since Febraury this year, this table has 20 million records.
    Is there a possibility or how or where to find how much time is left, how many records it has been analyzed for this activity?
    Thanks in advanced.
    Anatolii

    Thank You very much dear colleagues for your advices and help!!!!!
    I was able to resolve this problem with the following:
    (as you told me before) Create standard M1 Index, in my case ZM1, with the field parameters VBEL, POSNV and VBELN ( MANDT it was not needed)
    Using HINTS parameters from  "Note 130480 - Database Hints in Open SQL for Oracle"
    and changing the program: "CNV_TDMS_05_TI_I_CO_VBUK_2_C_N" in the sender system
    before it was:
         %_HINTS ORACLE 'full(VBFA) parallel(VBFA, 4)'.   "#EC CI_NOFIRST
    i was changed to:
          %_HINTS ORACLE 'INDEX("&TABLE&" "VBFA~ZM1" "VBFA^ZM1")'.   "#EC CI_NOFIRST
    The Procedure finished successfully =)
    With best regards,
                                   Anatolii

  • Phase: Fill Internal Header Table for VBUK via Doc. Flow Predeces

    Hi All
    We currently have the phase Fill Internal Header Table for VBUK via Doc. Flow Predeces running on our TDMS system which creates the job JOB_TD05X_FILL_VBUK_2. I am assuming that it is examining table header details, my only concern it that the job has been running for 10 days and I am not sure what it is doing or if I should kill the process and start it again?
    Does anyone have any ideas?
    Thanks in advance.
    Phil

    Hi Phil,
    Have you created the index in VBFA suggested in oss note 1256679 ?
    Unfortunatelly TDMS needs an index in VBFA by subsequent document.
    Regards,
    Rui Dantas

  • Table for Open Sales Order Quantity

    Hi
    After creation of  partial deliveries for a Sales Order , in which table open Sales Order quantities will be stored?
    We are using in  Material Master   Avilablity check as 'KP- No check'.
    in VBBE & VBBS table no data is there
    where it will store can any plz guide me
    Prasad

    Hi prasad
    1st of all as you are using KP no check availability check doesn't happen.
    Check  , VBEP table which is sales doc schedule lines and  ,VBEH  table is for schedule line history.
    check in VBFA table sales doc flow
    Hope these table will help you
    Regards
    Srianth

  • Designing metadataLogging table for data warehouse

    Hi:
    I am in the process of creating metadataLogging tables for dw.
    I have thought 5 tables to track errors and check etl execution.
    Master table for all major jobs. Enviournment - oracle 9i. Dw size not more than 30 mb. to start with.
    CREATE TABLE ADMIN_JOB_MASTER_TBL
    JOBNUMBER NUMBER,
    JOBNAME VARCHAR2(768 BYTE),
    MINTHRESHRECORDS NUMBER,
    MAXTHRESHRECORDS NUMBER,
    MINTHRESHTIME VARCHAR2(64 BYTE),
    MAXTHRESHTIME VARCHAR2(64 BYTE),
    CREATEDATE DATE
    Audit Table for auditing jobs.
    CREATE TABLE ADMIN_AUDIT_JOBS_TBL
    JOBNUMBER NUMBER,
    JOBNAME VARCHAR2(768 BYTE),
    STARTDATE DATE,
    ENDDATE DATE,
    NUMBERRECORDS NUMBER,
    FAIL_OR_SUCCESS VARCHAR2(64 BYTE)
    Step Master: for jobs involving various steps, logic such as branching, loop, flow etc. breaking the job_master to a lower level for a more insight.
    audit_step
    CREATE TABLE ADMIN_AUDIT_STEP_TBL
    RECORDID VARCHAR2(256 BYTE),
    JOBAUDITID VARCHAR2(256 BYTE),
    STEPNUMBER NUMBER,
    PARAMETERS VARCHAR2(512 BYTE),
    NUMBERRECORDS NUMBER,
    STARTDATE DATE,
    ENDDATE DATE,
    USERNAME VARCHAR2(256 BYTE)
    Error_table: to track error during execution.
    CREATE TABLE ERROR_TBL
    ERROR_NO NUMBER,
    TABLE_NAME VARCHAR2(124 BYTE),
    ERR_NUM NUMBER,
    ERR_MSG VARCHAR2(124 BYTE),
    ERROR_TIME DATE
    I am thinking to load the master tables manually with expected values.
    And during each run, loading the auditing tables.
    Error table would ofcourse be loaded during the run.
    So everytime a threshold has changed, I would have to update master table manually. I dont mind doing that initially.
    Would the following tables and the stated appraoch be good for etl.
    Please guys, let me know your thoughts. Suggest changes or tables or approach, if you feel, that its wrong.
    Thanks in advance. All inputs are highly appreciated !!!
    Regards
    Som

    Hi,
    What better than Oracle suggests...is there ????
    Have you read Oracle doc titled...
    "Data Warehousing Guide" and the "Handling Data Errors with an Error Logging Table " section for example...
    Regards,
    Simon

  • Wht r the standard tables for vendor customer and sales order report/

    Hi wht r the standard tables for vendor and customer reports and is how in normal we cannot use them for vendor reporting and etc ?

    Hi
    Customer is related to Sales Module
    So for a customer we fetch the reports of Sales orders , Deliveries and Billing doc's
    CUstomer and Vendor related tables with important fields:
    KNA1: Customer Master-General(KUNNR,NAME1,LAND1)
    KNB1: Customer Master(Company Code)(KUNNR,BUKRS,PERNR)
    KNC1: Customer Master Data (Transaction Figures)(KUNNR,BUKRS,GJAHR)
    KNVK: Customer Master Contact Partner(PARNR,KUNNR,NAME1)
    KNVV: Customer Master sales data(KUNNR,VKORG,VTWEG,KDGRP)
    KNBK: Customer Bank Details(KUNNR,BANKS,BANKL,BANKN)
    KNVH: Customer Hierarchy (HITYP,KUNNR,VKORG,VTWEG,SPART)
    KNVP: Customer Master Partner Functions(KUNNR,PARVW,KUNN2)
    KNVS: Customer Shipment data(KUNNR,VSTEL,TRANS)
    KNVI: Customer Tax data(KUNNR,ALAND,TATYP)
    LFA1: Vendor Master-General (LIFNR,NAME1,ORT01)
    LFB1: Vendor Master(Company Code)(LIFNR,BUKRS,PERNR)
    LFC1: Vendor Master (Transaction Figures)(LIFNR,BUKRS,GJAHR)
    Sales related Tables for a customer
    VBAK: Sales Document(Header Data) (VBELN, KUNNR)
    VBAP: Sales Document(Item Data) (VBELN,POSNR,MATNR,ARKTX,CHARG)
          Enquiry, Quotation, Sales Order are differentiated based on Doc.
          Type(VBTYP field) in VBAK,VBAP Tables( for Enquiry VBTYP = A,
          for Quotation 'B' & for Order it is 'C'.)
    LIKP: Delivery Table (Header Data)(VBELN,LFART,KUNNR,WADAT,INCO1)
    LIPS: Delivery Table (Item Data)(VBELN,POSNR,WERKS,LGORT,MATNR,VGBEL)
          (LIPS-VGBEL = VBAK-VBELN, LIPS-VGPOS = VBAP-POSNR)
    VTTK: Shipment Table (Header Data)(TKNUM)
    VTTP: Shipment Table (Item Data)( TKNUM,TPNUM,VBELN)
          (VTTP-VBELN = LIKP-VBELN)
    VTFA: Shipping Document Flow(TKNUM,VBELV,VBELN)
    VTPA: Shipping Partners data(VBELN,PARVW,KUNNR,PERNR)
    VTTS: Stages in Shipment(TKNUM,TSNUM,TSTYP)
    VTSP: Transport Stage/Shipment Item Allocation(TKNUM,TSNUM,TPNUM)
    VEKP: Handling Unit: Header(Packing)(VENUM,VSTEL)
    VEPO: Handling Unit: Item (Packing)(VENUM,VEPOS,VBELN)
    VBRK: Billing Table(Header Data)(VBELN,FKART,BELNR)
    VBRP: Billing Table(Item Data)(VBELN,POSNR,FKIMG,NETWR,VGBEL,VGPOS)
          (VBRP-AUBEL = VBAK-VBELN, VBRP-VGBEL = LIKP-VBELN)
          Apart from these tables there are lot of other tables which starts with
          ‘V’, but we use the following tables frequently.
    VBUK: All Sales Documents status & Admn. Data(Header)(VBELN,VBTYP)
          VBTYP= ‘C’(Sales Order) VBTYP=’J’(Delivery) VBTYP=’M’(Invoice) 
    VBUP: Sales Documents status & Admn. Data(Item)(VBELN,POSNR)
    VBEP: Sales Doc. Schedule Lines Data(VBELN,POSNR,EDATU,WMENG)
    VBKD: To get sales related Business data like Payment terms etc.(VBELN,ZTERM)
    VBFA: sales document flow data(VBELV,VBELN,POSNV,VBTYP)
    VBPA: Partner functions Data(VBELN,PARVW,KUNNR,LIFNR)
    VEDA: Contract Data(VBELN,VPOSN)
    VEDAPO: Contract Data(VBELN,VPOSN)
    Vendor related MM tables
    EBAN-- Pur.Reqn. Data (BANFN,BNFPO,BADAT,MATNR)
    EBKN-- Purchase Requisition Account Assignment(BANFN,BNFPO,VBELN)
    EINA—- Purchase Info.Record (General Data)(INFNR,MATNR,LIFNR)
    EINE-- Purchase Info.Record (Pur.Orgn Data )(INFNR,EKORG)
    ELBK-- Vendor Evaluation Header Data(LIFNR,EKORG,KLASS)
    EKKO-- Purchase Order Data (Header)(EBELN,BSTYP,BSART)
    EKPO-- Purchase Order Data (Item)(EBELN,EBELP,MATNR)
           RFQ and PO are differentiated by Doc Type(BSTYP)in EKKO table.
           For RFQ it is ‘A’ and for PO it is ‘F’.
    MKPF-- GRN Data (Header) (EBELN,BLDAT,BUDAT,XBLNR,BKTXT)
    MSEG-- GRN Data (Item)(MBLNR,BWART,LIFNR,MATNR,EBELN)
           Apart from this there are lot of tables which begin with 'M'& 'E', but we
           use the following very often.
    EKBE--PO History Data (EBELN,EBELP,BELNR,BLDAT,MATNR,VGABE)
    EKBZ--PO History with delivery Costs(EBELN,BELNR,LIFNR,XBLNR)
    EKET--Schedule lines data of a PO (EBELN,EINDT,SLFDT)
    EKES--Vendor Confirmations Data(EBELN,EBTYP,EINDT,XBLNR)
    Reward points if useful
    Regards
    Anji

  • Tables for delivery details

    Hi all,
    What are the tables for delivery details.
    What i want exactly is header and lines tables for one Delivery .
    Thanks

    Thanks Nagmohan...
    And i want to know what are the tables get affected and the flow of process from the status to shipp confirm ..
    Can you pls tell me patiently..
    thanks

  • Condition table for Material document printout

    When i try to create a condition table with 2 fields Movement type/plant combination
    i am getting this warning message
    Switch: Field BWART cannot be used (table KOMB)
    Message no. VK770
    i pressed enter to pass the warning message
    When i try to create conditions with the same combination Mvt type/plant for that output type
    i am getting this error
    *Flow control: Entry SAPMV13B, SEE2, A0, *   , 1570, * is missing in T185*
    Message no. V0102

    Hi
    Here i am not seeing any field BWART
    in T681F table for application ME
    Edited by: Sachein on Jun 24, 2011 2:24 PM

  • In Pages, the column in the table won't flow onto the second page. The text is hidden. Please help!

    In Pages, the column in the table won't flow onto the second page. The text is hidden. Please help!

    Thank you for your reply,
    When I click 'view' , I can "show inspector". From the table tab, I can pull up the "Format". [See below]. I don't see the "Arrange" or "Object Placement Move with Text"
    Right now I have the Wrap Text On. When I take it off, It messes up my rows [see second image].
    All I want is for my column to flow onto the second page.
    Your assistance is genuinely appreciated.
    Thank you again.

  • I want tables for SAP ICH to do smart forms

    Hi , i want tables for ADRESS DATA of bill to party  and ship to party ,
    for PO details  pls help me

    Hi
    Tables
    Customers         KNA1   General Data
                      KNB1   Customer Master – Co. Code Data (payment method, reconciliation acct)
                      KNB4   Customer Payment History
                      KNB5   Customer Master – Dunning info
                      KNBK   Customer Master Bank Data
                      KNKA   Customer Master Credit Mgmt.
                      KNKK   Customer Master Credit Control Area Data (credit limits)
                      KNVV   Sales Area Data (terms, order probability)
                      KNVI   Customer Master Tax Indicator
                      KNVP   Partner Function key
                      KNVD   Output type
                      KNVS   Customer Master Ship Data
                      KLPA   Customer/Vendor Link
    Sales Documents   VBAKUK VBAK + VBUK
                      VBUK   Header Status and Administrative Data
                      VBAK   Sales Document - Header Data
                      VBKD   Sales Document - Business Data
                      VBUP   Item Status
                      VBAP   Sales Document - Item Data
                      VBPA   Partners
                      VBFA   Document Flow
                      VBEP   Sales Document Schedule Line
                      VBBE   Sales Requirements: Individual Records
    SD Delivery DocumeLIPS   Delivery Document item data, includes referencing PO
                      LIKP   Delivery Document Header data
    Billing Document  VBRK   Billing Document Header
                      VBRP   Billing Document Item
    SD Shipping Unit  VEKP   Shipping Unit Item (Content)
                      VEPO   Shipping Unit Header
    Cheers,
    Hareesha k

Maybe you are looking for

  • Time Machine is stuck on "Preparing Backup"

    My Backups have not worked for about a month.....and have been in a perpetual "preparing" state. I have Imac with OS version is 10.7.5, Build is 11G63 Have got this from console logs if it help shine any light on the nature of my issues, and how to f

  • Java XML parsers for Sun J2ME, Sun KVM

    Here is a list of "small" XML parsers. Some are specifically for the J2ME platform / Sun KVM: kXML http://kxml.enhydra.org/ NanoXML http://nanoxml.sourceforge.net/ TinyXML http://www.gibaradunn.srac.org/tiny/index.shtml MinML http://www.wilson.co.uk/

  • Problem with field declaration - rant warning

    <rant> Ok, I'm headed back to JBuilder, for EJB's anyway! I've got some fairly large tables I'm trying to build EJBs for, CMPs mainly. I blithely crank up workshop, open my project and build a new CMP from table. Everything is proceeding alright, oh,

  • Variable-Selection before running the report

    Hi Bex experts, i have a Web-Report with Navigation block. Before user run the report he should enter a value for Profit Cetner. In Query definition, I defined a simple variable ( typ: user entry/default value). Profit center has an attribute u201CSt

  • New Content Type with RDL template

    I'm building a new Project Server 2010 site template and one of the libraries that I want to provide will store the Status Reports for each Project. I'm struggling with what seems like a simple concept. Create a new Content Type that uses the status_