My new program DUMP :

My new program is dumping at the below stmt:
IF NOT gt_soldto1[] IS INITIAL.
    SELECT *                " kunnr name2 j_3astcu
      FROM kna1
      INTO CORRESPONDING FIELDS OF TABLE gt_kna1
     FOR ALL ENTRIES IN gt_soldto1
     WHERE ( name2   LIKE 'STORE%'
     OR      name2   LIKE 'Store%'
     OR      name2   LIKE 'store%'
     AND     land1     = 'US'  )
     OR   ( j_3astcu  <> space
     AND    j_3astcu  = gt_soldto1-store_no
     AND   land1     = 'US'  ).
  ENDIF.   "   IF NOT gt_soldto[] IS INITIAL.
Could you please suggest me hwo to correct performane wise?
In  order to improve performance I tried to keep as much as possible in where condition. we are using SAP - AFS system.
=============================================
DUMP :
Short text
    No more storage space available for extending an internal table.
What happened?
    You attempted to extend an internal table, but the required space was
    not available.
Error analysis
    The internal table "???" could not be further extended. To enable
    error handling, the table had to be delete before this log was written.
   As a result, the table is displayed further down or, if you branch to
    the ABAP Debugger, with 0 rows.
    At the time of the termination, the following data was determined for
    the relevant internal table:
    Memory location: "Session memory"
    Row width: 3704
    Number of rows: 230136
    Allocated rows: 230136
    Newly requested rows: 4 (in 1 blocks)
How to correct the error
    The amount of storage space (in bytes) filled at termination time was:
    Roll area...................... 199624160
    Extended memory (EM)........... 251630992
    Assigned memory (HEAP)......... 484209696
    Short area..................... " "
    Paging area.................... 32768
    Maximum address space.......... 4294967295
    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:
    "TSV_TNEW_PAGE_ALLOC_FAILED" " "
    "ZADI_V_R_869_870_STATUS" or "ZADI_V_R_869_870_STATUS"
    "GET_DATA_DBTABLES_NEW4"
    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.
Source Code Extract
Line  SourceCde
4568   DATA : gt_soldto2 TYPE TABLE OF  t_soldto1.
4569   DATA :  wa_bstnk_storeno_kunnr LIKE LINE OF  gt_bstnk_storeno_kunnr.
4570 * Get ztable fields
4571   SELECT * FROM zadi_869_870_sta
4572           INTO TABLE gt_soldto1
4573           FOR ALL ENTRIES IN gt_bstnk_storeno_kunnr
4574           WHERE edi_tr_par = gt_bstnk_storeno_kunnr-edi_tr_par.
4575 ***************************************************************
4576 * gt_soldto1 should contain store no of gt_bstnk_storeno_kunnr
4577 *  IF NOT gt_soldto1[] IS INITIAL.
4578   LOOP AT gt_soldto1 INTO gs_soldto.
4579
4580 *  READ TABLE gt_bstnk_storeno_kunnr INTO wa_bstnk_storeno_kunnr
4581 *        WITH key edi_tr_par = gs_soldto-edi_tr_par BINARY SEARCH.
4582     LOOP AT gt_bstnk_storeno_kunnr INTO wa_bstnk_storeno_kunnr
4583                  WHERE edi_tr_par = gs_soldto-edi_tr_par.
4584       gs_soldto-store_no = wa_bstnk_storeno_kunnr-store_no.
4585       wa_bstnk_storeno_kunnr-sold_to =  gs_soldto-sold_to.
4586       MODIFY  gt_bstnk_storeno_kunnr FROM wa_bstnk_storeno_kunnr.
4587       APPEND  gs_soldto TO gt_soldto2 .
4588     ENDLOOP.
4589     CLEAR : gs_soldto.
4590 *    MODIFY gt_soldto1 FROM gs_soldto.
4591   ENDLOOP.
4592   REFRESH : gt_soldto1[].
4593   gt_soldto1[] = gt_soldto2[].
4594   REFRESH : gt_soldto2[].
4595
4596 * Get Shiptos from knvp table.
4597   IF NOT gt_soldto1[] IS INITIAL.
>>>>     SELECT *                " kunnr name2 j_3astcu
4599       FROM kna1
4600       INTO CORRESPONDING FIELDS OF TABLE gt_kna1
4601      FOR ALL ENTRIES IN gt_soldto1
4602      WHERE ( name2   LIKE 'STORE%'
4603      OR      name2   LIKE 'Store%'
4604      OR      name2   LIKE 'store%'
4605      AND     land1     = 'US'  )
4606      OR   ( j_3astcu  <> space
4607      AND    j_3astcu  = gt_soldto1-store_no
4608      AND   land1     = 'US'  ).
4609 *    AND   land1     = 'US'.
4610   ENDIF.   "   IF NOT gt_soldto[] IS INITIAL.
4611
4612 * Formation new internal table
4613   IF NOT gt_kna1[] IS INITIAL.
4614     LOOP AT gt_kna1 INTO gs_kna1.
4615
4616       LOOP AT gt_soldto1 INTO gs_soldto.
4617
THANKS IN ADV.

