Field for Picking Request number

Hi,
Are there any fields which captures the Picking request number and the user who is picking???, we are doing a delivery with no WMS...
Appreciate the help here.
Deepak

Dear Experts,
After delivery a picker will pick the material and put it for delivery but how do we capture the picker information if WM is not installed, the other question is - If such a functionality exist in standard SAP or not????
Thanks
Deepak
Edited by: Rob Burbank on Sep 27, 2010 3:48 PM

Similar Messages

  • Picking request Number Range Assignment

    I am looking for picking request number range assignment? 
    In Logistics execution we can define the number range, for pciking request but where to assign it?            
    I request all the SD Guru's to have a look. I find it pretty challenging.
    Please reply to the subject asked.
    Best Regards,
    Bashir
    Edited by: Bashir on Jan 12, 2010 11:18 AM

    Dear Friend
    I feel the picking request number is automatically generated by the system ( If it is not a transfer order that is not warehouse managed )
    The logic is system takes the picking date
    Today if we pick that is 12.01.2010
    The picking number is 20100112 (yyyy/mm/dd)
    No matter how many delivery documents we create today the picking number will be 20100112
    If the picking date is 11.01.2010 then
    picking number is 20100111 (yyyy/mm/dd)
    If the picking date is 21.12.2009 then
    picking number is 20091221 (yyyy/mm/dd)
    Regards
    Raja

  • WHSCON or SHPCON : how to transfer the picking request number ?

    Hello,
    I want to pick & pack an outbound delivery using the idoc WHSCON.
    Using the WE19 transaction I have simulated an inbound idoc with qualif. PIC in segment E1EDL18. It works fine.
    My problem is that a new picking request is created for the delivery. It has the same number as the delivery. Because of this, the picking quantity is added to the delivery quantity.
    So my question is quite simple : in order WHSCON (or SHPCON), in which segment and field must i put the picking request number ?
    Subsidiary question : Is it a difference between messages SHPCON and SHPCON ?
    Regards.

    Hello there, Off the top of my head, I used WHSCON as opposed to SHPCOn for shiiping confirmations ( picking and PGI).
    But for returns and refusals I used SHPCON.
    Now they both can be used but obviously the Func. modules are different. Other than that there must be some subtle differences, which you might notice if you test both thoroughly for the same condition.
    also in my case there was no picking request # so I cannot help you there.
    I do recollect that the PIC indicator was in both the header and the line item, and there was another indicator used by another team in the 19 segment, think it was "QUA". never understood its purpose.
    If you do figure it out outside of this forum, please post the resolution here.
    Regards

  • Picking Request number

    Hi guys,
    I'm a SAP SD beginner. I have some question about SD document flow as following,
    sale order xxxxxxxxxx
    . delivery xxxxxxxxxx
    .. picking request 20080808
    ...billing xxxxxxxxxx
    As you see the picking request no. is generated when picking the delivery with both t.code VL02n or VL70
    - vl02n -> the number is system date.
    - vl70 -> is sequence number.
    I just want to know that, where in SAP, does this picking request no. keep in,
    Is there any table (except table VBFA) structure ?
    Is there a relationship between delivery and picking request ?
    Thanks in advance

    Thanks so much for the above answers.
    anyway, they're still not the answers I wanted
    I give you guy a further info >>
    There is no Warehouse management in this sale process. So the transfer order will not be created.
    I would like to know that in standard SAP, where is the picking request number stored? I've tried to find this number in SAP table. I can only find this number in table VBFA.
    Is there any other SAP table that store this number??

  • Picking Request Number Generation

    In the Tcode VL02N  For a Purchase Order after assigning the material numbers and saving the delivery a Picking Request Number is usually created in the Document Flow which is usually in YYYYMMDD .
    But i am not using the TCODE but using the bapi I ''BAPI_OUTB_DELIVERY_CREATE_STO" to create the delivery
    but now if you check the Document Flow the Picking Request Number is the Same as the Purchase Order Number.
    What can be the Cause is there any flag to set this to the creation date ?
    Regards
    Biju T John

    Dear Friend
    I feel the picking request number is automatically generated by the system ( If it is not a transfer order that is not warehouse managed )
    The logic is system takes the picking date
    Today if we pick that is 12.01.2010
    The picking number is 20100112 (yyyy/mm/dd)
    No matter how many delivery documents we create today the picking number will be 20100112
    If the picking date is 11.01.2010 then
    picking number is 20100111 (yyyy/mm/dd)
    If the picking date is 21.12.2009 then
    picking number is 20091221 (yyyy/mm/dd)
    Regards
    Raja

  • Table and table field for PICKING QUANTITY.

    Hi friends,
           I need to use PICKING QTY in script. but it is in structure LIPSD-PIKMG.
    Please say Table and Field for Picking quantity.
    I need a table and field.
    THANKS in advance.
    balaji.

    Hi Tarani, Rasmi,
    Thank you for quick response.
          LIPS-LFIMG is Delivery Qty . It is not Picking Qty.
    please let me know for PICKING QTY to display in my Script.
    Thank you.

  • Database Field for Picked Quantity in Delivery

    Hi All,
    We want to know the Database Field for Picked quantity in a delivery. We checked the help for the field and it points to the LIPSD structure and the field PIKMG. However I could not find it in LIPS table or any other table. Could somebody please help me locate this field in the database ?
    Thanks,
    Amit

    Hi, This is late response i know, but maybe someone else is looking for same and needs code for same. Please keep in mind that you also need to check if users have done LT0G return from GI are back to picking bin. In this case you need minus the TO from total picking qty.
    ABAP routine:
    form LIPS_PICKED using LS_LIPS type LIPS.
       data: LT_VBFA type table of VBFA,
             LS_VBFA type VBFA,
             LS_LTAP type LTAP.
       select * from VBFA into table LT_VBFA  "Fetch to data from doc flow and count picked
         where VBELV = LS_LIPS-VBELN
         and   POSNV = LS_LIPS-POSNR
         and   VBTYP_N = 'Q'.
       clear LS_LIPS-LFIMG.
       loop at LT_VBFA into LS_VBFA.
         select single * from LTAP into LS_LTAP
           where LGNUM = GS_SCREEN_100-LGNUM
           and   TANUM = LS_VBFA-VBELN
           and   TAPOS = LS_VBFA-POSNN
           and PQUIT   = 'X'. "Picked!
         if SY-SUBRC = 0.
           if ls_ltap-vltyp = '916'. "Source is GI area => LT0g done, it is minus!
            LS_LIPS-LFIMG = LS_LIPS-LFIMG - LS_LTAP-VISTA.
           ELSE.
           LS_LIPS-LFIMG = LS_LIPS-LFIMG + LS_LTAP-VISTA.
           endif.
         endif.
       endloop.
    endform.                    "lips_picked

  • I'm not able it to type into the field for the serial number.

    I have a Mac Book. I purchased a download card from Fry's. After pressing "accept" for the terms on my computer I'm not able it to type into the field for the serial number. What's wrong?

    Are you sure it's a serial number and not a redemption code? A PSE serial number is 24 digits beginning with 1057. If you have a redemption code, here's what you need to do:
    http://helpx.adobe.com/x-productkb/policy-pricing/serial-number-retrieval-process-faq.html

  • How to get an answer for Support Request Number 12...

    How to get an answer for Support Request Number 1277702580 ?

    Has your speed problem been resolved, or do you need assistance?
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Use custom field for work phone number in CUCiLync

    Hi,
    I have searched and tried out all sorts of different settings for enabling/changing the way CUCiLync searches the Active Directory (AD) for contact phone numbers.
    But no matter what setting I use in the HKEY_CURRENT_USER\Software\Cisco Systems, inc.\ Client Services Framework\AdminData and/or HKEY_CURRENT_USER\Software\Cisco Systems, inc.\ Client Services Framework\Active Directory hive, CUCiLync still uses the default for Work phone number. The default for this is to use telephoneNumber, the value that I wish to use is the ipPhone field.
    The registry values that I have tested so far are these.
    HKEY_CURRENT_USER\Software\Cisco Systems, inc.\ Client Services Framework\AdminData
    LDAP_AttributeName_businessPhone
    LDAP_AttributeName_primaryPhoneNumberForSearches
    LDAP_AttributeName_otherPhone
    All set to ipPhone, and I have also tested to set it to another field in AD that contains the same value as the ipPhone, that is in my case extensionAttribute5.
    HKEY_CURRENT_USER\Software\Cisco Systems, inc.\ Client Services Framework\Active Directory
    BusinessPhone
    PreferredNumber
    DisableSecondaryNumberLookups
    First two set to ipPhone and the third set to 0, and I have also tested to set it to another field in AD that contains  the same value as the ipPhone, that is in my case extensionAttribute5.
    The above values comes from these two urls,
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucimoc/8_5/english/installguide/config_active_directory.html#wp1141403
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucimoc/8_5/english/installguide/config_active_directory.html#wp1137551
    The later url have this
    Table 3-9 LDAP Registry Subkeys
    Subkey   Names
    Description
    LDAP_AttributeName_primaryPhoneNumberForSearches
    Specify   the phone number that you use to resolve most LDAP queries. This value must   match one of the values specified for the following LDAP keys:
    •LDAP_AttributeName_businessPhone
    •LDAP_AttributeName_homePhone
    •LDAP_AttributeName_mobilePhone
    •LDAP_AttributeName_otherPhone
    The   values that are valid for the LDAP attribute keys listed above are:
    •telephoneNumber
    •homePhone
    •mobilePhone
    •otherTelephone
    •a   custom LDAP attribute value, for example, myCustomPhoneNumber
    The   value of the LDAP_AttributeName_primaryPhoneNumberForSearches key must match   one of the values in the list above, for example, telephoneNumber. Otherwise,   the value of the LDAP_AttributeName_businessPhone key is used.
    The version of CUCiLync is 8.5(3)-4.5.9, that is the latest I can find on the support download page, have also tried with earlier version 8.5.(1).
    Does anyone have any suggestions for how to achieve this, if at all possible?
    Roger Kallberg

    This is the reply we got from TAC.
    Regarding to your query, Can you please go through the attached flow diagram (also you can see it in the link given below). I hope it will clarify more on the telephone number display behavior in office communicator.
    As per this flow chart presently your setup is working as designed. As per the design, the number should be in E.164 format in order to be available in MOC.
    You have AD in your network as a source, so  OCS pulls this information from LDAP it is integrated with. As per Microsoft, here you need to add Normalization rules to OCS to normalize the number into the E164 format.
    http://technet.microsoft.com/en-us/library/bb964002%28office.12%29.aspx
    Phone number display for MOC contact:
    •-          OCS will not provide a contacts number unless it is correctly formatted to the E.164 standard.
    •-          The Address Book Service on OCS processes the contacts phone number and attempts to normalize it.
    •-          If correctly normalized then the number is inserted into the OCS address book.
    •-          Communicator will only display this normalized number if it is properly formatted in E.164 (+13125551234).
    •-          The E.164 standard defines an international numbering plan for public phone systems.
    •-          In the E.164 standard, each number contains a country code, an area code, and a subscriber number.
    •-          Each phone user has a globally unique number.
    •-          In Cisco UC Integration for Microsoft Office Communicator, phone numbers in E.164 format must begin with a plus character ("+").
    I have done some research to your first question. Can you please just go through the blog given below from the Microsoft.
    http://blogs.pointbridge.com/Blogs/schertz_jeff/Pages/Post.aspx?_ID=26.
    It tells that If the numbers not in E.164 format then the number will not appear in office communicator if LDAP integrated. Can you please check with Microsoft to see their inputs on this.

  • Adding Custom Fields for Change Request in EHS

    Hi,
    I need to add custom fields in Change request screen, where I am not able to identify for BO and node to do same.
    Its Configuration name  /MOC/F_ISS_ROOT_OBJECT_INFO.
    I tried with /IAM/ISSUE and /IAM/ACTIVITY BO.. but it is not working.
    Not able to identify the correct table for adding fields.Pls help me on the same.
    Regards,
    Reny Richard

    Reny,
    Why don't you check for the ST05, so that you can grasp some of the table names. Should be useful to you
    http://scn.sap.com/community/abap/testing-and-troubleshooting/blog/2007/09/05/the-sql-trace-st05-quick-and-easy
    BR,
    RAM.

  • Costum field for change request

    Hello,
    how can I add a custom field to the change request form? The field will be used for an internal process number.
    Thanks in advance!

    Thanks it solved my problem!

  • SDPICK - picking request

    We have a Warehouse managed stock and wan't to update a delivery with actual picked quantities. Thats OK but wa wan't to manually create and confirm Transfere orders. If I try to either use this IDoc or call WS_DELIVERY_UPDATE directly a Picking Request is created and no TO can be created.

    Hi,
    thx for replyin
    i checked in  T code SDPI  picking order list& VSAN also, but range maintained here & wat actually coming
    in picking request are different
    Current Process is SO-delivery-picked qty is manuallly entered in picking tab picking fields in delivery & pgi is done.
    when we see document flow it shows picking request number & PGI number (doc type WL)
    PL tel me where this 2 number range is geting picked form picking request number & PGI number

  • How to get a service notification number for given serial number

    Please, someones know how to get a service notification number based on serial number.
    In our process the notification can be created as first step (IW51) or can be created starting from service order (IW32).
    Thanks in advance.
    Luca

    Hi pooja,
    actually standard service request numbers are configured in spro->crm->transactions->Settings for Service Requests->Number Ranges. here they are maintain service request,incident,problem number ranges..
    so when ever your creating any service request then that number range will appear in that object id.
    you have to get that object id in your custom field get_method and based on that you have to change your number..
    example:
    current = me->bo.
    current->get_property_as_string( EXPORTING iv_attr_name  = 'OBJECTI_ID'  RECEIVING rv_result  = lv_id ).
    here you will get object_id based on that you have to write your own logic to display custom value.
    " write your custom logic to populate custom field. pass that custom field value into returning parameter.
    value = custom_value.
    Thanks & Regards,
    Srinivas.

  • F-47  Field for purcharse order

    Hi Friends,
                       F-47 screen while entering request for down payment , i am not geeting field for entering
    PO number.  how can i get that field on screen
    thanks

    hi
    its  SAP standard Screen if you enter the follownig fields
    Document Date                 Type       KA    Company Code    1000                    
    Posting Date     17.02.2009   Period     2     Currency/Rate   EUR                     
    Document Number                                Translation dte                         
    Reference                                                                               
    Doc.Header Text                                                                        
    Trading part.BA                                                                               
    Account                                                                               
    Trg.sp.G/L ind.                                                                       
    press enter
    in the next screen it will show the Purch. order number and ine item.

Maybe you are looking for