Tracking number field in PR

Hello Gurus,
When MRP run happens PR are generated.
Data which is supposed to fill in Field tracking number in PR is going to field created by
Just wanted to know where is the setting for this.
Thanks
suresh

Hi Suresh,
When you generate PR through MRP run then then the Requisitioner field gets updated with the used id and the MRP controller field with the infromation that is configured for that particular plant
You do the configuration for MRP controller using the following path
SPRO -> Production -> MRP ->Master Data -> Define MRP Controller
Here you assign the plant to a particular MRP controller
The tracking Number field is empty 
Hope this gives you some information
Thanks
pavan

Similar Messages

  • Tracking number field in the Default settings for items section

    I need to add the tracking number field in the Default settings for items section in the shopping cart creation transaction.
    Could you please tell me inw hich structure should I add the custom field ?
    thanks,
    Rita.

    Hi Atul,
    I added the code of tracking number in in the html template saplbbp_mon_sc 1200 with reference to the code of purchase org field.
    This added a field in the shopping cart report selection screen but without any description.
    I will further learn html code and try to bring in the description and then try to handle this field in the badi bbp_mon_sc after_selection_screen and after_selection method.
    Is this approach ok?
    <!-- purchase org. -->
        `TR()`
          `TD(class="label", nowrap="X")`<label for="GS_ITEM-PURCHASE_ORG"> `T_PURCHASE_ORG.label`</label>
          `TD(class="label", align = "right", nowrap="X")` <label for="GS_ITEM-PURCHASE_ORG"> </label>
          `TD(class="data",  nowrap="X")` <input type="text" id="GS_ITEM-PURCHASE_ORG" name="GS_ITEM-PURCHASE_ORG" value="`GS_ITEM-PURCHASE_ORG`" maxlength="14" size="14">
          `F4HelpButton(bbpformname, "GS_ITEM-PURCHASE_ORG", jsMaskString(strEnc(#SELECT_TEXT_SHELP_PUR_ORG)), jsMaskString(strEnc(#SELECT_SHELP_PUR_ORG)))`
         `TR()` `Lines(colspan2="2")`
    <!-- tracking no (added) -->
        `TR()`
          `TD(class="label", nowrap="X")`<label for="GS_ITEM-ZZBE_TRACKING_NO"> `T_TRACKING_NO.label`</label>
          `TD(class="label", align = "right", nowrap="X")` <label for="GS_ITEM-ZZBE_TRACKING_NO"> </label>
          `TD(class="data",  nowrap="X")` <input type="text" id="GS_ITEM-ZZBE_TRACKING_NO" name="GS_ITEM-ZZBE_TRACKING_NO" value="`GS_ITEM-ZZBE_TRACKING_NO`" maxlength="14" size="14">
          `F4HelpButton(bbpformname, "GS_ITEM-ZZBE_TRACKING_NO", jsMaskString(strEnc(#SELECT_TEXT_SHELP_PUR_ORG)), jsMaskString(strEnc(#SELECT_SHELP_PUR_ORG)))`
         `TR()` `Lines(colspan2="2")`

  • F4 help for "Tracking Number" field at Item Overview level in ME51n

    Dear Experts,
    I want add F4 help in tracking number filed (i.e. BEDNR) at item overview.
    Scenario -
    While creating material Purchase requisition, I have to give the related Service PO number in tracking number filed.
    Client requirement is, drop down list (like F4 functionality) should be there to selct PO number. No manual copy & paste option.
    Can anybody tell me any user exit OR process how I can do this.
    Thanks & Regards,
    MilindK

    This can be achieved by adding a Search help to the Data element BEDNR
    Go  to SE11
    Give data element as BEDNR
    Find is there any Search help or not.
    Example:  Do the same thing for MATNR  .. you will find some search help is associated.
    Same way, ask your abaper to create one elementary help and associate to the BEDNR
    Then  automatically F4 will be available
    Regards.
    Venkat

  • ITunes puts track number in name field?

    I recently updated iTunes to 10.5 and a new issue has arisen. I loaded a new album into my library and I proceeded to apply track numbers to the songs. Usually I would click "Get Info" on the first song, enter the number in the track field, hit alt+n to go to the next song, type the next track number, etcetera. However when I hit alt+n to go to the next track, the name field gets highlighted instead of the track number field, so I have to click again on the track number field before I enter the number. This is quite a hindrance as before I could easily apply many track numbers within a short time, but this makes things so much more tedious. Is there a setting to fix this, or is this just a temporary bug that will be fixed later?

    It's supposed to be able to cope with slightly different file & folder structures, missing track numbers, all tracks in just an artist folder, everything in Unknown Artist\Unknown Album etc. Details here. Can you give me an idea of how things are set out? Maybe it needs a little tweak to cope with the way you've done things, or we could use something like MediaMonkey to reorganize what you have into something the script can work with.
    I'm going to be out for much of the day but I'll look in on this thread later.
    tt2

  • Add field for tracking number while Auto PR generation via MDBT

    Hi,
    While running MRP through MDBT via Variant , my PR's are generating automatically....
    Now i want one field as tracking number ( Value-100) to be added in PR when ever my PR's are generating automatically via MRP run...
    Is it possible..
    Utsav

    Hi,
    My question is :
    While running MRP through MDBT via Variant , my PR's are generating automatically....
    Now i want one field as tracking number ( Value-100) to be added in PR when ever my PR's are generating automatically via MRP run...
    When ever my PR gets generated via MRP run thrugh variant in MDBT, i want 100 value to be filled in tracking number field...
    Is it possible.
    Utsav
    Edited by: Utsav.agra on Sep 15, 2009 5:49 AM

  • BADI-Shopping cart number to Tracking Number in PR

    Hi,
    Is there any BADI  is  used for populating shopping cart number in the tracking field in the backend PR.We are using classic scenario.
    or how a shopping cart number can be populated in the bakend(R/3) in tracking number field.
    With Regards
    Sri.
    Edited by: sri ram on Mar 24, 2009 12:14 PM
    Edited by: sri ram on Mar 24, 2009 3:14 PM

    Hi,
    To transfer sc no to Traking number in PR use the BADI  BBP_CREATE_BE_RQ_NEW
    method FILL_RQ_INTERFACE
    Another way of transfer..
    Use the BBP_DOC_CHANGE_BADI for this, method BBP_SC_CHANGE.
    Then something like this, replace {work area} with a variable of your own choice.
    DATA: {work area} TYPE bbp_pds_sc_item_icu.
    LOOP AT it_item INTO {work area}.
    Selecr single object_id INTO
    {work area}-be_tracking_no FROM
    crmd_orderadm_h WHERE
    guid = is_header-guid.
    MODIFY it_item FROM {work area} TRANSPORTING be_tracking_no.
    ENDLOOP.
    et_item = it_item.
    at the end of your code to transfer the import parameters to the export.
    Thanks,
    prasad .s

  • Modify tracking number in PR...

    Hi,
    Is there any way we can change the "tracking number" in purchase requisition when corresponding PO and GR is done for this PR?
    Thanks

    We can't as PR is already released and PO as well as GR is done against this PO. I tried to do it with ME52N but tracking number field is greyed out for any editing.
    Any other way?

  • Upgraded Online - Can't track without a tracking number

    Hi there. I upgraded my phone online yesterday. I received a confirmation email from Verizon and was able to check on the status of my order by following the link in my email.  The link said that my new phone has shipped and that I can track my order through the Fedex website.  The problem is that the tracking number field is blank.  How can I find out when my phone will arrive?  Seems I have to sign for it, I want to make sure I'm home.

    I'm kind of frustrated about that too.  When I ordered my phone through the store, the man specifically told me that the credit card would not be charged until the phone had been shipped.  Well the date the phone was expected to ship was 12/27/2011.  The money was charged onto the card on Monday, 12/26/2011 which means my phone should have shipped yesterday like it was supposed to and be here today.  I have no received my phone and I already saw the FedEx man drive through my business area.  I'm not a very happy camper!  I never did receive an email with a tracking number though telling me the phone had been shipped.  But I'm still very angry!

  • ME2L not picking req.tracking number (Delivery Date)

    Hello,
    We just upgrade our system to ECC-6-EHP7 from ECC6.
    In our Previuos system , in ME2L we can see the req.tracking number(Dely Date).
    But in the new system , the field is there but the value is not picking.
    Do anyone has any ideas...Plz share.
    I have attached screenshots for ur reference.

    This looks very much like an own development, I would certainly not take this to SAP.
    SAP is consistent, if there is a table field identical to a field in the screen then the values are shown 1:1.
    there might be more fields in a screen than in the table, those are then computed during runtime.
    Your case looks like this "tracking number field" is only used as an output field for some other value.
    A programmer should be able to determine at least the program name and then he can check
    if there was a modification in your old system e.g. from SE38 via the program versions
    or he uses this guide to find the potential exits or BAdIs

  • SCM EWM,,,,,,,,to update Tracking number ,Frieght cs

    Hi Gurus,
    Here i am Working on EWM,,,I am getting data from Legacy system,,,,,,,,like
    Handling unit,DOCNO,TOtal weight,Frieght cost and Tracking NUmber,,,This data i have to update in THE EWM,,,,Could any body can help me in this,,,,,I know the tables to be updated,,,,
    /SCWM/HUHDR-----Is for update -Weight-with the handling unit(HUIDENT),,,,
    /SCWM/HU_IDENT----Is for upate the Tracking number (HUIDENT) under the Type "T" with GUI id
                                    and Frieght cost also should be update in the  SAME TABLE SAME filed but the TYPE is "R".........Here HANDLING unit,,,and Tracking NUMBER Field names are same but Tracking Number is (Alternative Handling Unit Identification),,,I guess it is clear,,,pls help me in this,,,,
    Here i am looking for Aany BAPI or Function module,,
    Could you guys can suggest me which is best method,,,,,,,,,,,,
    Thanks
    Krisna
    Title Edited by: Alvaro Tejada Galindo on Jan 11, 2008 2:27 PM

    Hello Diogo,
    currently there is no EWM-EM connection and Business Process Type available.
    Only chance would be that you create the connction by yourself.
    But this would require not only create a BPT but also coding for the connection to EM.
    On
    http://service.sap.com/scm
    > SAP SCM in Detail > Event Management -> Technical Information
    you find a document with more infos:
    Connect SAP objects to SAP EM
    Hope that helps.
    Best regards,
    Steffen

  • Zen Micro Track Numbe

    I?ve had a quick search through the archi'ves on this found similar stuff but not this one.
    Ok I have my albums in the player using the Zen Explorer. My problem is all the track numbers are 0.
    I don?t want to go to each on and type numbers because I am right lazy! So can you somehow select all the
    Track numbers and get the program to assign a track number?
    With them being all zero or a mixture of 0 ? - 5 etc does this affect the way the zen micro plays them back?
    TaMessage Edited by RedArmy on 03-24-2005 :38 AM

    Most tagging programs will do this for you. I use MP3 Library, where you select the tracks and assuming they're in order you just select the automatic option, and save all, then it autonumbers.
    The Micro will use the track number field to play in order.

  • How to Grey out the field "tracking number" during change mode in the order

    HI Expert,
    How to grey out the Tracking number (AFVGD-BEDNR) at Order -> Operation tab -> external tab ->tracking number.
    during creation IW31 = not grey out and allow entry.
    for change mode IW32 = grey out
    if i set grey out at config OIOPD, it will grey out even during creation mode.
    Please advise
    Thanks
    Regards

    Hi
    I think Using field selection it is not possible to make as display ,kindly check with screen or transaction variant -SHD0
    regards
    thyagarajan

  • Serial number field and table

    Hi,
    I want Serial number field and table,
    Scenario like this,for returnable packging material we have assigned serial numbers,mtrl type is LEIH,so for tracking of RTP material now we are going to Develop one Report for this i need ur Help.
    Logic is:1)Matrl doc at the time of Delievery.
                Qty,Posting Date,Customer,Mvt type,Serial numbers for all.
                 Beacause at the time of Del we are mentioned all serial numbrs.
                2)Material Document at the time of GI.
                Same field as mentioned as above.
    After that,3)System is to Calculate How many Matrl are deliever to Custmer upto current  Period.Say  10.
    4)Calculte  How many Matrl are Recieved from the Custmer upto current  period.say 5
    5)Del - Issue=Total Number of Material is in Customer side.Say 5
    6)According to the Serial Number wise system has to calculate in which month delieverred matrl is in still customer side.
    (Ex PGI date 20.02.2007  3 qty
    Serial Number    1,2,3
    Issue date    20.03.2007   2 qty
    Serial Number    2,3
    Serial number  1 still is in Customer side.
    Age is 2 month)
    I am giving simple ex.
    so pls any body is having this idea pls Shared with me.
    Thanks
    Raghu

    Hi Raghu,
    Check table SER01(Document Header for Serial Numbers for Delivery).
    OBJK is the object table and you will have SERNR as serial number in this table.
    check table EQUI
                          EQUI -SERGE
                          EQUI-GERNR.
    EQUI-SERGE is Manufacturer serial number.chk if this is the one u r looking for.
    MARC-SERNP.
    key in plant and material in this table to fetch the Serial number profile of the material.
    Check in IKPF AND ISEG Tables... ( inventory )
    MSEG~EQUNR
    Hope it will hep u
    Regards
    Hareesha

  • Suitable Exit/BADI for populating Requirement Tracking Number in PO and PR

    Hi all,
    I need help from you all. I need a single exit or badi which will trigger before saving any PO or PR while creating.
    For PO, it should handle 3 possible cases.
    1. Tcode : ME21
    2. Tcode : ME21N
    3. BAPI function module (Ex: BAPI_PO_CREATE1)
    For PR, it should also handle 3 possible cases
      1. Tcode : ME51
      2. Tcode : ME51N
      3. BAPI function module (Ex: BAPI_PR_CREATE)
    I need to populate Requirement Tracking Number (BEDNR) field in the line item from a custom number range object and also have to update a custom table.
    Please suggest...
    Raj

    Hi
    <b>At runtime, you will get the GUID in the BADI Interface.</b>
    Incase this BADI does not help, go for another BADI
    1) <u>BBP_SEND_MEDIUM_MODE</u>     
    (Determines the Default Settings for the Send Medium)
    2) '<u>BBP_OUTPUT_CHANGE_SF'</u>.
    <u>Here are some related links -></u>
    Re: PO output medium issue
    Re: SRM PO SMARTFORM
    Re: Control PO output to vendor
    Re: Add a Printer ?  -> LP01
    Hope this will help.
    Regards
    - Atul

  • Delivery Tracking Number

    Hi,
    I have the following requirement,
    1. The haulage firm RIDER shipping tracking number is maintained in the transaction VL02N in the backend system. Follow the menu path GOTO->HEADER->SHIPMENT. We have a field called BillOfLad ( Bill of Lading ) where the tracking number is placed.
    2. Because it is necessary to display the tracking number in the web shop we need to find where the tracking number is stored in the CRM. Based on the tracking number Dealer is routed to RIDERu2019s website to check the details of the delivery.
    I am not sure whether the tracking number is maintained in the CRM system or is replicated to the CRM system from ECC.
    Any idea guys?
    Thanks,
    Shantanu.

    unresolved

Maybe you are looking for