IF NOT gt_soldto1[] IS INITIAL.
    SELECT *                " kunnr name2 j_3astcu
      FROM kna1
      INTO CORRESPONDING FIELDS OF TABLE gt_kna1
     FOR ALL ENTRIES IN gt_soldto1
     WHERE ( name2   LIKE 'STORE%'
     OR      name2   LIKE 'Store%'
     OR      name2   LIKE 'store%'
     AND     land1     = 'US'  )
     OR   ( j_3astcu   space
     AND    j_3astcu  = gt_soldto1-store_no
     AND   land1     = 'US'  ).
  ENDIF.   "   IF NOT gt_soldto[] IS INITIAL.
Hi,
There seems to be some problem with your Where clause.
" j_3astcu   space
    AND    j_3astcu  = gt_soldto1-store_no" is not going to lead anywhere.
Please check the Where clause.
Regards,
Nirmal

Similar Messages

  • Runtime.exec() - how to open new window for new program?

    Hi,
    I have searched through the forums but haven't found an answer to this one yet. I am using runtime.exec() to start up a new java program. At first I thought it wasn't running properly but, after checking task manager, I have discovered that the new program I open runs, it is just completely invisible to me. I am wondering how I can get the new program to run in a command window or something where I can monitor it.
    Thank you for your help,
    Drew

    Thank you all. After trying to figure out why the start command wouldn't work in the runtime.exec() call(not an executable - I am a dolt), I tried putting it in a batch file and it worked perfectly. Thanks for your help,
    Drew

  • New Program Guide - unusable

    I want to be tactful about this - what would be the best way to characterize your new program guide - Sick Joke? In what sense is it an improvement over the previous one?  It is in fact immeasurably WORSE.  How could anyone at Verizon have signed off on this?
    The biggest problem is that it is now unacceptably, absurdly, SLOW.  Was that the intention?  I asked Verizon Phone Tech support if  they slowed it down intentionally , because maybe the network traffic volume was too costly for Verizon and they wanted to cut expenses.  Amazingly, he did not give a flat denial to this.  As I recall he said He didn't have any knowledge that that was the case.
    The way it used to work is for example you would hold down the right arrow button, and it would as expected just briskly scroll through  all the programming selections for that day for whatever channel you happened to be looking at, scrolling through all subsequent shows on the channel that day.  (And also as a recall when scrolling through subsdequent days).
    Now you hold down the right arrow button, and it scrolls forward just one show, and then just freezes, doing nothing.  If a few seconds later you lift your finger off the right arrow button,  it immediately jumps to say 8 hours in advance.  This makes this feature unusable.  How could you not understand that, Verizon?
    The same situation exists when scrolling to different channels with the up or down arrows.  Press and hold down  the down arrow, and it does in fact scroll through the subsequent channel icons, but it does NOT,  as it did with the previous program guide, scroll through all the  program DESCRIPTIONS in real time.  So why was that feature ditched? 
    The fastest it can scroll in real time now either left/right or up/down  is 1 entire second.  So, iow, hit the down arrow, and...one one thousand two ...OK NOW it switches.  What is up with that? 
    For the record, this is not the high-def Verizon box.  The TV on the high-def box seem to work a little better.  Does Verizon only support high-def now?
    And I haven't even mentioned the bizarre color scheme and other bizarre design decisions for the new Program Guide layout.  So, how is it better to reduce the size on the screen where the actual program info is, and surround it with a a lot of unused white space (or shoud I say unused sickly pale blue space)?  Just as far as the aesthetics of the new guide, there is not a single aspect of it that is not drastically worse than it was previously.  (e.g.hitting the info button during a show and it covering a third of  the screen.) 
    But disregard the complaints about  the colors, etc.  - just go wild with that if you want.  Just please restore the SPEED of the programming guide to what it was previously.  Because the way it is now its unusable. 
    Is there any way to go back to the old guide?  There is in fact an option in the Menu for the Classic Guide, but it does not do anything except rearrange the new guide a little bit to make it even worse.
    What is going on with you people (Verizon).

    I'm sorry to hear your frustration with the new guide. There is no way to go back to the old style guide. If unplugging the power cord to the box and plugging it in doesn't speed up the guide maneuvering, please send me a private message.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • TS2972 How can I stop iTunes on my computer to start whenever I use the Apple TV remote to select a new program?

    Whenever I use the Apple TV remote to choose a new program, iTunes starts on my computer and starts playing from the playlist. How do I prevent that from happening?

    Your computer is picking up the remote's signal. Go into system preferences - security - general. Click on the padlock and go into advanced. Check disable remote control infrared receiver.

  • "The file 'iTunes Library.itl' cannot be read because it was created by a newer version of iTunes." Updates were only offered by Apple when I'd open iTunes. Now I can't open iTunes. How can I access the newest iTunes as an update, not a new program?

    "The file 'iTunes Library.itl' cannot be read because it was created by a newer version of iTunes." Updates were only offered by Apple when I'd open iTunes. Now I can't open iTunes. How can I access the newest iTunes as an update, not a new program?

    this just started w/ me yesterday.  I was running 10.5.3, and nothing changed - the message just appeard out of nowhere.  I update to the latest iTunes 10.6 but the message is the same.
    Sounds like probably some sort of Library file corruption.
    The two options available in the message box are "Download" and "Quit".  Download is useless because I'm already running the latest.  Quit is pretty useless.
    I was going to just create a new Library and re-import all my music.  Of course, all my iPhone sync settings are going go have to be recreated.

  • Admin console crashes when creating a new program

    Recently, .NET 4.5 and Windows 8.1 ADK was installed to update the KMS Host on our server that is shared with the ConfigMgr Primary Site server.  Since then, the Admin Console has been crashing every time I try to create a new program on any package
    in SCCM (both newly created or existing packages).
    smsAdminUILog:
    [3][7/07/2014 11:55:07 AM] :Help topic not found in 'HelpTopicLinks.xml' for topic ID: '7e96e251-ed74-4905-87c0-77d082a5fa4d'
    [3][7/07/2014 11:56:10 AM] :Property: 'ProgramName'\r\nSystem.Management.ManagementException\r\nNot found \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.ManagementObject.Initialize(Boolean getObject)
       at System.Management.ManagementBaseObject.get_Properties()
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlResultObjectBase.get_Item(String name)\r\nManagementException details:
    instance of SMS_ExtendedStatus
    Description = "Error retrieving object PackageID=XXX00219";
    ErrorCode = 2151811598;
    File = "c:\\qfe\\nts_sms_fre\\sms\\siteserver\\sdk_provider\\smsprov\\SspInterface.h";
    Line = 1151;
    Operation = "GetObject";
    ParameterInfo = "SMS_Program.PackageID=\"XXX00219\",ProgramName=\"Test\"";
    ProviderName = "ExtnProv";
    StatusCode = 2147749890;
    \r\n
    Event Log:
    An error occured in ConfigMgr. The ConfigMgr console will continue to function, however you should save your work and restart the console. After restarting the console, verify that your last configurations have been applied.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.File.Move(String sourceFileName, String destFileName)
       at Microsoft.ConfigurationManagement.AdminConsole.SmsTraceListener.SmsTextWriterTraceListener.WriteStringToLog(String message)
       at Microsoft.ConfigurationManagement.AdminConsole.SmsTraceListener.SmsTextWriterTraceListener.WriteSmsLogEntry(String source, TraceEventType eventType, TraceEventCache eventCache, Int32 id, String traceMessage)
       at System.Diagnostics.TraceSource.TraceEvent(TraceEventType eventType, Int32 id, String message)
       at Microsoft.ConfigurationManagement.AdminConsole.ExceptionUtilities.TraceException(Exception ex, TraceEventType traceEventType, Int32 eventId, String message)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlResultObjectBase.get_Item(String name)
       at Microsoft.ConfigurationManagement.AdminConsole.Program.GeneralPageControl.VerifyProgramName()
       at Microsoft.ConfigurationManagement.AdminConsole.Program.GeneralWizardPage.get_CanDeactivate()
       at Microsoft.ConfigurationManagement.AdminConsole.WizardFramework.WizardForm.OnNext()
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    I tried removing .NET 4.5 and re-installing .NET 4.0, but still crashing.

    Hi Tim,
    I’m experiencing the same issue, but for me it still crashes as guest. I’m hoping someone will have a suggestion. I’m very new to the flash world (in fact I’m taking a class now and wasn’t able to do my homework), so if you get any responses or discover any useful information please let me know.
    Thanks,
    Naomi

  • Can it harm my Ipod touch if it was connected to my computer and Itunes while I'm installing a new program that makes lights flash on my computer?

    I was installing and I'm not sure why but the lights on my caps lock flashed without me touching it. Can that harm my Ipod? If installing a new program affected the usb drive can that harm my Ipod while it's connected?

    It should be OK as long as you are not syncing or doing data transfer via US like backing up or restoring

  • Dvd/cd drive works but won't allow me to install new programs from disk, doesn't recognize the disk,

    dvd/cd drive works but won't allow me to install new programs from disk, doesn't recognize the disk, what can I do?

    Well I was able to obtain a work around download of Flash and it installed fine but Firefox tells me it needs updating so I go out, thinking I'm "IN" finally to update it and I get that issue of not being able to get the update for it.  It's a regular laptop, not a touch screen or one of those new fangled ones for todays world.  In fact it's a refurb so it's probably origin date was a year or so ago before all this MS stuff took off fully.  So not understanding why I'm feeling like I'm being BLOCKED from getting the updated Flash I need and desire.  If I click on the little "X" and tell it to ignore the warning the vid will play just fine but don't want to have to do that every time.  Must be a better way. 
    Again, I'm sorry for posting in the wrong forum, getting this posted in the Flash forum was my desire but the way Adobe has this set up I just couldn't figure it out.  I belong to ALLOT of forums and most are pretty straight forward but this one is confusing! 

  • I normally dont need a login when I install new program, but I try to Install a new flash player im asked to write a login and I have no clue? when I search for help it suggest to put in the original installation cd but that doesnt work. Please help!

    When Trying to install the newest Flash player, Im asked to fill in my login.
    I have no clue what my login is. (It happened very rarely that I was asked to fill in this when installing a new program, and the login I have used before are not valid now.
    When I search for help, I am suggested to put in the original installation Cd.. and press the "C" button when I hear the starting sound... but when I do this nothing is happening.
    Please Help me If you have an idea for a solution to this problem!
    / Joel

    You need the admin password you created when you first set up the machine.  Just about every installer running under OS X will require you to authorize the installation by entering an administrator password - even software update requires this.  You really should not forget your admin password, as it is required for many things in OS X since, unlike Windows, you often need to manually type in the admin password to proceed with an install or update (whereas Windows will take admin authority, if you are logged in as an admin, by simply clicking continue or yes).
    If you cannot remember your admin password, you can reset it from the recovery CD that came with your mac - http://support.apple.com/kb/HT1274

  • My Mac won't open certain files anymore so I can't install new programs.

    I accidentally reset the default application used to open new programs that I try to install and now it won't open. It's set accidentally to use ScriptEditor. I'm not sure what "program" was used originally to open them, so I don't know what to reset it to. How do I fix it so I can install new programs again?

    Hi VoxPariah, and a warm welcome to the forums!
    An alternative to Klaus1's fine advice...
    Reset Launch Services...
    http://www.thexlab.com/faqs/resetlaunchservices.html
    http://www.macosxhints.com/article.php?story=20031215144430486

  • Apple's new program of free replacement batteries.

    Apple's new program of free replacement batteries.
    I would like to know when my iPhone has already changed the battery and where ??
    Serial number DN*******TTN
    Новая программа Apple по бесплатной замене аккумуляторов.
    Я хотел бы узнать, когда на моём айфоне уже поменяли батарейку и где??
    Серийный номер DN*******TTN
    Скажите Когда заменили? Я отдавал в сервис, ну на счёт батареи они мне ничего ни сказали.
    <Edited By Host>

    This is a user-to-user tech support forum, not Apple. No one here has any info about your phone's repair status.  NEVER post personal info such as your serial number in a public forum.
    See this for general information:
    iPhone 5 Battery Replacement Program - Apple Support

  • Will I lose my library when I remove Itunes to install the new program

    Will I lose my library when I delete the old version of ITunes to install the new program ?

    No, though you should back up your library anyway. See this User Tip for a backup strategy.
    You don't need to uninstall your current copy of iTunes to upgrade to a new build.
    tt2

  • It came to my attention there a new program working with itune since last update named Apsdaemon.exe its been using 99% of my processor when its active any idea why so much and will it be fix eventually? And why is it so Heavy consuming ?

    It came to my attention there a new program working with itune since last update named Apsdaemon.exe its been using 99% of my processus when its active.
    Any idea why so much and will it be fix eventually because before last update i never encounter any issue using Itune? Now when that aplication or extention from Itune is working my computor froze to a huge alt. I play video games online and love listening to my music with itune playing in the background and normally was able to have firefox open and a program called ventrillo all working at the same time and now i can barelly have itune and play a game. As soon it start been choppy i just control alt delete wait 5 minute to close down apsdaemon.exe when i'm capable most of the time i have to restart my computor. And why is it so Heavy consuming on the process its memory utility is under the 100ko i believe so why 99% of my processus is been use ?
    a good exemple i could give is itune.exe working it shows process 02% for 123 000ko that is light and perfect.

    Wow, Karan Taneja, you've just embarrassed yourself on a worldwide support forum.  Not only is your post ridiculous and completely inappropriate for a technical support forum, but it also shows your ignorance as to whom you think the audience is.  Apple is not here.  It's users, like you. 
    If you would have spent half the time actually reading the Terms of Use of this forum that YOU agreed to by signing up to post, as you did composing that usesless, inappropriate post, you (and the rest of us on this forum) would have been much better off.

  • Installing new programs

    Hello,
    Have tried to install new programs onto Leopard, but the computer does not seem to want me to do this. When I insert and dmg. file or the CD containing the program...the computer reads it, allows me to drag to applications, or to open the VICE file for installing, but then it does nothing...absolutely nothing. I tried this with OFFICE 2004 and MAc-Link and Appleworks (which I am slowly replacing anyway, but there are some wonderful things there still for me).
    Why won't the computer allow me to install these workable programs...some seem to work well on my PowerBook, but not on this desktop G5.
    Go raibh maith agat
    Tom

    Thank you Jeffrey Jones, you just saved me $89 as I was considering buying iWork.
    I don't know why I thought Appleworks wouldn't run on Leopard, perhaps because of its pre Aqua theme.
    I was surprised it even ran on OS X, though of course it did come bundled with OS X.
    It always looks a bit of a black sheep, more at home on OS 8 than OS X. And so, from its deceptive appearance I thought that an Intel computer would surely pass it by, but no.
    Consistent with its black sheepiness, it is the sole PowerPC app, showing in Activity monitor.

  • New programs not working and websites not displaying correctly

    I need a little assistance. My older G5 is running Mac OS X (10.3.x), Mac OS X 10.3.9 (7W98) - I don't have the funds to upgrade right now - and during an update to iTunes awhile back the power was accidently cut and then my mess began. ITunes would no longer open,
    I am good with PCs and can pretty much resolve anything on them, but have been absolutely stumped with this. I searched all kinds of troubleshooting and eventually decided to just erase and reinstall Panther hoping that would resolve the issue, iTunes works now, but Safari is not displaying web pages correctly (for instance Facebook is just a stack of words but other sites may look okay), and now any new program I download will not open after I install it like Firefox.
    Any ideas as to how I can resolve this mess?

    You can try do download Onyx, it is a good free Software that will repair many issues that you can have with your Mac. You are running the very last 10.3.x I suppose.

Maybe you are looking for

  • How to use java source in Oracle when select by sqlplus.

    How to use java source in Oracle when select by sqlplus. I can create java source in Oracle import java.util.*; import java.sql.*; import java.util.Date; public class TimeDate      public static void main(String[] args) public String setDate(int i){

  • Analysis for lab system

    hi all , i am trying to make analysis to my system which is (a small laboratory system) , but i have no experience in systems analysis , just a small idea , so , what i reached to is , it is a small place with( one doctor , patients , one or two work

  • System problems after 10.4.5

    After attempting the update in the software updater (which I will never do again), it failed to update. I downoladed the delta updater and ran it no problems, rebooted, and now spotlight won't work. It comes up but no matter what I type in there are

  • BPA Suite 12c  ?

    Hi friends. I would like to know, If Oracle think to release a new version of Oracle BPA Suite in Oracle BPA Suite 12c I hope your answers, regards.

  • Reinstallation location problem

    Hello, I'm trying to reinstall Adobe Dreamweaver CS6. I purchased and downloaded the installation package but the drive that I installed two ran out of space. I inserted a new hard drive. I'm rerunning the installation package but at the options stag