Effiency in dropout stack program

Does anyone think this code is efficient?
Thanks
import java.util.*;
  public class dropOutStack<E> {     
     //stack size limit      
      public final int stackLimit = 5;
      private static class LinkStack <E>  {
             private E data;
              private LinkStack<E> next = null;
          private LinkStack<E> prev = null;
              private LinkStack(E dataItem) {
                 data = dataItem;  ;
           // Stack Items
                 LinkStack<String> item1 = new LinkStack<String>("Red");
           LinkStack<String> item2 = new LinkStack<String> ("Yellow");
           LinkStack<String> item3 = new LinkStack<String>("Green");
           LinkStack<String> item4 = new LinkStack<String>("Blue");
           LinkStack<String> item5 = new LinkStack<String>("Orange");
              LinkStack<String> item6 = new LinkStack<String>("Silver");
     public void print() {
          //links
           item1.next = item2;
           item1.prev = null;
           item2.next = item3;
           item2.prev = item1;
           item3.next = item4;
           item3.prev = item2;
           item4.next = item5;
           item4.prev = item3;
           item5.next = null;
           item5.prev = item4;
           LinkStack<String> obj = item1;
           LinkStack<String> empty = null;
           while (obj != empty) {
                     System.out.print(obj.data + " ");
               obj = obj.next;     
       public void  push() {
          LinkStack<String> newitem2 = item1;
          LinkStack<String> newitem3 = item2;
          LinkStack<String> newitem4 = item3;
          LinkStack<String> newitem5 = item4;
               item2 = newitem2;
          item3 = newitem3;
          item4 = newitem4;
          item5 = newitem5;
          item1.next = item1.next.next;
          item1 = item6;
     //Test method   
      public static void main(String [] args) {
           dropOutStack<String> itemStack = new dropOutStack<String>();
           itemStack.print();
           //push Silver onto the LinkStack
             itemStack.push();
           System.out.println("\nStack after drop out: ");
           itemStack.print();
}

No, because:
1) you can't change the size of the stack without changing the code
2) when you push something, you reassign a whole bunch of variables to each other unnecessarily
3) You're hardcoding the contents of the stack into the program (write an external test class instead, or put the test code into the main method, preferably the former)
4) There is no pop, and you're popping stuff (?) in print(). Shouldn't print have no side effects? Have you combined pop and print for some reason?
5) Push doesn't take an argument, so it's not really a push method. And it seems to eliminate item one while also rotating item 6 to the beginning, maybe?
6) No constructor? The only place where you actually create the linking of the linked list, is in your print method?
Look: the advantage of linked lists is that things like inserting at the beginning or end can take constant time (you only have to futz with a single element or maybe two elements for a drop-out stack). That's why they're ideal for things like stacks.
So you shouldn't have any methods that touch every single item in the stack. If you want to do that you're on the wrong track.
Here's a hint: the DropOutStack class should have 4 fields:
1) the maximum size of the stack (as given in the constructor)
2) the current size
3) a reference to the first element (where you drop things from)
4) a reference to the last element (where you push/pop things to)
In addition you'll need a constructor that takes a maximum size, a pop method that takes no argument and returns a value, a push method that takes a value and returns nothing, an isEmpty method that takes no argument and returns a boolean, and possibly a size method that takes no argument and returns an int (the current size). Optionally you can have a print method that takes no argument, returns nothing, but prints the contents of the stack to standard output as a side-effect.
Look in your textbook if you don't understand any of this.
Write a skeleton class that has that stuff but has empty method bodies. Then fill in the method bodies. It may be easier to understand that way.

