When performing the LT03 for a delivery order

The system runs forever; then ABAP dumps.  None of us here are experts in ABAP at all.  This is not happening in our QA client only in the production client so I am at a lsot as to why.  My initial though was due to changing serialization level from one to none but when I tried to duplicate the error in QA, it works,  Below is the message ...anyone with advice?
Short text
Time limit exceeded.
What happened?
The program "SAPLZAF_MM_SERIAL" has exceeded the maximum permitted runtime
without
interruption and has therefore been terminated.
What can you do?
Note down which actions and inputs caused the error.
To process the problem further, contact you SAP system
administrator.
Using Transaction ST22 for ABAP Dump Analysis, you can look
at and manage termination messages, and you can also
keep them for a long time.
Error analysis
After a specific time, the program is terminated to make the work area
available to other users who may be waiting.
This is to prevent a work area being blocked unnecessarily long by, for
example:
- Endless loops (DO, WHILE, ...),
- Database accesses with a large result set
- Database accesses without a suitable index (full table scan)
The maximum runtime of a program is limited by the system profile
parameter "rdisp/max_wprun_time". The current setting is 1800 seconds. If this
time limit is
exceeded, the system attempts to cancel any running SQL statement or
signals the ABAP processor to stop the running program. Then the system
waits another 60 seconds maximum. If the program is then still active,
the work process is restarted.
How to correct the error
Programs with long runtime should generally be started as background
jobs. If this is not possible, you can increase the system profile
parameter "rdisp/max_wprun_time".
Depending on the cause of the error, you may have to take one of the
following measures:
- Endless loop: Correct program;
- Dataset resulting from database access is too large:
Instead of "SELECT * ... ENDSELECT", use "SELECT * INTO internal table
(for example);
- Database has unsuitable index: Check index generation.
If the error occures in a non-modified SAP program, you may be able to
find an interim solution in an SAP Note.
If you have access to SAP Notes, carry out a search with the following
keywords:
"TIME_OUT" " "
"SAPLZAF_MM_SERIAL" or "LZAF_MM_SERIALU01"
"ZAF_MM_SERIAL"
If you cannot solve the problem yourself and want to send an error
notification to SAP, include the following information:
1. The description of the current problem (short dump)
To save the description, choose "System->List->Save->Local File
(Unconverted)".
2. Corresponding system log
Display the system log by calling transaction SM21.
Restrict the time interval to 10 minutes before and five minutes
after the short dump. Then choose "System->List->Save->Local File
(Unconverted)".
3. If the problem occurs in a problem of your own or a modified SAP
program: The source code of the program
In the editor, choose "Utilities->More
Utilities->Upload/Download->Download".
4. Details about the conditions under which the error occurred or which
actions and input led to the error.
System environment
SAP-Release 700
Application server... "WIC-PD-ECCSCS"
Network address...... "10.200.1.245"
Operating system..... "Linux"
Release.............. "2.6.16.60-0.39.3-smp"
Hardware type........ "x86_64"
Character length.... 16 Bits
Pointer length....... 64 Bits
Work process number.. 0
Shortdump setting.... "full"
Database server... "WIC-PD-ORC-01"
Database type..... "ORACLE"
Database name..... "ECP"
Database user ID.. "SAPSR3"
Char.set.... "C"
SAP kernel....... 700
created (date)... "Aug 23 2009 20:22:37"
create on........ "Linux GNU SLES-9 x86_64 cc3.3.3"
Database version. "OCI_102 (10.2.0.2.0) "
Patch level. 221
Patch text.. " "
Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
SAP database version. 700
Operating system..... "Linux 2.6"
Memory consumption
Roll.... 16192
EM...... 20949240
Heap.... 0
Page.... 57344
MM Used. 10428296
MM Free. 2138248
User and Transaction
Client.............. 400
User................ "TNIDA"
Language key........ "E"
Transaction......... "LT03 "
Transactions ID..... "4C7C27CEFAB745B2E10000000AC801F1"
Program............. "SAPLZAF_MM_SERIAL"
Screen.............. "SAPML03T 0102"
Screen line......... 68
Information on where terminated
Termination occurred in the ABAP program "SAPLZAF_MM_SERIAL" - in
"ZAF_MM_SERIAL".
The main program was "SAPML03T ".
In the source code you have the termination point in line 33
of the (Include) program "LZAF_MM_SERIALU01".
Source Code Extract
Line SourceCde
3 ""Local Interface:
4 *" IMPORTING
5 *" REFERENCE(LGORT) TYPE LGORT_D OPTIONAL
6 *" REFERENCE(WERKS) TYPE WERKS_D OPTIONAL
7 *" REFERENCE(MATNR) TYPE MATNR OPTIONAL
8 *" REFERENCE(SERNR) TYPE GERNR OPTIONAL
9 *" REFERENCE(LGNUM) TYPE LGNUM OPTIONAL
10 *" EXPORTING
11 *" REFERENCE(LGPLA) TYPE LGPLA
12 *"----
13
14
15 REFRESH: it_objk, it_ser03, it_lqua.
16
17 * Select serial number for all material documents
18 SELECT * FROM objk
19 INTO TABLE it_objk
20 WHERE taser = 'SER03'
21 AND sernr eq sernr
22 AND matnr eq matnr.
Select documents details for serial numbers.
25 SELECT * FROM ser03
26 INTO TABLE it_ser03
27 FOR ALL ENTRIES IN it_objk
28 WHERE obknr = it_objk-obknr
29 AND werk = werks
30 AND lagerort = lgort.
31
32 * Select storage bin details for all selected materials documents.
>>>>> SELECT * FROM lqua
34 INTO TABLE it_lqua
35 FOR ALL ENTRIES IN it_ser03
36 WHERE wenum = it_ser03-mblnr
37 AND lgnum = lgnum.
38 * AND lgpla = lgpla.
39
40
41 * Populate the output table
42 LOOP AT it_objk INTO wa_objk.
43 READ TABLE it_ser03 INTO wa_ser03 WITH KEY obknr = wa_objk-obknr.
44 IF sy-subrc = 0.
45 READ TABLE it_lqua INTO wa_lqua WITH KEY wenum = wa_ser03-mblnr
46 matnr = wa_objk-matnr.
47 IF sy-subrc = 0.
48 wa_ser-werks = wa_lqua-werks.
49 wa_ser-lgort = wa_lqua-lgort.
50 wa_ser-matnr = wa_lqua-matnr.
51 wa_ser-sernr = wa_objk-sernr.
52 wa_ser-lgnum = wa_lqua-lgnum.
Contents of system fields
Name Val.
SY-SUBRC 0
SY-INDEX 1
SY-TABIX 10
SY-DBCNT 33702
SY-FDPOS 40
SY-LSIND 0
SY-PAGNO 0
SY-LINNO 1
SY-COLNO 1
SY-PFKEY 31
SY-UCOMM TATB
SY-TITLE Create Transfer Order for Delivery: Generate TO Item
SY-MSGTY E
SY-MSGID L9
SY-MSGNO 202
SY-MSGV1
SY-MSGV2
SY-MSGV3
SY-MSGV4
SY-MODNO 0
SY-DATUM 20100831
SY-UZEIT 084745
SY-XPROG SAPCNVE
SY-XFORM CONVERSION_EXIT

