Pick onAlarm don't fire

Hi,
I use Oracle BPEL Console v10.1.3.3.0 and I encounter this kind of problem:
I have BPEL process with pick activity, there is onAlarm branch.
When I set onAlarm wait for 1 second process works OK and onAlarm is triggered.
But when I set onAlarm wait for more than 1 second then onAlarm will not fire and onPick activity is reachable after time limit.
Is it bug?
Thanks for response.

I think there is something wrong with BPEL server. Wait activity behaves this (wrong) way too. Using refresh Alarm Table doesn't help too.
There is some simple project:
XSD
<schema attributeFormDefault="unqualified"
     elementFormDefault="qualified"
     targetNamespace="http://xmlns.oracle.com/pickOnAlarmPokus"
     xmlns="http://www.w3.org/2001/XMLSchema">
     <element name="pickOnAlarmPokusProcessRequest">
          <complexType>
               <sequence>
                    <element name="input" type="string"/>
               </sequence>
          </complexType>
     </element>
     <element name="pickOnAlarmPickRequest">
          <complexType>
               <sequence>
                    <element name="input" type="string"/>
               </sequence>
          </complexType>
     </element>
     <element name="pickOnAlarmPokusProcessResponse">
          <complexType>
               <sequence>
                    <element name="result" type="string"/>
               </sequence>
          </complexType>
     </element>
</schema>
WSDL
<definitions
name="pickOnAlarmPokus"
targetNamespace="http://xmlns.oracle.com/pickOnAlarmPokus"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
xmlns:pns1="http://xmlns.oracle.com/pickOnAlarmPokus/correlationset"
xmlns:client="http://xmlns.oracle.com/pickOnAlarmPokus">
<import namespace="http://xmlns.oracle.com/pickOnAlarmPokus/correlationset" location="pickOnAlarmPokus_Properties.wsdl"/>
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://xmlns.oracle.com/pickOnAlarmPokus" schemaLocation="pickOnAlarmPokus.xsd"/>
</schema>
</types>
<message name="pickOnAlarmPokusRequestMessage">
<part name="payload" element="client:pickOnAlarmPokusProcessRequest"/>
</message>
<message name="pickOnAlarmPokusResponseMessage">
<part name="payload" element="client:pickOnAlarmPokusProcessResponse"/>
</message>
<message name="pickOnAlarmPickRequestMessage">
<part name="payload" element="client:pickOnAlarmPickRequest"/>
</message>
<portType name="pickOnAlarmPokus">
<operation name="process">
<input message="client:pickOnAlarmPokusRequestMessage"/>
<output message="client:pickOnAlarmPokusResponseMessage"/>
</operation>
<operation name="pick">
<input message="client:pickOnAlarmPickRequestMessage"/>
<output message="client:pickOnAlarmPokusResponseMessage"/>
</operation>
</portType>
<plnk:partnerLinkType name="pickOnAlarmPokus">
<plnk:role name="pickOnAlarmPokusProvider">
<plnk:portType name="client:pickOnAlarmPokus"/>
</plnk:role>
</plnk:partnerLinkType>
<bpws:propertyAlias propertyName="pns1:input_prop" messageType="client:pickOnAlarmPokusRequestMessage"
part="payload" query="/client:pickOnAlarmPokusProcessRequest/client:input"/>
<bpws:propertyAlias propertyName="pns1:input_prop" messageType="client:pickOnAlarmPickRequestMessage"
part="payload" query="/client:pickOnAlarmPickRequest/client:input"/>
</definitions>
BPEL
<?xml version = "1.0" encoding = "UTF-8" ?>
<!--
Oracle JDeveloper BPEL Designer
Created: Fri Sep 11 06:22:58 GMT 2009
Author: pjotr
Purpose: Synchronous BPEL Process
-->
<process name="pickOnAlarmPokus"
targetNamespace="http://xmlns.oracle.com/pickOnAlarmPokus"
xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
xmlns:ns1="http://xmlns.oracle.com/pickOnAlarmPokus/correlationset"
xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:client="http://xmlns.oracle.com/pickOnAlarmPokus"
xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
xmlns:ora="http://schemas.oracle.com/xpath/extension"
xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc">
<partnerLinks>
<!--
The 'client' role represents the requester of this service. It is
used for callback. The location and correlation information associated
with the client role are automatically set using WS-Addressing.
-->
<partnerLink name="client" partnerLinkType="client:pickOnAlarmPokus"
myRole="pickOnAlarmPokusProvider"/>
</partnerLinks>
<variables>
<!-- Reference to the message passed as input during initiation -->
<variable name="inputVariable"
messageType="client:pickOnAlarmPokusRequestMessage"/>
<!-- Reference to the message that will be returned to the requester-->
<variable name="outputVariable"
messageType="client:pickOnAlarmPokusResponseMessage"/>
<variable name="pick_InputVariable"
messageType="client:pickOnAlarmPickRequestMessage"/>
<variable name="pick_OutputVariable"
messageType="client:pickOnAlarmPokusResponseMessage"/>
</variables>
<correlationSets>
<correlationSet name="CorrelationSet_1"
properties="ns1:input_prop ns1:input_prop"/>
</correlationSets>
<sequence name="main">
<!-- Receive input from requestor. (Note: This maps to operation defined in pickOnAlarmPokus.wsdl) -->
<receive name="receiveInput" partnerLink="client"
portType="client:pickOnAlarmPokus" operation="process"
variable="inputVariable" createInstance="yes">
<correlations>
<correlation initiate="yes" set="CorrelationSet_1"/>
</correlations>
</receive>
<!-- Generate reply to synchronous request -->
<pick name="Pick_1">
<onMessage portType="client:pickOnAlarmPokus" operation="pick"
variable="pick_InputVariable" partnerLink="client">
<correlations>
<correlation initiate="no" set="CorrelationSet_1"/>
</correlations>
<sequence name="Sequence_1">
<wait name="Wait_1" for="'PT2S'"/>
<assign name="Assign_2">
<copy>
<from expression="'pickedup'"/>
<to variable="pick_OutputVariable" part="payload"
query="/client:pickOnAlarmPokusProcessResponse/client:result"/>
</copy>
<copy>
<from variable="pick_OutputVariable" part="payload"
query="/client:pickOnAlarmPokusProcessResponse/client:result"/>
<to variable="outputVariable" part="payload"
query="/client:pickOnAlarmPokusProcessResponse/client:result"/>
</copy>
</assign>
<reply name="Reply_1" partnerLink="client"
portType="client:pickOnAlarmPokus" operation="pick"
variable="pick_OutputVariable"/>
</sequence>
</onMessage>
<onAlarm for="'PT2S'">
<assign name="Assign_1">
<copy>
<from expression="'timeout'"/>
<to variable="outputVariable" part="payload"
query="/client:pickOnAlarmPokusProcessResponse/client:result"/>
</copy>
</assign>
</onAlarm>
</pick>
<reply name="replyOutput" partnerLink="client"
portType="client:pickOnAlarmPokus" operation="process"
variable="outputVariable"/>
</sequence>
</process>