Similar Messages

  • Compile error in drop out stack program

    I have a compile error "Cannot find symbol" Symbol: constructor Node(E, dropOutStack.Node<E> on line 20
    line 20 : topStackRef = new Node<E>(obj, topStackRef);
    import java.util.*;
              public class dropOutStack<E>  {
                 private Node<E> topStackRef = null; //reference to first stack node
           //Node class     
              class Node<E> {
                    private E data; //data value
              private Node<E> next = null; //link to next node
              private Node<E> prev = null; //link to previous node
              private Node(E dataItem) {
                   data = dataItem;
                 public E push(E obj) {
                        topStackRef = new Node<E>(obj, topStackRef);
                   return obj;
               public E pop() {
                         if (empty()) {
                        throw new EmptyStackException();
                   else {
                        E result = toStackRef.data;
                        topStackRef = topStackRef.next;
                        return result;;
               public E peek() {
                         if (empty()) {
                        throw new EmptyStackException();
                   else {
                        return topStackRef.data;
               public boolean empty() {
                         return topStackRef == null;
               public static void main(String [] args) {
               Node<String> itemStack = new Node<String>();
               String[] items = {"Item1", "Item2", "Item3", "Item4", "Item5"};
               for (int i = 0; i < 5; i++) {
                    int itemNumber = nextInt(i);
                   itemStack.push(items[itemNumber]);     
               System.out.println(itemStack);
           

    Anyways. I need help with the logic. As far as I
    know, DropOut stacks cannot return something that has
    been poped or removed. if the operation (performed n
    times) is n+1 times.No empty stack can be popped, if that's what you're saying.
    If you examine your assignment, it describes special behavior for drop-out stacks during the push method. It says that stacks are made with a given size, and that when the stack is full, subsequent pushes cause the least-recently-pushed element to drop out.
    Your code doesn't do that. It does some futzing during pop whose purpose is unclear to me.

  • Debugger Stack -- Programs

    Hello All
    In the debugger I can access all the programs on the stack and also can change the values there.  For instance when I put the following in debugger it works fine (SAPMV56A)vttk-tknum.  But since the brackets indicate a dynamic condition, the compiler throws an error, is there anyway I can access the same in a program.  Is there a way I can access it, if so could some please let me know.
    Thanks in advance for your help.
    Sunil Achyut

    Hi
    Use field-symbols:
    FIELD-SYMBOLS: <FS> TYPE ANY.
    DATA: FIELD(30) VALUE '(SAPMV56A)VTTK-TKNUM'.
    ASSIGN (FIELD) T0 <FS>.
    Max

  • Unchecked call: stack.push()

    Hi,
    When I compile my stack program I get an error saying unchecked call for the following line, where variable "s" is my stack, and tempno is a double I'm trying to push onto it:
    s.push(tempno);
    any ideas?

    Stack s = new Stack();
    obviously have
    import java.util.Stack;
    at the top. bit of a n00b at this kind of thing so not sure what this problem is at all!

  • BW Upgrade Tool

    Hi All,
    We are developing a BW Upgrade Tool. A part of which gives information about System Landscape that may be useful before or after upgrade for a Basis Consultant. Following information is obtained as a output of the tool. So could you please glance through it & tell me is this information is relevent and what more should be there?
    As I'm a BW consultant I have very little knowlege of Basis.
    System status overview 
      SAP version          640
      operating system     Windows NT
      machine type         2x Intel 801586 (Mod 2 Step 7)
      node name            SAPBL5
      SAP system id        560
      database system      ORACLE
      database name        BL5
      database host        SAPBL5
      database owner       SAPBL5
      rsyn
      IP address           172.25.8.121
      kernel release       640
      database library     OCI_920_SHARE
      kernel compiled      NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10 Aug 21 2005 23
      kernel patch level   87
      supported SAP vers.  610, 620, 630, 640
      supported database   ORACLE 8.1.7.., ORACLE 9.2.0.., ORACLE 10.1.0..
      valid OP system      Windows NT 5.0, Windows NT 5.1, Windows NT 5.2
      OP system release    5.0
      ABAP load version    1521
      CUA load version     15
      kernel kind          opt
      relinfo              valid
      hot package level    13                                                         
    Oracle 
      Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
      PL/SQL Release 9.2.0.6.0 - Production
      CORE     9.2.0.6.0     Production
      TNS for 32-bit Windows: Version 9.2.0.6.0 - Production
      NLSRTL Version 9.2.0.6.0 - Production
      disp+work information
      kernel release                640
      kernel make variant           640_REL
      DBMS client library           OCI_920_SHARE
      DBSL shared library version   640.00
      compiled on                   NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10
      compilation mode              Non-Unicode
      compile time                  Aug 21 2005 23:40:31
      update level                  0
      patch number                  87
      source id                     0.087
      supported environment
      database (SAP, table SVERS)   610
                                    620
                                    630
                                    640
      DBMS server
         ORACLE 8.1.7..
         ORACLE 9.2.0..
         ORACLE 10.1.0..
      operating system
      Windows NT 5.0
      Windows NT 5.1
      Windows NT 5.2
      disp+work patch information
      ( 0.001) Strings in Inputfields cut off (note 676835)
      ( 0.001) Block insert not stable (note 699411)
      ( 0.001) Sending the SAP logon ticket to SAPJ2EE server (note 691253)
      ( 0.001) TPDA: Exclusive DBG Session Fix (note 698737)
      ( 0.001) SNC-enabled RFC connections (type 3) to unicode systems (note 695205)
      ( 0.001) Loop where with move of C field to N field (note 699528)
      ( 0.001) Multiple instances of same subscreen and f4 ocx (note 698564)
      ( 0.001) ABAP Unit: Support for calling private fixture methods (note 690059)
      ( 0.001) Bidi printing patch collection (note 353987)
      ( 0.001) Problems while debugging a dynpro (flow logic) (note 689633)
      ( 0.001) Sending the SAP logon ticket to SAPJ2EE server (note 691253)
      ( 0.001) SQL Trace: fix error in program name filter (note 697685)
      ( 0.001) Dynamic Invoke Class Constants Defaults (note 701926)
      ( 0.001) Empty title + varying line size (note 671796)
      ( 0.001) RTM/AAB logging inside HTTP request (note 687116)
      ( 0.001) Assertions/BPs: core during RFC (note 700868)
      ( 0.001) ITS ToolBar: toggle button state, get icon name (note 673134)
      ( 0.001) Implicit default table parameters (note 700146)
      ( 0.001) Ignore HTTP-server requests during ITS-processing (note 700871)
      ( 0.001) Kernel Methods: signature of c-macros changed (note 703161)
      ( 0.001) Dynamic Invoke Abstract Inherited Implemented (note 703413)
      ( 0.002) CST patch collection 50 2003 (note 687395)
      ( 0.002) TPDA: patch collection (note 703735)
      ( 0.002) LOOP ... WHERE memory leak (note 703397)
      ( 0.002) RUNT_ILLEGAL_SWITCH during garbage collection (note 702442)
      ( 0.002) Some errors in the debugger with special fieldnames (note 704384)
      ( 0.002) CALL TRANSFORMATION exceptions (note 701467)
      ( 0.002) HTML Escaping of ICF error documents (note 626073)
      ( 0.002) HTTP/External Debugging for RFC (III) (note 668256)
      ( 0.002) JavaScript: enhance roll ability in double hash code (note 703026)
      ( 0.002) Do not enter memcpyRChk during Cache reorg. (note 447519)
      ( 0.002) Dynamic types: get_components hat non unqiue ids (note 703020)
      ( 0.002) ST: initialize result STRING (note 703615)
      ( 0.002) Open SQL: joining tables w/ and w/o client (note 703710)
      ( 0.002) Output error by WRITE (*) using conversion exits (note 677893)
      ( 0.002) Avoid invocation of garbage collector in certain cases (note 704554)
      ( 0.002) ST: Load Size (note 705269)
      ( 0.002) Allocation strategy in ABAP shared objects (note 705956)
      ( 0.003) Correction of design error in Secure Storage (note 702647)
      ( 0.003) Unjustified syntax error when SETUP, TEARDOWN (note 705308)
      ( 0.003) Incoming UTF-8 RFC use UTF-8, not non-Unicode (note 647495)
      ( 0.003) ICU shared libraries upgrade (note 519753)
      ( 0.003) Sapdext: prevent loop of rabax DYNPRO_SAPDEXT_LOOP (note 703374)
      ( 0.003) Oracle multibyte codepage: Incorrect LIKE evaluation (note 695899)
      ( 0.003) Downward compatibility of table statistics (note 707005)
      ( 0.004) Correctly adapt occu of RTTI tables (note 707619)
      ( 0.004) AAB: truncated subkey values (note 708269)
      ( 0.004) Dbbuf: avoid deadlocks in export/import buffer (note 496511)
      ( 0.004) ST: no deserialization map (note 708597)
      ( 0.004) ITS TextEdit: selection functions improved (note 669904)
      ( 0.004) ITS TextEdit: new textstream interface (note 695802)
      ( 0.005) Memory in tmpfs is not released correctly (note 706071)
      ( 0.005) CST patch collection 09 2004 (note 708621)
      ( 0.005) CCMS: agent cannot monitor standalone enqueue server (note 694057)
      ( 0.005) Wrong Fido entries (note 708789)
      ( 0.005) ST: Apply in Loop (note 710150)
      ( 0.005) ST: xml header (note 708787)
      ( 0.005) UTF-8 writer; default namespace; lang(); external options (note 709649)
      ( 0.005) IMPORT: lang key handling (note 512518)
      ( 0.005) HashTab SHO-Read MoveToFront-Heuristik (note 707891)
      ( 0.005) Avoid shortdump DEBUGGER_ILLEGAL_VALUE in abDbgDisVar (note 708356)
      ( 0.005) Making RFC calls with an empty password (note 662390)
      ( 0.005) SYSTEM_CORE_DUMPED in addIDENT (gen/scsymbc.c) (note 685625)
      ( 0.005) SHO: cloning of objects, rehash at detach (note 708843)
      ( 0.006) Print control buffer overflow (note 707500)
      ( 0.006) InitStor:  missing free (note 707929)
      ( 0.006) Free_Area/Instance (note 709558)
      ( 0.006) Shared Objects core at table update (note 712739)
      ( 0.006) BOM / XmlDecl bug (note 592857)
      ( 0.006) Max shared string size (note 592857)
      ( 0.006) Default values of exp/imp function parameters (note 712280)
      ( 0.006) RTM bugfix in get_classname (note 711420)
      ( 0.006) SM51: Allow more than 1000 patch textes altogether (note 712811)
      ( 0.006) C-Call AB_GET_COUNTRY (note 685207)
      ( 0.006) TPDA: Avoid duplicate breakpoints (note 713456)
      ( 0.006) Too many frame characters (note 671796)
      ( 0.006) Check type load time stamp (note 713492)
      ( 0.006) Prevent two short dumps in one second (note 711982)
      ( 0.006) Default values of exp/imp function parameters (2) (note 712280)
      ( 0.007) Default values of exp/imp function parameters (3) (note 712280)
      ( 0.007) RFC Patch Collection  11.2004 (note 715274)
      ( 0.007) ST: Apply in Loop, Variables (note 710150)
      ( 0.007) ST: XML Position in Exception (note 715879)
      ( 0.007) Two Phase Pbag Search (note 713493)
      ( 0.007) LOAD_PROGRAM_CLASS_MISMATCH (note 716456)
      ( 0.007) Syntax error with VERI STRUCTINFO (note 716353)
      ( 0.007) XSLT Core by interface methods (note 709857)
      ( 0.007) Clean prev user after wp restart (note 715877)
      ( 0.007) Debugging rfc after server cleanup (note 715881)
      ( 0.007) CST patch collection 12 2004 (note 716915)
      ( 0.007) CLUSTD converter (deep) / EXPORT (SAP_UINT) (note 612359)
      ( 0.007) Core dump in LOAD_PROGRAM_CLASS_MISMATCH correction (note 716456)
      ( 0.007) SYSTEM_CORE_DUMPED at ATTACH / DETACH (note 718666)
      ( 0.008) SLIN: 640 AKK problem with SYNT_EXT_INFO (note 717012)
      ( 0.008) Error in ab_HshSetDelete (note 719413)
      ( 0.008) AKK violation: Newly appearing syntax error (note 719142)
      ( 0.008) SYSTEM_CORE_DUMPED in sc_program_env (gen/scsymbc.c) (note 719139)
      ( 0.008) Fix charref parsing (note 592857)
      ( 0.008) ALEWEBDOWNLOAD in Unicode systems (note 676835)
      ( 0.008) Support the displaying of  XML Docs in the ITS (note 717380)
      ( 0.008) Open SQL: missing syntax error message texts (note 710454)
      ( 0.008) HTTPS proxy authentication in ICF (note 717995)
      ( 0.008) Diag protocol: multiple codepages (note 621992)
      ( 0.008) Codepage conversion for PDF based jobs (note 719630)
      ( 0.008) Missing dynamic Texts in GUI-Status (note 717870)
      ( 0.008) READ DATASET: Suppress conversion exception if requested (note 709832)
      ( 0.008) Userswitch Inbound-/Outbound-Scheduler (note 212742)
      ( 0.008) CCMS Monitoring Patch Collection 2004/2 (note 694057)
      ( 0.008) SCANNER_MISSING_MESSAGE (note 719396)
      ( 0.008) Unicode: Core Dump in build_initrec, Modul dbntab (note 717717)
      ( 0.008) Snc/accept_insecure_rfc=U for system-to-system calls (note 713495)
      ( 0.009) Error in ab_HshSetDelete (II) (note 719413)
      ( 0.011) Error in ab_HshSetDelete (III) (note 719413)
      ( 0.011) Scroll BCALV_TEST_LIST -> scrolls correctly (note 721384)
      ( 0.011) Userswitch Inbound-/Outbound-Scheduler (note 716263)
      ( 0.011) ST: exception information; littleEndian; tables (note 715879)
      ( 0.011) ST: exception information; littleEndian; tables (note 720364)
      ( 0.011) Exceptions in CALL SCREEN (note 720908)
      ( 0.011) TPDA: prepare fix for dynp debugging (note 719967)
      ( 0.011) RSQL: Correction for MODIFY DBTAB FROM ITAB (note 716037)
      ( 0.011) Enhancements for ITS (note 720738)
      ( 0.011) Avoid short dump LOAD_NOT_FOUND_AFTER_GEN (old timestamp) (note 615022)
      ( 0.011) Display data references in the ABAP debugger (note 721223)
      ( 0.011) remove semaphore families and reorganize all ip__libs (note 721885)
      ( 0.012) Statistics: wrong data in rfc client destination records (note 724253)
      ( 0.012) Wrong length in copy operation in func check_usobt() (note 724528)
      ( 0.012) CST patch collection 15 2004 (note 723952)
      ( 0.012) Invalid Method Call Syntax (note 722346)
      ( 0.012) Invalid Warnung For Class Type (note 722347)
      ( 0.012) Update Memory Inspector (note 684660)
      ( 0.013) Wrong length in copy operation in func check_usobt() (note 724528)
      ( 0.013) Shared Objects: data references and detach (note 722884)
      ( 0.013) Selecting a context menu entry cause session hang up (note 713598)
      ( 0.013) MOVE_TO_LIT_NOTALLOWED with READ ... TRANSPORTING (note 722778)
      ( 0.013) Fix for searchhelp showing only one result value (note 697295)
      ( 0.013) Using keys in dropdown listboxes if no value is supplied (note 717871)
      ( 0.013) ITSP: Hitlist in Unicode systems (note 676835)
      ( 0.013) ShmFreeRemoveInactiveLocks with 2 locks (note 709558)
      ( 0.013) Shared Objects - itab line reference after detach (note 721190)
      ( 0.013) HTTPS proxy authentication in ICF (II) (note 717995)
      ( 0.013) Code pages, languages and locales, packet 37 + 38 (note 447519)
      ( 0.013) Code pages, languages and locales, packet 37 + 38 (note 722638)
      ( 0.013) Ixml_stl / runt / tidy (note 592857)
      ( 0.013) Empty dynprolist does not cancel control rendering any more (note 718292)
      ( 0.013) Enhancements for ITS (note 720738)
      ( 0.013) No debug after Dynp RABAX (note 721693)
      ( 0.013) Multiple instances of same subscreen and f4 ocx (2) (note 698564)
      ( 0.014) ITS640, supporting sap-accessibility (note 676835)
      ( 0.014) XSLT: Unicode in XPath Expressions (note 613113)
      ( 0.014) Search help and focus (note 728722)
      ( 0.014) Ab_PrepareStrh with lenght 0 return not NULL (note 729435)
      ( 0.014) ITS640, Response Container removed (note 676835)
      ( 0.014) Missing print controls (note 707500)
      ( 0.014) Support of ISO Latin-1 characters for certificates (note 723016)
      ( 0.014) EVENT parameter: LIKE, TYPE LINE OF not evaluated (note 724406)
      ( 0.014) MINCHAR, MAXCHAR wrong value (note 724304)
      ( 0.014) ITS640, supporting ~http_https on/off (note 676835)
      ( 0.014) ITS640, takeover logoff/exiturl (note 676835)
      ( 0.014) C-call for printing the cover page (note 720409)
      ( 0.014) Disabling ITS disables the 'Compiling...' progress indicator (note 725617)
      ( 0.014) Grid-View dump, Alewebdownload (note 676835)
      ( 0.014) Trfo Rabax Handling corrected (note 729202)
      ( 0.014) Code pages patch packet 39 (note 447519)
      ( 0.014) Memory allocation for strings reduced (note 721876)
      ( 0.014) READ ... BINARY for SORTED TABLE with attribute key (note 725720)
      ( 0.014) Bidi printing: Corrected rightadjustment of numbers (note 618988)
      ( 0.014) ITS640,takeover command logoff/endofsession SSO (note 676835)
      ( 0.014) CX_SHM_INCONSISTENT; CL_SHM_UTILITIES (note 727142)
      ( 0.014) Prevent 0x00 in database table SNAP (note 722444)
      ( 0.014) Error if print immediately for PDF based forms (note 727914)
      ( 0.015) Correct lookup on password history (note 732038)
      ( 0.015) CCMS Monitoring Patch Collection 2004/2 (note 694057)
      ( 0.015) Core in syntax check (offset length w/ interface comp.) (note 732367)
      ( 0.015) CST patch collection 18 2004 (note 730345)
      ( 0.015) Invalid sapgui codepage (note 700448)
      ( 0.015) NO_PDF flag for ADS spool jobs (note 685576)
      ( 0.015) FxReader set_error (note 722030)
      ( 0.015) Incorrect display of list search results in RTL mode (note 729558)
      ( 0.015) Support of ISO Latin-1 characters for certificates (note 723016)
      ( 0.016) CREATE for key table with default key (note 732922)
      ( 0.016) Rebuild rspoicon.c in krn/rspo (note 724736)
      ( 0.016) Tablesharing fault in MOVE-CORRESPONDING (note 732958)
      ( 0.016) Core at INSERT into table after SORT (note 733079)
      ( 0.016) Supporting ICF-Options for ITS (note 727137)
      ( 0.016) Cl_fx_reader update (note 722030)
      ( 0.016) ITS-Plugin 640: known problems (note 676835)
      ( 0.016) Enable ticket creation for ITS WebGUI/IAC (note 720738)
      ( 0.016) Invisible focus element (note 734746)
      ( 0.016) RFC legacy MDMP callers and Unicode callees (note 722193)
      ( 0.016) Redundant moves in itab operations (note 726657)
      ( 0.016) Attach_for_update returns shared lock (note 733184)
      ( 0.016) Application server hangs on Windows 2003 waiting for semaphore (note 724212)
      ( 0.016) ITS-Plugin 640: known bugs (note 676835)
      ( 0.016) 'CLASS ... FOR TESTING + INTERFACES' (note 722346)
      ( 0.016) Avoid SYSLOG message 'PXA recovery after reboot' (note 689497)
      ( 0.017) ST: alignment for variable-read (note 735543)
      ( 0.017) IMPORT: alignment handling for old exports (note 734897)
      ( 0.017) NT: sapstartsrv prozess auto restart feature (note 729945)
      ( 0.017) IMPORT: error with ignoring structure boundaries (note 737044)
      ( 0.017) Open SQL : Allow more than eight hints (note 735360)
      ( 0.017) Event SAP_SYSTEM_START with parameters (note 681516)
      ( 0.017) Sapgui 640 and tablecontrol column selections (note 735695)
      ( 0.017) Diag trace: unknown entries (note 736592)
      ( 0.017) Debugger: Auth. problems while saving table to local file (note 729616)
      ( 0.017) RFC Patch Collection 18 2004 (note 732744)
      ( 0.017) ABAP Shared Objects: Coredump at ATTACH WRITE (note 733969)
      ( 0.017) TIME_OUT oder Coredump in C-Funktion ab_ScanBase (note 733971)
      ( 0.017) ST: variables, iXML objects (note 737174)
      ( 0.017) destroyed dynpro load (note 207817)
      ( 0.017) Japanese characters were scrambled (note 736835)
      ( 0.017) XI-Editor (note 676835)
      ( 0.017) ITS-Plugin 640: known bugs (note 676835)
      ( 0.017) Correction in session management within function (note 676835)
      ( 0.017) SCAN STRUCTURE: GROUP BY in sub query (note 363992)
      ( 0.017) Segmentation Violation in db_ntab (Makro CHECK_ACC) (note 736340)
      ( 0.018) CREATE_DATA_UNKNOWN_TYPE during XML-ABAP deserialization (note 739134)
      ( 0.018) RUNT_INTERNAL_ERROR during XML-ABAP object (note 739233)
      ( 0.018) ST: deserialization with tt:copy (note 739825)
      ( 0.018) Dynpro Compress: CONTAINER_IGNORE for Table Control set (note 738808)
      ( 0.018) Code pages, languages and locales, packet 40 + 41 (note 447519)
      ( 0.018) RFC Patch Collection 18 2004 (note 732744)
      ( 0.018) Invalid sapgui codepage (note 700448)
      ( 0.018) ERROR trace: invalid value hacurrow hwcurrow (note 651566)
      ( 0.018) IMPORT: AS400 alignment handling (note 739164)
      ( 0.018) Forward POST parameter from ITS frameset (note 737798)
      ( 0.018) Code pages patch packet 42 (note 447519)
      ( 0.018) JavaScript linux64 correct INT_FITS_IN_JSVAL (note 740973)
      ( 0.018) CST patch collection 22 2004 (note 741110)
      ( 0.018) Login/password_charset, codeversion 'D' (note 735356)
      ( 0.019) Ixml shared memory corrections (note 592857)
      ( 0.019) CCMS Agent Patch Collection 2004/3 (note 694057)
      ( 0.019) ST: ignore irrelevant whitespace (note 742507)
      ( 0.019) Code pages patch packet 40 (NT) (note 447519)
      ( 0.020) NT: Optional sequential GUID generation (note 740418)
      ( 0.020) GUI_PATCHLEVEL for app server (note 591681)
      ( 0.020) List Tree, Hyperlinks (note 742066)
      ( 0.020) List Tree, Hyperlinks (note 742066)
      ( 0.020) New HTML(B) strEnc function (note 739619)
      ( 0.020) CST patch collection 25 2004 (note 744711)
      ( 0.021) Prepare for DBPROPERTIES (pack 44) (note 447519)
      ( 0.021) Missing wrapper object of class CX_SY_NO_HANDLER (note 745804)
      ( 0.021) XML-ABAP, SAP_BASIS 610: component names with namespaces (note 745935)
      ( 0.021) Possible Core after MESSAGE string TYPE 'X' (note 746144)
      ( 0.021) XSLT: Computation of xsl:sort attributes (note 746146)
      ( 0.021) SE30: Missing trace file after measurement (note 740184)
      ( 0.021) Wrong free of memory (note 745745)
      ( 0.021) NT: sapstartsrv fix for prozess auto restart feature (note 729945)
      ( 0.021) F1 on pushbuttons (note 744822)
      ( 0.021) ICF: Shortened Session-IDs in Developer-Traces (note 745722)
      ( 0.021) CALL TRANSFORMATION Option VALUE_HANDLING (note 727549)
      ( 0.021) CST patch collection 26 2004 (note 746373)
      ( 0.021) Invalid sapgui codepage (note 700448)
      ( 0.022) Alignment checks for packed numbers (note 747695)
      ( 0.022) Illegal dynpro state after RABAX (note 747694)
      ( 0.022) AsXML: suppress static interface attributes (note 747155)
      ( 0.022) Accept Dynpro Sourceversion 37 (note 743155)
      ( 0.022) ITS Plugin 640, known problems, item 23) security, buffer overwrite (note 676835)
      ( 0.022) Screens with GOS Containers (note 747140)
      ( 0.022) Empty search help dialogs (note 747270)
      ( 0.022) Too many SPOOL* files in global directory (note 749860)
      ( 0.022) New GUID and TID algorithm (note 650280)
      ( 0.022) Code pages patch packet 43 (note 447519) (note 447519)
      ( 0.022) Fixed a tight loop in julep, calling a function with an extra (note 747700)
      ( 0.022) ERROR trace: invalid value hacurrow hwcurrow (note 651566)
      ( 0.023) LZPL OTF driver (note 750002)
      ( 0.023) Correct 132-char limitation (note 750363)
      ( 0.023) RFC: additional returncode-check for ThSendToGui (note 685609)
      ( 0.023) TABLE_LINE_NOT_EXISTING at loop on a HASHED TABLE (note 750042)
      ( 0.023) INSERT of a loop reference into a hashed table (note 749075)
      ( 0.023) Semantics of the SUM statement (note 742683)
      ( 0.023) Diag enhancements for acc support (note 750543)
      ( 0.023) ITS-Plugin 640: Known problems (note 676835)
      ( 0.024) Error in step movenametab (note 745745)
      ( 0.025) HTTP debugging: Save memory ranking to local file (note 752659)
      ( 0.025) Avoid unnecessary calls to semaphore 49 (note 752473)
      ( 0.025) Buffer overflow in OMS command buffer (note 752977)
      ( 0.025) Correct handling of empty strings (note 740987)
      ( 0.027) Open SQL : Allow more than 8 hints in SELECT (note 754728)
      ( 0.027) Full path name to 255 char for temse (note 749150)
      ( 0.027) NT: Fix for occasional 'Service not started' error during Service inst (note 142100)
      ( 0.027) Diag trace: unknown entries (note 736592)
      ( 0.027) CST patch collection 28 2004 (note 751484)
      ( 0.027) Image does not fit (note 676835)
      ( 0.027) Strings and dynpro char fields (note 618120)
      ( 0.027) Core in ab_CxTableViewColOrder (note 751754)
      ( 0.027) ITS HTML Control: protocol not added if missing (note 747962)
      ( 0.027) Ixml stlport memory hole (note 545335)
      ( 0.027) CST patch collection 30 2004 (note 755912)
      ( 0.027) Wrong output of japanese characters II (note 670069)
      ( 0.027) Empty spool list for NEW-PAGE PRINT OFF (note 750153)
      ( 0.027) ABAP List Structure Recognition (1) (note 751494)
      ( 0.027) SHO: Area-constructor at INVALIDATE, setting area-properties (note 751882)
      ( 0.028) SYSTEM_RUDI_INVALID at CREATE OBJECT o TYPE (t) (note 757122)
      ( 0.028) Wrong syntax error at INTERFACES (note 757284)
      ( 0.028) ABAP List Structure Recognition (2) (note 751494)
      ( 0.029) Missing PUBLIC addition of CLASS (note 759104)
      ( 0.029) Open SQL: problem with extended portability check (note 758763)
      ( 0.029) SYSTEM_CORE_DUMPED in ABAP generation for type aliases (note 759109)
      ( 0.029) Codepage Conversion: New flag for Bidi support (note 716200)
      ( 0.029) ITS up/download: upload of files to unicode R/3 incorrect (note 758362)
      ( 0.029) Fixed multiple HtmlPPs bug for resourceless services (note 759228)
      ( 0.029) ITS640 Known bugs Item 26 (note 676835)
      ( 0.030) Check for infinite loops in random number generator (note 759735)
      ( 0.030) ABAP-XML transformation with PARAMETERS infloops (note 746332)
      ( 0.030) Correct SQL EXPLAIN function on UNICODE systems (note 760883)
      ( 0.030) Extend Structure Buffer (note 761324)
      ( 0.030) NT: work processes don't start due to different memory layout (note 761159)
      ( 0.030) RSQL: Correction for DELETE DBTAB FROM ITAB (note 753333)
      ( 0.030) Correct focus handling on F1 help (note 761377)
      ( 0.030) Dbbuf: invalid data read from single key buffer (note 625242)
      ( 0.030) DDIC-Types used by CALL METHOD ... CALLING (note 761843)
      ( 0.030) Warning at CALL METHOD (note 761933)
      ( 0.030) UTF-8 conversion for jobdata (note 739968)
      ( 0.030) CPIC calls for usertype SYSTEM, logon timestamping (note 760414)
      ( 0.030) DB Multiconnect: Closing idle secondary connections (note 762084)
      ( 0.030) TPDA: problems with BREAK-POINT ID  (note 762431)
      ( 0.030) ABAP List Structure Recognition (3) (note 751494)
      ( 0.030) SLC length (note 759208)
      ( 0.030) Corrected namespace handling (note 762678)
      ( 0.031) Correct INT4 I/O (note 627615)
      ( 0.031) No Selectionscreen generation for classes and interfaces (note 744856)
      ( 0.031) RABAX close unused snapfile (note 763333)
      ( 0.031) Data-References and ADD-CORRESPONDING (note 761850)
      ( 0.031) Code pages, languages and locales, packet 46 + 47 (note 447519)
      ( 0.031) SHO: DetachCommit with CompletionError (note 763653)
      ( 0.031) Code pages patch packet 48 (note 447519)
      ( 0.031) Fixed broken %-escaping of multibyte strings (note 763175)
      ( 0.031) Corrected dw_gui.sl linkage on hp platform (note 763292)
      ( 0.031) Runtime error UNEXPECTED_RUDI_TYPE (note 764185)
      ( 0.031) Runtime error SYSTEM_LOAD_OF_PROGRAM_FAILED (note 764186)
      ( 0.031) Runtime error SYSTEM_SHM_AREA_DETACHED (note 764187)
      ( 0.031) Runtime error SAPSQL_WA_WRONG_ALIGNMENT (note 764184)
      ( 0.032) SHO: DetachCommitCompletion failed (Part 2) (note 763653)
      ( 0.032) SHO free on local itab (note 749082)
      ( 0.032) Corrupted report sources/textes after unicode upgrade (note 765377)
      ( 0.032) Process OTF command BM in RTL (note 353987)
      ( 0.032) Trust-Manager: Error when encrypting PSE (note 765123)
      ( 0.032) Security Audit Log: some transaction starts not audited (note 763159)
      ( 0.032) CST patch collection 34 2004 (note 764321)
      ( 0.032) ABAP List Structure Recognition (4) (note 751494)
      ( 0.032) DYN_COMP_ILLEGAL with CREATE DATA (note 766330)
      ( 0.033) Reset SPATPAR flag (note 765605)
      ( 0.033) OMS support for AS400 (note 766732)
      ( 0.033) Open-SQL: SELECT INTO CORRESPONDING FIELDS and generic type of target (note 765822)
      ( 0.033) Rfc patch collection 35 2004 (note 766807)
      ( 0.033) Url form parameter scanning without = sign (note 764903)
      ( 0.033) ITS-Plugin 640: Known/fixed problems (note 676835)
      ( 0.033) ITS TextEdit Control: Text disappears after searchhelp (note 725839)
      ( 0.033) Code pages,converters (package 49) (note 447519)
      ( 0.033) NT: Check CPU timer frequency (note 532350)
      ( 0.033) Code pages patch packet 50 (note 447519)
      ( 0.034) Error in kernel call ABAP_CALLSTACK (note 769503)
      ( 0.034) Runtime error BCD_OVERFLOW converting empty strings (note 769508)
      ( 0.034) Core dump after implicit cast by ASSIGNING (note 766876)
      ( 0.034) Performance: do not read TSP02L for RDI/OTF (note 703798)
      ( 0.034) RFC patch collection 34 2004 (note 769890)
      ( 0.034) Gui scripting: missing loop field names (note 769420)
      ( 0.034) Integrated ITS: garbled hit lists (note 770161)
      ( 0.034) CST patch collection 37 2004 (note 770183)
      ( 0.035) PRINT_LINE_COUNT_TOO_LOW during printing (note 770335)
      ( 0.035) Wrong barcode printout (1) (note 770376)
      ( 0.035) Avoid syntax errors for correct usage of PROVIDE FIELDS (note 771600)
      ( 0.035) New frontend print for SAP GUI for HTML (note 771683)
      ( 0.035) Core or runtime error during modify on projection view (note 770318)
      ( 0.035) Unicode: RFC MDMP dest. garbled code pg., symptom S9 (note 647495)
      ( 0.035) ITS_Browser_Redirect und Content-Length (note 771183)
      ( 0.035) Fix memory corruption in move nametab / dipgntab (note 745745)
      ( 0.035) CALL TRANSFORMATION Parameter INITIAL_COMPONENTS (note 771161)
      ( 0.035) Forward POST parameter from ITS frameset (note 737798)
      ( 0.035) Ixml flush / bindata (note 545335)
      ( 0.035) Code pages,converter (package 51) (note 447519)
      ( 0.035) ITS640: process sap-sesscmd=USR_ABORT like OK-Code=/NEX (note 772251)
      ( 0.035) Core or runtime error during modify on projection view (note 770318)
      ( 0.036) PRINT_LINE_COUNT_TOO_LOW during printing (note 770335)
      ( 0.036) Active tabstrip button and F4 dialogs (note 772922)
      ( 0.036) Docker size and new i-mode (note 615047)
      ( 0.036) Paging related error trace entries (note 694628)
      ( 0.036) Logon error messages show '#' instead of digit chars (note 774211)
      ( 0.036) ITS Calendar: Set Color error fixed (note 767437)
      ( 0.037) AAB breakpoints in system programs (note 774627)
      ( 0.037) Update MemoryInspector II (note 684660)
      ( 0.037) CX_INVALID_TRANSFORMATION (note 773330)
      ( 0.037) Core at customer includes (note 774829)
      ( 0.037) TABLE_LINE with offset/length specification (note 774703)
      ( 0.037) ABAP: core dump at LIKE dref->*-component (note 772941)
      ( 0.037) Failed RFC system calls causing invalid SM20 records (note 774406)
      ( 0.037) ST: deserialization of type N (note 775699)
      ( 0.037) Conversion error in HTML Gui (note 775039)
      ( 0.038) Conversion exits with string parameters (note 776990)
      ( 0.038) Core in debugger data display (note 777203)
      ( 0.038) SLIN: Core dump while collecting cross ref data (note 776596)
      ( 0.038) Start transaktion via systemfunction DYNP_OKCODE_SET (note 776496)
      ( 0.038) Perfomance Fix READ DATASET in TEXT MODE (note 775375)
      ( 0.038) Structure alignment correction: Support for BIDI (note 716200)
      ( 0.038) CST patch collection 40 2004 (note 776283)
      ( 0.038) Steploop radio/checkbutton and label left/right (note 776514)
      ( 0.038) ITS 640 Plugin, known problems, issue 29 (note 676835)
      ( 0.038) Some bugs with lists in webgui fixed (note 762968)
      ( 0.038) ITS Up/Download: UrlDecode for Context Variable obsolet (note 766313)
      ( 0.038) ITS TextEdit: readonly mode in netscape fixed (note 768063)
      ( 0.038) Tolltip texts for columntree icons (note 776561)
      ( 0.038) Known bugs ( issue no 28 ) (note 676835)
      ( 0.038) Closing dangling RFC connections used with printing (note 753080)
      ( 0.038) Introducing strwidth (note 745460)
      ( 0.038) Comparing with a LOOP reference (note 767597)
      ( 0.038) SHO: Cores in GC (note 774465)
      ( 0.038) Trigger Garbage Collection when many PCBs used (note 628303)
      ( 0.038) ABAP-PH: Missing Unicode errors in syntax-check (note 777451)
      ( 0.038) RFC legacy caller, dump on LANG=space in Unicode system. (note 722193)
      ( 0.038) Code pages,converter (package 52) (note 447519)
      ( 0.038) Problems during transport into a Unicode system (note 775114)
      ( 0.038) No Frames Print Parameter (note 777337)
      ( 0.038) List display in Debugger (note 777338)
      ( 0.038) Sapgui/theme default value (note 610274)
      ( 0.038) No initialization of parameter of DESERIALIZE_HELPER (note 777339)
      ( 0.038) Automatic confirmation of Warnings (note 778467)
      ( 0.038) RUNT_ILLEGAL_SWITCH when resetting internal tables (note 778376)
      ( 0.039) # in Asian archived print lists (note 778095)
      ( 0.039) ABAP-SY: Core for dyn. arguments > 255 chars (note 777882)
      ( 0.039) PXA: Introducing PXA_CACHE (note 746984)
      ( 0.039) RTTI DDIC output length > 255 (note 777826)
      ( 0.039) RFC Patchcollection 41 2004 (note 779720)
      ( 0.039) Dynpro: TabStrip and Scrollbar SubScreen Area with CONT_IGN (note 673831)
      ( 0.040) No implicit commit during debugging (note 778582)
      ( 0.040) RFC Patch collection 40 2004 (note 778710)
      ( 0.041) Workprocess hangs on dumping OS process information when memory is low (note 781518)
      ( 0.041) BIDI: Support for fieldwise base direction (note 779879)
      ( 0.041) Foreign key check and chectables with strings (note 780473)
      ( 0.041) ALV grid view entries are not transferred (note 777995)
      ( 0.041) Agate crash when the last line of a grid view is copied (note 775672)
      ( 0.041) ALV grid view column header is not displayed (note 775679)
      ( 0.041) ALV grid view column selection incorrect after dial (note 776587)
      ( 0.041) ALV Gridview 'PAGE UP' leads to the announcement first (note 780570)
      ( 0.041) ITS-PLUGIN: Message handling for IAC (note 779543)
      ( 0.041) Suppress short dump lists in IACs (note 779543)
      ( 0.041) ITS640: enhanced sap-sesscmd handling for webgui (note 772251)
      ( 0.042) Provide kernel functionality for VMIT (note 781997)
      ( 0.042) Rollout rabax save (note 778921)
      ( 0.042) AB_GET_TEXT_FROM_CLUSTER:handling of 50 warnings per statement (note 816246)
      ( 0.059) ABAP-SY: Recursive INCLUDE nesting for classes (note 816247)
      ( 0.059) Error CALL_FUNCTION_ILLEGAL_P_TYPE (note 611004)
      ( 0.059) Diag protocol: multiple codepages (note 621992)
      ( 0.059) Replace strtok with ucafinduca (note 498369)
      ( 0.059) DBIF_RTAB_OUT_OF_CURSORS when using ITS (note 819494)
      ( 0.060) ALV Gridview optimized column width (note 766169)
      ( 0.060) SELECTION-SCREEN INCLUDE PARAMETERS and Listboxes (note 819057)
      ( 0.060) Release independent sapevt (note 802172)
      ( 0.060) RSQL: Correction concerning queries on projection views (note 809297)
      ( 0.060) Check CI include (note 818942)
      ( 0.060) Wrong change record when deactivating initial password (note 819855)
      ( 0.060) TRANSFER to file: Don't truncate East-Asian STRINGs (note 820055)
      ( 0.061) SAAB: Short dump with the minutes announcement in TA SAAB (note 821358)
      ( 0.061) NO F6H message by no record found in TST03 (note 806588)
      ( 0.061) Javascript: adopt binding to changes in note 800346 (note 821710)
      ( 0.061) Enable -SAP- encoding (note 819976)
      ( 0.061) BIDI: Support for fieldwise base direction (note 779879)
      ( 0.061) Menu: dynamic function texts (note 821701)
      ( 0.061) Batch-Input: SYSLOG TREAD - tcode active error (note 822479)
      ( 0.061) RFC patch collection 8 2005 (note 821964)
      ( 0.061) DB Multiconnect: Workprocess restart destroys connection mapping (note 796862)
      ( 0.061) ABAP-SY: Recursive INCLUDE nesting for classes (2) (note 822698)
      ( 0.061) Correction of INF -391 error (note 806993)
      ( 0.062) New frontend print (note 821519)
      ( 0.062) RFC sends large datapackets uncompressed to the SAPGUI (note 824428)
      ( 0.062) Load balance with SNC, provide sncname (note 817854)
      ( 0.062) Menu: dynamic function texts (note 821701)
      ( 0.062) Correct abend in update task debugging (note 824772)
      ( 0.062) Shared Objects: String-Sharing (note 824261)
      ( 0.063) Sharing hash tables (note 825452)
      ( 0.063) Corrections to the Unicode interface (note 522119)
      ( 0.063) Dispatch events in IMC (note 820333)
      ( 0.063) Call transformation: writing to string impr (note 824676)
      ( 0.063) Avoid DBIF_NTAB_TABLE_NOT_FOUND during garbage collection (note 826350)
      ( 0.063) ST: standalone decl / nested call in loop (note 825516)
      ( 0.063) XSLT: Debugger / escaping in namespaces (note 825517)
      ( 0.063) Missing utf8-support in agi-default for webgui (note 825652)
      ( 0.063) Code pages patch packet 62 (note 447519)
      ( 0.063) RUAPO4.1 ~DISCONNECTONCLOSE parameter not working (note 827375)
      ( 0.063) Do no core dump, when some pointers are missing in (note 563769)
      ( 0.064) Spooler level 2 trace bug (note 827514)
      ( 0.064) RTTI lock program (note 822900)
      ( 0.064) Strcpy_sU data misaligned on ntia64 (note 826536)
      ( 0.064) Enabling MSCS support for SAPMMC (note 828432)
      ( 0.064) ITS 6.40: control name = container name for IACs (note 828800)
      ( 0.064) Correct name for tpool proxies and check sum (note 823035)
      ( 0.065) Invalid sapgui input data (note 829096)
      ( 0.065) Protect read-only fields (note 830700)
      ( 0.065) Comparing data refs created via LOOP REF INTO (note 830819)
      ( 0.065) ABAP_ASSERT in extri loop, classical debugger (note 803140)
      ( 0.065) Would core in various ABAP/Dynp situations (note 830710)
      ( 0.065) ABAP-SY: AKK violation for DATA in system include (note 826284)
      ( 0.065) ABAP-SY: Coredump for >50 warnings per statement (2) (note 816246)
      ( 0.065) READ opt. for over specified non-matching key (note 825670)
      ( 0.065) INTERFACE ... DEFFERED in class pools (note 831232)
      ( 0.065) SE30: Avoid error nr 5 for CALL TRANSACTION USING (note 170470)
      ( 0.065) RFC patch collection 12 2005 (note 831456)
      ( 0.066) Rfc Patch Collection 11 2005 (note 828000)
      ( 0.066) FX: utf-8 conv error (note 825516)
      ( 0.066) Core in dy_tx_param() (note 831528)
      ( 0.066) Diagograph(): buffer size check (note 832017)
      ( 0.066) Batch-Input: No Message 00 255 when modify the ok-code (note 833001)
      ( 0.066) PXA/ATRA Patch Collection 12/2004 (note 802791)
      ( 0.066) Search help: F4 within F4 (note 832866)
      ( 0.066) EXCP_INTERNAL_ERROR during debugging (note 833453)
      ( 0.067) ABAP GC on 32-bit platforms when more than 3.4 GB used (note 833336)
      ( 0.067) Diag enhancements for acc support (note 750543)
      ( 0.067) SYSTEM_RUDI_INVALID at ASSIGN with length (note 834179)
      ( 0.067) SHO tab sharing hash collision error (note 829508)
      ( 0.067) SHO: ABAP_ASSERT during update lock with ASSIGING (II) (note 795666)
      ( 0.067) Kernel change for hide/display gridlines and customizing (note 825864)
      ( 0.067) CCMS Monitoring Patch Collection 2005/2 (note 809007) (note 809007)
      ( 0.067) Missing syntax error messages (note 826436)
      ( 0.067) Debugger (jump to statement)' (note 834640)
      ( 0.067) Integrated ITS 6.40: disconnectonclose for IACs in int. ITS)' (note 827375)
      ( 0.067) New ABAP Debugger problems with stack navigation (note 832192)
      ( 0.068) Re-sort of OTF table in ABAP (note 353987)
      ( 0.068) Spooler: Garbage text in REALSRV field (note 835703)
      ( 0.068) Integrated ITS and sap webdispatcher (note 835762)
      ( 0.068) OpenSQL: General support for ABAP-Hints on MAXDB (note 652096)
      ( 0.068) Open SQL: dynamic LIKE and ABAP field as pattern (note 835522)
      ( 0.068) Classic Debugger: itab search & download, watchpts (note 835010)
      ( 0.068) Int. ITS 6.40: ~disconnectonclose for IACs always turned on (note 827375)
      ( 0.068) ISeries: fdopen handling fixed (note 833895)
      ( 0.069) Avoid lockwaits on table TMDIR while debugging (note 837656)
      ( 0.069) Integrated ITS, version information in HTML page (note 838549)
      ( 0.069) Searchhelp select otions, select for blanks (note 836742)
      ( 0.069) RFC logon - security bugfixes (note 830528)
      ( 0.069) Memory leak using table sharing (note 837518)
      ( 0.069) New checks for DDIC type inconsistencies (note 837077)
      ( 0.069) Update list structure recognition 2 (note 751494)
      ( 0.069) WRITE UNDER and COMMON PART (note 825434)
      ( 0.069) Code pages, converters, locales. Package 636465 (note 447519)
      ( 0.069) SORTED TABLE: Memory consumption after MOVE/IMPORT (note 834807)
      ( 0.069) Shared Objects: Multi-Attach; Get_Current_Usage (note 838683)
      ( 0.069) Clear RTM buffer after flushing (note 838305)
      ( 0.069) Core dumps during session end in rare cases (note 838305)
      ( 0.069) CST patch collection 15 2005 (note 834501)
      ( 0.069) ASCII ABAP stack programs and SCS Unicode programs in one dir (note 837731)
      ( 0.069) Actionbar entries without fastpath (note 548709)
      ( 0.069) Fixes for enhanced ASCII support on OS/390 (note 595331)
      ( 0.069) LSR list ourput IV (note 751494)
      ( 0.069) Diag protocol: multiple codepages (note 621992)
      ( 0.069) Itab component access with length specification (note 838229)
      ( 0.069) Fixes for enhanced ASCII support on OS/390 (note 595331)
      ( 0.069) Integrated ITS, problems during conversion of indication (note 831959)
      ( 0.069) Userswitch Inbound-/Outbound-Scheduler (note 716263)
      ( 0.069) Toolbar control remember scroll position (note 806313)
      ( 0.069) Shared Objects: Performance Detach_Commit (note 838596)
      ( 0.070) Revert UTC BufferSync Timestamp until R3Trans and TP (note 749911)
      ( 0.071) Patch collection - logon routine, 1/2005 (note 835038)
      ( 0.071) 16-Byte alignment in rstg_get (note 837410)
      ( 0.071) CCMS RZ20: missing green alerts (note 839672)
      ( 0.071) CCMS RZ20: missing green alerts (note 746193)
      ( 0.071) D021S get each field separately (note 687334)
      ( 0.071) SE30: Avoid error nr. 5 in case of LEAVE SCREEN (note 170470)
      ( 0.071) Performance of compare for shared internal tables (note 839691)
      ( 0.071) Fixed textedit control problem with multipart/form-data ctype (note 841196)
      ( 0.071) ICM crash in HttpPlugInWriteErrorText (note 842609)
      ( 0.072) Enable printing of arabic-indic digits (note 842887)
      ( 0.072) Core after SORT within a LOOP (note 841997)
      ( 0.072) Its-plugin: Overlap of check boxes and radio buttons (note 839070)
      ( 0.072) Usob_authvaltrc for 610/620 (note 842157)
      ( 0.072) Program groups and CFW-modules (note 821158)
      ( 0.072) Program groups and CFW-modules (note 835127)
      ( 0.072) SELECT FOR UPDATE: release locks after commit (note 843042)
      ( 0.072) Set algorithm und key length of SSF PSEs (note 836367)
      ( 0.072) Downport rnd (no effect for disp+work) (note 836008)
      ( 0.073) Template invalidation fixed (note 840220)
      ( 0.073) ITS Up/Download: its plugin error in unicode R3 (note 841263)
      ( 0.073) ITS HTML Viewer: parameters of the sapevent incorrect (note 829669)
      ( 0.073) Correct quickinfo in TC (note 842040)
      ( 0.073) CLUSTER: COMP (note 772941)
      ( 0.076) Search help in mixed mode apps (note 849476)
      ( 0.076) ITS: Empty screen after warning message (note 849337)
      ( 0.076) Toolbarbutton menu (note 848805)
      ( 0.076) Searchelp error in MASSD (note 848289)
      ( 0.076) TABLE_LINE_NOT_EXISTING with MODIFY ... WHERE (note 845378)
      ( 0.076) RFC patch collection 22 2005 (note 850305)
      ( 0.076) Performance Verification Infrastructure-I (note 803789)
      ( 0.077) Catch zero length in ST command (OTF RTL handling) (note 353987)
      ( 0.077) Spooler: CJK string not printed (note 849315)
      ( 0.077) SapSSL-Update, support for OS/400 ASCII kernels (note 772517)
      ( 0.077) ST: Loops; deserial-state; extensibility (note 849075)
      ( 0.077) Dbbuf: enhance performance of single key buffer (note 826729)
      ( 0.077) Unsharing a HASHED TABLE within a loop (note 852036)
      ( 0.077) Fix memory corruption in move-nametab (note 745745)
      ( 0.077) Position of arabian printout (note 849072)
      ( 0.077) DBIF_NTAB_TABLE_NOT_FOUND during garbage collection-II (note 826350)
      ( 0.077) Integrierter ITS, MS Office 2003 session timeout (note 846857)
      ( 0.077) XSLT/iXML: Renderer memory consumption (note 844722)
      ( 0.077) Ixml file streams (note 834242)
      ( 0.077) I18n code page package 69 (late write permission) (note 447519)
      ( 0.077) I18n code page package 67+68 (F5,UMGCCTL,noDB,L) (note 447519)
      ( 0.077) ALV Grid:F4-Help on non-editable fields enabled (note 849656)
      ( 0.077) ALV Gridview dropdown lists are unavailable (note 850272)
      ( 0.077) ALV Gridview remember scroll position (note 839170)
      ( 0.077) Trim content of modified cells (note 850100)
      ( 0.077) CST patch collection 24 2005 (note 851195)
      ( 0.078) Syslog Message for wrong tablename in READ TABLE dbtab (note 851286)
      ( 0.078) CCMS Monitoring Patch Collection 2005/3 (note 809007) (note 809007)
      ( 0.078) Additional legacy RFC dest setup info (note 722193)
      ( 0.078) PROVIDE FIELDS: fix merging of intervals (note 853666)
      ( 0.078) ITS HTML Viewer: incorrect script paths for inserted scripts (note 853051)
      ( 0.078) Memory requests and error traces (note 853608)
      ( 0.078) Ab_BtreeBlockDelete() core on linuxia64 (note 854073)
      ( 0.078) HTML Tidy: get/set option (note 843855)
      ( 0.078) DBIF_NTAB_TABLE_NOT_FOUND during garbage collection (III) (note 826350)
      ( 0.078) Avoid short dump DBIF_REPO_PART_NOT_FOUND (note 854261)
      ( 0.078) Avoid short dump DBIF_REPO_PART_NOT_FOUND (note 854261)
      ( 0.079) PRESCRIBE barcode and subscript bu (note 854502)
      ( 0.079) SORT: use new GETST_TASK_NO_ETRACE (note 193529)
      ( 0.079) Call Transformation: initial refs; core in rabax (note 854572)
      ( 0.079) iXML: namespace context; XSLT: meta tag (note 854571)
      ( 0.079) Problems with CFW modules and ABAP Stack (GC) (note 856468)
      ( 0.079) Ab_BtreeBlockDelete() core, linuxia64 (II) (note 854073)
      ( 0.079) ALV Gridview RowID was not supplied correctly (note 853062)
      ( 0.079) Problems with CFW modules and ABAP Stack (GC) (II) (note 856468)
      ( 0.080) TRMSG-Messages for CALLING method (note 857551)
      ( 0.080) Fill attribute sqlmsg in class CX_SY_NATIVE_SQL_ERROR (note 853002)
      ( 0.080) ITS Up/Down: upload of files in BIN format (note 855475)
      ( 0.080) IXML Miniparser memory consumption (note 426351)
      ( 0.080) Get transaction code from SPA (note 840798)
      ( 0.080) File handling (note 846259)
      ( 0.080) JavaScript more than 65536 lines (note 858307)
      ( 0.080) Rabax trace for section (note 858362)
      ( 0.080) Protect read-only fields (II) (note 842040)
      ( 0.080) List input and control focus (note 858331)
      ( 0.080) Trust-Manager: create PSEs with keylength > 512 bit (note 509495)
      ( 0.080) Correct call of CTL moduls in 6.40 (note 858636)
      ( 0.080) RFC patch collection 26 2005 (note 858707)
      ( 0.080) SncSetMyName() in Unicode-binaries ignores name (note 856809)
      ( 0.080) MaxLength attribute is set to -1 if the backend is Unicode (note 758007)
      ( 0.081) Integrated ITS, error message on transaction selection screen (note 859213)
      ( 0.081) Acces violation in fct. EsIGblMthSlotsPrepare (note 860031)
      ( 0.081) Update Memory Inspector IV (note 684660)
      ( 0.081) Optimization of the algorithm for generating a job log (note 104185)
      ( 0.081) RFC patch collection 27 2005 (note 860531)
      ( 0.081) PXA: avoid mutex corruption after wp restart (note 802791)
      ( 0.081) ALV Gridview Inputlen of cell could be overwritten by column (note 857074)
      ( 0.081) CST Patch Collection 28 2005 (note 860319)
      ( 0.081) In ST01 some auth.objects displayed with garbage (note 855974)
      ( 0.082) ST02: Avoid core dump at NTAB buffers detailed analysis menu (note 859067)
      ( 0.082) AvaScript repair cg for chained jumps (note 861568)
      ( 0.082) Jobs with names in other code pages do not start (note 809888)
      ( 0.082) NT: sapstartsrv detecting J2EE Safe Mode (note 860654)
      ( 0.082) CCMS Monitoring Patch Collection 2005/4 (note 809007)
      ( 0.082) IMPORT: ignore conversion length errors (note 562988)
      ( 0.082) Preloading DLLs to avoid address space fragmentation (note 853696)
      ( 0.083) Definition of SLC flag (note 851307)
      ( 0.083) Syntax warning for MODIFY with INDEX on a HASHED TABLE (note 860304)
      ( 0.083) Error message on fcode /hmusa (note 862612)
      ( 0.083) Update Listparser (note 751494)
      ( 0.083) I18n code page package 7071 (no env, 45000) (note 447519)
      ( 0.083) Garbled double byte characters (note 670069)
      ( 0.083) Dump during abaplist PDF conversion (note 864429)
      ( 0.083) SE30 User Trace (note 716340)
      ( 0.083) SE30 missing trace data in case of particular units (note 864562)
      ( 0.083) Skip unknown sapgui connect data (note 864474)
      ( 0.084) SORT: sharing after phys. sort (note 863934)
      ( 0.084) Reject system okcodes while debuging BTC or VB (note 864607)
      ( 0.084) GC and tab sharing (note 862462)
      ( 0.084) Correct handling of NAZ messages (note 836869)
      ( 0.084) ABAP-SY: Core dump for type in COMMON PART (note 859631)
      ( 0.084) HTML tidy error trace (note 426351)
      ( 0.084) RTTC: illegal type for TYPE HANDLE (note 863747)
      ( 0.084) ABAP-SY: GEN_FRAGVIEW_EMPTY when accessing empty CI (note 865759)
      ( 0.084) SE30: Assure 610/620 compatible file format (note 866355)
      ( 0.084) Cua status traces (note 865763)
      ( 0.084) Core while unsharing a HASHED TABLE in a LOOP (note 866639)
      ( 0.085) MOVE-CORRESPONDING on empty CI-Includes (note 865759)
      ( 0.085) Foreign key messages in BI log (note 867390)
      ( 0.085) Compatibility of external breakpoints (Kernel 6.40, ABAP 6.10) (note 866347)
      ( 0.085) RFC Patchcollection 30 2005 (note 866360)
      ( 0.085) Default tooltip support (note 750543)
      ( 0.085) ST:  with result IXML (note 866256)
      ( 0.085) Patch collection - logon routine, 2/2005 (note 866327)
      ( 0.085) CST Patch Collection 31 2005 (note 867690)
      ( 0.085) Np printon stack (note 864122)
      ( 0.085) AUNIT test class friends (note 852745)
      ( 0.085) Perfomance Fix READ DATASET due to string resize (note 867936)
      ( 0.085) SHO: Commit registration of transactional Areas (note 865094)
      ( 0.085) Core dump when printing RTL documents (note 868178)
      ( 0.085) No trailing blanks of last (note 867921)
      ( 0.086) Code page patch package 74 (note 447519)
      ( 0.086) ICF Patch Collection 02/2005 (note 867361)
      ( 0.086) ALV Gridview core dump in CSapITSGridviewCol (note 869120)
      ( 0.086) Fix overflow, linuxx86_64 responds pretty badly to this (note 772075)
      ( 0.086) Another occurance of the same overflow problem of the ts structure (note 772078)
      ( 0.086) Definition of cellinfo flag (note 851307)
      ( 0.086) ITS Up/Down: implementing of ITS_DIRECTORY_LIST_FILES (note 856141)
      ( 0.086) ITS TextEdit: changed text could be saved in readonly mode sources (note 868919)
      ( 0.086) NT: Traceing deadlock during signal or alarm handling (note 869790)
      ( 0.086) IXML/XSLT: ABAP class registration (note 865779)
      ( 0.086) New diag supportbits (note 866219)
      ( 0.086) IXML conversion buffer (note 866208)
      ( 0.086) RFC patch collection 32 2005 (note 868767)
      ( 0.087) IMPORT: ign cnv len errors and truncation (note 562988)
      ( 0.087) Exit in LOOP AT SCREEN would remove block stack entries (note 870294)
      ( 0.087) ALV Gridview losing single row selection during its roundtrip (note 870999)
      ( 0.087) Patch lsr list output VII (note 779879)
      ( 0.087) ITS Html Viewer: javascript error for gecko Browser in framesets (note 864381)
      ( 0.087) ITS Html Viewer: caching for all binary documents enabled (note 870373)
      ( 0.087) Enhanced SAP encoding methods (note 866020)
      ( 0.087) New SSF Signer-Resultcodes for Certificate Revocation (note 870640)
      ( 0.087) GETWA_NOT_ASSIGNED since PL 84 (note 871851)
      ( 0.087) ALV Gridview Control AGate crash due to error in put_SelectedRows2 (note 865899)
      ( 0.087) ALV Gridview kernel change for expandable/collapsible totals/subtotals (note 861326)
      ( 0.087) Core with CLASS.Type or INTF.Type for data ref in XML-ABAP (note 871774)
      ( 0.087) No runtime type check with CLEANUP INTO  (note 871407)
      dbsl patch information
      ( 0.001) Support of doublebyte character sets (note 695899)
      ( 0.006) Sizecheck for tables includes LOBs (note 713281)
      ( 0.012) MAX_INT_CNT=1000 (note 634263)
      ( 0.019) Correction of ORA-01427 in dbdd_get_size (note 739536)
      ( 0.025) Correction of internal function DbSlPing() (note 748370)
      ( 0.032) Avoid dump when reading negative numbers into type P field (note 764005)
      ( 0.039) NT: work processes don't start due to different memory layout II (note 761159)
      ( 0.055) Secondary connection with multiple NLS environment (note 808505)
      ( 0.073) Automatic reconnect after ORA-03123, ORA-03127 (note 797792)
      ( 0.079) Enable and allow rel. 6.40 for Oracle 8.1.7 (note 851551)
    brbackup 
      BR0051I BRBACKUP 6.40 (12)
      Patch   Date        Note   Text
        3   2004-01-26   700733  Support for secure copy 'scp' command
       11   2004-06-25   749041  Workaround for ORA-12158 on Tru64 Unix
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brarchive 
      BR0002I BRARCHIVE 6.40 (12)
      Patch   Date        Note   Text
         3   2004-01-26   700733   Support for secure copy 'scp' command
        11   2004-06-25   749041   Workaround for ORA-12158 on Tru64 Unix
        12   2004-07-28   759839   BRARCHIVE fails for database in mount state
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brrestore 
      BR0401I BRRESTORE 6.40 (12)
      Patch   Date        Note   Text
        3   2004-01-26   700733  Support for secure copy 'scp' command
       11   2004-06-25   749041  Workaround for ORA-12158 on Tru64 Unix
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brtools 
      BR0651I BRTOOLS 6.40 (12)
      Patch   Date        Note   Text
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    brconnect 
      BR0801I BRCONNECT 6.40 (12)
      Patch   Date        Note   Text
        5   2004-03-19   719581  Delete of old records in arch.log with BRCONNECT
      release note               680046
      kernel release             640
      patch date                 2004-07-28
      patch level                12
      make platform              NTintel
      make mode                  OCI_920_SHARE
      make date                  Sep 19 2004
    sapdba
    tp  
    R3trans 
    saposcol 
    SAPOSCOL version  COLL 20.88 640 - 20.51 NT 05/07/13, 32 bit, multithreaded, Non-Unicode
    compiled at   Aug 22 2005
    systemid      560 (PC with Windows NT)
    relno         6400
    patch text    COLL 20.88 640 - 20.51 NT 05/07/13
    patchno       87
    intno         20020600
    running on    SAPBL5 Windows NT 5.0 2195 Service Pack 4 2x Intel 801586 (Mod 2 Step 7)
    saplicense  
      SAPLICENSE version information
      slic (saplicense) version     3.00
      saplicense information
      kernel release                640
      kernel make variant           640_REL
      compiled on                   NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10
      compilation mode              Non-Unicode
      compile time                  Aug 21 2005 19:38:48
      update level                  0
      patch number                  48
      source id                     0.087
      supported environment
      database (SAP, table SVERS)   610
                                    620
                                    630
                                    640
      operating system
      Windows NT 5.0
      Windows NT 5.1
      Windows NT 5.2
    Operating System 
      Parameter                  Changed on     Status    Value
    Database 
      Parameter                                      Changed on  Status  Value
      ACTIVE_INSTANCE_COUNT                          15.06.2005  A
      AQ_TM_PROCESSES                                15.06.2005  A       0
      ARCHIVE

    Dear Pallavi,
    Very useful post!
    I am looking for similar accelerators for
    Software Inventory Accelerator
    Hardware Inventory Accelerator
    Interfaces Inventory
    Customization Assessment Accelerator
    Sizing Tool
    Which helps us to come up with the relevant Bill of Matetials for every area mentioned above, and the ones which I dont know...
    Request help on such accelerators... Any clues?
    Any reply, help is highly appreciated.
    Regards
    Manish Madhav

  • Executing methods using an input text file

    Hello all,
    I was just wondering if I could get a little help with giving the input commands to my program through a provided text file. I have already made a stack program and want to test it by feeding it a text file with commands in it. Here is an example of the text that it would contain:
    bluePush 100
    blueIsEmpty
    print
    bluePush 101
    bluePush 102
    bluePush 103
    blueSize
    bluePush 104
    print
    bluePop
    print
    redIsEmpty
    Etc..
    Problem is, I'm not really sure how to make my test file. I've never taken a text file as input before and once it's in, I'm not sure how to parse the commands.
    Any help would be greatly appreciated.
    Thanks,
    Tyler

    You would open the file like such:
      String fileName = "c:\path\to\file.txt";
      BufferedReader input = new BufferedReader(
                               new FileReader(fileName));You would create a loop to read the text, line by line, something like this:
      String line = null;
      while ((line = input.readLine()) != null){
        //... do processing here
      }Inside the while loop, you would parse the string into command and value pairs. Maybe look into StringTokenizer... Something like this:
        //inside while loop
        StringTokenizer parser = new StringTokanizer(line, " ");
        String command = parser.nextToken();
        String value = null;
        if (doesCommandHaveValue(command)) value = nextToken();
        //Determine course of action based on command
    //*** Then have the method doesCommandHaveValue...
    // Returns true if "Push" is found inside of command,
    // since it looks like only push statements have values after them
    private boolean doesCommandHaveValue(String command) {
      return (command.indexOf("Push") != -1);
    }Then mabe do a series of ifs based on command, to call different methods, using the value read in.

  • Using Adobe Photoshop CS2 version 9 and have updated it, but when stacking photos, it comes up with PSD, whereas I want Jpeg, and I change the format to Jpeg and the box then comes up with cannot save as there is a program error. Be very grateful for help

    Using Adobe Photoshop CS2 version 9 and have updated it, but when stacking photos, it comes up with PSD, whereas I want Jpeg, and I change the format to Jpeg and the box then comes up with cannot save as there is a program error. Be very grateful for help with this, please.

    jpg does not support Layers.
    Just to make sure, what exactly do you mean by "stacking photos" and what do you want to achieve thereby?

  • Auto Stack Freezes Program

    I have a Dual 2.5Ghz G5 with 7GB ram and a Nvidia 6800 Ultra video card - well over the recommended specs in everyway. I am having issues with Autostack being slow (hours) and/or hanging the program. I have tried importing 6900 medium sized jpegs (shot with a Nikon D2h) from a folder containing a older projects I am doing, which seems like it should be with within the capablities of the program with the hardware I am using. I will then select auto stack, and can move the slider slightly to adjust the time interval before the program gives me the spinning beachball, which it will then spend hours trying to process or will then freeze the program indefinitely (I let it go for 11 hours once) at which time I have to force quit it.
    I then tried it with a ancient project with jpegs from a Nikon Coolpix 950 which produced a averagew file size of less than a 1 Mb. I Auto-stacked 650 photos but still had the beach ball and it took about 10 minutes to complete- much longer than I expected with such small files.
    I have not tried RAW files yet.
    I hope somene has a answer on how I can possibly alleviate the problem, the auto stack is one of my favorite features so far when I can get it to work.
    Even with this problem I can say this program is awesome. It's very power hungry, but truly unlike anything I have used and a excellent 1.0 effort.
    Dual 2.5ghz G5   Mac OS X (10.4.3)  

    Maybe this is why in the training DVD supplied with Aperture Apple recommends using the auto stack feature at the time of import from memory card or camera. There's a slider at the bottom of the import page which, if memory serves me correctly, does the auto stack command. This way you'll be stacking only say 100 raw images from a 1gb card and the numbers won't get too taxing.
    Still, this should be a fairly simple fix for Apple to sort out so here's hoping they get on the case sharpish! I think the auto stack HUD is loading each individual image instead of just working with the attached data.
    Power Mac G5 dual 2ghz Mac OS X (10.4.3) 2.5GB RAM, 9800 Pro graphics

  • The ABAP call stack was: SYSTEM-EXIT of program BBPGLOBAL

    Hi
    We are using SRM 5.0. We are facing a strange problem. We are able to see the initial screen of SRM EBP in the browser. But once the user name and password are provided the system goes for a dump with the following error:
    The following error text was processed in the system SS0 : System error
    The error occurred on the application server <Server Name> and in the work process 0 .
    The termination type was: ABORT_MESSAGE_STATE
    The ABAP call stack was: SYSTEM-EXIT of program BBPGLOBAL
    <b>SM21 Log:</b>
    Short Text
         Transaction Canceled &9&9&5 ( &a &b &c &d &e &f &g &h &i )
         The transaction has been terminated.  This may be caused by a
         termination message from the application (MESSAGE Axxx) or by an error
         detected by the SAP System due to which it makes no sense to proceed
         with the transaction.  The actual reason for the termination is
         indicated by the T100 message and the parameters.
    Transaction Canceled ITS_P 001 ( )
    Message Id: ITS_P
    Message No: 001
    I just checked these threads but did not help much,
    RABAX_STATE  error after loggin into BBPSTART service in SRM 4.
    ITS_TEMPLATE_NOT_FOUND error
    Besides I tried this note: 790727 as well, still I get the same error.
    Any help would be highly appreciated.
    Thanks in advance
    Kathirvel Balakrishnan

    Hi
    <u>Please do the following steps.</u>
    <b>When you are using the Internal ITS,you need not run the report W3_PUBLISH_SERVICES.(only SIAC_PUBLISH_ALL_INT )
    ALso pls check the foll:
    -->activate the services through SICF tcode.
    > Go to SICF transaction and activate the whole tree under the node Default host>sap>bc>gui>sap>its.
    >Also maintain the settings in SE80>utilities>settings>internet transaction server-->test service/Publish. (BBPSTART , BBPGLOBAL etc)
    Table TWPURLSVR should have entries for the / SRM server line as well as gui and web server.
    Could you please review again the following steps ?
    Did you check that ICM was working correctly (Transaction -  SMICM) ?
    1-Activate the necessary ICF services
    With transaction SICF and locate the
    services by path
    /sap/public/bc/its/mimes
    /sap/bc/gui/sap/its/webgui
    2- Publish the IAC Services
    With Transaction SE80 locate from
    the menu Utilities -> Settings ->
    Internet Transaction Server (Tab) ->
    Publish (Tab) and set “On Selected
    Site” = INTERNAL.
    3- Locate the Internet Services SYSTEM and WEBGUI.
    Publish these services with the Context
    Menu -> Publish -> Complete Service
    4- Browse to http://<server>:<icmport>/sap/bc/gui/
    sap/its/webgui/! and login to the
    webgui.</b>
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • Access to JAVA stack DB from an ABAP Program

    Hi ABAP gurus,
    We would like to write an ABAP program (from ABAP Stack) to execute SQL queries against tables that exist under the JAVA stack DB.
    Has any of you ever face this topic?
    Many thanks in advance. Regards,
       Imanol

    Please use search in this forum with keyword DBCON. you will lot of threads

  • Stack Overflow Error for JNI program with Jdk1.3

    I wrote a JNI wrapper for a third party sofware (written in C) to use some exported functions provided. My program runs fine when using Sun JDK1.2.2, but I got the following error when using Jdk1.3 to run the program (It's a runtime error, only the version of runtime virtual machine matters.)
    # An EXCEPTION_STACK_OVERFLOW exception has been detected in native code outside
    the VM.
    # Program counter=0x9073337
    A stack overflow was encountered at address 0x09073337.
    I tried IBM jdk 1.2.2, it gave me a similar error complaining about the stack overflow error.
    The vendor of the third party software denies any wrong doing in their code and I don't have their source code. A test client (simulate the Java client) I wrote in C works perfectly fine and as I mentioned earlier the same java progarm runs OK with jdk 1.2.2, without any change to my system stack size. Does any body know what this is about and the solution for this?
    Thanks!
    My email: [email protected]

    I had the same exception occur in my JNI code and I have some advice on things to look for.
    Symptoms: The C++ code runs fine when called in an native executable but when it is wrapped by a JNI call inside a DLL you get the following exception:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_STACK_OVERFLOW occurred at PC=0x100d72e5
    Function name=_chkstk
    The address will be different of course.
    In my tests I isolated the problem to an allocation of a char array like so at the top of one of my wrapped C++ methods:
    char buf[650000];
    As you see this code is requesting 650000 bytes of stack memory. When run in a native executable there was no problem but when I ran it wrapped in the JNI call it blew up.
    Conclusion: There is a much smaller stack space when using JNI OR the added overhead of my JNI wrapper exhausted the available stack space OR this is a stack space issue related to DLLs.
    Hope this helps. Anyone with insight on this please put in your 2 cents.

  • GW Host/ Service for program SAPSLDAPI on PO 7.31 single-stack

    Hi there,
    We are running SAP PO 731 on SPS07 and are currently connecting all backend systems as proxys. All is done and all is working fine.
    But when i checked my configurations i saw sth., which is not so pretty in our configuration.
    In detail: To use proxys, you have defined among others a rfc connection with the name "SAPSLDAPI" (program iD maybe SAPSLDAPI_<SID of PO>). Testing is possible with Tx sldcheck or Tx sldapicust.
    On PO java stack, you have to set this JCO in the "JCO RFC-Provider". To start it, you need a GATEWAY HOST/ SERVICE.
    In the former pi releases you have a double stack installation with a gateway inside the abap stack (Tx smgw), but now on a single java stack, i don't know where i can run the program (ID).
    As not pretty solution, i set our solman as gateway host. But this system is not defined as a high avalaible system and that's why i have some stomachache.
    So, here my possibilities/ questions:
    1. whats's about the gwrd process from the central services of our PO java stack? Can i run the program ID here locally? Is this possible?
    If yes, could you provide me documentation? I tried it without success.
    2. Or should i install standalone gateways on our same PO hosts? 3-tier as our 731-PO-landscape?
    3. Or should i set many JCOs in the "JCO RFC-Provider" and start the the program (ID) in the corresponding backend system? F.ex. SAPSLDAPI_<SID of PO>_<SID of ERP> running in system ERP
    What dou you think?
    Thanks in advance,
    Matthias

    Hi Matthias,
    I moved this question into the area ABAP Connectivity since the area SAP Gateway is dedicated to the former SAP NetWeaver Gateway.
    Best Regards,
    Andre

  • Hp prime - using stack in program

    I want to do a simple macro style program. To simplify, say I have a number in the 'x' register of the stack. I want to press a key and do a few steps of math on that value. Such as, multiple it by a number, subtract a number. I don't see how this is done on this calculator. The other HP RPN calculators made this very easy.

    Hi,
    Unfortunately you can't write RPN style programs on the Prime, only HP Prime Basic programs.
    For example if you have two values on the stack the following program will return the division of the values:
    EXPORT PROG1(A,B)
    BEGIN
    RETURN A/B;
    END;
    Note that currently only one value can be returned to the stack. You can return multiple values in a list, but not on separate stack levels.
    Note: I do not work for HP, I just like playing with calculators :-)

  • Migrate R/3 ABAP programs to NW ABAP stack

    Hello all,
    I would appreciate if you can share your experience with me.  We have some old ABAP programs written for R/3.   What need to be done to convert them to run in NW environment?  How much effort is needed?   Do I have to redevelop the screen in Webdynpro etc? 
    Wing

    Check the below links :
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/8105db90-0201-0010-cfbe-ae94d43e2e48
    http://www.lionbridge.com/NR/rdonlyres/4940BE1F-DA46-412E-AB16-F049BD865AC1/0/PBNWFAQ_50070686_en.pdf
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10564d5c-cf00-2a10-7b87-c94e38267742
    http://help.sap.com/bp_bpmv130/Documentation/Installation/PostInstallation_Abap.pdf
    Thanks
    Seshu

  • Beginning Bluetooth Programming - Basic Stack Question

    I have moderate but not extensive experience with Java development, and have just stumbled across the javax.bluetooth JSR-082 packages. I'm interested in using these packages, but have a general question or two that deals just as much with bluetooth as it does with Java itself...if anyone could be of help, it would be much appreciated.
    Despite all the articles I've read, I'm a bit confused about the initialization of the bluetooth stack. My laptop has bluetooth integrated into it, is running XPSP2, and from what I can tell its now using the WIDCOMM driver. Does this mean that I have access to the WIDCOMM stack (ostensibly using the Broadcom SDK)? Or do I need additional software? I also keep reading that XP has included the Microsoft Bluetooth Stack...but nowhere do I read how to access it, nor any instructions, nor the beginning of instructions, for initialization of either the WIDCOMM or Microsoft stacks within the context of JSR-082. Any suggestions or input would be appreciated.

    See: http://developers.sun.com/techtopics/mobility/midp/articles/bluetooth1/

Maybe you are looking for