Can u suggest me regarding this syntax error

Hi friends,
While modifying a SAP program, i came across a syntax error- " Literals cannot be extended more than one line" in ECC6.0 server.
this is the msg for which i am getting error-
" MESSAGE 'Associate should be transferred back to the unit
effective from the forced transfer date' TYPE 'E'.
i have tried to resolve it by making it a msg of single line but i couldnt. so pls let me know how can i proceed.
Thank you
Nasreen

Hi Nasreen,
          If you are hard coding the message it will take arnd 142 char. the error might be cause it was not activated. just activate and when pop-up comes 'error duringing activation', press Activate anyway.
if this doesnt help, changes message type as 'I' and make syre thet message is in one line.
altenately you can go with message class. but dont pass such message as variable coz it will take max of 50 char.
for example:
variable = 'abcedd...................... more that 52 char)
message e000 with <variable>
            the in output you get message defined in message class and 50 char of variable.
Thank & regards

Similar Messages

  • Your idisk can't be synchronized at this time. error code 14?

    I lost idisk, unable to access get error code: Your iDisk can't be synchronized at this time (error code 14).

    iDisk has closed down. It was killed off when MobileMe shutdown in June 2012.
    Apple sent emails informing customers years ago.
    Look at Dropbox as an alternative, or you can use iCloud if your Mac is on a recent OS (10.7 & higher).

  • Regarding EDI: Syntax error in IDoc (segment cannot be identified)

    Hi,
    My requirement is that I was adding two diffrent field values under two diffrent segments as "E1EDKA1" and "E1EDK02" in outbound invoice IDOCS, INVOIC02 (process code: SD09 - IDOC_OUTPUT_INVOIC).
    I am getting the IDOC number through Tcode "VF02". Can any body give me idea how to check that syntax error in debug mode.
    Please find the following error details using TCODE "WE02".
    *EDI: Syntax error in IDoc (segment cannot be identified)*
    *Message no. E0 078*
    *Diagnosis*
    *The segment E1EDKA1 does not occur at the current level of the basic type INVOIC02 (extension ).*
    *This error can have several reasons:*
    *The segment E1EDKA1 is assigned to a group whose header segment does not occur.*
    *The segment E1EDKA1 does not exist in the syntax description of the basic type INVOIC02 (extension ).*
    *The sequence of segments in the group in which the segment appears is incorrect.*
    *Previous errors ('mandatory' segment or group missing) may be due to this error.*
    Please help me to resolve this problem. <REMOVED BY MODERATOR>
    Regards,
    Skumar.
    Edited by: Alvaro Tejada Galindo on Apr 28, 2008 1:09 PM

    It seems that you added segment E1EDKA1 at a place where it is not supposed to be. That's where this error is coming from. The structure of every IDOC is definded by SAP standard and you cannot change the sequence or the level of standard segments. If you require a certain field at a certain level you have to add that field to a Z-segment and then add that Z-segment where appropriate in your extension.
    Hope that helps,
    Michael

  • What is this syntax error?

    The standard SAP program SAPDBZDF giving error in ECC6.0 version in line 211:Field "%_GET" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement . . .
    The line declared is 
    IF B0SG-XASGL <> 'X' AND %_GET+10(1) <> ' '.
    What is the %_GET? how to eliminate the error?
    This code doesn't give syntax error in 4.0B version.
    If it is standard SAP report, please help me.

    Hi,
    this rather looks like some kind of inactive query, infostructure or other generated stuff.
    As already mentioned: Our system knows
    SAPDBDDF                                   Logical Database SAPDBDDF
    SAPDBIDF                                   Real Estate Logical Database
    SAPDBKDF                                   Logical Database SAPDBKDF
    SAPDBMDF                                   FM Master Data Mass Selection
    SAPDBSDF                                   SAPDBSDF Logical Database
    SAPDBVDF
    If you copied one of the standard logical databases to customer name space SAPDBZDF: I did this and I found OSS notes guiding through additional necessary process.
    Regards,
    Clemens

  • Methods to solve this syntax error

    Hi friends,
    I am doing a user exit. In that iam including my code in a Include say 'ZXXX' in that i have 2 includes 'ZXX1' and 'ZXX2' ( one for PBO and one for PAI )..... i ve written my codes inside and when iam activating the include it gives me the following error ???? what iam missing / what ive given extra / what should i do???
    Error :
    " EACH ABAP PRORAM CAN CONTAIN ONLY ONE "REPORT" OR "PROGRAM" OR "FUNCTION-POOL" STATEMENT" .................. 
    Expecting ur answers.....(any small idea will surely help me and others too)
    Hope my question is clear .....
    thanks in advance .............................
    Cheers,
    Kripa .,
    Upcoming New Abaper......

    Hi,
    I think its better to tell the whole process which iam doing ( i dont know whether the steps are right as this is the first time iam tryig to implement a user-exit!). So what ever could be the mistake which u encounter in my steps please let me know so that i could correct that!
    My requirement is:
    1. To add a field in ME51N transaction in the valuation tab, Say a field which captures the text 'AAA' which could be given by the user....
    My Understanding and implementation:
    1. Got the user exit name to be 'MEREQ001' ( Tcode SMOD )
    2 Added a field 'ZZXXX' in the table EBAN and activated the table.
    3. From SE80 --> in the  function group XM02,created a screen ( of type subscreen '0111' ) and placed a table field text box of name and attributes of
    'EBAN-ZZXXX' .....
    4. Double clicked the screen '0111' and in that i ve writen some code for its PBO and PAI ......
    5. Code in PBO .......MODULE STATUS_0111.
    MODULE STATUS_0111 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    TABLES : EBAN.
    EBAN-ZZPAYMENT = "TEST PAYMENT".
    ENDMODULE.                 " STATUS_0111  OUTPUT
    6. Code in PAI .......... USER_COMMAND_0111  INPUT
    ***INCLUDE ZXM02I01 .
    *&      Module  USER_COMMAND_0111  INPUT
          text
    MODULE USER_COMMAND_0111 INPUT.
    CLASS-POOL
    An object is created for the class IF_PURCHASE_REQUISITION_ITEM
      CREATE OBJECT IF_PURCHASE_REQUISITION_ITEM.
    As i want to import the value from the subscreen to a value thruogh
    a function GET_DATA
    Creating a reference variable
      DATA : CREF_IF_PR_ITEM TYPE REF TO
      IF_PURCHASE_REQUISITION_ITEM.
    Local variable declaration
      data : l_mereq_item type mereq_item.
    T_NATR_PAY is the new extended field...
      if not CREF_IF_PR_ITEM is initial.
        l_mereq_item = CREF_IF_PR_ITEM->get_data( ).
        if ( ci_ebandb-ZZPAYMENT ne l_mereq_item-ZZPAYMENT ).
          move-corresponding  ci_ebandb to l_mereq_item .
          call method
            CREF_IF_PR_ITEM->set_data( l_mereq_item ).
          ex_changed = 'X'.
        endif.
    *endif.
      ENDMODULE.                 " USER_COMMAND_0111  INPUT
    7. Then i activated .... at that time only i got the syntax error.... hope the question is clear now !!
    note :
    I may be wrong in the way of implememnting the user exit also ..... please correct me if iam wrong and if anyone of u could guide me properly to implement the user exit for the transaction ME51N ... it could be of a great help !!!
    Expecting ur answers !! .......
    Thanks in Advance !!!!
    Revert back if the question is still not clear !!!
    .... kripa ( New upcoming abaper )

  • Can someone help me with this 201435 Error during Signal Express signal generating?

    I built this signal generation tast to generate a voltage waveform. The wave form is loaded from a lvm file. (as shown in attachment pic). The waveform can be correctly viewed in preview window, so i suppose nothing wrong with the file. but when i clkick the run button, error 201435 pops up, tell me "no samples provided to DAQmx Write to initialize buffered generation".
    i dont know what step do i missed in this task. can anyone help me with this problem?

    the attachment picture
    Attachments:
    task.PNG ‏9 KB

  • Can anyone help me with this 1120 error? So frustrated...

    I have those two objects homeS and galleryS and two corresponding functions to change the size of their layer masks. The structure of the two are
    exactly the same except for their names and positions. However, only one of them functions.
    The instance's name is the same in the code and there is only one key frame in the layer where movieClip "galleryMsk" is.
    But Flash always through this 1120 error saying "undefined property galleryMsk"...
    I don't know why it happens since part I is functioning perfectly.
    The only thing is that object "homeMsk" and object"galleryMsk" are in the same layer mask, does that cause the trouble?
    I am so frustrated and I cannot focus on anything else in the whole day...couldn't even sit down and watch tv happily...
    Here are the two parts of the code. Part I is working Part II is not...
    homeS.addEventListener(MouseEvent.MOUSE_OVER,f_homeDisplay);
    function f_homeDisplay(event:MouseEvent):void
              homeBtn.gotoAndPlay("home_pass");
              changeContent(homeMsk,-62.8,0);
              changeContent(homeS, -62.8,0);
              homeS.removeEventListener(MouseEvent.MOUSE_OVER,f_homeDisplay);
         }  //Part I
    galleryS.addEventListener(MouseEvent.MOUSE_OVER,f_galleryDisplay);
    function f_galleryDisplay(event:MouseEvent):void
              galleryBtn.gotoAndPlay("gallery_pass");
              changeContent(galleryMsk,-56.55,160);
              changeContent(galleryS, -56.55,160);
              galleryS.removeEventListener(MouseEvent.MOUSE_OVER,f_galleryDisplay);
         } //Part II

    never mind the paragraph at the bottom of this reply, I just got it. I found the instance galleryMsk,
    I can't upload the image now because of some strange reason,
    but it is basically a symbol with a red dot under and it says "mask3, <galleryMsk>", like this:
    Scene1
    - Symbol Definition(s)
          - buttons
              - mask3, <galleryMsk>
    It only showed the objects which are in my major scene, but all those layers are actually inside a movie clip called "buttons", I see "buttons" in the movie explorer, but I don't know how to search for the content inside...

  • Can't serialize access for this transaction error.

    Hi,
              I am getting a transaction rolled back due to a beforeCompletion exception:
              java.sql.SQLException: ORA-08177: can't serialize access for this
              transaction
              I am using Weblogic 5.10, SP5 & Oracle 8.
              Basically what I have is:
              - A java app that will get an EntityBean, named Schedule.
              - The java app will then create a SessionBean, named Watchdog.
              - The java app will then call a method on the Watchdog, passing in the
              Schedule: watchdog.check(Schedule sched)
              - The watchdog.check() method will do some processing and based on the
              outcome may or may not update the Schedule: sched.setLast(<some number>)
              - The check() method is then done & return to the java app.
              I see log messages (on the weblogic server) saying the check() method is
              done. Then I see messages, presumably from the container for:
              - isModified ------> true
              - ejbStore()
              And then I see the exception messages.
              The strange thing is that most of the time this processing works just fine.
              Only occasionally do these exceptions get thrown.
              The schedule EntityBean is set up as <transaction-isolation> for
              TRANSACTION_SERIALIZABLE.
              There is no other bean trying to update the Schedule at the same time.
              Does anybody have any ideas?
              Thanks in advance,
              Beth
              

    http://www.weblogic.com/docs51/classdocs/API_ejb/EJB_environment.html#107296
              8
              tells u about the limitations of transaction_serializable w.r.t. Oracle..
              Pavan
              "Beth" <[email protected]> wrote in message news:[email protected]...
              > Hi,
              >
              > I am getting a transaction rolled back due to a beforeCompletion
              exception:
              > java.sql.SQLException: ORA-08177: can't serialize access for this
              > transaction
              >
              > I am using Weblogic 5.10, SP5 & Oracle 8.
              >
              > Basically what I have is:
              > - A java app that will get an EntityBean, named Schedule.
              > - The java app will then create a SessionBean, named Watchdog.
              > - The java app will then call a method on the Watchdog, passing in the
              > Schedule: watchdog.check(Schedule sched)
              > - The watchdog.check() method will do some processing and based on the
              > outcome may or may not update the Schedule: sched.setLast(<some number>)
              > - The check() method is then done & return to the java app.
              >
              > I see log messages (on the weblogic server) saying the check() method is
              > done. Then I see messages, presumably from the container for:
              > - isModified ------> true
              > - ejbStore()
              > And then I see the exception messages.
              >
              > The strange thing is that most of the time this processing works just
              fine.
              > Only occasionally do these exceptions get thrown.
              >
              > The schedule EntityBean is set up as <transaction-isolation> for
              > TRANSACTION_SERIALIZABLE.
              > There is no other bean trying to update the Schedule at the same time.
              >
              > Does anybody have any ideas?
              > Thanks in advance,
              > Beth
              >
              >
              >
              >
              

  • Regarding this Validation Error   JBO-29000

    Hi, I am using JDeveloper 10.1.2.1.0. when i run the page i am getting this error. can any one help me in this.plzzz
    Validation Error
    You must correct the following error(s) before proceeding:
    JBO-29000: Unexpected exception caught: java.lang.ClassCastException, msg=oracle.jbo.common.ws.WSViewObjectImpl
    oracle.jbo.common.ws.WSViewObjectImpl
    regards
    Nag
    Message was edited by:
    user477479

    JBO-29000: JboException
    Cause: If an unexpected exception occurs during a framework operation, this exception is thrown, with the unexpected exception included in the details of this exception.
    Action: Fix the cause for the exception in the details for this JboException.
    You probably need to narrow this down a bit more...is this happening on all pages? has it just started happening? Does it happpen in a simple test case. If you can narrow that down you will have a better chance of getting a solution.
    Regards
    Grant Ronald
    Oracle Product Management

  • Can anybody suggest me on this?

    <p>But I am trying to put zip function in my batch file.</p><p> </p><p>In detail this batch file runs some cmd and maxl scripteverynight and then it takes back up of all the applicaction.</p><p>Now I want to add this backup folders in to the zip. So that ican save disk space.</p><p> </p><p>i have already tried simple pkzip and other commands to do zipbut I am surprised non of them works.</p><p> </p><p>I ant understand exactly why it happens.</p><p> </p><p>Can anybody write me a command for it. It will be greathelp.</p><p> </p><p>I will really appreciate your help as i tried each n everythingwith no luck.</p><p> </p><p>Thanks.</p><p> </p>

    Hi,
    do you have a web server where you can put the file? Once the HTML file is put onto a web server you can integrate the file via URL iView.
    Note, the NW Application server is a web server as well. Basically, you could put the files there.
    Best regards,
    Martin

  • Help. Can't purchase iWork get this weird error.

    When my wife tries to purchase Apples Numbers from the App Store it won.t let her and gives the following error...
    She is signed in to her account OK and has no trouble purchasing music etc through iTunes.
    Any help greatly appreciated.

    Done that, didn't help. Changing Cirtificate prefs in Keychain enabled the purchase. However now the App's not installing even though it says it is. Hvae tried installing half a dozen times, each time the app doesn't appear in apps folder!

  • Can anyone help me with this StackOverFlow error? Running mergesort

    * Write a description of class Sorter here.
    * @author (your name)
    * @version (a version number or a date)
    public class Sorter
         public static long comparisons = 0;
        public static long exchanges   = 0;
        static int M = 10;
        static double aux[];
        static boolean less(double v, double w) {
           comparisons++;
           return (v < w);
        static void exch(double[] a, int i, int j) {
            exchanges++;
            double t=a; a[i]=a[j]; a[j] =t;
    private static void compExch(double[] a, int i, int j)
    {if (less(a[j], a[i])) exch(a,i,j);}
    static int partition(double a[], int l, int r){
    int i = l-1, j=r; double v = a[r];
    for(;;){
    while (less(a[++i],v));
    while (less(v,a[--j])) if (j==l) break;
    if (i >= j) break;
    exch(a,i,j);}
    exch(a,i,r);
    return i;
    static void insertion(double[] a, int l, int r)
    {int i;
            for(i=r; i>l; i--) compExch(a, i-1, i);
            {int j = i; double v = a[i];
    while(less(v, a[j-1]))
    {a[j] = a[j-1]; j--;}
    a[j] = v;
    static void quicksort(double[] a, int l, int r){
    if (r <= l) return;
    int i = partition(a,l,r);
    quicksort(a,l,i-1);
    quicksort(a,i+1,r);
    static void Iquicksort(double[]a, int l, int r){
    if(r-l <= M) return;
    exch(a, (l+r)/2, r-1);
    compExch(a,l,r-1);
    compExch(a,l,r);
    compExch(a,r-1,r);
    int i = partition(a,l+1,r-1);
    Iquicksort(a,l,i-1);
    Iquicksort(a,i+1,r);
    static void hybridsort(double a[], int l, int r){
    Iquicksort(a,l,r); insertion(a,l,r);}
    static void mergeAB(double[] c, int cl, double[] a, int al, int ar, double[] b ,int bl, int br){
    int i = al, j=bl;
    for (int k = cl; k < cl+ar-al+br-bl+1; k++){
    if (i>ar) {c[k] = b[j++]; continue;}
    if (j>br) {c[k] = a[i++]; continue;}
    c[k] = less(a[i], b[j]) ? a[i++] : b[j++];
    static void mergesort(double[] a, int l, int r){
    if (r<= 1) return;
    int m=(r+1)/2;
    mergesort(a,l,m);
    mergesort(a,m+1,r);
    merge(a,l,m,r);
    static int min(int A, int B){return (A<B) ? A : B;}
    static void mergesort2(double[] a, int l, int r){
    if (r<=1) return;
    aux = new double[a.length];
    for (int m=1; m <= r-l; m=m+m)
    for(int i = l; i <= r-m; i += m+m)
    merge(a,i,i+m-1, min(i+m+m-1, r));
    static void merge(double[]a, int l, int m, int r){
    int i,j;
    for (i=m+1; i>l; i--) aux[i-1] = a[i-1];
    for (j=m; j<r; j++) aux[r+m-j] = a[j+1];
    for (int k = 1; k <= r; k++)
    if (less(aux[j], aux[i]))
    a[k]=aux[j--]; else a[k]=aux[i++];
    * Write a description of class SortClient here.
    * 10-15-06
    public class SorterClient
         public static void main(String[] args) {
    int N = 1000;
    int times = 1;
    System.out.println("ALGORITHM comp=COMPARISONS exch=EXCHANGES");
    System.out.println("---------------------------------------------------------------------------------------------");
    System.out.println();
    System.out.println("Selection: ");
    while(times<4){
    if(times==2){N=3000;}
    if(times==3){N=10000;}
    // generate N random real numbers between 0 and 1
    long start = System.currentTimeMillis();
    double[] a = new double[N];
    for (int i = 0; i < N; i++)
    {a[i] = Math.random();}
    long stop = System.currentTimeMillis();
    double elapsed = (stop - start) / 1000.0;
    // sort them
    Sorter test = new Sorter();
    start = System.currentTimeMillis();
    test.mergesort(a, 0, a.length - 1);
    stop = System.currentTimeMillis();
    elapsed = (stop - start) / 1000.0;
    System.out.print(elapsed + "secs ");
    System.out.print("N=" + N + "= ");
    System.out.print(" " + Sorter.comparisons + "comp");
    System.out.println(" " + Sorter.exchanges + "exch");
    times++;

    I get it in the mergesort method while program is running line,
    mergesort(a,l,m);
    quicksort runs fine.

  • Can't understand the meaning of this syntax...

    I'm about two weeks into writing Cocoa, and about 1/3 of the way through Aaron Hillegass's book, which has been instrumental. I'm really starting to get the hand of things in Object-C, but I can't seem to grasp this syntax concept:
    - (id) tableView:(NSTableView *)aTableView
    objectValueForTableColumn:(NSTableColumn *)aTableColumn
    row:(int)row;
    This one is placed in my .h file, but I can't make sense of it. I think it stems from even the basics of something like this:
    - (void)clearText:(id)sender
    It's the stuff AFTER the semi colon that I don't quite understand. And the first example even takes it further! I just don't feel comfortable going, "Ehh, just type it in like the book says.". Can anyone put this into laymen's terms for me? Thanks for helping out a beginner. ^_^

    First of all, the brackets are took off because it's used to create an external link...
    However you can use { code } markups (without spaces in it) like that :
    { code }
    // your code
    { code }
    gives without spaces inside the braces :
    // your code
    Now let's get back to your code... Everything you said is not really true, so I'm going to correct a few thing, and also correct your code a little...
    ejtrowbridge wrote:
    Alright, I've done some more brainstorming, and I might have answered my own question. If someone could just verify (or modify!) my reasoning, I'm set!
    So here's some example code:
    - (void)setPersonName:(NSString *)aName
    aName = [aName copy];
    [personName release];
    personName = aName;
    *The Breakdown:*
    - The method name is "setPersonName".
    - setPersonName is not returning anything.
    - setPersonName is allowing the variable "aName" to be modified which is strict typed to a NSString.
    - The instance variable personName is cleared of any previous value.
    - The instance variable personName is given the same value of "aName" that was passed into the method.
    Is that right? Let me try one more to see if I got it:
    Okay so your breakdown has some errors :
    - the name of the method is not "setPersonName" but really "setPersonName:" the colons are part of the name, and it's better to remember it.
    - setPersonName: takes one argument of type "NSString *" (which is indeed strictly typed) and named "aName".
    The correct code for that function is :
    - (void)setPersonName:(NSString *)aName
    [personName release];
    personName = [aName copy];
    Okay some precisions, we call that method a setter, it's a specific kind of method, the name generally starts with the word "set" followed by the instance variable name that it modify with its start letter in capital, it returns "void" and takes one argument which is the new value of the instance variable and so it's the same type.
    ejtrowbridge wrote:
    *Example code:*
    - (float)expectedRaise
    return expectedRaise;
    - (void)setExpectedRaise:(float)x
    expectedRaise = x;
    *The Breakdown:*
    - The method expectedRaise will be returning a float value.
    - Then it returns whatever expectedRaise's float value is.
    - The method setExpectedRaise will not be returning anything.
    - Will accept outside changes to the variable "x" which is strict typed to a float value.
    - Then the method sets the instance variable expectedRaise to the value of "x" which was passed in from outside.
    Here everything is good, accessor methods for non-object instance variable are pretty simple.
    ejtrowbridge wrote:
    Is this how I should be interpreting accessor methods? If this is right, then I will feel more comfortable moving forward in the book. This seems like it is used ALOT, so I wanted to make sure I was headed in the right direction. If it is, the only questions is where the "aName" and "x" values come into play... but maybe I'm getting ahead of myself.
    So yes, it's how you should. And yes it's used a lot, that's a basis of Object-Oriented Programming. We encapsulate the values of our classes, they're not accessible from the outside, so we use accessor methods to allow the users to touch it BUT under our control, if you want to modify the accessor methods to make a specific behavior you can, for example, let say you a percentage in a class and you don't want it to be superior to 100, you can write that :
    - (void)setPercent:(int)aValue
    if(aValue > 100)
    aValue = 100;
    percent = aValue;
    With that code you're sure that percent will never be over 100. So with the accessor methods you keep the control of your instance variable and avoid the user to corrupt the object datas.

  • Can any body brief me about  this syntax  given below

    I have doubt of using this command on Production server... How best is this.. Can anybody brief me about this syntax.. what exactly this command do...
    $ tar -cvfX - /tmp/exclude *. |* compress -c - > ../archive/file name
    Here i know about "tar -cvfX" but symbols which are highlited i dont have much idea about this.
    Will somebody will help me out in this.

    timevans wrote:
    tar -cvfX - /tmp/exclude . | compress -c - > ../archive/file name
    Using the tar utility, archive the current directory, skipping the files listed in the /tmp/exclude file and send it to standard output. Pipe the standard output to the compress utility store the resulting output in the parent directory of the current one in the file named "filename"Hi Timevans,
    But my question is what are those symbols stands for in the syntax
    i.e
    1. an hyphen* after tar -cvfX -
    2. an pullstop* after /tmp/exclude .
    3. an " *_hyphen"_* after compress -c
    4. an *"_redirection"_* after hyphen after compress -c

  • I am getting an "Error 1310 message while trying to install.  What can I do to fix this?

    I am getting an "Error 1310 message while trying to install.  What can I do to fix this?

    Error "1310: Error writing to file: C:Config.Msi..."
    Mylenium

Maybe you are looking for

  • How can I erase songs from my iPhone that I bought on iTunes Store but keep them on my Music Library?

    I'm having this problem, that I bought some songs from my iPhone in iTunes Store, but I don't want to have them in my iPhone anymore. I tried to erase the songs from my Music Library, but when I syncronize the iPhone automatically, these songs are co

  • WorkFlow BOR : Change Method

    Hi, Can I know the BOR Object for sales order which includes Change method.

  • Attributes in Organisation Model.

    Hi all, I have a general question regarding the Attributes in Organisation Model. For example: when we Set the attribute of a country to GB or US. It inpact it would bring...? Regards,

  • 9ias(9.0.3), NoClassDefFoundError - Internel Server Error

    We are using Oracle 9ias (9.0.3) on windows 2000 server. We are getting the following error when we try to open - http://computerName:1810/emd/console: 500 Internal Server Error java.lang.NoClassDefFoundError      at java.lang.Class.forName0(Native M

  • License problem with LR5

    The serial number is supposeds to be at the bottom of the box.  There is a long number/letter combo on the sticker but it is to long for the serial number boxes.  It is supposed to be 24 digits, but it is much longer.  How do I register?