Field population In MIGO on F4

Hello Guru's,
I am struck at one point
In the MIGO transaction I added a Field (GR Number).
Also In the PO Srch Help I Included a Srch Help For my requirement .
Following Search Help is in MIGO for searching PO.
a. GR Number
b. Challan Number
c. Truck Number
d. Receipt Date: From & To
e. PO Number
f. Material Code
Now when I am pressing the F4 help for the PO (EBELN). I m getting the data in the
Included srch help from Ztable.Once I clicked on the PO Number in the srch help I want to populate the GR Number against that PO number in the Field (GR Number).
GR Number for that PO is stored in the Ztable.
How can I do that .Plz suggest me with some example.
Thanx in advance
Harman

What is the movement type you using in MB21???
Say if it is 201 then you need to go tcode OMJJ select mvt type as 201 then enter on the screen you will get the field Account control. Wherein check options available in drop down. Then select blank option ie. Entry in this field is optional from the dropdown adn then save. Now check in MIGO the G/L account field would be editable.
Hope this solve your problem.
Enjoy SAP,
Parag M

Similar Messages

  • Additional Field Availability in MIGO Screen

    Dear Sir,
    In the MIGO screen , we want to see that is there any extra Field available which has not been made enabled/displayed .
    Pl guide us as how can we see the availability of such fields pl .
    Regards
    B Mittal

    Hi,
    Follow the path:
    SPRO->MM->Inventory Management and Physical Inventory->Setting for Enjoy Transactions-> Setting for Goods Movement (MIGO)-> Field Selection for MIGO
    Here make document header text as u201CInput,enabled,displayed u201D entry as u required and save.
    Regards,
    Biju K

  • Usage of BAPI_OUTB_DELIVERY_CHANGE with extension fields populated

    Hi ,
    Does anyone have an example on how to use BAPI_OUTB_DELIVERY_CHANGE with the extension fields populated. A sample code would be very helpful .
    Thanks
    Ankit

    Ankit,
      The BADI - SMOD_V50B0001  will be triggered if the Extension Tables are filled.
      Method EXIT_SAPLV50I_010
      Should do the trick.
    Todd

  • Field 'Equipment' in MIGO

    Hello,
    What is the use of field 'Equipment' in MIGO -- material tab?
    Nikhil

    Hi,
    This with respect to PP / PM module integration.
    It may display the equipment number created by those people in MIGO.
    Thanks & Regards,
    Kiran
    Edited by: Kiran. V on Jun 30, 2008 1:45 PM

  • Add item field in transaction MIGO

    Hi,
    do you know a BADI or an enhancements to add item fields in transaction MIGO?
    Do you have documentation about this?
    Many thanks.
    Luca

    I have found the badi "MB_MIGO_BADI"

  • PPD field grayed out.....How do I get the PPD field populated?  Windows 7 x64

    I have an employee running Illustrator in the Creative Cloud and for whatever reason her PPD field is grayed out when she goes to print.  My other two employees running this both have the Fiery file for the printer we have as an option.  Any idea how I can get the PPD field populated?

    Permissions issues on the PPD files or the printer... Or the driver has never been fully installed in the first place due to whatever technical or again permissions issues...
    Mylenium

  • Free item reference document number not populated in MIGO item screen

    Hi
    I have a requirement where in I would need to populate the reference document number in the MIGO item when I am cancelling a goods receipt in case of free items.
    In standard SAP system we know that it would only be populated when GRbased IV is ticked in PO but in free item PO this is not ticked . So was enquiring if any body knows how we could populate the reference document number at GR cancellation in MIGO item level for free items .

    Hi,
    If you mean the field MSEG-SMBLN, then it is always populated at cancellation, no matter the GR-based IV flag.
    BR
    Raf

  • No data in Active table of DSO for fields populated by End Routine

    Hi,
    I have a Standard DSO where we are populating few fields by using End Routine.
    Last week we added 5 more fields to DSO and wrote a logic in End ROutine to populate the DSO. These new fields dont have any mapping and these are just populated by end routine only.
    When I loaded the data from Data Source TO DSO, Data is loaded correctly into NEW DATA Table of DSO for all the fields. I could see correct data as per the logic in NEW Table including old and new fields.
    However, when I activate the DSO, I could not find the data for new fields which I added last week. Remaining fields are getting data as per the logic. Only these five fields are not having any data.
    Can you please let me know if any one had similar issue. I was under impression that all the data in the new table will go to Active table when we activate the DSO.
    Your inputs are highly appreciated.
    Thanks
    Krishna

    What version of BW are you using?  When editing your end-routine, a pop-up should display saying which fields you want populated/transferred from the end routine.  This pop-up will not display if you are using a lower version of BW 7.x.  To get around this, make sure that your newly added fields have a transformation rule type set to constant.  This will make sure that the fields get populated when transferring from new to active tables.

  • Query a view w/data entered into a text field populated by 2 table fields

    Hello, Looking for advise!!! I have a tabular canvas thats datablock uses a view to populate. In this canvas I have a text field that has been populated with first_name || ' ' || last_name in the database node of the property pallate column name. The text field is not in the table or view. I have created it in the data block and make it a database item. However, I would like to have the user push a search button to go into ENTER_QUERY mode then the user would enter the criteria to search on in this text field. The user would then push button to EXECUTE_QUERY. The result is I retrieve all records. I want any search criteria entered into this field to be used against the last_name field to retrieve any records equal to the search criteria entered, for example A%. Does anyone know if this is possible?

    Hi!
    You have to use PRE-QUERY trigger to compose the search criteria. Below I put an example of it. You have to have at least one item in the block wich is true database item (e.g. it has to exist in table or view on which your block is based). In the following example EMP_DESC is your non-database search item and EMP_ID is the database one.
    Declare
    Dummy VARCHAR2 (2000);
    begin
    if :EMP.EMP_DESC IS NOT NULL and :EMP.EMP_ID IS NULL
    then
    Dummy := '#IN (SELECT emp_id FROM Employees WHERE Upper (emp_first_name)||'' ''||Upper (emp_sec_name) LIKE Upper (''%'||:EMP.EMP_DESC||'%''))';
    Copy (Dummy, 'EMP.EMP_ID');
    end if;
    end;
    Thats it. Note the # sign in the first position of the Dummy assignment. This is required by forms to glue your search criteria and block's where clause. You may analize LAST_QUERY property of your block in order to understand how this work. Remember also to set the QUERY_LENGTH property of the EMP_DESC item to the value that could contain the whole Dummy string (otherwise it will give you an error and cut the mar the query).
    Hope this helps.
    Sergey.
    P.S. And set your EMP_DESC database item property to NO.

  • Customer Number in Assignment Field while doing MIGO 453

    Hi ,
    In the Sales Return Process , we take the Goods in by 651 Standard.
    When this Return Stock is being transferred to unrestricted by MIGO 453, I am not able to establish any link betwee the Original Customer & this Stock which is being transferred. No mention in the Delivery document or the GI document of the original customer.
    Also, there is a Partner Tab on the MIGO screen under "Detail Data" , but even when i manually enter in the Customer number here, it does not get reflected anywhere in the subsequent delivery & GI document.
    The requirement is to populate the Assignment Field in the Accounting Document of the 453 GI, with the Customer number , from whom the Goods were returned from .
    This will be a HU managed Storage Location .
    Thanks & regards
    ANMol

    I dont think this is possible due to the fact the said fields are based on copy control VTFL (if it is delivery related billing) and VTFA (if it is order related billing) where at header level, you have two fields, viz.Assignment Number and Reference number. You cannot create on your own other than what is provided to select.
    thanks
    G. Lakshmipathi

  • F110 - PAYR table fields population

    Hello all,
    I have done the automatic payment run F110 successfully but when i go to SE38 and run the RFFOUS_C program, its giving "No records selected"
    In the table PAYR (SE11),  I have selected a field, say check number field/ check run date field/ House bank key field, and checked the content, It is giving "Number of entries which met selecting criteria is zero".
    When i have run F110 successfully, then the check information should be populated in PAYR table, but it is not happening???
    Please help me with this.
    Thanks!

    Hi,
    Had u assigned check lots to the account id and house bank.
    regards
    srikanth.

  • File-to-Idoc - field population problem.

    Hi All,
    I’m getting the following problem.
    My scenario is File–to–idoc.
    Problem:
    In the interface mapping I’m able to see all the values are populated correctly for Idoc.but when I see in IDX5 or SXMB_MONI one value instead of populating correctly replacing ‘,’ in that field.
    I’m using Java mapping program also to convert the file in to desired structure.
    Thanks in advance.
    Venu.

    Hi All,
    The out put from the above java program is.
    <?xml version='1.0' encoding='UTF-8'?><ns0:MT_MeterReading_IntermediateForm xmlns:ns0="urn://MVP_SR3_01/MVP/MeterReading"><Recordset><H1><Recordid>H1</Recordid><RouteNumber>10151G</RouteNumber><MetReaderId>002</MetReaderId><TotRead>000015</TotRead><TotDevUploaded>000016</TotDevUploaded></H1></Recordset><Recordset><H1><Recordid>H1</Recordid><RouteNumber>10151G</RouteNumber><MetReaderId>SYSADMIN</MetReaderId><TotRead>000000</TotRead><TotDevUploaded>000000</TotDevUploaded></H1><Item><D1><HMetReaderId>SYSADMIN</HMetReaderId><HTotDevicesUploaded>000000</HTotDevicesUploaded><AccountNumber>6205</AccountNumber><MeterReadCode>0000001495</MeterReadCode><ReadDate>20060819</ReadDate><TroubleCode></TroubleCode></D1><D2><ChgdSplInstr>IN FOOTPATH DOG BITES information for service order</ChgdSplInstr></D2><U2><Data>33333300100451</Data></U2><UC><Data><u>SKIP TEST COMMENTS FROM METER READER FOR 4000734 MRo with RR '09'</u> </Data></UC></Item></Recordset></ns0:MT_MeterReading_IntermediateForm>
    In abobe result last Data field value is populated correctly . the above result is from interface mapping.
    but when the idoc is generated in XI. I'm unable to see the value.
    Thanks,
    venu.

  • How is the comments field populated in RCV_SHIPMENT_LINES?

    I am working for a client who is using OPM extensively. When we create the internal requisition, create the internal sales order and perform the reveive, the comments field in RCV_SHIPMENT_LINES is populated with OPM:<delivery detail ID>. This functionality is working fine in 11i. We are no working on R12 upgrade for the client. In R12, the comments field is populated as NULL in RCV_SHIPMENT_LINES. I would like to know whether this is the seeded functionality in 11i. If so, what is changed in R12. Please let me know.

    I figured it out.  I have to change the Leave Codes field to visible and not read-only. Then close Form Editing.  I can then get to the field and from there I can copy the field entry over to Word to edit it.  Then copy it back in to the Leave Code field, go back to Form Editing, and put it back to Hidden and Read-only.  It was so easy once I knew the trick  :-)  Of course.

  • Making the Asset field editable in MIGO

    Hi,
    I need a help in MIGO transaction. If you do a GR against a PO with type ACCOUNT ASSIGNMENT = A (asset), that is , if in EKPO table the record of that PO contains a value EKPO-KNTTP = A, in the MIGO screen you find a field "Asset", in the Genral TAB of line Item Data. Can please tell me how to make that field editable?
    Points Guranteed.

    Hello Anid,
    You need to make setting for the account assignment category "A" in the SPRO mode
    SPRO -> Mat mangt -> Purchsing -> Account assignment - > Maintain account assignment categor
    Select the line item with "A", click on Detail and flag mark "Acct assignment changable"
    Hope this will resolve your problem
    Regards
    Arif Mansuri

  • Exchange rate should pick from TCURR based on custom date field added in MIGO

    Hi,
    In MIGO, FI document get posted by picking exchange rate based on the posting date. Through BADI(MB_DOCUMENT_BADI) we have added a field called translation date in MIGO screen, while doing GRN exchange rate should pick from TCURR based on translation date instead of posting date. We have tried this logic using substitution (GGB1) in FI accounting it is working fine in FB60 & F-02 transaction but it is not working with MIGO transaction. Please suggest some solution for this.
    Thanks & Regards
    Vinoth Kumar.M

    Hi Maniraj,
    This will a modification to existing system and it is not supported directly.
    There are 2 notes of SAP for modification of translation date of BKPF.
    SAP Note 574583 will activate a BADI kindly refer to it for details.
    http://www.stechno.net/sap-notes.html?view=sapnote&id=574583
    There is another one but is appilcable if material ledger is active in the system
    Regards

Maybe you are looking for

  • Installing from FW external DVD burner

    My internal CDRW is out on my MDD G4. I have been relying on my LaCie FW DVD burner. I am wondering if that would be a problem with installing Tiger. Thanks

  • Ipad is black screen and showing only a logo and updating bar.

    I just downloaded new ios in itunes and updated my ipad 3G. But during updating itunes encountered a problem and closed. When I reopened the itunes and connect my ipad again, my ipad cant connect to the itunes and still showing only a logo and updati

  • Budget check not active for commitment & actual budget

    Budget check runs  fine while checking budget limits for Production order and vendor invoices i.e does not allow to further create production order and vendor invoices if budget limits exceeds the released budget. But  this budget check does not work

  • Safari not functioning in Mavericks,

    Freezes, can't open tapes, "safari tab" preferences tab doesn't work, blank pages, shut's off, etc  Help!!!!

  • Where to get solaris on intel media

    Please tell me how i will get INTEL version of solaris 7 or 8 ,what i have to do fir that, and can i get that INTEL solaris CD's evaluation copy (say for 30 or 60 days) or can i get that CD for free? pls reply me back asap. my mail id is [email prote