Problem in Loading source code

All,
I have custom program with 32000 lines of code in the main program, due to this system find it difficult to load.
What are best possible ways to load?
PS please don't suggest to chunk into different form routines , i know this will solve this issue. But due to technical difficulties , i could not able to do this.

Do it programmatically.
I do not have any access to a SAP system currently...so this is off the top of my head...
  But doesn't Dynpros - i.e.Programs reside in table D010SINF or similar? And I believe that there are SAP Function Modules that can read or automatically write Dynpros from, or into the system.
   You may have to write a program that:
1. reads a file containing your program, and
2. calls the function module to 'create/change dynpro program' to store your program into the system.
   One of the parameters on the selection screen of this 'write / change Dynpro' program would be a 'chunk size'. The 'chunk size' would be of course the number of lines of the file that can be loaded at a time.
   Another parameter on the selection screen of this 'write / change Dynpro' program would be 'file start line'....where to start loading from.
   Experimenting with different 'chunk sizes' will show how many lines can be loaded at one time before timing out.
   One possible scenario is that you may start out with a function module to do a Create Dynpro... and once it's created, just using regular SQL Update commands to add/append in the rest of the program. Hopefully it won't get this drastic... but who knows?
   After the entire program is loaded into the system, then you would go into SE38: do a syntax check and activate it.
I hope that this helps,
God Bless,
Daniel M. Perecky

