<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Adding User Fields to Migo Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-user-fields-to-migo-screen/m-p/3179407#M756850</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Usman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Given below is a detailed reply on how to use badi's for MIGO:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAdI: Maintenance of Extenral Detail Subscreens for Transact&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Application component: MM-IM-GR; MM-IM-GI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the Business Add-In (BAdI) MB_MIGO_BADI, you can extend the interface of the goods movements transaction ( MIGO) with additional tabstrip controls for the detailed information (detail tabstrips) and header information (header tabstrips). It is possible for an external application&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to display an additional detail tabstrip with own subscreen (max. 10 lines) in MIGO&lt;/P&gt;&lt;P&gt;to display an additional header tabstrip with own subscreen (max. 3 lines) in MIGO&lt;/P&gt;&lt;P&gt;The program name, screen number and tab page text can be determined dynamically. Different screens can therefore be controlled according to the mode (for example, change mode, display mode, goods receipt, goods issue).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pushbuttons&lt;/P&gt;&lt;P&gt;It is not possible to implement pushbuttons in the MIGO menu, but you can, however, implement pushbuttons directly on the external subscreen. The OK code from MIGO is forwarded to the external application so it can react.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cursor Control&lt;/P&gt;&lt;P&gt;So that the cursor stays on the same subscreen after you press Continue, if it was positioned there before, the external application in the own PAI must hold the cursor positioning (on the same screen 'yes'/'no'; if 'yes', on which field), to set the cursor in PBO again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requirements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use the BAdI MB_MIGO_BADI in MIGO to update customer-own data, in addition to the material document, to the database, you should note the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BAdI MB_MIGO_BADI is only active in transaction MIGO.&lt;/P&gt;&lt;P&gt;If you post goods movements with other transactions (for example, with MB01, MB1C, VL02N), you must ensure that customer data is also updated, if necessary.&lt;/P&gt;&lt;P&gt;You can do this by using the BAdI MB_DOCUMENT_BADI (Creating a material document) to post the goods movements with the transactions mentioned above.&lt;/P&gt;&lt;P&gt;Note that otherwise, posting the goods movements will lead to inconsistencies between SAP system data (for example, in stocks, material documents, FI documents) and customer data.&lt;/P&gt;&lt;P&gt;To avoid these inconsistencies, we recommend posting all goods movements with transaction MIGO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard settings&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the standard system, the Business Add-In is not active.&lt;/P&gt;&lt;P&gt;There is no default code.&lt;/P&gt;&lt;P&gt;The Business Add-In is not filter-dependent.&lt;/P&gt;&lt;P&gt;The Business Add-In can be used more than once.&lt;/P&gt;&lt;P&gt;Activities&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To activate the Business Add-In, you must create an active implementation. Do this in Inventory Management and Physical Inventory Customizing and choose the relevant activity under Maintain Customer-Exits and Business Add-Ins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more information about this procedure, see the SAP Library under&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basis Components -&amp;gt; ABAP Workbench -&amp;gt; Changing the SAP Standard -&amp;gt; Business Add-Ins -&amp;gt; Implementing Business Add-Ins.&lt;/P&gt;&lt;P&gt;Note that the Business Add-In can be used multiple times and therefore all active implementations are called and run through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create Implementations&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAdI definition MB_MIGO_BADI was created with transaction SE18.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using transaction SE19, you can create an implementation for this BAdI. You can provide the methods with customer-defined code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BAdI definition can be used several times. In MIGO, five additional tabstrip control were defined for the detail screen, and five additional tabstrip controls for the header information. In other words, up to five different implementations can be created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Recommendation&lt;/P&gt;&lt;P&gt;We recommend that you do not install the external application data directly in the implementation, but enclose it in function modules. You assign the screen with the subscreens to the corresponding function group; see the example implementation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For easier comprehension, an example code has been created for the BAdI MB_MIGO_BADI. The example implementation class isCL_EXM_IM_MB_MIGO_BADI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To activate the example implementation, use transaction SE19 to create a new implementation and then activate it. Copy the example code with Goto -&amp;gt; Sample Code -&amp;gt; Copy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The tabstrip controls MIGO BAdI Example are then displayed in MIGO for the header and detail information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the tabstrip control for the detail information, you can enter an additional quantity (and unit of measure). Both are saved in table MIGO_BADI_EXAMPL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The text field SGTXT can also be changed. An example shows how an external application can change the data from the GOITEM (item data in MIGO) structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the tabstrip control for the header information, you can enter an additional number. This is saved in table MIGO_BADI_EXAMP2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further notes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Documentation for BAdI methods:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initialization and registration of external detail screens:&lt;/P&gt;&lt;P&gt;INIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PBO of detail screen&lt;/P&gt;&lt;P&gt;PBO_DETAIL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI of detail screen&lt;/P&gt;&lt;P&gt;PAI_DETAIL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Insert / change line (GOITEM)&lt;/P&gt;&lt;P&gt;LINE_MODIFY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Delete line (GOITEM)&lt;/P&gt;&lt;P&gt;LINE_DELETE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MIGO reset (delete all internal data)&lt;/P&gt;&lt;P&gt;RESET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Post a goods movement&lt;/P&gt;&lt;P&gt;POST_DOCUMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check item data for goods movement&lt;/P&gt;&lt;P&gt;CHECK_ITEM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mode of transaction MIGO (action, reference document, etc.)&lt;/P&gt;&lt;P&gt;MODE_SET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Status information and header data&lt;/P&gt;&lt;P&gt;STATUS_AND_HEADER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save held data&lt;/P&gt;&lt;P&gt;HOLD_DATA_SAVE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load held data&lt;/P&gt;&lt;P&gt;HOLD_DATA_LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Delete held data&lt;/P&gt;&lt;P&gt;HOLD_DATA_DELETE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PBO of header screen&lt;/P&gt;&lt;P&gt;PBO_HEADER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI of header screen&lt;/P&gt;&lt;P&gt;PAI_HEADER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check item data for goods movement&lt;/P&gt;&lt;P&gt;CHECK_HEADER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also call the documentation on the BAdI method via the menu, by carrying out the following steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Choose the tab page Interface.&lt;/P&gt;&lt;P&gt;2. Double-click on the relevant method.&lt;/P&gt;&lt;P&gt;3. Click on the right mouse button and choose Component documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Kindly reward points if you found the reply helpful.&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chaitanya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Dec 2007 11:41:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-13T11:41:59Z</dc:date>
    <item>
      <title>Adding User Fields to Migo Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-user-fields-to-migo-screen/m-p/3179405#M756848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a query from my client that they want to have Customer Number and some other fields in the tcode MIGO (i.e) Goods Recipt. I didnt find any accurate enhancement for do that. Is there any enhancement or screen-exit for MIGO to add fields to the screen with F4 help or do i have to do modification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next thing is that in Standard transaction if i have to disable F4 help on any field than whats the appropriate solution to do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usman Malik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 10:02:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-user-fields-to-migo-screen/m-p/3179405#M756848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T10:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Adding User Fields to Migo Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-user-fields-to-migo-screen/m-p/3179406#M756849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;below are the exits u have for migo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;P&gt;MBCF0002  &lt;/P&gt;&lt;P&gt;MBCF0005  &lt;/P&gt;&lt;P&gt;MBCF0006  &lt;/P&gt;&lt;P&gt;MBCF0007  &lt;/P&gt;&lt;P&gt;MBCF0009  &lt;/P&gt;&lt;P&gt;MBCF0010  &lt;/P&gt;&lt;P&gt;MBCF0011  &lt;/P&gt;&lt;P&gt;MBCFC003  &lt;/P&gt;&lt;P&gt;MBCFC004  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to SMOD and give this name select 'component' radio button then press 'display'. It will give all function modules, screen exits(screen areas) to you. Select proper one and use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it dose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Siva kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 11:36:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-user-fields-to-migo-screen/m-p/3179406#M756849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T11:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Adding User Fields to Migo Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-user-fields-to-migo-screen/m-p/3179407#M756850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Usman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Given below is a detailed reply on how to use badi's for MIGO:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAdI: Maintenance of Extenral Detail Subscreens for Transact&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Application component: MM-IM-GR; MM-IM-GI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the Business Add-In (BAdI) MB_MIGO_BADI, you can extend the interface of the goods movements transaction ( MIGO) with additional tabstrip controls for the detailed information (detail tabstrips) and header information (header tabstrips). It is possible for an external application&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to display an additional detail tabstrip with own subscreen (max. 10 lines) in MIGO&lt;/P&gt;&lt;P&gt;to display an additional header tabstrip with own subscreen (max. 3 lines) in MIGO&lt;/P&gt;&lt;P&gt;The program name, screen number and tab page text can be determined dynamically. Different screens can therefore be controlled according to the mode (for example, change mode, display mode, goods receipt, goods issue).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pushbuttons&lt;/P&gt;&lt;P&gt;It is not possible to implement pushbuttons in the MIGO menu, but you can, however, implement pushbuttons directly on the external subscreen. The OK code from MIGO is forwarded to the external application so it can react.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cursor Control&lt;/P&gt;&lt;P&gt;So that the cursor stays on the same subscreen after you press Continue, if it was positioned there before, the external application in the own PAI must hold the cursor positioning (on the same screen 'yes'/'no'; if 'yes', on which field), to set the cursor in PBO again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requirements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use the BAdI MB_MIGO_BADI in MIGO to update customer-own data, in addition to the material document, to the database, you should note the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BAdI MB_MIGO_BADI is only active in transaction MIGO.&lt;/P&gt;&lt;P&gt;If you post goods movements with other transactions (for example, with MB01, MB1C, VL02N), you must ensure that customer data is also updated, if necessary.&lt;/P&gt;&lt;P&gt;You can do this by using the BAdI MB_DOCUMENT_BADI (Creating a material document) to post the goods movements with the transactions mentioned above.&lt;/P&gt;&lt;P&gt;Note that otherwise, posting the goods movements will lead to inconsistencies between SAP system data (for example, in stocks, material documents, FI documents) and customer data.&lt;/P&gt;&lt;P&gt;To avoid these inconsistencies, we recommend posting all goods movements with transaction MIGO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard settings&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the standard system, the Business Add-In is not active.&lt;/P&gt;&lt;P&gt;There is no default code.&lt;/P&gt;&lt;P&gt;The Business Add-In is not filter-dependent.&lt;/P&gt;&lt;P&gt;The Business Add-In can be used more than once.&lt;/P&gt;&lt;P&gt;Activities&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To activate the Business Add-In, you must create an active implementation. Do this in Inventory Management and Physical Inventory Customizing and choose the relevant activity under Maintain Customer-Exits and Business Add-Ins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more information about this procedure, see the SAP Library under&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basis Components -&amp;gt; ABAP Workbench -&amp;gt; Changing the SAP Standard -&amp;gt; Business Add-Ins -&amp;gt; Implementing Business Add-Ins.&lt;/P&gt;&lt;P&gt;Note that the Business Add-In can be used multiple times and therefore all active implementations are called and run through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create Implementations&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAdI definition MB_MIGO_BADI was created with transaction SE18.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using transaction SE19, you can create an implementation for this BAdI. You can provide the methods with customer-defined code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BAdI definition can be used several times. In MIGO, five additional tabstrip control were defined for the detail screen, and five additional tabstrip controls for the header information. In other words, up to five different implementations can be created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Recommendation&lt;/P&gt;&lt;P&gt;We recommend that you do not install the external application data directly in the implementation, but enclose it in function modules. You assign the screen with the subscreens to the corresponding function group; see the example implementation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For easier comprehension, an example code has been created for the BAdI MB_MIGO_BADI. The example implementation class isCL_EXM_IM_MB_MIGO_BADI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To activate the example implementation, use transaction SE19 to create a new implementation and then activate it. Copy the example code with Goto -&amp;gt; Sample Code -&amp;gt; Copy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The tabstrip controls MIGO BAdI Example are then displayed in MIGO for the header and detail information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the tabstrip control for the detail information, you can enter an additional quantity (and unit of measure). Both are saved in table MIGO_BADI_EXAMPL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The text field SGTXT can also be changed. An example shows how an external application can change the data from the GOITEM (item data in MIGO) structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the tabstrip control for the header information, you can enter an additional number. This is saved in table MIGO_BADI_EXAMP2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further notes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Documentation for BAdI methods:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initialization and registration of external detail screens:&lt;/P&gt;&lt;P&gt;INIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PBO of detail screen&lt;/P&gt;&lt;P&gt;PBO_DETAIL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI of detail screen&lt;/P&gt;&lt;P&gt;PAI_DETAIL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Insert / change line (GOITEM)&lt;/P&gt;&lt;P&gt;LINE_MODIFY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Delete line (GOITEM)&lt;/P&gt;&lt;P&gt;LINE_DELETE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MIGO reset (delete all internal data)&lt;/P&gt;&lt;P&gt;RESET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Post a goods movement&lt;/P&gt;&lt;P&gt;POST_DOCUMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check item data for goods movement&lt;/P&gt;&lt;P&gt;CHECK_ITEM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mode of transaction MIGO (action, reference document, etc.)&lt;/P&gt;&lt;P&gt;MODE_SET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Status information and header data&lt;/P&gt;&lt;P&gt;STATUS_AND_HEADER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save held data&lt;/P&gt;&lt;P&gt;HOLD_DATA_SAVE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load held data&lt;/P&gt;&lt;P&gt;HOLD_DATA_LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Delete held data&lt;/P&gt;&lt;P&gt;HOLD_DATA_DELETE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PBO of header screen&lt;/P&gt;&lt;P&gt;PBO_HEADER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI of header screen&lt;/P&gt;&lt;P&gt;PAI_HEADER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check item data for goods movement&lt;/P&gt;&lt;P&gt;CHECK_HEADER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also call the documentation on the BAdI method via the menu, by carrying out the following steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Choose the tab page Interface.&lt;/P&gt;&lt;P&gt;2. Double-click on the relevant method.&lt;/P&gt;&lt;P&gt;3. Click on the right mouse button and choose Component documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Kindly reward points if you found the reply helpful.&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chaitanya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 11:41:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-user-fields-to-migo-screen/m-p/3179407#M756850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T11:41:59Z</dc:date>
    </item>
  </channel>
</rss>

