WHen should I archive Transfer orders ?

HI , We have noted some issues recently when processing repleishment transfer orders from RF. Upon saving there is a delay and the screen hangs. We checked the RF signal etc witin the warehouse and all is fine. I then checked the TO tables LTAk and LTAP. We have approx 1.5 million entries in LTAP (Header) and 6 million entries in LTAP (Item).
I am thinking that the delay in posting from RF could be related to the size of these tables and, as such, I should recommend archiving.
Would you expect that that number of entries in those tables could cause this sort of issue?, is there a set number that is deemed acceptable before it becomes problematic. I have noted that LT22 is also running slow
Tnks
Rob

Hi,
Check the following notes, whether they are relevant to solve your issue,
65443
613759
Regards,
K.Annadurai.

Similar Messages

  • How can i display the MRP controller in transfer order print?

    Dear all:
       When i print the transfer order(Tcode: LT31) ,i want to display the MRP controller in the output form.
    How can i get that ?
    I found the user exit MWMD0001 and add the code in the include like this:
       select  single dispo from marc
         where matnr = ltap-matnr
               and werks = ltap-werks.
         zdispo = marc-dispo.
    But caz the "zdispo"  could not been brought to the "print form " of the report RLVSDR40 which control the print LT31.So ,i failed.
    Anyone advice?

    The problem is as zdispo is declared in your user exit it doesn't become available. Had it been declared variable in the include of the program for LT31 you would be able to use it directly in the script.
    Try doing this instead in your layout set.
    /: PERFORM MRP_CONTROLLER IN PROGRAM ZABCXYZ
    /: USING &LTAP-MATNR&
    /: USING &LTAP-WERKS&
    /: CHANGING &ZDISPO&
    /: ENDPERFORM
    in your program ZABCXYZ.
    FORM MRP_CONTROLLER tables in_par structure itcsy
                               out_par structure itcsy.
    tables: marc.
    data: matnr like marc-matnr.
    data: werks like marc-werks.
    READ TABLE IN_PAR WITH KEY ‘LTAP-MATNR’.
    CHECK SY-SUBRC = 0.
    MATNR = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY ‘LTAP-WERKS’.
    CHECK SY-SUBRC = 0.
    WERKS = IN_PAR-VALUE.
    select single dispo from marc
    where matnr = ltap-matnr
    and werks = ltap-werks.
    IF SY-SUBRC = 0.
    READ TABLE OUT_PAR WITH KEY ‘ZDISPO’.
    CHECK SY-SUBRC = 0.
    OUT_PAR-VALUE = MARC-DISPO.
    ELSE.
    CLEAR OUT_PAR-VALUE.
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    This should work.

  • Can i transfer stock with transfer order in Inventory management?

    Can i transfer stock with transfer order in Inventory management between two storage locations in the same plant?

    I hope you are referring a transfer order and the transfer between two storage locations connected to the same warehouse, and just not doing movement at IM level with a transfer order.
    But, if you are referring to making a bin-bin transfer within the warehosue and you want to influence the storage location to storage location automatically, yes, you can do this. You should use 'storage location control' configuration under WM-IM interface to drive this. Essentially, you need to maintain the warehouse, destiantion storage type, plant, destination storage location and movement type 311. When you perform the transfer order confirmation to move inventory from a storage type (inventory is under source storage location) to the destination storage type (per the configuration setting) there will be an automatic transfer posting made to move inventory at IM level from source to desintation storage location.

  • Transfer order Printing Error

    Hello,
    I have two issue with tranfer order
    1) We are printing transfer order through network order CN23 .The part has been issued to network order from 3 Group WBS element .So when we are printing the Transfer order it is just printing one WBS element on transfer order not the other two of them.So is there a configuration setting for the trnasfer order to print all the WBS element?
    2) When the user is printing tasfer order from his profile LT31 and including all the setting plus defined printer as LOCL the transfer order is not getting printed .Only when he is going to SP02 it is getting printing .So i guess there must be some setting that is missing in printer config .I checked in OMLV but couldnt find one .Can any one pls help.?

    Thanks for the reply Abhijit.I saw in OMLV in Print code that the printer has been set to 02 so does that mean it is going to Spool? If so how can i change the setting back to print immediately ?what needs to be done in printer setting to get that print immediately.
    My first question is related to Transfer order print out .We have network order which has 3 WBS elements from which the component has been issued.So when we print the transfer order via LT31 it is only printing one WBS not the other two of them.So my question is is there a way in config to change the Transfer order so that it print all the WBS element or it should be done via coding?

  • Sales Order which automatically creates Stock Transfer Order

    Hi All,
    I've the following configuration requirement....
    -- A semifinished good SF1 will come to my company plant... (Stock Transfer)
    -- This SF1 will get converted to SF2 (another semifinished good) inside my company. As a by-product Scrap S1 will be generated.
    -- This SF2 will be transfered to vendor for external processing and producing Finished Good FG.
    -- This FG will go to customer directly from the vendor.
    My requirement is to create third party sales order for FG which in turn trigger PR->PO for FG. This will trigger a stock transfer for SF2 from plant to vendor. For this it will trigger a stock transfer of SF1 from plant (outside) to plant (my company). All this needs to happen when I save sales order for FG. Once the FG is saved, if I go to MD04 (stock requirements list), it should show stock transfer order for SF1, stock transfer order for SF2.
    Now I've created SF1, SF2, S1 and FG in material master. Also created Customer C1 and other necessary details such as organizational units, partners etc.
    Also I've created BOM for SF2 which includes SF1 and S1 and another BOM for FG which includes SF2 only.
    At this moment when I create a sales order for FG and save (third party sales order), the PR is getting generated for FG. But for further levels of processing is not happening. I know that manually these stock transfers could be done. But I want this to happen automatically when I save the sales order for FG.
    Please let me know what would be the ways to configue this.
    Thanks in advance.

    As per your thread,
    1- SF1 transferred from Plant (P1)- to Plant (P2) - Cab ne mapped through STO Process / Transfer Posting from Plant-Plant(Mov type 301)
    2- for this SF1, internal processing will be done in Plant-P2 to convert SF1 into SF2 in resuitl Scrap S1 will generate- Internal Production process (SF1 BOM - SF2 & S1 as child items)
    3- Issuing SF2 to Vendor for further processing to convert into FG - Subcontracting Process ( SF2 - Input Material / FG - Output material)
    4- Issuing FG directly from Vendor to Customer, based on Customer Order - Third party Order Processing.
                    As you know, through Configuration its difficult to achieve this. You may need to use the BAPI's to auto trigger these process one after the other. Still you should check feasibility.

  • TLB generate transfer orders even if there is no stock

    Hi Gurus,
    We have an issue wherein when TLB is executed, transfer orders are created wven if there are no stock.
    The settings in ATD Receipts is it should only consider unrestricted use stock. However there are open Purchase orders in the past which are not yet received. Does this cause the system to propose TLB Orders?
    Thanks,
    Raymond

    Raymond,
    If the category for purchase orders is considered TLB-eligible then past-due PO's will be included in the calculation for ATD Receipts.  I know you've said that the settings are such that ATD Receipts will only include unrestricted stock, but I'd challenge this notion in your case.  Check the location master and the product master, as well as the Planning Book itself to determine if ATD Receipts is indeed including only "CC" or may it also be including Purchase Orders or "BF"?? 
    From SAP help regarding ATD Receipt category group: You can specify this field in both the location product master and the location master. When Deployment is carried out, the system first checks whether the category group has been specified for the location product. If not, the system checks the entry at location level. If no category group has been defined for the location either, the system uses the standard category group ATR.
    So, if nothing is assigned in the product-location or location master, then ATR is used (which by standard has BF).  Also, remember that the product-location master "trumps" the location master per above.

  • Message error during a transfer order posting

    Hi,
    in WM, in storage type I set  "WM check based on palletization accord to SUT1" now when I post a
    transfer order the system replies with the following error message:
    Maximum quantity for storage bin A-011 will be exceeded by 1.000,000 KG
    I didn't set any max quantity for the storage bin
    Best regards

    Hi,
    no the problem of the maximum quantity still exists

  • HU and Transfer Orders

    Hi All,
    I have a scenario where system is creating as many Transfer Orders as many HU's that i create.
    I have HU managed Storage Location. I am creating an inbound delivery for the standard purchase order and in the inbound delivery i need to create a HU for each unit (ex: if i am receiving material A, Qty 10 units; then i have to create 10 HU's) and further when i create a transfer order for the delivery, system creates 10 transfer orders (one for each HU). How to fix this issue, i want the system to create one transfer order for each inbound delivery. All your inputs will be appreciated.
    Regards,
    Samuel

    Hi Nagesh,
    Thank you for the response. I have the standard profiles given by SAP for my warehouse in Verification Control-Assign Verification Profiles to Goods Movements (PCKEAC, PICK, PUTWY)
    W05     ***     916     0     PICK
    W05     902     ***     0     PUTWY
    W05     902     ***     501     PUTWY
    and i do not have TO Split activated in Transfers-Processing Performance Data / TO Split-Define Profiles.
    Regards,
    Samuel

  • Output determination for Transfer Order(WMTORD)

    Hi Friends,
      My Requirement is to send an idoc to an external warehouse when i save Transfer Order.
      For that i have created a Partner Profile with message type WMTORD.
      When i save the transfer Order if the warehouse number and storage type matches to specific numbers then it has to trigger the given partner profile..for this usually we will do output determination.
    Please help in doing the output determination for the above case..i know normal output determination procedure from NACE transaction.But warehouse mangement it would be defferent.please help me,,
    Thanks a lot.
    regards,
    Ravimacha

    Hello Ravi,
    I would like to generate an outbound idoc (using Message Determination/Control)  when a delivery is created (via tcode VL01N).  I created a Partner Profile with message type WMTORD.
    In setting up the Partner Profile: Outbound Parameters, I didn't find a standard SAP Process Code.   Did you find one, if so, what would that be?
    (I've found process code WMT1 but it is for inbound.)
    Thanks in advance,
    Millie

  • Transfer Order Printer

    Hi
    I have set in the config (OMLV) when printing from storage type *** to ***, print to printer "ABCD". When I create a TO I see that printer "ABCD" in the LTAP-LDEST field on the screen but when I save the transfer order, it overrides the printer and prints it to the printer maintained in my default user parameters. If I check in the table LTAP, it still shows  it printed on ABCD but in my spool and in reality it is printing to the printer in my default parameters user profile. Do you know why this is happening?
    Edited by: Vik Luthra on Aug 17, 2011 6:13 AM

    Thanks Jurgen,
    It's nice to hear peoples production experience.
    We have considered a watermark on the label and TO output (Pick Slip/Putaway Slip).   I think we will end up developing this... I just need to find the time.
    What do you do when the production printer fails, needs ribbon or label stock change?  Do you ever need to make a quick change to the printer definition in  production environment. Is that handled by config, A/B box, IP config change for the output device?
    George

  • LT03 - create transfer order  (SAP retail)

    Hi,
    when I process a transfer order with LT03, system replies with the message:
    Article X doesn't exist or is not activated
    How can I solve this problem

    Hi,
    when I try ro create WM1 and WM2 views for that material/article with MM01 trx, the system doesn't show
    any entry related to Warehouse number and there's not any customizing entry about Warehouse management.
    Do you agree that It must be customized the Warehouse management and then create in material master
    WM1 and WM2 views ?
    Yours truly

  • WM: Split transfer order by queue

    Hi. We have WM an SAPConsole implemented in our company. The actual parameter to split the transfer orders, when created, in our warehouse is the storage type. That is, if the delivery order needs to pick product from different storage types, the system will create one transfer order for each storage type.
    Now we have customized our system to work with queues. We assigned different storage types to those queues. Now we need to split the transfer orders by queue.
    So let's say, if we have a queue that has assigned both storage types A00 and B10, when we create the transfer order that is going to order to pick from these two storage types, we need the system to generate only one transfer order.
    We have been researching a little and found nothing in SAP standards. Do you know if that's possible as a SAP standard? What suggestions do you have for this case?
    Thank you for the support

    Hi,
    it is possible as SAP standard. I use this functionality in production system. In my scenario queues are assigned by BAdI LE_WM_RF_QUEUE.
    In documentation for this BAdI I found following note:
    "Note that the queue acts as the forced split criteria for the TO split."
    Of course if you use standard RF queue management, queue also acts as criteria for TO split.
    You can find useful documentation under:
    IMG:
    Logistics Execution>Mobile Data Entry> System Modifications> Business Add-Ins in Mobile Data Entry> Business Add-In for Queue Determination.
    u201CYou can also call the documentation on the BAdI method via the menu, by carrying out the following steps:
    1. Choose the tab page Interface.
    2. Double-click on the relevant method.
    3. Click on the right mouse button and choose Component documentation.u201D
    Andrzej

  • WM: Why some times i can't comfirm mi Transfer Order?

    Why some times i can't confirm mi Transfer Order?. When I create a transfer order from Delivery Note and then I confirm that, the system show me the next message: ITEM CATEGORY IS NOT DEFINED. But I don't know why.

    Daniel
    Welcome to SDN
    It seems Item category is not defined for those items so add this to the item and system allows to confirm.
    Hope this helps
    Thnaks
    sat

  • Transfer order related

    Hi,
    When i am creating transfer order for the delivery, I am facing an error
    "Maximum load capacity of storage bin XXXX exceeded by 101,597.000 KG". How to rectify this one.
    Regards,
    cherukuri

    Hi,
    Please change the weight of storage bin in LS02n T.code.
    regards,
    JS

  • Get proposed Storage bin before do Transfer Order

    Hi all,
    Do you know any FM to get the storage bin proposed by standard in LT06 when you do the Transfer order manually?
    I am using L_TO_PREPARE_ITEM_INT but I think I don't have to use that. The case is that:
    1- we are proposing to the user the storage bin recovered from L_TO_PREPARE_ITEM_INT
    2- when user press a button TO is created like LT06. It is failing with "Available storage bin is 0". But if we go out from our Z screen and we do that by standard LT06 it is working fine so I think our call to L_TO_PREPARE_ITEM_INT is changing maybe some global variables which are doing that when the TO is going to be created it fails.
    Do you have any idea how to get the storage bin? (MARD-LGBPE is not valid because it will not be informed there)
    Regards,
    Manel

    We are still using this FM to get the storage bin. The problem is that LQUAY structure is blocked after the call so we need to dequeue LQUAY before to create the TO

Maybe you are looking for

  • Move xml to application server

    Hi gurus iam converting sap data into xml and now iam able to download the file onto presentation server properly. now i want to write the file onto application server. DATA:   l_ixml            TYPE REF TO if_ixml,         l_streamfactory   TYPE REF

  • Image Download Issues

    Here is a link to a post I made a month back in the Tiger area of Discussions. Okay, now I have three people, one of our Sales people inside the office and two clients outside the office who every time they attempt to download an images off our websi

  • Performance of detail_datastore

    Hi everybody, I am planning to set up an article archive. The articles consist of different parts (title,headline,synopsis,bodytext...). I think about two different methods to solve the problem. 1. Use a Master Detail Realtion for the Article (Master

  • The videos wont display properly, there is a green ribbon at the bottom of every video, can someone help me?

    the colors of the videos are let's say out of place, you can see patterns of red or blue in every video.

  • ActiveSync

     ActiveSync for Exchange 2007 My users are not able to access emails from their smartphones when using with SSL. . Port 443 is opened on firewall 2. i am using third pary CA(DigiCert) for owa but i am not aware about active sync 3. when i used this c