Similar Messages

  • Problems with loading source model using omw from sql server 7 into oracle 9i

    I am migrating data from sql servr 7 into oracle 9i. when doing capture phase i get the following error.
    ==>failed to load source model.[microsoft][odbc sql server][sql server]select permission
    denied on column 'password' of object 'syslogins', database master, owner dbo.
    Why is this so...is it bcz of something with my odbc link...
    also is there any way to load only tables and not system tables when doing capture phase.
    any help asap will be much appreciated.
    thanks

    Hi,
    You must ensure that you have the correct password to login to SQL Server.
    The Workbench requires some of the tables in the Master database.
    Regards
    John

  • E-Commerce for mySAP ERP: Problem with java source code

    Hello everybody,
    we try to implement web shops on the basis of ECO for ERP 5.0. The shop is running fine and we want to start with some extensions in java classes and web UI with NWDI  2004s.
    We created a new track and our own application as described in "Development And Extension Guide". We need to extend some of the original java classes for the b2b scenario and of course the user interface.
    We got the information from SAP, that the original java classes are not intended
    to be modified by customers and therefore it is not intended to create a project with NWDI that contains that source code. But we should be able to create own DCs and copy the source code into it and then modify them on own risk.
    We tried to do that, but always got errors.
    Due to customer requirements we have to make some modifications otherwise we can not use this solution.
    If there is anybody who has already some experience with this topic we
    would be very glad to get some hints.
    Kind Regards
    Helmut

    Hello Raju,
    I am sorry, but I am no technical consultant, but I am have to change 
    the already installed application for our customers.
    Nethertheless I try to give you some information I have. I had a look at SAP note 883948 you mentioned. The software components which are listed under XECO are the software components which contain the E-Commerce Application. You also find them in the "Development and Extension Guide".
    There are some guides under  http://service.sap.com/instguides -> mySAP Business Suite Solutions -> mySAP ERP -> mySAP ERP 2005 -> Installation. In the document "SAP E-Commerce for mySAP ERP: Business Scenario Configuration Guide" there is a table of the needed components on a high level.
    From the view of the application you need the E-Commerce application itself, the TREX for searching in the product catalog, the IPC if you want to have price calculation in the shop or configuration of products with optional components.
    Hope this helps a bit
    Kind Regards
    Helmut

  • Down load source code from clas builder SE24

    Hi,
    Is it any Tcode or program to download the source code of clase with method created in SE24.
    I have to download from SAP.
    Thanks,
    sri

    Please refer:
    https://forums.sdn.sap.com/click.jspa?searchID=15176628&messageID=2863578

  • Ddd does not display source code when loading compiled program

    Hey everyone,
    I'm writing a C program right now and I would like to use ddd. The problem is, the source code window is completely blank. Has anyone ever run into this before? I really don't even know where to start looking to fix this problem. Yes, I have loaded my compiled binary (I can see the assembly instructions in the machine output). I use both awesome and xfce (different sessions) and it does not work in either.
    Here is the relevant configuration info:
    extra/gdb 7.3.1-1
    aur/ddd-syntaxfix
    awesome 3.4.10
    xfce 4.8
    I had to install ddd from AUR since ddd seems to have a bug in it where it will not show the machine code without a fix.
    If you need any other info just ask and I will provide it.

    This Forum is for Forte 4GL or UDS as its called today. I am not sure if anybody is going to be able to answer your question here. Sorry.
    ka

  • Help With Source Code

    Heya,
    I have a small problem with my source code and I can't seem to figure out where the problem is.
    Description of problem:
    String getTracks(String artist) in class TrackList displays the tracks in an album in numerical order. For instance:
    The tracks are:
    1. xxxxxxxxxx
    2. xxxxxxxxxx
    3. xxxxxxxxxx
    4.
    The problem is, an additional number would appear after all the tracks have been displayed. In this case, 3 tracks are displayed and a redundant number (4.) appears below. And if there are 4 tracks to be displayed, a (5.) would appear and so on. Does anybody know where the source of the problem is?
    My source code for class TrackList is as follows:
    import java.util.ArrayList;
    public class TrackList
    private ArrayList trackList;
    public TrackList()
    trackList = new ArrayList();
    public void add(String artist, String album, String tracks)
    trackList.add(new Artist(artist,album,tracks));
    public void remove(String artist)
    for (int n = 0 ; n < trackList.size() ; n++)
    Artist a = (Artist)trackList.get(n);
    if (a.getArtist().toLowerCase().equals(artist.toLowerCase()))
    trackList.remove(n);
    public String getAlbum(String artist)
    for (int n = 0 ; n < trackList.size() ; n++)
    Artist a = (Artist)trackList.get(n);
    if (a.getArtist().toLowerCase().equals(artist.toLowerCase()))
    return a.getAlbum();
    return "";
    public String getTracks(String artist)
    String tracksToReturn = "";
    int trackNumber = 1;
    for (int n = 0 ; n < trackList.size() ; n++)
    Artist a = (Artist)trackList.get(n);
    if (a.getArtist().toLowerCase().equals(artist.toLowerCase()))
    tracksToReturn += trackNumber + ". " + a.getTracks() + "\n";
    trackNumber++;
    return tracksToReturn;
    public void writeToFile(FileOutput file)
    for (int n = 0 ; n < trackList.size() ; n++)
    Artist a = (Artist)trackList.get(n);
    file.writeString(a.getArtist());
    file.writeNewline();
    file.writeString(a.getAlbum());
    file.writeNewline();
    public void readFromFile(FileInput file)
    String artist = file.readString();
    String album = file.readString();
    String tracks = file.readString();
    while (!file.eof())
    add(artist,album,tracks);
    artist = file.readString();
    album = file.readString();
    tracks = file.readString();
    Not sure if this other class has an impact on this. It's class Catalogue. Look at void TrackList(String artist).
    public class Catalogue
    private KeyboardInput in;
    private TrackList trackList;
    public Catalogue()
    in = new KeyboardInput();
    trackList = new TrackList();
    public void go()
    boolean quit = false;
    while (!quit)
    System.out.println("\nCatalogue");
    System.out.println("1. Search artist, album and tracks");
    System.out.println("2. Add new artist, album and tracks");
    System.out.println("3. Remove artist, album and tracks");
    System.out.println("4. Save entry to a file");
    System.out.println("5. Add an entry from a file");
    System.out.println("6. Quit");
    System.out.print("\nSelect an option from the menu: ");
    int option = in.readInteger();
    switch (option)
    case 1 :
    searchForEntry();
    break;
    case 2 :
    addEntry();
    break;
    case 3 :
    removeEntry();
    break;
    case 4 :
    saveList();
    break;
    case 5 :
    loadList();
    break;
    case 6 :
    quit = true;
    break;
    default :
    System.out.println("\nThat option is invalid. Please try again.");
    public void addEntry()
    System.out.println("\nAdd entry to catalogue");
    System.out.print("Enter the artist's name: ");
    String artist = in.readString();
    System.out.print("Enter the artist's album: ");
    String album = in.readString();
    System.out.println("Enter the track names and enter when done: ");
    int trackNumber = 1;
    String tracks;
    do
    System.out.print("Enter track " + trackNumber + ": ");
    tracks = in.readString();
    trackList.add(artist,album,tracks);
    trackNumber++;
    while (!tracks.equals(""));
    public void removeEntry()
    System.out.println("\nRemove entry from catalogue");
    System.out.print("Enter the artist's name: ");
    String artist = in.readString();
    trackList.remove(artist);
    public void searchForEntry()
    System.out.println("\nSearch catalogue");
    System.out.print("Enter the artist's name: ");
    String artist = in.readString();
    String album = trackList.getAlbum(artist);
    if (album.equals(""))
    System.out.println("\nThere were no matches for your search. Please try again.");
    else
    System.out.println("The album is: " + album);
    boolean quit = false;
    while (!quit)
    System.out.println("\nSelect an option: ");
    System.out.println("1. Display the tracks for this album");
    System.out.println("2. Back");
    int option = in.readInteger();
    switch (option)
    case 1 :
    trackList(artist);
    break;
    case 2 :
    quit = true;
    break;
    default :
    System.out.println("\nThat option is invalid. Please try again.");
    public void trackList(String artist)
    String tracks = trackList.getTracks(artist);
    if (tracks.equals(""))
    System.out.println("\nThere were no tracks entered for this album.");
    else
    System.out.println("\nThe tracks are:");
    System.out.println(tracks);
    public void saveList()
    System.out.println("\nSave catalogue to a file");
    System.out.print("Enter the file name: ");
    String fileName = in.readString();
    FileOutput out = new FileOutput(fileName);
    trackList.writeToFile(out);
    out.close();
    public void loadList()
    System.out.println("\nAppend catalogue from a file");
    System.out.print("Enter the file name: ");
    String fileName = in.readString();
    FileInput fileIn = new FileInput(fileName);
    trackList.readFromFile(fileIn);
    fileIn.close();
    public static void main(String[] args)
    Catalogue catalogue = new Catalogue();
    catalogue.go();
    Thank you very much indeed!
    Sincerely,
    e360

    This is not about JavaHelp technology. Please use another forum, thank you.
    /M

  • JMStudio source code question / compilation problem/ what is JMFI18N ?

    Hi everyone , I'm trying to make videocapture application and I was studying JMStudio source code but i have a few problems
    1:
    DirectSound Capture Supported = true
    Exception on commit = java.io.IOException: Can't find registry file
    DirectSoundAuto: Committed ok
    JavaSound Capture Supported = true
    JavaSoundAuto: Committed ok
    Exception on commit = java.io.IOException: Can't find registry file
    Found device Microsoft WDM Image Capture (Win32)
    Querying device. Please wait...
    Exception on commit = java.io.IOException: Can't find registry file
    Exception on commit = java.io.IOException: Can't find registry filehow to repair it? i dont know where should i start !!
    2:
    JMFI18N - i cant find documentation for this class - i cant find this class - i know nothing about it and i cat fine anything any ideas?
    thanks a lot
    jan jarczyk

    I know it's a little late, but maybe this source code can help some other programmers out:
    package com.sun.media.util;
    import java.io.PrintStream;
    import java.util.Locale;
    import java.util.MissingResourceException;
    import java.util.ResourceBundle;
    public class JMFI18N
      public static ResourceBundle bundle = null;
      public static ResourceBundle bundleApps = null;
      public static String getResource(String key)
        Locale currentLocale = Locale.getDefault();
        if (bundle == null) {
          try {
            bundle = ResourceBundle.getBundle("com.sun.media.util.locale.JMFProps", currentLocale);
          } catch (MissingResourceException e) {
            System.out.println("Could not load Resources");
            System.exit(0);
          try {
            bundleApps = ResourceBundle.getBundle("com.sun.media.util.locale.JMFAppProps", currentLocale);
          } catch (MissingResourceException me) {
        String value = "";
        try {
          value = (String)bundle.getObject(key);
        } catch (MissingResourceException e) {
          if (bundleApps != null)
            try {
              value = (String)bundleApps.getObject(key);
            } catch (MissingResourceException mre) {
              System.out.println("Could not find " + key);
          else
            System.out.println("Could not find " + key);
        return value;
    }

  • Problem file xls with jasper (source code mixed in the content XLS file)

    i´m writing xls file with jasper, the problem is that is mixed the source code of the JSP (where doing request) in the content of the file xls, do not import the API thah use.
    The java code whit JASPER is like:
    FacesContext ctx = FacesContext.getCurrentInstance();
    ExternalContext ectx = ctx.getExternalContext();
    JRDataSource dataSource = ......
    InputStream inputStream = ectx.getResourceAsStream(parametro);
    JasperReport jasperReport = (JasperReport) JRLoader.loadObject(inputStream);
    JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport,new HashMap(), dataSource);
    JRXlsExporter exporter = new JRXlsExporter();
    ByteArrayOutputStream xlsReport = new ByteArrayOutputStream();
    exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);
    exporter.setParameter(JRExporterParameter.OUTPUT_STREAM, xlsReport);
    exporter.exportReport();
    byte[] bytes2 = xlsReport.toByteArray();
    response.setContentType("application/vnd.ms-excel");
    response.setContentLength(bytes2.length);
    response.setHeader("Content-disposition", "attachment; filename="" + "MI_EXCEL_JR" + ".xls"");
    ServletOutputStream outputStream = response.getOutputStream();
    outputStream.write(bytes2, 0, bytes2.length);
    outputStream.flush();
    outputStream.close(); whay is printed the response in the xml file?
    tnk for your help....

    hoham wrote:
    byte[] bytes2 = xlsReport.toByteArray();
    Not related to the actual problem, but this line is not very efficient. What if the report is bigger than the available server memory? Or if there are many simultaneous requests which does all the same?
    It would result in an OutOfMemoryError. Rather obtain it as an InputStream and write it in a loop to the OutputStream using a byte block as buffer. Or wrap the both streams by BufferedInputStream/BufferedOutputStream and write in a simple loop. Consult the basic Java IO tutorials for details and code examples.

  • I am unable to watch any tv channel due to the problem that it says is the source code is protected by html guardian. how to solve this problem?

    when i tried to watch a tv channel on livetvchannelsfree.in it says that the source code is protected by html guardian. in firefox 3.6 beeta5 i did not come across this problem. but now in latest version i am unable to watch any tv channel. canyou please tell me how to solve this problem?

    Forgotten Passcode or device disabled after entering wrong passcode

  • Problem with registering Parser - Recompiled source code, don't see any changes

    I had created a parser. I had register this parser with Ifs Manager. I had execute this following statement to see if been registered carefully:
    On user ifssys/ifssys
    sql)select name,stringvalue,bundle from odmv_property where name= 'p01';
    I see my parser....
    select name from odmv_propertybundle where id=1139;
    ParserLookupByFileExtension
    All it's ok. I upload a file with a 'p01' extension with option 'parser' on my Internet Explorer. All work fine.. My parser work. But I need to do some changes in my code. I update my code, recompile my code. My class file have been updated. After my parser (.class) file have been updated I upload a new file with parse option. I don't see any change I do in my code. Why??? How I can update my parser to view change. I have only recompile my code an place my new class files on the same directory. I have try again (change on code, recompile, test) and I don't see any changes.
    But I have test by change my classname. My classname before is Test1 and I have rename my classe by Test2. I have compiled this code and a file Test2.class have been generate. I have update my register parser with Ifs Manager to use the new classname Test2. I have chack with sql statement to see if my parser have been updated. I have been updated correctly. I have upload a new file with parse option and I see my change on my code..
    Do you have some explanations about that??
    How I can update my source code of a parser already registered to the parser take the change I do.
    Francois
    null

    Ok, but they have another manner to resolve this problem. If I upload a file with parser option on Windows Nt explorer (Using SmbServer or WcpServer). How I can update the class file into the JVM? I need the restart this those server or just one? If just one which server I need to restart?
    Thanks Francois
    null

  • SQL Developer 3 EA2 - Problem with formating plsql source code

    I'm using sql developer 3 ea2. I have played with source code formating.
    I have 2 issues with formating in source code editor.
    I have a plsql string like the following extending over several lines.
    s VARCHAR2(2000) := 'SELECT
    col1, col2, col3
    FROM table
    WHERE col4 = :var';The result after apply "format" to my sourcecode ist:
    s VARCHAR2(2000) := 'SELECT
    col1, col2, col3
    FROM table
    WHERE col4 = :var';The second is that sql developer ist camelizing the previous line if I type a whitespace in plsql sourcecode.
    How to switch that off??
    The last issue is realy annoying!
    Christian

    I am having exactly the same problem. Every time you use Format Ctrl/F7 it adds new line feeds. Code starts off as:
    command := '
    select account_status, default_tablespace, temporary_tablespace,
    to_char(created,"YYYY-MON-DD HH24:MI:SS"), profile
    from Dba_Users@@
    where username=:1' ;
    First Format Ctrl/F7 get an extra blank line:
    command := '
    select account_status, default_tablespace, temporary_tablespace,
    to_char(created,"YYYY-MON-DD HH24:MI:SS"), profile
    from Dba_Users@@
    where username=:1' ;
    Then second Format Ctrl/F7, get THREE extra lines!!! It goes exponential!!
    command := '
    select account_status, default_tablespace, temporary_tablespace,
    to_char(created,"YYYY-MON-DD HH24:MI:SS"), profile
    from Dba_Users@@
    where username=:1' ;
    So far I've only really encountered the problem with dynamic SQL, which ignores the extra line feeds.
    i am pretty sure this is a long standing SqlDeveloper Format problem, going back to V2.

  • Selection-screen problem:need to go back to selectionscreen not source code

    Hello experts,
    Please help me on my dillema. I have 2 reports, zreport1 and zreport2. Now, zreport1 submits
    values via selection-screen to zreport2. Now here is the problem, when I press 'BACK' on the
    selection-screen of zreport2(rememeber we used submit statement via selection-screen on zreport1)
    instead of going back to the selection-screen of zreport1 it goes to the source code of zreport1 which
    is wrong. And there are 2 selection-screens on zreport1 depending on the user if he is controller or not.
    So what I need to do here is that whenever I press 'BACK' either I'm adding or modifying or displaying records
    it should go back to whatever screen I called in zreport1.
    Here's a diagram.
    ZREPORT1**
      if v_controller = 'X'
        display selection-screen 1500
      else
        display selection-screen 500
      endif.
      if user wants to add records, submit values from zreport1 to zreport2
      and return via selection-screen.
      *same goes for edit option.
      if user wants to display, get all records then display in ALV.     
    ZREPORT2**
      So lets assume user decides not to add records and decides to go back. so he presses
      the BACK button in selection-screen of zreport2. Now here's the nasty part, instead of going back to either
      selection-screen 500 or 1500 in zreport1, it goes to the source code of zreport1!. I hope I explained it clearly.
      Again, thanks a lot guys for your help!

    Hi,
    Try this
    START-OF-SELECTION.
    *----------Sumbit Report-------*
    Sumit Report......AND RETURN
    *----------Check Condition & back to select screen-------*
      IF condition.
        MESSAGE s207(zusm_gen) DISPLAY LIKE lc_e .
        EXIT.
      ENDIF.
    Set something in the memmory.
    this can be used to check the completion of the report.
    if the 2nd report executed porperly then u further execute the code.
    If u dont have any thing to execute after sumbit report
    then u can do is.
    START-OF-SELECTION.
    *----------Sumbit Report-------*
    Sumit Report......AND RETURN
        MESSAGE s207(zusm_gen) DISPLAY LIKE 'S' .
        EXIT.
    Message was edited by: Manoj Gupta

  • Problem with Data source- full load is not extracting where as delta can.

    Hi All,
    I have a problem in loading of the region values into BW.
    Data Source 0CRM_OPPT_I is used to fetch opportunities ( same as Sales Orders in ECC) from CRM system.Data source has a field 0CRM_TR which gives the values of region values pof the employee responsible. problem here is that CRM_TR value is not being fetched when the record was first created, but the value is being flown to BW in the delta run i.e. when a change happened in record.
    Please anyone help us out in resolving this issue.
    Regards,
    Haaris.

    Hi Hari.......
    Hav u done init........if yes........What u hav done....I mean.....init with or w/o data transfer.....?
    It has picked records or not? if yes...........after init.........hav u checked the Delta queue(RSA7) in the source system...........is the Total field is 0 or not.........if 0..then....
    Look if u r using Direct delta.then after init.any changes or new records will get recorded in the Delta queue(RSA7) directly..........but if the Update mode is Unserialized V3 update or Qued delta.then data will accumulated in the Update table and the Extraction Queue respectively...........in that case u hav to schedule V3 jobs to pull them in RSA7............otherwise delta load will pick 0 records only........
    Check the update mode of the Datasource in LBWE.......
    Check this..........it may help u........
    Steps to do init load from CRM
    Regards,
    Debjani.......

  • Source Code Control - Check in problems

    Some of my vi's have been marked as "Server copy has changed" and some have even been marked with "both local and server copies have changed". When this is the case I cannot find any way to check in my VI without getting an error. Looking for a work around - help.

    kh,
    Which version of LabVIEW are you using? Built-in SCC have been rewritten from 6.0 to 6.1 and there are different issues related to each version.
    With 6.0 I have encoutered a bug that wrongly checked most of my VIs as "local copy has changed" as soon as they are in memory with panel closed. I worked with NI Support and we found no workaround. Unfortunately, this behavior stayed even when the VIs were upgraded in 6.1 so that my problem was a dead end. I switched with great success to CVS, another source code control software.
    I do not use 6.1 but if you do, make a search on NI's site and you'll find hits that address a SCC bug. If I remember correctly, checking out a VI, making a small change and checking it in again often solved the problem.
    G
    ood luck.
    LabVIEW, C'est LabVIEW

  • Load CF varibales into javascript array without outputing to source code

    I have a javascript array for dynamic dropdowns - Automobile, makes,models, etc.
    The javascript arrays are populated by by cf queries
    Everythign works and functions fine - but it also loads the entire array (hundreds of lines of code) into the browser source code.
    I would like to have the javascript arrays hidden from the browser source code by calling it:
    <script language="JavaScript" type='text/javascript' src='../js/super.js'></script>
    But when I code like this, the js file 'super.js' does not run the cf variables.
    The only way I can get it to function right now is to save a cf file called 'super.cfm' and have it run the cf query, then list the javascript code under the query on this cf template.
    THis works - but again, it causes the entire javascript code to be visible to the browser source code...
    any ideas? - I am on cf 7
    thanks in advance

    thanks for your idea
    I ended up rethinking the whole process and realized that I only update my vehicle make/model list about once a week
    So what I ended up doing was creating the the dynamic javascript arrays through cf - and rendered them in a browser, then took the browser source code (the fully rendered javascript arrays) and saved them as a static js file
    My website uses this js file on every page, so I no longer need to call queries on every single page to populate the javascript arrays - they are already built and I am guessing cached by the browser  (browsers cache js files right?)
    SO this runs more efficiently.
    The only draw back is that when I add a new vehicle to the list in my database, I will need to manually do the same process of rendering the new js code, then cutting and pasting it into my static js file that gets called by all pages.
    So it loses the realtime updates - but this only happened once a week anyway - and it only takes me five minutes to create the new file.
    We'll see if I get sick of manually creating a new js file each week - probably, but this seems better than making the server re-render the code on each page.
    Does this make sense? - would this be less overhead on the server than implimenting your concept?
    thanks.

Maybe you are looking for

  • My iPad is stuck in recovery mode.  I already downloaded Snow Leopard and am making no progress.  Help!

    My iPad is stuck in recovery mode.  It was suggested before that I upgrade my computer, so I downloaded Snow Leopard and have tried resetting it, but it still isn't working.  What can I try next?

  • Constant what has this got to do with readingHow to create some thing like

    Q]     IN  the statement SABC_ACT_READ(4)               VALUE 'READ', Taken from http://help.sap.com/saphelp_46c/helpdata/en/fc/eb3d5c358411d1829f0000e829fbfe/content.htm SABC_ACT_READ(4) is a of type C , & has a value “4” –what has this got to do wi

  • We no longer able to Accept Quotations - iw32

    Hi we are following below Scenario We create a Notification u2192 and a Serviceorder u2192, to create a Quotation we useu2192 DP80 (billing request) The cosumer accept the Quote u2192 and you need to accept the Quote in SAP, it will automatically clo

  • Please  help for this Logic

    Hi Guys, We are having a problem translating these scenario to codes: <b>Total = 1600</b> <b>Given items:</b> 200 300 400 900 to get the total we need to add (900 + 400 + 200) to get the exact value.  other scenarios: Total: 1350, 750, etc... In all

  • ORA-01006 Error

    Hi folks. Here is the problem I seem to be having: I have a method (createAccount) that needs to run three different SQL statements. One to check if the user exists, second to insert the data, third to retrieve the new user ID generated by an oracle