Add Column to MIGO Item Table

All:
I have searched SDN unsuccessfully to find a mechanism to add a Z field to the MIGO Item Table.  I know you can add customer sub-screens to either the header section or the item details section.  However, I have been unable to find out how to add a column to the item table in MIGO.
I can use an append structure to add the field to GOITEM and GOITEM_TV and that works fine.  However, this new Z field is not appearing on the screen.  The field value itself is not transferred to the application in internal table TV_GOITEM.  MB_MIGO_BADI does not appear to have a Method that makes this type of change possible.
Is there another BADI or userexit available to do this?
Thanks!

Hi,
   I think that is not possible but you as you already know why dont you add a new tab to the items data and add the fields there.
Regards,
Himanshu

Similar Messages

  • Add a new column in Agreement Items table control (ME31K/ME32K/ME33K)

    Hi guys,
    I have a big issue.
    How can I add a new column at Agreement Items table control (ME31K/ME32K/ME33K) level.
    Thanks a lot.

    I think i solved the problem . The single way to to that is to modify the SAP standard Screen.

  • Nsert/Update and Add Column at the same Table and at the "same" Time

    Hello,
    I want Insert/Update and Add Column at the same Table and at the "same" Time but in different sessions.
    Example:
    At first the "insert/update" statement:
    Insert into TestTable (Testid,Value) values (1,5105);
    After that the "add" statement:
    Alter table TestTable add TestColumn number;
    - sadly now I get the message: ORA-00054: resource busy and acquire with NOWAIT specified
    "insert/update" statement:
    Insert into TestTable (Testid,Value) values (2,1135);
    After that the execute commit.
    I don't know when the first session set the commit statement so I want that the DB the "Alter Table..." statement execute if it's possible.
    If it's possible I want to save a repeat loop with the "Alter Table..." statemtent.
    Thanks for ideas

    Well I want to walk in the rain without and umbrella and still stay dry, but it ain't gonna happen.
    You can't run a DDL statement against a table with transactions pending. Session 2 has to wait until session commits or rollbacks (or until the session is killed). That's just the way it is.
    This makes sense if you think about it. The data dictionary has to be consistent across all sessions. If session 2 was allowed to change the table structure whilst session 1 has a pending transaction then the database is in an inconsistent state. This is easier to see if you consider the reverse situation - the ALTER TABLE statement run by session 2 does a DROP COLUMN TESTID rather than adding a column: now what should happen to session 1's INSERT statement? You have retrospectively invalidated a statement that was perfectly legal when it was executed.
    If it's possible I want to save a repeat loop with the "Alter Table..." statemtent.Fnord.
    Cheers, APC

  • F-54 Add column BLDAT into Item data

    Is it possible to append the field BLDAT (from Header) into Item data?
    1.Enter f-54. You see screen 114 programm
    2. Then fill in the obligatory fields and push button ENTER.
    3.Now you see the table Down Payments - screen 1703. I need to add a new column - BLDAT into this table.
    I had seen a Configuration->Administrator(button on the right up the table), field BLDAT was absent there.

    Hi Anastasia,
    Under normal circumstance, document date should be there.  If not, do the following.
    1. Enter transaction code: SHD0
    2. Enter transaction code: FBA8
    3. Click on Screen Variants
    4. Screen Variant: Enter "STANDARD 4_1010
    5. Enter Program: SAPMF05A
    6. Screen: Enter 1010
    7.  Click on Change: Check off Document Date as required.
    8. Save and carry out a test from this screen by clicking on the test tab.
    Alternatively, you could use FBA8 instead of F-54 since they all use the same program.
    Let me know if this helped.
    Elias
    Edited by: Elias Akorli on Dec 3, 2009 2:29 PM

  • How to add column in the item overview screen (4900) in sales order?

    Hello Experts,
    I have a requirement to add a column (Field - Size/Dimensions - MARA-GROES) in the Item Overview Screen (4900).
    Is there any provision for that? Any enhancement or screen exit or so?
    Quick response will be appriciated.
    Thanks in advance.
    regards,
    hp

    Hi
    As the link that RamKi let us know, this is a modification, so, I suggest to avoid. See SAP Note 862228 - Order reason for returns on item level for further information. I suggest to use the other enhancements in tabs.
    Regards
    Eduardo

  • WWV-01821 when trying to add column to a database table

    I have a database table with 5 columns, all NUMBER. When I try to add a column via the Portal Navigator, I get the error:
    Error:      Exception from wwv_generate_component.build_procedure (WWV-01821)
    I can add the column via SQLPlus with alter table. Any ideas?
    TIA

    No help there. The WWV-01821 error is not even in the documentation.
    <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="60%" ALIGN="CENTER">
    <TR>
    <TD><FONT CLASS="OraErrorHeader">Error:</FONT></TD>
    <TD ALIGN="LEFT"><FONT CLASS="OraErrorText">Exception from wwv_generate_component.build_procedure<NOBR> (WWV-01821)</NOBR><BR><!-- wwv_builder.finish --></FONT></TD>
    </TR>
    </TABLE>
    Edited by: Angrydot on Mar 30, 2009 11:30 AM

  • FMBB Transaction - Add fields to line item table

    Hi Gurus,
                     Our requirement is to enhance FMBB transaction to accommodate one more field. I found this BADI FMBW_CUSTOMER (Method - ADD_FIELDS_TO_LINE_ITEM). I am planning to add an additional field(customer Include) in FMBL table and implement the method. Am I going in the right direction? Do you have any other suggestions.
    Thanks for your help.
    Prakash

    Hi Prakash,
    I have the similar requirement to add a custom field in FMBB->Payment Budget Tab.
    Please share with me how have you achieved it.
    Thank you in advance.
    Regards,
    Mohammed

  • How to add columns for existing table dynamically?

    Hi,
    I created table structure only. I want to add columns for this existing  table. Columns are not fixed, according to the  user choice i  need to write code.
    Plz give me reply asap.
    Thanks
    Shirisha

    Hi Shirisha,
    I think the following code snippet will help you.
    int l_no_cols = 0;
    //Get the number of columns in this variable, something like the following
    //l_no_cols = wdContext().currentContextElement().get<Context_attribute_name>;
    IWDTable l_tab;
    IWDTransparentContainer l_tbl_cont = (IWDTransparentContainer)view.getElement("TableDataCont");//ID of Container
    l_tab = (IWDTable)view.getElement("TableData");//ID of Table
    l_tab.setVisible(WDVisibility.VISIBLE);
    l_tab.bindDataSource(wdContext.nodeTable_Data().getNodeInfo());
    for(int a = 1; a <=l_no_cols; a++)
    //Creating the column
    IWDTableColumn l_tab_col = (IWDTableColumn)view.createElement(IWDTableColumn.class,"COL"+a);
    //Creating Caption for Column Header
    IWDCaption l_tab_cap = (IWDCaption)view.createElement(IWDCaption.class,"Caption"+a);
    l_tab_cap.setText("Col"+i);               
    l_tab_col.setHeader(l_tab_cap);
    //Creating Table Cell Editor for column
    IWDInputField l_tab_cell = (IWDInputField)view.createElement(IWDInputField.class,"CellEditor"+a);
    //creating context node attribute for the column dynamically
    wdContext.nodeTable_Data().getNodeInfo().addAttribute("Col"+i,"com.sap.dictionary.String");
    l_tab_cell.bindValue(wdContext.nodeTable_Data().getNodeInfo().getAttribute("Col"+i));
    l_tab_col.setTableCellEditor(l_tab_cell);
    l_tab.addColumn(l_tab_col);
    l_tbl_cont.addChild(l_tab);
    Regards,
    Alka

  • Tax column at line item level in VA01/VA02

    Hello All,
    I had a requirement to add the tax column at line item level for va01/VA02 transaction.
    I modified the screen 4900 and added the VBAP-TAXM1 column to the item table control and made that column input enabled.
    Now I had to calculate the TAX conditions based on the input in that tax column. None of the user exit is triggering when I change the values in this field, do I need to make any changes in the PAI of the 4900 screen in order to make the userexits trigger or am I missing anything?
    Thanks & Regards,
    SasiKiran.

    Hi
    Please, see SAP Note 862228 - Order reason for returns on item level. It is related with field AUGRU. Remember that it is a modification. I suggest you to add in addition data (for instance, SAP Note 209278 - Display of customer-specific fields in sales doc, SAP Note 302497 - Additional cust. fields not displayed in 'Additional data B', SAP Note 420546 - Additional data B and transaction variants in sales order and related notes).
    I hope this helps you
    Regards
    Eduardo

  • Add columns with custom fields in the table control of MIGO

    Hi,
    I have to add custom fields in the table control view of item in the MIGO.  I have added the fields in the GOITEM structure and i am able to display it in the item details tab.  I want the same fields to be visible as columns in the table control view of the items.
    I found that TV_GOITEM is the control in SAPLMIGO program referring to the table control of items but it is referring only to the standard fields available in Screen 200.
    Please let me know if there is any screen exit or option to add the custom fields in the control TV_GOITEM.
    Thanks.

    Hi,
    Thanks for your reply.  I have added the custom fields in the item detail.  But the customer wants the custom fields in the table view also.
    Is there any screen exit available to modify the table control of MIGO?
    Thanks.

  • How to add a new column (Project Number) in the action items table under NPD Module?

    There are two projects with same name and created by same person in NPD.
    So when it is displayed in "Action Items" table, It looks similar.
    To avoid this, I need one more column (Project Number) to be added in the "Action Items" table and " Strategic briefs and projects" table.
    So, How to add a new column (Project Number) in the "Action Items" table and " Strategic briefs and projects" table under NPD Module?
    Please do the needful.

    There is no out of the box configuration available to add columns to NPD action items.   As always we welcome enhancement requests. 
    Thanks
    Kelly

  • Add a new column in item table control of va01 screen

    Hi All,
    i have requirement to add new column in item table control of va01 screen 4900 for the custome field of vbap table
    the required coloum is add with the help of access key
    however whem i am trying to save data, that custom field is not populate
    please let me know if any one had work on this

    I think i solved the problem . The single way to to that is to modify the SAP standard Screen.

  • MIGO - Item Overview Field Columns

    Dear all,
    I've an issue on my company's Dev system whereby in the standard MIGO transaction screen, the Item Overview section (the middle table) seems to be missing columns starting from "Material Short Text" all the way until before "Text" column. Meaning, upon entering the MIGO screen, you'll see "Text as the first column under the Item Overview section.
    May know if there's any setting within SPRO to unhide or bring back the original layout? I've check the enjoy selection field settings under Inventory Management but none seems to be affecting the Item Overview section.
    Thanks.
    Steven

    Hi,
    See any variant is saved and used in  MIGO screen .OK. Now use t.code in MIGO, at "Item Overview" level,  you will get a button as "Configuration" at the right end of the table {This button is mix of YellowBlueWhite colours}. Click  "Configuration" button , you will have small pup-up screen and again click Administrator ,now you will have another pup-up screen.  Check  "Material Short Text" (GOITEM-MAKTX) is made as invisible by selecting check box, if yes, then remove check box & active.
    Regards,
    Biju K

  • Add columns in the existing Customer table in a Subject Area

    Hi All,
    Well I need to add two columns from Sales table(new table i created which has customer Id) and join it to the Customer Table which has the Customer Id and several columns. The Customer table was already in the RPD which has all the customer information. Now that i have this new requirement to add few columns from the Sales table to the Customer table in one Subject Area.
    What i have done so far is that I imported the sales table into the rpd, made a join in PHYSICAL LAYER on the customer ID of the Sales table to the Customer id of the Customer table and simply dragged the sales table to the Customer LTS in the BMM layer(NO MORE JOINS IN BMM)and dragged and dropped the same into the Presentation layer. The customer table is linked to one fact table in that subject area. So i thought that dragging the sales table columns in the customer table LTS will work because customer is linked to one fact in that subject area.
    Now, In the Answers when I dragged columns from customer & sales table I see only one record that is the first customer_id record from my Sales table but i know there are many common customer_ids between those two tables but its only picking the first customer id from the sales table.
    Any help will be appreciated..
    Normally if we need to add some columns to the existing tables in one subject area what is the best approach??

    Hi Balajee,
    SAPMM06E 0111 CUSTSCR1 SAPLXM06 0111 Subscreen: PO item
    for more information check with these links
    ADDING NEW FIELDS IN me21n
    ADDING NEW FIELDS IN me21n - (Screen exit / enhancment)
    hope this will useful to you.
    Regards!

  • Add new field in detail table control MIGO

    Hi Gurus,
    We are able add the new(custom) field in MSEG table and it is able to view at line item lebel in transaction MIGO.
    However the user requirement is he need the field shoud be in detail table control.
    Could you please help me out. Thanks in advance.
    Thanks & Regards
    Tirumula Rao Chinni

    hi
    Please go through these links
    How to Add Field to MIGO : Urgent
    MIGO How to add new screen field
    Adding custom fields in the MIGO screen
    Thanks..

Maybe you are looking for