Similar Messages

  • Why I can delete a delivery after picking was done?

    Hello,
    Someone knows if it is a bug or a feature that I can delete a delivery although it was already fully picked and the status is "C"?
    I am not sure since when I can delete a delivery even after picking was done, maybe it started after our upgrade to ECC 6.0 but
    Any way I need to change it and I am not sure if it is a bug or some customization cause it?
    Thank you
    Tomer Zimmerman

    Hi Tomer;
    This is a feature of SAP. We are on 4.7 and I tested the above scenario. The delivery gets deleted even if the picking is done. I have not tested using the confirmations.
    I think this is because there is no real impact in accounting or inventory terms. Because picking does not create any transactional dicoments.
    Pls reward if useful.
    Regards,
    Mani

  • Updating the delivery document once the picking is done :

    Hi Iam designing a custom screen,
    Here i have a icon for automatic picking, should be a check box for that, if it is once checked all the lines items in the transaction should be automatically picked as of the delivery quantity.(The delivery quantity should be copied automatically in picking column if auto Picking is selected).
         Once the picking is done, and hit SAVE, then the data should be updated automatically to delivery document, all the picking quantities should be copied to delivery document for those concerned line item. The picking quantity should update field LIPSD-PIKMG, in delivery picking tab.
    Please advice how we can achieve this.
    Edited by: vinay raj on Jun 19, 2009 12:52 PM

    yes iam using the same function module.
    But for some reasons this function module is not updating the delivery document.
    Any suggestions.
    iam writing the code like this :
    LOOP AT IT_PICK.
        hvbpok-vbeln_vl = it_pick-vbeln.----
    delivery number
        hvbpok-posnr_vl = it_pick-posnr.----
    delivery item
        hvbpok-posnn = it_pick-posnr.----
    i have doubt here
        hvbpok-vbeln = it_pick-vgbel.----
    doubt here.
        hvbpok-vbtyp_n = 'Q'.
        hvbpok-ndifm = 0.
        hvbpok-taqui = ' '.
        hvbpok-charg = it_pick-charg.
        hvbpok-matnr = it_pick-matnr.
        hvbpok-lfimg = it_pick-lfimg.
        hvbpok-pikmg = it_pick-PICQTY.----
    picking quantity
        hvbpok-brgew = it_pick-brgew.
        hvbpok-gewei = tvblkp-gewei.
        hvbpok-volum = tvblkp-volum.
        hvbpok-voleh = tvblkp-voleh.
        hvbpok-orpos = 0.
        APPEND hvbpok.
      ENDLOOP.
      VBKOK-KZLSP = 'X'.
    *insert default value for test
      VBKOK-VBELN_VL = l_vbeln.----
    Delivery number.
    BREAK SKUMAR.
      CALL FUNCTION 'SD_DELIVERY_UPDATE_PICKING'
        EXPORTING
          VBKOK_WA                     = vbkok
          NICHT_SPERREN                = 'X'
          AUFRUFER_T                   = 'X'
        TABLES
          VBPOK_TAB                    = hvbpok.
      IF SY-SUBRC EQ 0.
        COMMIT WORK.
    Edited by: vinay raj on Jun 23, 2009 6:58 AM

  • MacBook pro won't power up! Acting asleep, black screen, fans don't fire up. Light nr catch pulsing, have taken batt out and reset but still blank screen, help!!

    MacBook pro won't power up! Acting asleep, black screen, fans don't fire up. Light nr catch pulsing, have taken batt out and reset but still blank screen, help!!

    You may want to try this.
    Solution A
    Start up your MBP while pressing Option (alt)|, Command, P, R until your hear 3 chimes rather than 2 as indicated by apple. This worked for me the first time.
    Solution B
    Start your MBP while pressing Option (alt), Command, S
    Hold until you see the computer automatic routine. When it finally stops type the following followed by "return":
    fsck -fy
    It will probably indicate some problem related to "pcscd.pub" (should be 16 instead of 17). I haven't figured out what this means but somewhere in the Internet i read it is related to scan cards...
    More importantly this routine will fix any problems with your HDD similarily to disk repair. When it ends, it will tell you if it has fixed/modified anything. If it has, run the routine again by typing again "fsck -fy"
    Lastly, reboot by typing "reboot" (followed by "return")
    Solution C
    Start up your MBP while pressing option (alt), command, S
    hold keys until you see computer commands scrolling
    when the routine stops type the following, each line followed by the "return" key:
    mount -uw /
    chmod 775 /
    chmod 1775 /
    reboot
    After which your computer should reboot on it's own.
    Each of the above has worked for me at one time or another. Once your computer has rebooted from the DVD you can reinstall OS X. If your problems started after installing 10.5.6, then I don't suggest updating until 10.5.5.
    I'm very very disappointed with my 2007 MBP, it started to give me problems after 1 year. had to change the HDD and lately when I isntalled 10.5.6 it suddenly refused to start up., My previous Mac laptop (2003 866Mhz) worked for 4 years without a hitch. Ironically I've had to use it to access the internet and find solutions for my current MBP.
    best of luck

  • Picking not done for a serialized material using Idoc type SHPCON/DELVRY03

    Hi All,
    I am using Idoc of type SHPCON/DELVRY03 to do the picking for an outbound delivery.
    The value 'PIC' is populated in the qualifier of segment E1EDL18 . In order to update the batch number of the material in a delivery the qualifier of segment E1EDL19 is populated with value 'BAS' .
    To update the serial numbers for a serialized material in an outbound deliverfy , BDC for transaction vl02n is used. Also the segment E1EDL24 is populated with material no. POSNR and other details , then segment E1EDL11 is having the value of serial no.  Similarly for other serial number there is one more segement E1EDL24 with same material no. but  E1EDL11 with other serial number.
    The issue is that after the Idoc is successfully processed , picking quantity is updated only for one serial number for a serialized material of the outbound delivery. The picking quantity for other serial number is not updated . Initially the delivered quantity for the serialized material was 2  but after processing the Idoc the picking qunatity updated is 1 ( for one serial number only ).
    Please provide any pointers on this.
    Thanks & Regards,
    Tanushri.

    The firs thing I would do is verify the config.  Make sure the message type of the created IDocs matches the message type to which the filter is applied in the distribution model.  If everything looks ok, place break-points at the following locations:
    In FM MASTER_IDOC_DISTRIBUTE, on the call PERFORM DIST_MODEL_READ_FOR_MESTYP.  This subroutine reads the filters from the distribution model.  Verify the values in internal table RECEIVERS_AND_FILTERS are correct.
    In FM MASTER_IDOC_DISTRIBUTE, in FORM IDOC_SELECTION_AND_SERVICES, on the call to FM IDOC_DATA_APPLY_FILTER_VALUES.  This function should return the filtered results.  IDOC_DATA contains the data segments of your IDoc and CONDITION_BLOCKS contains the filter.
    When you run BD21, you should hit these break-points.

  • Picking not done error

    Dear All,
    After creating sales order and delivery document, while making warehouse transfer order it is showing
    "Picking is not done" error.
    In the delivery document delivery quantity is displaying and picking quantity showing 0 and the field is
    freezed but stock is available for the item.
    Please help me.
    Regds
    CG Balaji

    Dear Balaji,
                  As per your thread message I came to know that your delivery is linled with wearhouse management so you can't pick the goods manually you need to create transfer order to pick the goods.
    To create Transfer order fallow this process
    >Go to VL02N transaction enter the delivery number which you want to pick go in to that then select menu> Susequent functions-->Create transfer order
    or
    -->Go to LT03 transaction enter the wear house no. and delivery document no.then create the transfer order
    -->After completing the creation of the transfer order do the PGI to that delivery then billing.
    I hope it will help you
    Regards,
    Murali.

  • MouseLeave and mouseUp outside stage don't fire if wmode=opaque

    http://fraticelli.info/temp/mouseFuncTest.html
    Click and release on the stage. 'mouseDown' and 'mouseUp'
    appear.
    Mouse out of the stage. 'mouseLeave' appears.
    Click and hold on the stage, then drag your cursor outside
    the stage, then let go of the mouse button.
    Neither 'mouseUp' or 'mouseLeave' fire.
    Strangely this only happens if wmode=opaque!
    Is Adobe aware of the problem? Are there any ways to work
    around this?

    This is actually good stuff and well written but I hesitate to advise people to use either the "oven trick" or really even the heat gun method as both are notriously short-lived even if they appear effective. Your far better bet is to send the board in to one of the vendors on the internet who are set up to do a proper reball. Even those fixes are good for maybe 12-18 mos. But again, you get a high grade for spelling it out.

  • Approval templates don't fire when updating document

    I'm running trials in my test database and it appears that approval templates only work on new added documents?  SAP Business One version 8.82  I am testing a query that calculates certain criteria against the business partner's credit limit.  If there is a deviation I want the approval process to start.
    Everything works fine when I add a new sales order with a doctotal that deviates from my credit limit logic.  Approvals fire off and the user has to wait for the manager to approve.  However if I add a sales order with zero value and then go back in and update the pricing later the approval never triggers.  So users are just able to go around approvals by adding blank documents first and then updating them however they see fit.
    Am I doing something wrong or is this just how SAP B1 approvals function?  Do approval templates have any impact on updated documents?

    Do TN's throw the red bar erros at the bottom of the client's GUI?  The ones that look like this...
    I'm looking through the following documentation...
    http://scn.sap.com/docs/DOC-7034
    and I can't seem to confirm what returning @error = 1 will actually cause.

  • UnitOfWork.refreshObject();    don't fire event for Cache Synchronization

    My WebApp use JMS for cache synchronization.
    and I need to refresh session Cache by using method unitOfWork.refreshObject() but it don't publish any message to JMSserver.
    sinse My JMS cache synchronization work well when I do UnitOfWok transaction(insert,update,delete)
    How to force cache synchronization ?
    thank you,
    Kowit Laison

    TopLink cache synchronization only synchronizes changes made through a unit of work, it does not synchronize reads or refreshes.
    You will need to perform the refresh on each server, or make your own JMS message to notify your other server's to refresh.
    You may also wish to investigate the TopLink 10.1.3 Preview release that adds support for Cache Invalidation and Cache Invalidation Synchronization. You may be able to broadcast an invalidation command for the refresh.

  • Sender adapter processing based on done file content

    hi
    sender system creates a done file, after the creating of actual file. SAP PO 7.4 first need to read the done file for the list of files to be processed from the same folder.
    for eg:
    source folder files:
    xxx11092014.xml
    yyy11092014.xml
    zzz10092014.xml
    done11092014.xml
    content of done file:
    <files>
    xxx11092014.xml
    zzz10092014.xml
    <files>
    In SAP PO 7,4 first need to read the done file, based on the content of the file xxx11092014.xml & zzz10092014.xml need to be processed in sap po and
    all the three file xxx11092014.xml, zzz10092014.xml & done11092014.xml need to be deleted. leaving behind the yyy11092014.xml for which new done file will be created..
    Could anyone please throw some light on this scenario to implement???

    Hi,
    Please check below steps helpful for your requirement by creating two flows and additional files.
    Interface1: This interface to read the filenames from done*.xml and generate the additional files with same name with different extension like xxx11092014.txt and zzz10092014.txt for interface2 to pick.
    1. Configure your sender CC to pick file done*.xml
    2. Use multimapping to create multiple messages based on how many files under <files>
    3. Create additional files in receiver file adapter with same name with different extension by using variable substitution.
    One IDOC to Multiple Files sending to Multiple folders of the FTP using single Communication Channel (SAP XI-PI Process …
    Interface2: This interface to pick files having only additional files with same namepart
    1. Configure your sender CC to pick files having additional files by enabling Additional Files
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/6d967fbc-0a01-0010-4fb4-91c6d38c5816?QuickLink=index&…
    Regards,
    Praveen

  • Items not getting picked up in Return sales order

    Dear all,
    I am creating a return sales order with reference to a sales order.
    In my delivery doc the items can be categorised into 3 types:
    1- Picking done; Movement type determined
    2- Picking done; Movement type not determined
    3- Picking not-done; Movement type determined
    In the return order, only the items of 1st type are coming. Why others not getting picked up? Can they be entered manually?
    regards
    Sapshed

    Dear Hrishikesh,
    Thats Ok. Picking is done only for those items for which Relevant for Picking is ticked.
    What I want to know is that, for items that have either their picking not done or Goods movement not determined, they are not getting automatically picked up while I create a Return order w/r to a sales order.
    thanks
    Sapshed

  • Can you add People Picker with multiple values to Word Document using Quick Parts?

    Hi all, I've been trying to develop a form in Word that takes a bunch of metadata from the SharePoint library. Most of it works okay, but when I try to add any fields that have been set up to take multiple entries in a people picker, they don't show up
    in the add quick parts list. Any ideas, or is this a limitation?

    Hi NREL,
    According to your description, my understanding is that the people picker column with multiple values was missing in Word Quick Parts.
    This is by design that we are unable to use the fields which is allowed multiple selections.
    As a workaround, you can use a text field(Single line of text) to store the multiple values of the people column. When you create a document, start a workflow to update the text field using the values of the people column, then use the
     text field in Word Quick Parts.
    You can do as the followings:
    Open your library, and create a new column using Single line of text.
    Open your site with SharePoint 2010 Designer, create a workflow based on your library.
    Add the action “Set Field in CurrenItem”, and set it like the screenshot.
    Set the Start Options is “Start workflow automatically when an item is created”.
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • REG: while doing PGI with ref to OBD should pick stock from one location

    Hi experts ,
    I have a n issue while doing PGI with ref to OBD.
    1.We are purchasing Raw material Aluminium circle 1000 nos from "X" vendor & keeping stock in Main stores i.e 0001 location plant-1.
    2.From there we are issuing to production line i.e 0003 location(Plant 1)500 nos.
    4.Remaining stock of 500 nos is in 0001 location in under some Batches.
    5.Meanwhile we are suppose to transfer the aluminium circle to plant 2 .
    6.For this we are raising STO for aluminium circles  600 nos to Plant 2.
    7.With ref to STO we are raising OBD for Plant 2.
    8.With ref to OBD While doing PGI it should picks the stock from 0001(Main Stores)  location only.
    9.But the STO qty is 600 nos ,availablity of stock in 0001 is 500 nos only .
    10.While PGI  it takes 500 nos from 0001 location & remaining 100 nos picking from Production line 0003.It should not pick from Production line 0003 location .
    11.For this system should not allow to pick from 0003 location & also system should throw error message "Deficit of QTY in 0001 location"for 100 nos.
    KIndly suggest me asap.
    Thanks in advance
    vichu
    Edited by: viswanathan seenuvasan on Dec 10, 2009 7:01 AM

    Hi,
    As I understand the picking is done automatically in outbound delivery. Am I right?
    a)
    If picking is not done automatically but manually, why the user defines the production storage location in the OBD? In this case some training would be necessary....
    b)
    If it is done automatically: which settings are you using? Batch determination only?
    1. In stock determination (SPRO > MM > IM > Stock determination > Define strategies for Stock Determination) you can define which storsage location should be used by system, and you can assign the stock determination rule to the applications (SPRO > MM > IM > Stock determination > Assign Stock determination Rule in the Applications)
    (you also have to assign the stock determination group to the material master (MARC-EPRIO))
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/d8/2f3746996611d1b5480000e82de955/frameset.htm
    2. You have to use batch determination
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/25/283aac4f7811d18a150000e816ae6e/frameset.htm
    3. You have to use availability check in delivery not to ship out goods for which reservation already exists (if goods are in production storage location I assume you have a PrdOrd...)
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/93/744cd9546011d1a7020000e829fd11/frameset.htm
    I haven't tries this but I assume it should work...
    Please check SAP online help.
    Regards,
    Csaba
    Edited by: Csaba Szommer on Jan 1, 2010 11:02 AM
    Forget stock determination. Instead of it you should use picking location determination - suggested by Laksmipathi. It wokrks fine with batch determination.
    SPRO > LE > Shipping > Picking > Determine Picking Location > Assign Picking Location
    Edited by: Csaba Szommer on Jan 1, 2010 5:03 PM

  • Two step picking modification

    Hi all,
    Three simple questions on two step picking:
    1) When I delete a pick TO inthe first step of two step picking process the status of pick step on the group still reamains completed and I cannot create pick TO again. How to sort out this?
    2) If the pick TO is not created yet I'd like to add another TR to the group. But I didn't find a change group transactions. Once the group  is created, it looks like no modification is possible but editing two step relevance on some group's item. How it is expected to do this?
    3) How to set a storage type not relevant for two step picking? I've seen that only materials can be set as relevants for two step picking.
    Best Regards

    Hi
    Let me explain how two step picking works
    Within the 2-step picking process the first step can be repeated many
    times because changes of the assigned deliveries may occur or the
    requested quantities are not completely available the first time but
    the 2nd step the actual picking is done once and marks the completion
    of the process. This cannot be repeated for the reference number. If
    there are individual delivery changes the TO can be created using LT03
    but the multiple processing is no longer possible.
    TO confirmation takes place only when the stock is completely moved.
    It would not make sense to confirm the movement and then to the
    allocation step. The two-step picking process is
    1. Pick step (Where stock is picked from the source bin)
    2. Allocation step (Where stock is allocated in the destination bin)
    3. Confirmation (Where the picker confirms that the movement has been
    completed)
    You either carry out the first two steps seperately (2 -step picking)
    or at the same time. Either way, the confirmation always takes place
    last. Hope the above helps to clarify.
    Regards,
    Ramana
    Edited by: A.L.V Ramana on Dec 18, 2009 1:05 PM

  • Check TO & Picking status

    Is there a way wherein we can check the Picking status in the warehouse? I want to print the Production Orders only when i'm sure that the picking is done in the warehouse. Our system's current setup is that TRs are generated upon production order release. (WH receives this and transforms them into TOs )

    Hi Madhu
    Check with the transaction code mb26 -pick list
    or
    check through operation overview in display/change process order
    Thanks
    Reward if useful
    Edited by: K Saravana Kumar on Aug 7, 2008 2:07 AM

