Picking  and delivery problem problem

i need picking document for configuring picking step by step
i m getting a strane problem that i can not process any document in Vl02n screen
wen i m puting any document no its telling corrected deliveries can  not be changed
below is the error report
Corrected deliveries cannot be changed
Message no. VL136
Diagnosis
The delivery entered is a corrected delivery for the reconciliation
of the cumulative quantity in a scheduling agreement. It cannot be changed directly.
Procedure
You can only display the delivery.
For the further reconciliation you can enter more corrected deliveries while processing the scheduling agreement.
Message was edited by:
        subrat panda

Subrat,
Ask your ABAP person if any zdevelopment/userexit is used for VL01/02..
Regds
MM

Similar Messages

  • Updating Outbound Delivery with picking and delivery quantity.

    Hi,
    I have a scenario where in an idoc will come from external system(DELVRY05) and based on the data in the idoc I have to update the picking and delivery quantity for the outbound delivery created in SAP.The idoc has the outbound delivery number and the quantity which is sent from the legacy system.
    I do not want to do googs issue,just updatation.
    How can I update the outbound delivery?
    Please help me.Its needed urgently.
    Thanks,
    Sandeep.

    YOu can make use of the FM:
    WS_DELIVERY_UPDATE_2.
    see the sample code:
    Assume that it_500o has the Delivery Header details and it_5010 has item details
      LOOP AT it_5000.
        CLEAR lx_vbkok.
        CLEAR lv_vbeln.
        REFRESH lt_vbpok.
        REFRESH lt_prott.
        lx_vbkok-vbeln_vl = it_5000-order_number.
        lx_vbkok-vbtyp_vl = 'J'.
        lv_vbeln = it_5000-order_number+0(10).
        LOOP AT it_5010 WHERE order_number = it_5000-order_number.
          lt_vbpok-vbeln_vl = it_5010-order_number.
          lt_vbpok-posnr_vl = it_5010-order_line.
          READ TABLE lt_vbfa WITH KEY vbeln = lt_vbpok-vbeln_vl
                                      posnn = lt_vbpok-posnr_vl.
          IF sy-subrc = 0.
            lt_vbpok-vbeln = lt_vbfa-vbelv.
            lt_vbpok-posnn = lt_vbfa-posnv.
           lt_vbpok-vbtyp_n = 'J'.
          ENDIF.
          lt_vbpok-pikmg = it_5010-quantity. "Picking quantity
          APPEND lt_vbpok.
          CLEAR lt_vbpok.
        ENDLOOP.
    Update the Delivery
        CALL FUNCTION 'WS_DELIVERY_UPDATE_2'
          EXPORTING
            vbkok_wa                           = lx_vbkok
      SYNCHRON                           = ' '
      NO_MESSAGES_UPDATE_1               = ' '
           commit                             = 'X'
            delivery                           = lv_vbeln
           update_picking                     = 'X'
      NICHT_SPERREN_1                    = ' '
      IF_CONFIRM_CENTRAL                 = ' '
      IF_WMPP                            = ' '
      IF_GET_DELIVERY_BUFFERED           = ' '
      IF_NO_GENERIC_SYSTEM_SERVICE       = ' '
           if_database_update_1               = '1'
      IF_NO_INIT_1                       = ' '
      IF_NO_READ_1                       = ' '
           if_error_messages_send             = 'X'
      IF_NO_BUFFER_REFRESH               = ' '
      IF_NO_MES_UPD_PACK                 = ' '
    IMPORTING
      EF_ERROR_ANY                       =
      EF_ERROR_IN_ITEM_DELETION          =
      EF_ERROR_IN_POD_UPDATE             =
      EF_ERROR_IN_INTERFACE              =
      EF_ERROR_IN_GOODS_ISSUE            =
      EF_ERROR_IN_FINAL_CHECK            =
         TABLES
           vbpok_tab                          = lt_vbpok
           prot                               = lt_prott
      VERKO_TAB                          =
      VERPO_TAB                          =
      VBSUPCON_TAB_1                     =
      IT_VERPO_SERNR                     =
      IT_PACKING                         =
      IT_PACKING_SERNR                   =
      IT_REPACK                          =
      IT_HANDLING_UNITS_1                =
      ET_CREATED_HUS                     =
      TVPOD_TAB                          =
    endloop.

  • Partial picking and PGI (with Idoc)

    Hello
    a) We have a scenario where we would like to achieve partial picking and PGI with Idoc:
    For example
    In the delivery the delivery qty is 10 from the beginning, but we would like to pick only 7 and perform the PGI anyway. The 3 remaining units should remain open and create a new delivery with VL10 or whatever. For the picking confirmation we are using SHP_OBDLV_CONFIRM_DECENTRAL03. We are not using WM, just inventory management in this scenario.
    We know that per standard SAP functionality the picking quantity must match the delivery quantity when doing the PGI.
    b) However: we have another scenario where we run picking and confirmation from a DWMS, where all confirmations are made by the idoc type SHP_OBDLV_CONFIRM_DECENTRAL03. In this scenario, it is possible to achieve the partial picking and PGI.
    So my questions are really:
    1) Anyone knows why SHP_OBDLV_CONFIRM_DECENTRAL03 would post partial picking PGI with DWMS succesfully, and not with a "normal" scenario where there is no DWMS in use, just a normal plant/storage location?
    2) Anyone knows a suitable idoc type to achieve partial picking idoc, one where the picking qty and the delivery qty could be adjusted at the same time so that picked and delivery quantities would be exactly the same?
    3) Any suitable user exit that could be used in order to change the delivery qty according to what has been picked for the delivery? Some success stories around it would be appreciated.
    Thanks in advance,
    OT

    Hi,
    I am not able to get the details whether you want to know the information about the Inbound Idoc or Outbound Idoc. But you want to do the picking and packing of the delivery then I can presume that you are doing the Inbound process.
    In that case you can do use the process code SDPI which has the message type SDPICK. In this we have the function module SD_IDOC_INPUT_PICKING which can do the picking and PGI of delivery.
    In this you can also change the delivery quantity if you are not picking up the whole quantity from the plant. So it allows you to change the delivery quantity and then do the PGI for the same.
    Regards
    Suneet

  • Problem in FM:WS_DELIVERY_UPDATE to change picked qty and delivery qty

    Dear friends.
    i am trying to chande picked and del qty's through above fm.
    i am getting an error message like this:
    (Required field in interface to delivery update missing 0080000155 000010
    VBELN 000000            Message no. VL280 )
    i am pasing all requires parameters.
    please help me if any thing is missed..........
    here i am giving my code:
    DATA:i_vbeln TYPE vbeln,
         i_posnr TYPE posnr,
         i_new_delqty TYPE lips-lfimg,
         wa_lips LIKE lips OCCURS 0 WITH HEADER LINE,
         wa_likp TYPE likp.
    i_vbeln = '0080000155'.
    i_posnr = '000010'.
    i_new_delqty = '30'.
    SELECT SINGLE * INTO wa_likp
                    FROM likp
                    WHERE vbeln = i_vbeln.
    SELECT SINGLE * INTO wa_lips
                    FROM lips
                    WHERE vbeln = i_vbeln
                    AND posnr = i_posnr.
    DATA:gs_vbkok LIKE vbkok,
          gt_vbpok  LIKE vbpok OCCURS 0 WITH HEADER LINE,
          gt_prott LIKE prott OCCURS 0 WITH HEADER LINE,
          gs_prott LIKE prott.
    DATA:xfeld1 TYPE xfeld,
         xfeld2 TYPE xfeld,
         xfeld3 TYPE xfeld,
         xfeld4 TYPE xfeld,
         xfeld5 TYPE xfeld,
         xfeld6 TYPE xfeld,
         xfeld7 TYPE xfeld,
         xfeld8 TYPE xfeld.
    gs_vbkok-vbeln_vl = i_vbeln.
    gs_vbkok-vbeln = i_vbeln.
    gs_vbkok-brgew = wa_lips-brgew.
    gs_vbkok-kzbrg = 'X'.
    gs_vbkok-kzntg = 'X'.
    gs_vbkok-vbtyp_vl   = wa_likp-vbtyp.
    gs_vbkok-ntgew = wa_likp-ntgew.
    gs_vbkok-gewei = wa_likp-gewei.
    gs_vbkok-lgnum = wa_likp-lgnum.
    gs_vbkok-kodat =   wa_likp-kodat.
    gs_vbkok-KOMUE   = 'X'.
    *gs_vbkok-   = WA_LIKP-
    *gs_vbkok-   = WA_LIKP-
    *gs_vbkok-    = WA_LIKP-
    gt_vbpok-vbeln_vl = i_vbeln.
    gt_vbpok-posnr_vl = i_posnr.
    gt_vbpok-matnr = wa_lips-matnr.
    gt_vbpok-charg =  wa_lips-charg.
    gt_vbpok-lianp = 'X'.
    gt_vbpok-kzntg = 'X'.
    gt_vbpok-kzbrg = 'X'.
    gt_vbpok-lfimg = i_new_delqty.
    gt_vbpok-lgmng = i_new_delqty.
    gt_vbpok-umvkz =  wa_lips-umvkz.
    gt_vbpok-umvkn = wa_lips-umvkn.
    gt_vbpok-TAQUI = 'X'.
    gt_vbpok-brgew = wa_lips-brgew.
    gt_vbpok-ntgew =  wa_lips-ntgew.
    gt_vbpok-gewei =  wa_lips-gewei.
    gt_vbpok-vrkme =  wa_lips-vrkme.
    gt_vbpok-meins =  wa_lips-meins.
    gt_vbpok-VOLUM  =  wa_lips-VOLUM.
    gt_vbpok-VOLEH  =  wa_lips-VOLEH.
    gt_vbpok-vbeln = wa_lips-KDAUF.
    gt_vbpok-posnn =  wa_lips-KDPOS.
    *gt_vbpok-vbeln = wa_lips-vbelv.
    *gt_vbpok-posnn =  wa_lips-posnv.
    gt_vbpok-umrev = wa_lips-umrev.
    gt_vbpok-vbtyp_n = wa_lips-vbtyv.
    gt_vbpok-werks =  wa_lips-werks.
    gt_vbpok-pstyv = wa_lips-pstyv.
    gt_vbpok-ormng = '15'.
    gt_vbpok-ndifm = '15'.
    gt_vbpok-orpos = i_posnr.
    gt_vbpok-pikmg = '1'.
    gt_vbpok-SPE_DLV_QTY_FROM = i_new_delqty.
    APPEND gt_vbpok ."TO gt_vbkok.
    gt_prott-vbeln = i_vbeln.
    gt_prott-posnr = i_posnr.
    gt_prott-matnr = wa_lips-matnr.
    gt_prott-vrkme =  wa_lips-vrkme.
    gt_prott-lfimg = i_new_delqty.
    gt_prott-vrkme = wa_lips-vrkme.
    APPEND gt_prott." TO gt_prott.
    BREAK-POINT.
    CALL FUNCTION 'WS_DELIVERY_UPDATE'
      EXPORTING
        vbkok_wa                           = gs_vbkok
       synchron                           = 'X'
       no_messages_update                 = ' '
       commit                             = 'X'
        delivery                           = i_vbeln
       update_picking                     = 'X'
      nicht_sperren                      = ' '
      if_confirm_central                 = 'X'
      if_wmpp                            = 'X'
      if_get_delivery_buffered           = 'X'
      if_no_generic_system_service       = 'X'
       if_database_update                 = '3'
      if_no_init                         = ' '
      if_no_read                         = ' '
       if_error_messages_send_0           = 'X'
      if_no_buffer_refresh               = 'X'
      it_partner_update                  = ' '
      it_sernr_update                    = ' '
      if_no_remote_chg                   = ' '
      if_no_mes_upd_pack                 = ' '
      if_late_delivery_upd               = ' '
    IMPORTING
       ef_error_any_0                     = xfeld1
       ef_error_in_item_deletion_0        = xfeld2
       ef_error_in_pod_update_0           = xfeld3
       ef_error_in_interface_0            = xfeld4
       ef_error_in_goods_issue_0          = xfeld5
       ef_error_in_final_check_0          = xfeld6
       ef_error_partner_update            = xfeld7
       ef_error_sernr_update              = xfeld8
    TABLES
       vbpok_tab                          = gt_vbpok
       prot                               = gt_prott
      VERKO_TAB                          =
      VERPO_TAB                          =
      VBSUPCON_TAB                       =
      IT_VERPO_SERNR                     =
      IT_PACKING                         =
      IT_PACKING_SERNR                   =
      IT_REPACK                          =
      IT_HANDLING_UNITS                  =
      IT_OBJECTS                         =
      ET_CREATED_HUS                     =
      TVPOD_TAB                          =
      IT_TMSTMP                          =
      IT_BAPIADDR1                       =
      SERNR_TAB                          =
      IT_HURES                           =

    Hi,
    Thanks for the repl
    i also passed..
    vbeln_vl,
    posnr_vl,
    vbeln,
    posnn
    Still not working...any other info to pass to FM
    Regards,
    Raj

  • I have a problem how can I solve it I want give permissions to groupA to edit the people picker and I want to restrict groupB to edit the people picker what is the solution boss.. in InfoPath form is it possible..

     i have  a problem how can I solve it I want give permissions to groupA to edit the people picker and I want to restrict groupB to edit the people picker what is the solution boss.. in InfoPath form is it possible..

    Hi,
    To hide/disable controls based on user group in an InfoPath form, a solution is that we can call User Profile Service to check the group of current user, then hide/disable
    specific controls by setting some rules in form.
    Here is a demo with steps in details would be helpful to you:
    http://blog.symprogress.com/2011/05/infopath-list-form-hidedisable-fields-based-on-sharepoint-group-membership/
    More information about checking if a user is a member in a SharePoint group within web InfoPath 2010 forms:
    http://www.hishamqaddomi.ca/spg/index.php/sharepoint-2010/infopath-2010/65-checking-if-a-user-is-a-member-in-a-sharepoint-group-within-web-infopath-2010-forms
    Thanks 
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Pick and Pack - Cant add the Delivery transaction Directly

    Hi All,
    Upon selecting the Orders in Pick and Pack Manager and Selecting the Deliver Option, delivery screen opens for every order that we have selected for which we need to add and confirm the Delivery.
    Thus if I have 100+ sales orders in Pick n Pack I need to add the Delivery transaction 100+ times.
    Is there any alternative way where Delivery Transaction is added automatically like u add Purchase Order from Order Recommendation.?
    Thanks in advance.

    Hi
    I think there is no way to add all the Orders directly to Delivery by single shot in Default SBO( U have to add one by one delivery ), For achieve this u have to try with SDK only.
    Also  as u said if ur making 100+ delivers from 100+order at single shot then in SAP all the deliver entries will be posted but at the end of the day if u have not deliverd some of the deliveries and these time it will be a problem (Bcoz physically items will be in ur stock ).. so u have to think on this terms....
    Giri

  • Delivery doesn't open from pick and pack

    Hi,
    In Picked Tab (Pick and Pack Manager) delivery button is active, but when you select a sales order for a specific BP delivery button doesn't open the delivery. Delivery Note can be created in Sales module based on the sales order.
    I assume there is something in the BP or items settings that doesn't allow the delivery to be created through pick and pack manager. Have you encountered this problem?
    Thank you!
    Cristina

    More testing... turning off ad block (and all extensions) did not fix the problem, nor did rebooting or reinstalling iTunes.
    Here are two links to the same app from two different sites. The first works, the second does not.
    Cafeteria Nipponica
    1. http://siteappfeed.getapp.cc/app/550067264 <-- this link opens an itunes.apple.com preview site and opens the app's page in iTunes itself.  Works perfectly.
    2. http://toucharcade.com/link/http://phobos.apple.com/WebObjects/MZStore.woa/wa/vi ewSoftware?id=550067264&mt=8   <-- this link goes to a blank page.  When links from this site have worked in the past, however, there was no visible "itunes.apple.com" page - it appeared to go directly to opening the page in iTunes, but may be doing more behind the scenes.

  • Creating delivery through Pick and Pack manager.

    Hi All,
    I have code written in the addmode and update mode of the add button of delivery window.There is a checking in the pVal.beforeAction=true part and if that checking is true there is code part which runs on pVal.BeforeAction=false.This works fine when we add delivery through standard delivery note window.The problem is that when I try to add delivery through pick and pack manager,the codepart on pVal.BeforeAction=false not executing.Checking on pVal.BeforeAction=true works fine.But later part missing in execution.Anybody encountered this problem before? Can anybody suggest a work around to solve this?
    Thanx,
    Deepesh

    Hi Deepash,
    If the window closes after adding the afterAction is never thrown, this is a known "issue".
    A good solution might be using the Form_Data_Add /Form_Data_Update event.
    Regards
    Ad

  • How do I Help Apple Care Stop Warring with Each Other and Fix the Problem with My iPhone that They Acknowledge Creating?

    How Do I Help Apple US & Apple Europe Stop Warring With Each Other And Fix The Problem They Created?
    PROBLEM
    Apple will not replace, as promised, the iPhone 5 (A1429 GSM model) that they gave me in London, UK, with an iPhone 5 (A1429 CDMA model).
    BACKGROUND
    My iPhone 5 (A1429 CDMA model) was purchased this year in September on an existing Verizon Wireless (VZW) line using an upgrade. The purchase took place in California and the product was picked up using Apple Personal Pickup through the Cerritos Apple Retail Store. I will refer to this phone at my "original" phone.
    The original phone was taken into the Apple Store Regent Street in London, England, UK on November 15, 2012. The reason for this visit was that my original phone's camera would not focus.
    The Apple Store Regent Street verified there was a hardware problem but was unable to replace the part.
    The Apple Store Regent Street had me call the US AppleCare. At first they denied support, but then a supervisor, name can be provided upon request, approved the replacement of my original phone with an iPhone 5 (A1429 GSM model) as a temporary solution until I got back in the US. And approved that the GSM model would be replaced with a CDMA model when I came back to the US. I will refer to the GSM model as the "replacement". They gave me the case number --------.
    The Apple Store Regent Street gave me the replacement and took the original. The first replacement did not work for reasons I do not understand. They switched out the replacement several times until they got one that worked on the T-Mobile nano SIM card that I had purchased in England, UK. Please refer to the repair IDs below to track the progression of phones given to me at the Apple Store Regent Street:
    Repair ID ----------- (Nov 15)
    Repair ID ----------- (Nov 16)
    Repair ID ----------- (Nov 16)
    The following case number was either created in the UK or France between November 15 to November 24. Case number -----------
    On November 19, 2012, I went to France and purchased an Orange nano SIM card. The phone would not activate like the first two repair IDs above.
    On November 24, 2012, I went to the Apple Store Les Quatre Temps. The Genius told me that my CDMA phone should not have been replaced with a GSM model in the UK and that this was clearly Apple's fault. They had me call the AppleCare UK.
    My issue was escalated to a tier 2 UK AppleCare agent. His contact information can be provided upon request. He gave me the case number -----------.
    The UK tier 2 agent became upset when he heard that I was calling from France and that the France Apple Store or France AppleCare were not helping me. He told me that my CDMA phone should not have been replaced with a GSM model in the UK and that this was clearly Apple's fault.
    The UK tier 2 agent said he was working with engineers to resolve my problem and would call me back the next day on November 25, 2012.
    While at the Apple Store Les Quatre Temps, a Genius switched the phone given to from repair ID ----------- with a new one that worked with the French nano SIM card.
    Also, while at the Apple Store Les Quatre Temps, I initiated a call with AppleCare US to get assistance because it seems that AppleCare UK was more upset that France was not addressing the issue rather than helping me. I have email correspondance with the AppleCare US representative.
    A Genius at the Apple Store Les Quatre Temps switched the replacement with a new GSM model that worked on the French SIM card but would not work if restored, received a software update, or had the SIM card changed. This is the same temporary solution I received from the Apple Store Regent Street in the UK.
    By this point, I had spent between 12-14 hours in Apple Store or on the phone with an AppleCare representative.
    Upon arriving in the US, I went to my local Apple Store Brea Mall to have the replacement switched with a CDMA model. They could not support me. He told me that my CDMA phone should not have been replaced with a GSM model in the UK and that this was clearly Apple's fault. My instructions were to call AppleCare US again.
    My call with AppleCare US was escalated to a Senior Advisor, name can be provided upon request, and they gave me the case number -----------. After being on the phone with him for over an hour, his instructions were to call the Apple Store Regent Street and tell them to review my latest notes. They were to process a refund for a full retail priced iPhone 5 64BG black onto my credit card so that I could use that money to buy a new iPhone 5 64GB black at the Apple Store Brea Mall to reoslve the problem.
    The Apple Store Regent Street did not process my refund. He, name can be provided upon request, told me that the AppleCare US did not do a good job reviewing my case, that they were incapable of getting to the bottom of it like they were, and instructed me to call AppleCare US and tell them to review this case number and this repair id. I asked if he read the notes from the AppleCare US Senior Advisor and he would not confirm nor deny. When I offered to give him the case number he accepted but it seemed like would do no good. Our call was disconnected. When I tried calling back the stores automated system was turned on and I could not get back through.
    Now I have the full retail price of an iPhone 5 64GB black CDMA on my credit card and Apple will not process the refund as they said they would.
    I've, at this point, spent between 14-16 hours at Apple Stores or on the phone with AppleCare representatives, and still do not have the problem resolved.
    SOLUTION
    AppleCare US and AppleCare Europe need to resolve their internal family issues without further impacting their customers.
    Apple is to process a refund to my credit card for the cost of a full retail priced iPhone 5 64GB black.
    DESIRED OUTCOMES
    I have an iPhone 5 (A1429 CDMA model) that works in the US on VZW as it did before I received the replacement phone in the UK.
    Apple covers the cost of the solution because I did not create the problem.
    Apple resolves their internal issue without costing me more time, energy, or money.
    This becomes a case study for AppleCare so that future customers are not impacted like I have been by their support system.
    Does anyone have recommendations for me?
    Thank you!
    <Edited by Host>

    Thanks, but I've been on the phone with AppleCare US (where I am and live) and AppleCare UK. They continue bouncing me back and forth without helping resolve the problem.
    Perhaps someones knows how to further escalate the issue at Apple?

  • My USB CF Card reader is not mounting on my 2.5 GHZ Intel Core i5 iMac anymore. It was last week and worked fine to get pictures from my camera. Now it won't mount. I have tried another card reader and the same problem exists. Also tried different cards..

    Hi
    My USB CF (Compact Flash) Card reader is not mounting on my 2.5 GHZ Intel Core i5 iMac anymore.
    Last week it worked fine to get pictures from my camera but now it won't mount at all.
    I ejected it in the correct way rather than just disconnecting it but now i cannot get it to remount!
    I cannot even see it in the disk utility or system profiler.
    I have tried another card reader (a brand new one bought today) and the same problem exists. I've also tried different cards to see if that made a difference and they still arent being picked up on the Mac. 
    I have done all the usual things like rebooting, unplugging all other USB devices and then trying but nothing has worked.
    I'm a photographer and I'm at my wits end here. I know the cards are fine as i have been using them without issue and they are also new.
    Note: If I plug the camera in directly to the Mac, the Mac picks it up just fine as it always has done. Its just the card readers that it wont pick up anymore.
    If anyone has any ideas at all other than the following (my so called friends advice) you'd earn my undting love:
    Buy a PC
    Use the camera (Thats why i bought the reader in the first place - importing RAW files from the camera is SLOW!)
    Replace your CF cards (I have three 8GB cards two of which i had never used til today and they dont work either!)
    Buy a new card reader (this is the 5th one in two days - none work on the Mac)
    Many thanks in advance!
    LIsa

    OK, restart in Safe Mode, this will clear some caches. It's possible one or more is corrupt. To restart in Safe Mode when you hear the start up tone hold down the Shift Key until you see a progress bar. Let it fully boot then restart normally and test.
    Also I am assuming you have checked Finder - Preferences  - General and see what boxes are checked in "Show these items on desktop." You can also mount an item in Disk Utility, simply highlight it and then look in the File menu for Mount.....

  • RF Pick and Pack delivery sequence going by material rather than bin locati

    Hi All,
    During picking and packing through RF we are entering the TO number and after that packaging barcode. Everything is working fine but transaction has some kind of logic where its taking the warehouse picker around different aisles based upon material rather than bin location.
    Transaction for wave/discrete picking doesn't have this problem.
    Can someone please advise how to fix this?
    Thanks
    UT
    Edited by: Csaba Szommer on Feb 6, 2012 8:37 AM

    Hi Frenchy
    TO sort profile is setup for picking correctly but nothing for picking and packing. For some reason picking sort profile is not kicking in when using picking and packing.
    Any other suggestions???
    Thanks

  • RF Pick and Pack delivery going by material rather than bin location

    Hi All,
    During picking and packing through RF we are entering the TO number and after that packaging barcode. Everything is working fine but transaction has some kind of logic where its taking the warehouse picker around different aisles based upon material rather than bin location.
    Transaction for wave/discrete picking doesn't have this problem.
    Can someone please advise how to fix this?
    Thanks
    UT

    Hi Frenchy
    TO sort profile is setup for picking correctly but nothing for picking and packing. For some reason picking sort profile is not kicking in when using picking and packing.
    Any other suggestions???
    Thanks

  • I seem to have lost my internet thou my settings say it is connected. I even tried my laptop and have no problem accessing my internet

    My Ipad has stopped picking up my wireless internet at home. I tried my laptop and have no problem getting it to operate. I checked the settings and it has my wireless router name checked but I cant open any thing that has an internet connection involved. Any ideas?

    Try some very basic things first.
    Turn WiFi off and on again on the iPad.
    Reboot your router - unplug it from the power source for about 20 seconds or so and then plug it back in.
    Restart your iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reset your iPad. Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Remote Control and Remote View Problem

    Hi,
    I work at a High School running Netware 6.0 SP5 and Zen works 4.01 ir7.
    Remote Control and Remote View works great but I noticed one problem.
    We have a logo of the school that is forced down on to the desktop when a
    user logs in through group policies. This logo works perfect for the
    desktop wall paper and loads every time a user logs in.
    When I Remote Control or Remote View a computer the users desktop wall
    paper turns from the logo being forced down through group policies to the
    desktop to a blue desktop wall paper.
    I would prefer the desktop wall paper staying the schools logo when I
    Remote Control or Remote View because if the desktop wall paper changes to
    the blue color I mentioned above when I Remote Control or Remote View the
    users computer, they will know that someone is taking over their computer
    which sometimes we dont want them knowing.
    We have Windows 98SE computer running Novell Client 3.4 and we have some
    computers running Windows XP Professional SP1 and Windows XP Professional
    SP2 both running Novell Client 4.91 SP2.
    The Remote Control and Remote View problem of the desktop wall paper
    changing on the users computer occurs on all operating systems mentioned
    above.
    Is there a solution to my above problem? When Remote Controlling and
    Remote Viewing someone's computer I don't want the desktop wall paper to
    change.
    Thanks!

    Bpilon,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • A720 and windows 8 problems

    Im trying to setup the a720  with windows 8 and have this problems: When power off the computer have all time this BSOD : SESSION_HAS_VALID_POOL_ON_EXIT Touchscreen not work.
    If I run the windows 8 install, just for test, the touch is working, the problem is after install.
    External hard disk not working when connect to any USB port, and unplug result in a system freeze.
    Here my mini dump for error SESSION_HAS_VALID_POOL_ON_EXIT, I have the i5 model too and this not happen on that model:
    Crash Dump Analysis provided by OSR Open Systems Resources, Inc. (http://www.osr.com) Online Crash Dump Analysis Service See http://www.osronline.com for more information Windows 8 Kernel Version 9200 MP (8 procs) Free x64 Product: WinNt, suite: TerminalServer SingleUserTS Built by: 9200.16384.amd64fre.win8_rtm.120725-1247 Machine Name: Kernel base = 0xfffff800`60081000 PsLoadedModuleList = 0xfffff800`6034ba60 Debug session time: Wed Nov 28 17:08:03.203 2012 (UTC - 5:00) System Uptime: 0 days 0:00:13.897 ******************************************************************************* *                                                                             * *                        Bugcheck Analysis                                    * *                                                                             * *******************************************************************************
    SESSION_HAS_VALID_POOL_ON_EXIT (ab) Caused by a session driver not freeing its pool allocations prior to a session unload.  This indicates a bug in win32k.sys, atmfd.dll, rdpdd.dll or a video driver. Arguments: Arg1: 0000000000000001, session ID Arg2: 00000000000000f0, number of paged pool bytes that are leaking Arg3: 0000000000000000, number of nonpaged pool bytes that are leaking Arg4: 0000000000000001, total number of paged and nonpaged allocations that are leaking. nonpaged allocations are in the upper half of this word, paged allocations are in the lower half of this word.
    Debugging Details: ------------------
    TRIAGER: Could not open triage file : e:\dump_analysis\program\triage\modclass.ini, error 2
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  WIN8_DRIVER_FAULT
    BUGCHECK_STR:  0xAB
    PROCESS_NAME:  csrss.exe
    CURRENT_IRQL:  0
    LAST_CONTROL_TRANSFER:  from fffff80060680506 to fffff800600fc040
    STACK_TEXT:  fffff880`05d059b8 fffff800`60680506 : 00000000`000000ab 00000000`00000001 00000000`000000f0 00000000`00000000 : nt!KeBugCheckEx fffff880`05d059c0 fffff800`603e8bb5 : fffff880`04983b40 00000000`00000000 fffff880`04983000 ffffffff`ffffffe6 : nt! ?? ::NNGAKEGL::`string'+0x36216 fffff880`05d05a10 fffff800`604a48b6 : 00000000`00000372 fffff880`04983000 fffffa80`090203c0 fffffa80`08fc4540 : nt!MiDereferenceSessionFinal+0xf1 fffff880`05d05a80 fffff800`604abe68 : fffff8a0`00142b00 00000000`00000000 00000000`00000001 00000000`00000001 : nt!MmCleanProcessAddressSpace+0x2be fffff880`05d05af0 fffff800`604ac55e : fffffa80`00000000 00000002`00000001 00000000`00000000 fffff8a0`00d0b8f0 : nt!PspExitThread+0x668 fffff880`05d05c10 fffff800`600e1dd6 : fffff800`60377180 00000000`00000080 fffffa80`090203c0 fffffa80`08fc4540 : nt!PspTerminateThreadByPointer+0x4e fffff880`05d05c60 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiStartSystemThread+0x16
    STACK_COMMAND:  kb
    FOLLOWUP_IP: nt! ?? ::NNGAKEGL::`string'+36216 fffff800`60680506 cc              int     3
    SYMBOL_STACK_INDEX:  1
    SYMBOL_NAME:  nt! ?? ::NNGAKEGL::`string'+36216
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME:  ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP:  5010ac4b
    FAILURE_BUCKET_ID:  X64_0xAB_nt!_??_::NNGAKEGL::_string_+36216
    BUCKET_ID:  X64_0xAB_nt!_??_::NNGAKEGL::_string_+36216
    Followup: MachineOwner ---------

    Ok, the problem is generated by NVIDIA VIDEO DRIVER!
    Honesty I cant understand why LENOVO not choose for this machines a ivibridge CPU with HD4000 VIDEO, performance is similar, and Intel VIDEOS GPU, have 0 troubles, ATI AND NVIDIA always are very problematic.
    Anyway the solution is simple:
    1 Turn OFF windows update, or change to selective install.
    This prevent win update install NVIDIA driver in automatic way.
    2 Uninstall NVIDIA driver sand NVIDIA related stuff.
    3 Restart the machine, NOT POWER OFF, just restart.
    4 Now go to SYSTEM PROPERTIES > HARDWARE > DEVICE MANAGER
    INSIDE DISPLAY ADPATER NOW SELECT DISABLE THE DEFAULT VGA DRIVER, NOR UNINSTALL CHOOSE DISABLE!
    NOW RESTART.
    After restart now touchscreen work correctly, and next time you power off the machine, not have that ugly error all time.
    This not is a final solution is just a workaround until LENOVO/NVIDIA provide a final fix for this.

Maybe you are looking for

  • AR 7 not compatable with windows 8

    How do I open documents please with this compatibility issue? Screen shots... After clicking 'get help online' I get Which brings me to the Adobe home page. Many thanks in advance for your time and help

  • New Sync not working (/questions/1007210)

    I did a fresh install of yosemite on my mac mini and on my macbook pro. I installed the latest firefox 33 and I did sign into sync, but nothing is syncing. I had quite a bit of bookmarks and tags saved in sync which was working great between my macbo

  • Subroutine program its display the text at line item as it's service order

    Hi All, Am looking for subroutine program its display the text at line item as it's service order, I want to view the text in sapscript in the tcode ME9F of the order text. Ex:- in tcode ME23N, select PO & item details in Account Assignment tab, ORDE

  • Outlook 2013 display black background in datenavigator plane

    Since a few days we has an outlook 2013 issue in the datenavigator. Outlook display a black background. Has anyone an idea how we can resolve these issue? Until my account is verified I don't can insert an image... Has anyone an idea how we can resol

  • Calendar for 5 years

    Dear all, My client has 10 public holidays. When I created the holiday calendar, I marked it for 5 years (2011-2016). But now I'm having a small doubt, Sunday is weekly off for my client. Think on 2012 year two out-of the above 10 public holidays fal