I managed to remove the serial numbers from the delivery and then tried LT03.  It ran for a long time however; I did manage to get it thru that way.  Added the serial numbers back in vlo02n and post goods issue just fine.
Still curious as why the system is lagging so long and woul ABAP out if a serial numebr is in the LT03 when trying to create a TO...please any clues would be good.

Similar Messages

  • VF06 - Create billing documents separately for each delivery order

    Hi gurus,
    Just as subject, I want to create billing documents for each delivery order in batch job.
    Can anybody tell me how can this be achieved.
    thank you.

    Hi,
    The steps to create a background job is mentioned below:
    1. Go to transaction SM36.
    2. Then give the Job name & job class.
    3.If spool requests generated by this job are to be sent to someone as email, specify the email address. Choose the Spool list recipient button.
    4.Define when the job is to start by choosing Start Condition and completing the appropriate selections. If the job is to repeat, or be periodic, check the box at the bottom of this screen.
    Reward me if you find this helpful
    Regds.......
    Sumit
    Edited by: Sumit Rayaguru on Jul 22, 2008 9:01 PM

  • On a Mac, in Adobe Photoshop CC 2014, when adding audio to an edit, i get the message "Could not complete your request, because Dynamiclink is not available". When performing the exact same operation in Adobe Photoshop CC, i can add audio in the same way,

    On a Mac, in Adobe Photoshop CC 2014, when adding audio to an edit, i get the message "Could not complete your request, because Dynamiclink is not available".
    When performing the exact same operation in Adobe Photoshop CC, i can add audio in the same way, no error message. Any ideas to solve this, anyone? Would be greatly appreciated.

    I tried to update and it keeps telling me to get the Application Manager. And this is what happens
    Adobe Application Manager failed and it told me to download the Adobe Support Advisor.
    Adobe Support Advisor told me that there was an issue:" cpsid_82829s1: "A restart is pending," bootstrapper error has occurred. "Token Number: 40-87772-063201122012
    I followed the instructions it gave me to correct this issue:
    If you receive the error "Installer has detected that a machine restart is pending. It is recommended that you quit the installer, restart try again," do the following:
    #Restart the computer and try the installation again.
    #If the installation fails, delete the InProgress registry key: 
    Disclaimer: This procedure involves editing the Windows registry. Adobe doesn't provide support for editing the registry, which contains critical system and application information. Make sure to back up the registry before editing it. For more information about the registry, see Windows registry information for advanced users on the Microsoft support site, or contact Microsoft. 
    Launch Windows Registry Editor.
    (Windows XP) Choose Start > Run, type regedit in the Open text box and click OK.
    (Windows Vista/ Windows 7) Choose Start, type regedit in the Search box, and press Enter.
    Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager.
    Delete the InProgress key.
    I was not able to find the "InProgress" key.

  • When is the next iphone 6 delivery after 9/19?

    when is the next iphone 6 delivery after 9/19? is there a delivery on 9/26? or it jumps on oct 1-6

    Apple will estimate the shipping date based on estimates of how fast they can manufacture devices, demand from online orders, keeping stock in stores, etc.
    They will then present you with an estimate-usually a range such as 3-4 weeks.

  • Splitting the invoice for single delivery.

    How can we split the invoice for single delivery where item is in display mode in billing creation screen.
    I have 2 items in delivery and i need different invoices for them

    HI tiru,
    follow the steps carefully.
    1. in the corresponding item category in tcode "vov7" change "billing relevence" as" K".
    2. create sales order and delivery.
    3.go to VF01 tcode select "selection list " in the application tool bar then u will reach one screen in that change "open qunatity" to how much u want to invoice and press copy in the
    application tool bar and press "f8" .
    this will definately works.
    reward me if it is helpful.
    regards,
    kishore.

  • I seem to not enter the correct answers to my security questions for itunes to buy an in-app purchase and also cannot answer the questions exactly like i answered them when creating the account for my ipod, how do i find out what answers i put

    I seem to not enter the correct answers to my security questions for itunes to buy an in-app purchase and also cannot answer the questions exactly like i answered them when creating the account for my ipod, how do i find out what answers i put for my ipod touch and itunes?

    Try these previous discusssions:
    recover answers to security questions: Apple Support Communities
    how do i change apple ID security...: Apple Support Communities

  • After updating my Macbook Pro retina display to os x yosemite 10.10.2, the mause and track pad locks, and do not respond especially when using the Mac for a long period, please help, how can I solve this, I do not like feel like in windows, so I paid

    after updating my Macbook Pro retina display to os x yosemite 10.10.2, the mause and track pad locks, and do not respond especially when using the Mac for a long period, please help, how can I solve this, I do not like feel like in windows, so I paid good money for this mack, I feel calm

    Hi Buterem,
    I'm sorry to hear you are having issues with your MacBook Pro since your recent Yosemite update. I also apologize, I'm a bit unclear on the exact nature of the issue you are describing. If you are having intermittent but persistent responsiveness issues with your mouse or trackpad, you may want to try using Activity Monitor to see if these incidents correspond to occupied system resources, especially system memory or CPU. You may find the following article helpful:
    How to use Activity Monitor - Apple Support
    If the entire system hangs or locks up (for example, if the system clock freezes and stops counting up), you may also be experiencing some variety of Kernel Panic. If that is the case, you may also find this article useful:
    OS X: When your computer spontaneously restarts or displays "Your computer restarted because of a problem." - Apple Support
    Regards,
    - Brenden

  • When Will THE update for the ios7 come out for the ipod touch 5 gen

    When Will THE update for the ios7 come out for the ipod touch 5 gen

    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base before you post a question.
    Regards.

  • The Prerequisites for releasing process order

    Hi all,
    What are the Prerequisites for releasing process order?
    Can we issue the material against process order, if it is on CRTD status?

    Hi,
    Prerequiste for REL of Process Order -
    Process order should have CRTD status.
    Other with IMG setting, you can have order status directly REL once it is created also. See Prod Sch Profile setting.
    You cannot do goods posting (GI and GR) unless order is REL status. Not possible with CRTD status.
    Srini

  • Command how many mails when through the mailstore for a specific domain.

    I need to get info from the maillog to see how many mails when through the mailstore for a specific domain.
    For example all the mails send and received by example.com witch is hosted on that 2005q1 mailserver.
    Anyone know the commands to get it out.

    The data is certainly in the mail.log.
    You may want to start with the perl log parsing script, here:
    http://ims.balius.com/resources/downloads/files/imslog.pl

  • Keeps typing double letters in when entering the password for my Mac Username.

    Macbook Pro just started typing double letters ONLY when typing the password for my Mac User sign up.  It only does it for the area that I need to enter the password, and even types fine for the username area that's on the same screen.  Even tried typing each one (which shows a double type) and backacing each couble letter, but it still says invalid. Need to get this fixed for work tomorrow.. Does anyone have any idea how to fix this?

    Try resetting your Apple ID password.
    Apple - My Apple ID
    Then restart your Mac.

  • Does anybody knows when is the launch for the new iPad retina display 2013?, Does anybody knows when is the launch for the new iPad retina display 2013?

    Does anybody knows when is the launch for the new iPad retina display 2013?

    King_Penguin wrote:
    Nobody on here will know until if/when Apple announce something.
    Ditto

  • Performance Problem when executing the report for the first time.

    Hi,
    We have a Zreport...to improve the performance i created Index on few Data Base table..before my changes it used to take more than 15 minutes after the changes it taking less than 1 min for the same variant and for other variants also.
    But when executing the first in morning its taking the same time more than 15 min.Please let me know how to increase the performance when executing first time also,
    Thanks,
    Kiran.

    Hi all,
    Appreciate your valuable replies...
    @ Thomas: i do accept with your solution running a background job..but user is not accepting for it..thanks for your reply.
    @Siegfried Boes  : for testing purpose Im running this manytimes..but for user they may
    require when ever they need to know open oders.the volume of the data is barongs 300-350 at
    max.
    @Brad Bohn  : After creating the index the repose time reduced to half ...i hope  i have
    created a right index.
    Observation here...I executed the report in production system more than 5 times it took the
    same time, my changes are still in quality..so i think may be for selecting the right index
    its taking this much time.and for the next time is taking right index n doing it so it taking
    less.
    Do you accept it?.if so Please let me know how to explicitly say the select statement to
    use my index.
    Thanks,
    kiran.

  • When will the next wave of pre-orders for the iPhone 5 be shipped

    Dear Apple,
    I sadly had to pre-order my new iPhone 5 through AT&T last Friday morning and was told I would get the phone today and then told it would be Oct 5th. I went into a store to see what I can do and although they have plenty in stock they told me nothing and then informed me it would be late October before it shipped. I know that this has nothing to do with you but since you have wonderful customer service and knowledgable peole can you please give me an accurate date on when the next wave of pre-orders will be shipped. Thank you so much. You guys are the best. 

    You're not addressing Apple here, we're all users like yourself.
    If you want to know when the next shipment will be, call your local store or whomever you ordered it from and ask them.

  • User exit for create delivery order

    hi! expert.
    i have a scenario when user B create delivery order (VL01N)  then get DO No.  I want to send this DO No. to user A 's mail.
    when i look for user exit with this  [program|http://wiki.sdn.sap.com/wiki/display/ABAP/FindEXITandBADIfroagivenTransactionCode]  . i don't know which one I should use.  please suggest me.
    V02V0001
    V02V0002
    V02V0003
    V02V0004
    V50PSTAT
    V50Q0001
    V50R0001
    V50R0002
    V50R0004
    V50S0001
    V53C0001
    V53C0002
    V53W0001
    VMDE0001
    VMDE0002
    VMDE0003
    VMDE0004
    my SAP  version is 4.6
    best regards,
    Kiitisak

    Hi,
    Any userexit asks the access key for first time.(Not the case with customer exits). So no probelm. Get the access key from your BASIS team and implement the exit. I wonder that MV50AFZ1 is not implemented yet in your system. Is your SAP system new?
    This is the most busy exit (Locked by some one at any time) in most of the systems:)
    Thanks,
    Vinod.