Maybe you are looking for

  • Problem with uninstalling software

    I accidentally deleted Adobe AIR application without clicking uninstall. Now I"m trying to reinstall and it says it's already there. Please help! I did all the steps on ADOBE website to manually remove the directories that include AIR to no avail. It

  • Acrobat crashes when I try to Create PDF from Web Page

    I'm running version 9.3.4 of Adobe Acrobat Pro, on Windows XP version 5.1.2600 Service Pack 3 Build 2600. Recently the company I work for created a new website, and I'm supposed to capture it as a PDF every week. But since the change in site, every t

  • Question about Upgrade to 3.1.2

    Hi Guys, First off all, I installed Oracle XE 10g (so apex 2.1), on Windows XP 32 bits. I can connect to the XE database perfectly. I can naviguate in it just fine. I added that XE instance into my 10g client and I can administer it from there, no pr

  • FX conversion formula [AS_IS]

    Hi all, I am having a bit of a problem with the currency conversion in a consolidation application. I have a flow F_OPE which is the opening balance, it is the only flow marked as OPENING. In my currency conversion business rule I have defined that O

  • Videos uploaded to Facebook look awful

    I'd heard from several sources that it's best for FB exposure to upload my videos directly to Facebook instead of posting a link to Vimeo or YouTube. I uploaded some videos I'd used Vimeo's settings (and look great on Vimeo), but they looked really b