Table name in PP TCODES and Display mode

Dear Friends,
Please advice the Table name for the following T Codes :
MIGO - Goods receipt
COR1 - Issue produciton order
CORK - SF receipt from produciton order
CO88 - settlement of produciton order
MR21 - Material Ledger closing
CORK - FG receipt from production order
VL01n- despatch of goods
also let me know the display mode of above t codes for monthly basis.
regards
Joseph

MIGO
Material documents are stored in MKPF Table
Material documents and line item details are stored in MSEG table
VL01N
Delivery documents (delivery note header) are stored in VBLK table
Delivery items are stored in LIPS table
MR21
Material documents created in MR21 are stored in MLHD table
CO88
Accounting documents created in CO88 are stored in BSEG table.
CORK
During SF Issue or FG receipt the system creates mateiral document that can be seen in the table MKPF/MSEG and it also generates accounting document that can be seen in BSEG table.

Similar Messages

  • CJ20N tcode in display mode

    Dear Experts,
    I have a task step in workflow. I use a BO method in it . In that method I need to write code to open CJ20N tcode in display mode. I want to know is there any tcode to display CJ20N in display mode. If yes then using call transaction i can go directly to that tcode.
    If not then please tell me what code or procedure should i do in order to open CJ20N tcode in display mode. (As per requirement i want to open that tcode in display mode alone. No need to go back to change mode. The task is only for reviewing the tcode).

    Hello Bharath,
    I am not sure as to whether you can call the tcode CJ20N directly in a method. Instead of that, you can use separate methods to display the project definition, WBS and Network activity.
    Use the respective display methods in the following BOs...
    BUS2001 -- Project Definition
    BUS2054 -- WBS
    BUS2002 -- Network
    PSAFRU --- Network confirmation
    Hope this will help you.
    Thanks,
    Samson

  • Table name to find customer and which sales area he belongs to?

    Table name to find customer and which sales area he belongs to?

    Hi suchita,
    You can find these information Sales area he belongs and all in the table of  KNVV , take the customer number from customer master  KNA1-KUNNR  put it in KNVV-KUNNR. you can find all the  sales details.
    if you need more info send breaf requirement.
    if helpful award the points
    Regards
    Ram

  • Unable to open the PM order in change and display mode

    Dear All,
    Am facing some issue that am unable to open the Maintenance Order in Change and Display mode.
    Can you provide the solution.

    Hi Thirupathi,
    Can you send us a screenshot or the error message information ?
    If it is due to status missing (SAP note available for the same)
    Regards
    Terence

  • Can we pass IT table name dynamically to READ and SORT stmt

    Hello All,
      i have a requirement in which i am passing table name using a variable and want to read the same table: so my question is can we execute read and sort stmt with dynamic IT name. please see below for explaination.
    v_itname = <it_2>.
    now read using variable
    READ table ( v_itname ) with key <field>.
    and
    SORT ( v_itname ) by (otab).
    thanks
    Mani

    Hi ,
    This can be done. Please refer to the  codes below. Please note that the code will work if the itabs are of type standard table else it may dump.
    You just need to replace the variables form the values from your internal table.
    DATA: v_table1(10) TYPE c VALUE 'I_MARA',
          v_field(10)  TYPE c VALUE 'MATNR',
          i_mara TYPE STANDARD TABLE OF mara.
    FIELD-SYMBOLS : <fs_tab>   TYPE STANDARD TABLE,
                    <fs_field> TYPE ANY.
    DATA: otab TYPE abap_sortorder_tab,
    oline TYPE abap_sortorder.
    SELECT * UP TO 10 ROWS
      FROM  mara
      INTO TABLE i_mara.
    IF sy-subrc = 0.
      ASSIGN (v_table1) TO <fs_tab>.
      IF sy-subrc = 0.
        oline-name = v_field.
        APPEND oline TO otab.
        SORT <fs_tab> BY (otab).
        READ TABLE <fs_tab>
        WITH KEY (v_field) = '000000000020000989' "
        BINARY SEARCH
        TRANSPORTING NO FIELDS.
        IF sy-subrc = 0.
        ENDIF.
      ENDIF.
    ENDIF.
    Regards,
    Dev.

  • Table Names which stores GRN and GRIR Details of a PO

    Hi Friends,
    I want table names which stores GRN and GRIR details of a PO.
    Thanks in advance
    Expecting ur answers,
    Cheers;-)
    R.Kripa.

    Hi,
    From MKPF get the gr for PO.
    if you see VGART = 'WE' and BLART = 'WE' then you get all MBLNR s GR related PO's. and using those go to MSEG table and get MSEG-EBELN and MSEG-EBELP
    this is the flow...
    MKPF to it_mkpf where VGART = 'WE' and BLART = 'WE'.
    from
    MSEG get EBELN,EBELP for all entries of MKPF and get PO's corresponding GR's
    i hope it is clear...
    Regards
    vijay

  • Whats the table name which connects BP and customer group code?

    Hi,
    Please let me know the table name which connects BP and its customer group code, i tried CRMM_BUT_SET0010 but i am not sure how to get "GUID for sets of business part"
    regards
    Vinay

    Hi Vinay
    Try instead table vision CRMV_BUT_SET0010. There you can use as search criteria the business partner number.
    However, if you want to understand the partner relation with guid_set value, just study how this table vision join is built.
    Kind regards,
    Garcia

  • Table name reqd for batches and unrestricted stocks records

    Hi friends,
    I required table name of which having consolidated stocks with batch wise.
    ****reports avialable in T.Code:MMBE (here it displays the batches and unrestricted stocks by storage location wise)....
    These details,i want to see in tables.
    MCHA : will list only materials,plant and batche details.
    MARD: will display Storage location data for material with total quantity.
    LIke these, i want to view the table batches and unrestircted stock details of each material.
    Pls, post ur comments and answer as much as possible.
    Thanks & regards
    sankar.

    Got answered from other forum
    thanks

  • Passing table name to a procedure and then need to open a cursor ..

    Hi All,
    I have been out of touch in plsql for sometime and need to do something like :
    passing table name to a procedure while calling(fp_table_old captures this value) and then need to open a cursor for this table in 'for i in (select * from fp_table_old )', one of the ways I tried is : for i in (execute immediate Lv_sql_query ) but its not working for me, please find the code below for reference, I know I am sounding stupid but I have been very out of touch, please help.
    code :
    create procedure p_table_compare(fp_table_old in varchar2, fp_table_new in varchar2)
    as
    Lv_sql_query varchar2(2000);
    begin
         Lv_sql_query := 'select * from '||fp_table_old;
         for i in (Lv_sql_query)
         loop
              dbms_output.put_line(i.employee_id);
         end loop;
    end;
    Regards
    Rahul

    if I am doing something like this : for i in (execute immediate Lv_sql_query)
    I am getting an error which is :
    PLS-00103: Encountered the symbol "IMMEDIATE" when expecting one of the following:
    . ( ) , * @ % & | = - + < / > at in is mod remainder not
    range rem => .. <an exponent (**)> <> or != or ~= >=
    My code:
    create or replace procedure p_table_compare(fp_table_old in varchar2, fp_table_new in varchar2)
    as
    Lv_sql_query varchar2(2000);
    begin
         --dbms_output.put_line('Hello World');
         Lv_sql_query := 'select * from '||fp_table_old;
         for i in (execute immediate Lv_sql_query)
         loop
              dbms_output.put_line(i.employee_id);
         end loop;
    end;
    Please help.
    Regards
    Rahul

  • Table Names for Excise Duty and Education Cess

    Hello
    In view of the recent Indian Budget 2007, Higher Education Cess of 1% shall be applicable from 1st Match 2007.
    The notes as suggested by SAP have been implemented and everything is clear for the new POs.
    We are having a lot of OPEN POs. The new condition of Higher Education Cess of 1% is to be incorporated to all these POs, where Excise Duty and Education cess is applicable through FV11 in 'Plant/vendor/Material' combination.
    Finding out such qualifying records is a bit cumbersome, so that new condition is incorporated correctly.
    Can somebody please guide me how to find out such records.
    Or the table names which contain Excise Duty, Education Cess and Higher Education Cess.
    This will help me to get the new condition entered at the earliest.
    Thanks and regards.
    -Nandu More

    Hi Nandkishor More,
    You can get relevant information using ABAP Query using following information;
    (a) Material and Chapter ID combination using table J_1IMTCHID and field name MATNR
    (b) Pending POs
    Hope this information will be useful.
    Bye,
    Muralidhara

  • Table names for Datasource mapping and Replication details in BI 7.0

    Hi All,
    I need the table names for InfoSource to Datasource mapping as well as table containing replication details of OLTP sources in BW. I need these for BI 7.0 datasources (object type RSDS).
    I know that tables RSISOSMAP and RSOLTPSOURCE give me the above information, but only for 3.x datasources. I want the corresponding tables giving same information for 7.0 datasources.
    Any pointers to these tables would be well appreciated and suitably rewarded.
    Thanks,
    Saurabh

    Hi,
    Check in ROOSOURCE table, may be helpful............
    Hope this helps in solving u r problem
    Regards
    Ramakrishna Kamurthy

  • Table names for lead,Activity and opportunity needed

    Hi
    could any one please send me the tables for lead, opportunity, activities to my mail id [email protected] kind of urgent.
    And what is the table namet to extract marketing attributes from BP Master data
    Thanx in advance.
    Regards
    vinay

    Hi,
    For lead, activity and opportunity table name is:
    1. CRMD_ORDERADM_H - Business Transaction
    2. CRMD_ORDERADM_I - Business Transaction Item
    Reward points if helpful.
    Shridhar
    Edited by: Shridhar Deshpande on Jan 30, 2008 7:52 AM

  • Solman table names for BP creation and others

    Dear All
                  I am the new one to Solman.here i want some relevant information
    i want the Table names for the follwing areas.
    if you have all the table names can u tell me the table names and descriptions
    1. Business partner creation.
    2.Supports message and its entry flows updated in which table.
    3.Change request and its entry flows saved in which table.
    Regards
    Anand

    Hi,
    For lead, activity and opportunity table name is:
    1. CRMD_ORDERADM_H - Business Transaction
    2. CRMD_ORDERADM_I - Business Transaction Item
    Reward points if helpful.
    Shridhar
    Edited by: Shridhar Deshpande on Jan 30, 2008 7:52 AM

  • RMAUTH-Different behaviour for Change and display mode

    Dear friends,
    I modified a standard roadmap by copying it and added 1 folder called "X" with normal node and saved.
    When i go for display mode in RMAUTH, I am unable to see that folder.If i go to change mode i am able to see the folder "X".
    Even in RMMAIN I couldnt see it,But if i go to change-->Scope option i could able to see it & has the tick mark in it.
    Plz provide ur valuable solutions.

    Hi,
    You cannot change any of the field you mentioned in infotype 0001.
    You can assign a position using action 0000 through PA40 or by using copy option infotype 0000 in PA30. This will be in edit mode.
    Suggested to use PA40 so that all other relevant infotypes can also be updated accordingly.
    Rest of the components (Objects Job, Cost Center, Org unit etc)  has to be assigned to the respective position in PO13-->Relation ships.
    Note: Take care of the dates.
    Regards,
    Pranitha
    Reward if found Helpful

  • PA30:Change and Display Mode

    Hi Friends,
    Can you Please provide me a solution for the Below Problem:
    When I go to PA30 and  try to CHANGE infotype 0001(Org Assmt),I get the fields "cost center,Position,job,org unit" in the Display mode I am not able to change those fields.
    Where can i change(In the configuration) these fields to be changed from DISPLAY MODE TO CHANGE MODE.So that in PA30 I can change these fields in IT0001
                                                                               Thanks In advance
                                                                                    Gopi Palleti

    Hi,
    You cannot change any of the field you mentioned in infotype 0001.
    You can assign a position using action 0000 through PA40 or by using copy option infotype 0000 in PA30. This will be in edit mode.
    Suggested to use PA40 so that all other relevant infotypes can also be updated accordingly.
    Rest of the components (Objects Job, Cost Center, Org unit etc)  has to be assigned to the respective position in PO13-->Relation ships.
    Note: Take care of the dates.
    Regards,
    Pranitha
    Reward if found Helpful

Maybe you are looking for

  • Export to Text file does not page

    Since I applied SP 7 for Crystal 9, when I export a report to a text file it does not page and print the report header on each page. It prints the report header once and one lone continuous page of information. My report was export to text with a pag

  • Digital signature on exported PDF

    Hello everyone, A customer of ours is asking for the possibility to have PDF's, which are being generated by the BO XI scheduler, signed with a digital signature. Does anybody know if this can be easily done ? Does it require additional programming,

  • How can I set the time to remove trash items?

    My trash folder used to empty automatically after a week or so but it no longer empties automatically. Can anyone help me? Thanks.

  • BB 9220 Curve- Internet Services are not working

    I had a problem with BB internet activation; My sim is already activated with BB BIS plan (pay as you go - etisalat UAE) I was under the impression that the brand new device must be having some issue and went for the replacement with the seller with

  • ? in file, install disc issues

    I have an older iMac that froze and since nothing would 'move', I turned it off.  When turning it back on, the gray file with the ? mark appeared.  I went through several suggested steps without success.  I put in the Install disc and it went as far