Maybe you are looking for

  • My iTunes Library has disappeared. Help!

    My entire iTunes library has disappeared. From reading other posts I see that this has been an issue. I'm not sure if it's related to AVG antivirus (but I deleted it anyway) or due to iTunes update. I noticed a week or 2 ago but haven't been back in

  • ITunes 7.1.1 crashed

    iTunes 7.1.1 will not open. iTunes crashed after connecting to my iPod. I can no longer open iTunes in my Windows XP system. I tried opening Quicktime and it says it is loading music from iTunes store but won't open my iTunes. Can someone help me?

  • Xntpd on Solaris 10 gets synchronised with a higher stratum NTP server

    The Solaris 10 machine has the following configuration in etc/inet/ntp.conf server 10.24.179.33 prefer server 127.127.1.0 fudge 127.127.1.0 stratum 8 The Linux Fedora Core 4 test machine(10.24.179.33 ) configured as NTP server running ntpd V4 has the

  • How to output tab character in c:out

    Here is the problem, and I would appreciate your help. I am trying to output text data to Excel. The data must be tab-delimeted. This works: <%response.setContentType("application/vnd.ms-excel"); String sCsv = "aaa\tbbb\tccc\txxx<br>"; out.print(sCsv

  • AirParrot 2.0 CRASH on Macbook Pro (late 2008) OS X 10.10.1 NOT MIRRORING on AppleTV 7.0.2

    I've purchased last AirParrot 2.0, to mirror my MacBook Pro (late 2008 model) on my AppleTV. I've dropped the app in my application folder and run it. Added the license key. I've tried to connect my apple tv. The app finds my AppletTV but as soon as