Error in T-Code: IM24 -Position ID is longer than the maximum allowed 24

Dear All,
I am trying to generate Investment Program from Org. Unit in T-Code IM24, but system throws error as below:
Position ID is longer than the maximum allowed 24 characters
Message no. AP240
I have created the Organization unit of my own like IT North, IT South, IT West, IT East.
Guide on the same.
Regards
JS

Hi,
Thanks for your immediate response.
I dont want to extend the maximum allowed character.
And am not able to check from where i need to control the length of my org. unit.
Regards
JS

Similar Messages

  • Runtime error:ABAP program lines are longer than the internal table

    Hi all,
    Below is the code I have written,when Iam running it Iam getting
    'ABAP program lines are longer than the internal table' runtime error.How can I resolve it.
    REPORT  ZTEST1  NO STANDARD PAGE HEADING LINE-SIZE 255.
    TABLES:MARC,CDHDR,CDPOS.
    TYPE-POOLS:SLIS.
    DATA:HEADER TYPE SLIS_T_FIELDCAT_ALV,
         WA TYPE SLIS_FIELDCAT_ALV,
         LAYOUT TYPE SLIS_LAYOUT_ALV.
    TYPES:BEGIN OF MARC_TY,
            MATNR LIKE MARC-MATNR,
            WERKS LIKE MARC-WERKS,
            EKGRP LIKE MARC-EKGRP,
            MINBE LIKE MARC-MINBE,
            EISBE LIKE MARC-EISBE,
            MABST LIKE MARC-MABST,
           END OF MARC_TY.
    TYPES:BEGIN OF MATNR1_TY,
            MATNR1 LIKE CDHDR-OBJECTID,
          END OF MATNR1_TY.
    TYPES:BEGIN OF CDHDR_TY,
             OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
             OBJECTID   LIKE CDHDR-OBJECTID,
             CHANGENR   LIKE CDHDR-CHANGENR,
             USERNAME   LIKE CDHDR-USERNAME,
             UDATE      LIKE CDHDR-UDATE,
            END OF CDHDR_TY.
    TYPES:BEGIN OF CDPOS_TY,
             OBJECTCLAS LIKE CDPOS-OBJECTCLAS,
             OBJECTID   LIKE CDPOS-OBJECTID,
             CHANGENR   LIKE CDPOS-CHANGENR,
             TABNAME    LIKE CDPOS-TABNAME,
             FNAME      LIKE CDPOS-FNAME,
             CHNGIND    LIKE CDPOS-CHNGIND,
             VALUE_NEW  LIKE CDPOS-VALUE_NEW,
             VALUE_OLD  LIKE CDPOS-VALUE_OLD,
            END OF CDPOS_TY.
    **************TABLE TYPES********************************************
    TYPES: MARC_TAB   TYPE TABLE OF MARC_TY,
           MATNR1_TAB TYPE TABLE OF MATNR1_TY,
           CDHDR_TAB  TYPE TABLE OF CDHDR_TY,
           CDPOS_TAB  TYPE TABLE OF CDPOS_TY.
    *******************INTERNAL TABLES************************************
    DATA:MARC_ITAB   TYPE MARC_TAB,
         MATNR1_ITAB TYPE MATNR1_TAB,
         CDHDR_ITAB  TYPE CDHDR_TAB,
         CDPOS_ITAB  TYPE CDPOS_TAB.
    ****************WORK AREAS********************************************
    DATA:MARC_WA   TYPE MARC_TY,
         MATNR1_WA TYPE MATNR1_TY,
         CDHDR_WA  TYPE CDHDR_TY,
         CDPOS_WA  TYPE CDPOS_TY.
    *******************SELECTION-SCREEN***********************************
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-000.
      PARAMETERS:PLANT LIKE MARC-WERKS.
      SELECT-OPTIONS:MATERIAL FOR MARC-MATNR.
      SELECT-OPTIONS:DATE FOR CDHDR-UDATE.
    SELECTION-SCREEN END OF BLOCK B1.
    START-OF-SELECTION.
    SELECT MATNR
            WERKS
            EKGRP
            MINBE
            EISBE
            MABST
            FROM MARC INTO TABLE MARC_ITAB
            WHERE MATNR IN MATERIAL
            AND WERKS = PLANT.
      CHECK MARC_ITAB[] IS NOT INITIAL.
      LOOP AT MARC_ITAB INTO MARC_WA.
       MATNR1_WA-MATNR1 = MARC_WA-MATNR.
       APPEND MATNR1_WA TO MATNR1_ITAB.
       CLEAR MATNR1_WA.
    ENDLOOP.
    CHECK MATNR1_ITAB[] IS NOT INITIAL.
    SELECT OBJECTCLAS
            OBJECTID
            CHANGENR
            USERNAME
            UDATE
            FROM CDHDR INTO TABLE CDHDR_ITAB
            FOR ALL ENTRIES IN MATNR1_ITAB
            WHERE OBJECTCLAS = 'MATERIAL'
            AND OBJECTID = MATNR1_ITAB-MATNR1
            AND UDATE IN DATE.
    CHECK CDHDR_ITAB[] IS NOT INITIAL.
    SORT CDHDR_ITAB[]  DESCENDING BY OBJECTID  CHANGENR.
    DELETE ADJACENT DUPLICATES FROM CDHDR_ITAB[] COMPARING OBJECTID.
    SELECT OBJECTCLAS
           OBJECTID
           CHANGENR
           TABNAME
           FNAME
           CHNGIND
           VALUE_NEW
           VALUE_OLD
           FROM CDPOS INTO CORRESPONDING FIELDS OF TABLE CDPOS_ITAB
           FOR ALL ENTRIES IN CDHDR_ITAB
           WHERE OBJECTCLAS = CDHDR_ITAB-OBJECTCLAS
           AND OBJECTID = CDHDR_ITAB-OBJECTID
           AND CHANGENR = CDHDR_ITAB-CHANGENR
           AND TABNAME  = 'MARC'
           AND FNAME    IN ('MINBE','EISBE','MABST','LVORM')
           AND CHNGIND  = 'U'.
    CHECK CDPOS_ITAB[] IS NOT INITIAL.
    *LOOP AT CDPOS_ITAB INTO CDPOS_WA.
    WRITE: / CDPOS_WA-OBJECTCLAS,
             CDPOS_WA-OBJECTID,
             CDPOS_WA-CHANGENR,
             CDPOS_WA-TABNAME,
             CDPOS_WA-FNAME,
             CDPOS_WA-CHNGIND,
             CDPOS_WA-VALUE_NEW,
             CDPOS_WA-VALUE_OLD.
    *ENDLOOP.
    WA-SELTEXT_L = 'OBJECTCLAS'.
    WA-COL_POS   = '1'.
    WA-FIELDNAME = 'OBJECTCLAS'.
    WA-TABNAME   = 'CDPOS_ITAB'.
    WA-OUTPUTLEN = '15'.
    APPEND WA TO HEADER.
    CLEAR WA.
    WA-SELTEXT_L = 'OBJECTID'.
    WA-COL_POS   = '2'.
    WA-FIELDNAME = 'OBJECTID'.
    WA-TABNAME   = 'CDPOS_ITAB'.
    WA-OUTPUTLEN = '20'.
    APPEND WA TO HEADER.
    CLEAR WA.
    WA-SELTEXT_L = 'CHANGENR'.
    WA-COL_POS   = '3'.
    WA-FIELDNAME = 'CHANGENR'.
    WA-TABNAME   = 'CDPOS_ITAB'.
    WA-OUTPUTLEN = '8'.
    APPEND WA TO HEADER.
    CLEAR WA.
    WA-SELTEXT_L = 'TABNAME'.
    WA-COL_POS   = '4'.
    WA-FIELDNAME = 'TABNAME'.
    WA-TABNAME   = 'CDPOS_ITAB'.
    WA-OUTPUTLEN = '5'.
    APPEND WA TO HEADER.
    CLEAR WA.
    WA-SELTEXT_L = 'FNAME'.
    WA-COL_POS   = '5'.
    WA-FIELDNAME = 'FNAME'.
    WA-TABNAME   = 'CDPOS_ITAB'.
    WA-OUTPUTLEN = '7'.
    APPEND WA TO HEADER.
    CLEAR WA.
    WA-SELTEXT_L = 'CHANGING'.
    WA-COL_POS   = '6'.
    WA-FIELDNAME = 'CHANGING'.
    WA-TABNAME   = 'CDPOS_ITAB'.
    WA-OUTPUTLEN = '1'.
    APPEND WA TO HEADER.
    CLEAR WA.
    WA-SELTEXT_L = 'VALUE_NEW'.
    WA-COL_POS   = '7'.
    WA-FIELDNAME = 'VALUE_NEW'.
    WA-TABNAME   = 'CDPOS_ITAB'.
    WA-OUTPUTLEN = '5'.
    APPEND WA TO HEADER.
    CLEAR WA.
    WA-SELTEXT_L = 'VALUE_OLD'.
    WA-COL_POS   = '8'.
    WA-FIELDNAME = 'VALUE_OLD'.
    WA-TABNAME   = 'CDPOS_ITAB'.
    WA-OUTPUTLEN = '5'.
    APPEND WA TO HEADER.
    CLEAR WA.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
        I_PROGRAM_NAME               = SY-REPID
        I_INTERNAL_TABNAME           = 'CDPOS_ITAB'
        I_CLIENT_NEVER_DISPLAY       = 'X'
        I_INCLNAME                   = SY-REPID
      CHANGING
        CT_FIELDCAT                  = HEADER[]
    EXCEPTIONS
    IF SY-SUBRC <> 0.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        I_CALLBACK_PROGRAM                = SY-REPID
        IT_FIELDCAT                       = HEADER[]
      TABLES
        T_OUTTAB                          = CDPOS_ITAB[]
    IF SY-SUBRC <> 0.
    ENDIF.

    Your select querry on MARC is not matching with MARC_TY.
    The field in the MARC table and MARC_TY should be same.
    and also, when you are making select querry on CDPOS table
    with all entries.
    When ever you are using all entries select statement, you should check whether the internal table is having value.
    you should check
    if CDPOS_IT[] is not initial.
    SELECT OBJECTCLAS
    OBJECTID
    CHANGENR
    TABNAME
    FNAME
    CHNGIND
    VALUE_NEW
    VALUE_OLD
    FROM CDPOS INTO CORRESPONDING FIELDS OF TABLE CDPOS_ITAB
    FOR ALL ENTRIES IN CDHDR_ITAB
    WHERE OBJECTCLAS = CDHDR_ITAB-OBJECTCLAS
    AND OBJECTID = CDHDR_ITAB-OBJECTID
    AND CHANGENR = CDHDR_ITAB-CHANGENR
    AND TABNAME = 'MARC'
    AND FNAME IN ('MINBE','EISBE','MABST','LVORM')
    AND CHNGIND = 'U'.
    endif.
    Regards
    Madhan D

  • Mail responds with this error when I have attachments which are not that large.  How can I get around this. very aggravating. error reads Your message has size 32.1 MB, which exceeds 28.3 MB, the maximum allowed by the server.

    error message is-Your message has size 32.1 MB, which exceeds 28.3 MB, the maximum allowed by the server.  What can I do to get it to accept larger files. This was only 4 pages scanned.

    You can use the Preview app to reduce the fille size or send multiple emails.

  • Syntax error in my code and I can't figure out the problem

    When I try to compile a program, I get this message:
    Syntax error on token "(", "Identifier" expected
    This is the part of the code that is giving me trouble:
    JTextPane textPane = createTextPane();
              JScrollPane paneScrollPane = new JScrollPane(textPane);
              paneScrollPane.setVerticalScrollBarPolicy(
                                  JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
              paneScrollPane.setPreferredSize(new Dimension(250, 155));
              paneScrollPane.setMinimumSize(new Dimension(10, 10));Can you see what's wrong?
    Thanks

    The code's syntax is perfectly fine. The compiler is not falgging an error message in this part of your code. One silly thing you can do:
    Try out this silly change...I don't think it will make any difference but still.
    paneScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);That is, put it all in a single line.
    If it is already in a single line then you can be sure that the problem is being flagged from elsewhere in your code and this portion.
    Vijay :-)

  • Error in flash code....not sure what the problem is

    I created a Flash (CS4, Action Script 3.0) website but when I went to "Control>Test Movie" boxes (that I didn't create) started blinking all over the page and a got this message in the "OUTPUT" tab:
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::MovieClip@266305e1 to fl.controls.Button.
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::MovieClip@26630311 to fl.controls.Button.
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::MovieClip@26630af1 to fl.controls.Button.
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::MovieClip@26630ca1 to fl.controls.Button.
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at ResoluteMediaFlash4_fla::MainTimeline/__setProp_contact_btn_Scene1_ButtonsandTitle_1()
        at ResoluteMediaFlash4_fla::MainTimeline/frame2()
    I'm very new to flash so I'm not sure where my problem is or how to fix it. 
    Any idea's??
    Thanks...

    Pat's right.. But it also sounds like you probably should go back and do some AS3 basics.   learning how to understand the errors is an important (though frustrating) part of the problem.
    My personal recommendation is Colin Moock's book "Essential ActionScript 3.0"
    Also try my friend and coworker Trevor's genious site: http://www.senocular.com/
    Now, that said, you're using some API that's looking for a button to talk to a movie clip.  Go back and look at what type of symbols your script is trying to talk to.

  • Error 1502: A script has executed for longer than the default timeout period of X seconds.

    Hi,
    I have a swf that i can´t change (i don´t own the code and it´s copyrighted). In some cases, I´m getting error 1502, after 30 seconds executing the file.
    Is there a way to change or disable the default timeout period? Remember that i can´t edit the .fla...
    Thanks in advance!

    you can load that swf into another swf and adjust the timeout duration in the main swf.

  • Error Items-90122: "Invalid Executable Size " the size of your app's executable file exceeds the maximum allowed size of 80 MB ,

    Hi,
    I am getting "Invalid Executable Size" error when i am trying to upload my app Ipa to iTunes , the same app was uploaded before without this issue, can any one help me to get out of this and to upload my app to iTunes ,
    Any help greatly appreciated....:)
    Thanks in advance..
    Thanks,
    HariKrishnan

    No , still i didn't get any reasonable solution, ,

  • Insert + Update code in 11g taking WAY longer than 9 ?

    Hi guys
    Hoping to get a few suggestions as to what might be causing a problem I'm having.
    I've got a routine in a form that was previously running against a version 9 database, and is now running against an 11g database.
    The routine has a series of cursor loops which results in a number of inserts and updates on the database.
    I have in this routine a call to a procedure which inserts a record into a logging table, with the time it is called. With this I can gauge how long the routine is taking.
    On the version 9 database, the log of inserts is as follows :
    After x rows, time taken (mins, secs)
    1000 rows - 1.04
    4000 rows - 4.38
    9000 rows - 9.43
    13000 rows - 14.01
    18000 rows - 15.58
    So, as a very approximate value, 1000 rows a minute consistantly through to the end at 18000.
    The version 11 database is an import of the version 9 database. so has all the same constraints, indexes, triggers etc.
    The code disables foreign key constraints before executing, it doesnt drop the indexes.
    On the version 11 database, the log of inserts is as follows :
    1000 rows - 0.30
    4000 rows - 3.58
    9000 rows - 19.58
    13000 rows - 41.46
    18000 rows - 80.45
    So rather than staying at a rough 1000 rows per 1 minute time, as more rows are inserted, the time to complete is going up and up and up.
    This would point at indexing maybe? But since there is only 1 index on the tables being inserted into, which is the same on the 9 and 11 database, this ought not to be the case.
    Can anyone suggest why the version 11 database is taking so much longer, and why the time to process is increasing rather than staying constant throughout.
    I'm at a loss at what to look for now.
    Thanks a lot
    Scott

    Scott Hillier wrote:
    The code has to gather data from several tables, perform some fairly complex logic on it, building up record structures before inserting into a number of tables and updating several others. None of which can be done with a simple merge statement.
    It has to be done using cursors, both implicit and explicit to retrieve the data first."Has to" is a bit presumptive. SQL has got very powerful constructs and features that can (pretty much) do anything you require. It may be complex SQL but it will process all the rows of data in one go rather than doing continuous context switching.
    Here's a basic example of the time difference between running stuff as a single SQL and context switching...
    [code]
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2    v_sysdate DATE;
      3  begin
      4    v_sysdate := SYSDATE;
      5    INSERT INTO mytable SELECT rownum FROM DUAL CONNECT BY ROWNUM <= 1000000;
      6    DBMS_OUTPUT.PUT_LINE('Single Transaction: Time Taken: '||ROUND(((SYSDATE-v_sysdate)*(24*60*60)),0));
      7    EXECUTE IMMEDIATE 'TRUNCATE TABLE mytable';
      8    v_sysdate := SYSDATE;
      9    FOR i IN 1..1000000
    10    LOOP
    11      INSERT INTO mytable (x) VALUES (i);
    12    END LOOP;
    13    DBMS_OUTPUT.PUT_LINE('Multi Transaction: Time Taken: '||ROUND(((SYSDATE-v_sysdate)*(24*60*60)),0));
    14    EXECUTE IMMEDIATE 'TRUNCATE TABLE mytable';
    15* end;
    SQL> /
    Single Transaction: Time Taken: 1
    Multi Transaction: Time Taken: 37
    PL/SQL procedure successfully completed.
    SQL>
    [/code]One hell of a difference, and it can get worse depending on how many switches are done in a loop.
    Theres no commit until the end.That's good.
    So, feel free to suggest how I go about gathering data to build up the various records without using cursors.Without knowing your structures, data, requirements etc. how can we tell, apart from to say that maximising SQL and minimising PL/SQL will improve performance.
    Even if you do - it still wouldnt explain why tuned code which runs in 18 minutes on one box is running at 90 minutes on another.It could be a configuration factor of the database, but equally it could be a number of other factors.
    Unless you provide comparative explain plans for queries etc. then how can we tell.

  • LSMW - Error BDC_INSERT, Transaction code .. is invalid XD01

    Dear all.
    I have done the following Steps:
    1 - Maintain Object Attributes. Chose the Object type Batch Recording, then created a Record using the name (CLI_PMR). And created the Batch record and then assign the fields name.
    2 - Maintain Source Structures – Created the Struture (CLI_PMR1)
    3 - Maintain Source Fields – Assign the fields name and length that I used in my program. (CLI_PMR1).
    4 - Maintain Structure Relations – Assign the Struture (CLI_PMR1 to CLI_PMR)
    5 - Maintain Field Mapping and Conversion Rules – The normal thing in this point.
    6 - Specify Files - Specified the Legacy Data, path for the file.
    7 - Generate Read Program – Generated the Program.
    8 – Read Data – Executed this Step and every thing is correct
    9 - Generate Conversion Program – Generated the program
    10 - Convert Data – Convert data
    11 - Display Converted Data – Every thing is fine, with no errors
    12 - Create Batch Input Session- At this the error message appears Error BDC_INSERT, Transaction code .. is invalid  time.
    At the time we have created other LSMW programs for this T-Code and every thing is OK.
    I'm using the T-CODE=XD01
    Best Regards
    Pedro Miguel Rodrigues

    Hi, I had the same problem in LSMW when generating a batch input for trx IE01. The cause was that there were tab/newline-characters in my text file (some descriptions contained tab-characters). Since I used a tab delimited file, these tabs/newlines in the fields messed up my file.
    The excel file contained multiple lines per cell in some description fields. When this was exported to tab delimited text, it contained additional tabs. After checking the contents and removing the tabs/newlines from Excel and performed a new export to txt-file, it was solved.
    Best regards,
    Jan-Peter Molenaar
    SAP EAM Consultant

  • Error as section code is mandatory

    HI all,
    I have small issue, please let me know the solution for that, posting was done  in last fiscal year afterward that they small change in sap.now when i am doing manual clearing f-44, it showing error as section code is mandatory,
    now i want clear the posting , pleae let me know
    Thanks

    Hi,
    It might happen that the original documents might not have the section code filled. You can use J1INPP to populate the section code and business place in the already posted MM flow documents.
    Then change the field status of posting keys and GL account to show the section code for document entry.
    Also check the validation in OB28, whether that is correctly setup.
    Regards,
    Gaurav

  • WS Navigator shows error "Invalid Response Code (500)

    I have published a ECC 6.0 webservice in PI Service Registry. I use NW Dev Studio and attempt to find the published WS but I get an error in the WS Navigstor.
    Endpoints were created so I attempt to consume it in NWDS but I get the the following error:
    "Invalid Response Code: (500) WSDL could not be generated  The requested URL........""
    In somamanger I can see the WSDL and it looks fine...
    Any ideas or steps that I need to do or missed?
    Thanks
    Mikie

    Hi,
    Are you able to test the web service on the web service navigator successfully. On the soamanager you have an option for testing the web services in web service navigator.
    Regards,
    Yasar

  • Source Code Longer Than Table --Dump. Wht to do?

    Hi All,
    I have created a Z-subrouitne pool and coded print program with Entry rountines for smartforms in it. When I tried to maintian the output control, stating the name of program and entry rountine of it, it is throwing dump while saving.
    it is saying:
    <b>The ABAP source code lines are longer than the width of the internal</b>
    The detail is:
    An exception occurred. This exception is dealt with in more detail below       
    . The exception, which is assigned to the class 'CX_SY_READ_SRC_LINE_TOO_LONG',
      was neither                                                                   
    caught nor passed along using a RAISING clause, in the procedure               
      "NAST_FORM_EXISTENCE_CHECK" "(FUNCTION)"                                      
    Since the caller of the procedure could not have expected this exception       
      to occur, the running program was terminated.                                 
    The reason for the exception is:                                               
    You tried to read the program "SAPMZMM_PRINT" from the database. The READ      
      REPORT                                                                        
    statement allows you to copy a program's source code into an internal          
    table. The lines of source code must not be longer than the width of the       
      internal table. <b>The internal table is 72 characters wide. The source          
    code line is 87 wide.    </b>                                                      
    But I kept all the line (and re adjusted the longer one) within 72 char. the why am I  facing this error? please suggest how to correct it.
    Rewards point guranteed.
    Anid.

    HI,
    in order to be sure, open the abap editor and click Utilities->Settings and check Downward-Compat. Line Length (72). Then go to SAPMZMM_PRINT and do a pretty print or  just activate it. This should be ok.
    Kostas

  • Error "......requested a year before the transfer."

    Hi,
    Iam getting the error "For company code      1000 you requested a year before the transfer" while executing the program RABEST01. Can any one give the cause of the error and how to resolve it.
    regards,
    rss

    I assume you are trying to run an asset balance report. Are you trying to run it for a date befor your asset legacy transfer date ?Check your legacy transfer date, you will not be able to run any asset report in system before the transfer date.

  • Code of a method longer than 65535 bytes...

    I am working with Tomcat32. I made a taglibrary(that includes just one tag, for testing) and implemented the tag in java (a simple one, it's just writing a text). I put that tag into a JSP page and when I go to that page, the tag displays a text on the screen. Everything works just fine, but if I have a greater number of tags inside the JSP(about 170), then I get an error message. Tomcat makes the .java -file, compiles it to the .class file, and then just before displaying the text, I get the following err.msg: "Code of a method longer than 65535 bytes..." Thanks for any help I get ! Bye, Nico

    The code of a method cannot longer than 65535 bytes, but note that in
    http://java.sun.com/docs/books/vmspec/2nd-edition/html/ClassFile.doc.html
    the attribute length field is specified as four bytes:
    u4 attribute_length;
    You can demonstrate this for yourself with a program I recently posted here
    http://forum.java.sun.com/thread.jspa?threadID=603213
    by changing the num_calls from 5000 to 50000 .
    The error will look like:
    Exception in thread "main" java.lang.ClassFormatError: a1000000000 (Code of a me
    thod longer than 65535 bytes)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:448)
    at maxperm_cltest$MyLoader.doClass(maxperm_cltest.java:303)
    at maxperm_cltest.main(maxperm_cltest.java:282)
    I note that repeatedly calling a no-arg void method is only four bytes per call. Your example, compiled by Sun's javac, would only consume about 50 bytes for the code and 100 bytes in the class file overall.

  • URGENT: Please Help (error in flash code)

    I have a major deadline tomorrow and a problem has arisen. If anyone can take a look at my file and help me it would be greatly appreciated
    I was converting artwork to components and assigning interactions. When I went to run the project, it gave me the following error: "Flash Catalyst cannot run the project because of an error in the code. To find the error, switch to the code workspace and look in the Problems Panel."
    The error message read, specifically, "identifier 'group6' used more than once."
    I wasn't confident enough to start tweaking the code, so I just deleted the interactions and converted the components back to artwork hoping to reverse the problem.
    It didn't work.
    Unfortunately, I was saving more often than I was "compiling" because FC has been crashing on me with this particular file. As a result, I was saving a file that wouldn't compile and can no longer go back.
    HELP! I WILL EMAIL YOU MY FILE!
    I think I figured out the problem. I opened up an older file and began the painful process of recreating my work. I reverted a component called "Option Button" to artwork and when I compiled, I got the same error: "identifier 'group6' used more than once" and "identifier 'group7' used more than once." Is this happening when I convert a component back to artwork and it makes mistakes identifying/naming its parts??
    I tried reconverting the artwork to a component, thinking that might solve the problem, but it didn't...

    Hi Sponce,
    This is a bug in FC: FC has assigned two different objects to be called "group6". Please email me the file so I can make sure we have this bug filed. To work around  it, you just need to figure out which objects have the ID "group6" and delete one of them. This is pretty straightforward: in the problems panel, the errors will have a line #. Find that line # in the file - that tells you where the error is in the code. Now you need to figure out which object that is. You might be able to do this by looking at what it has inside it: if it's a  tags inside it, well, then, it's the group with 3 rects. Otherwise, you can do it by position in the file: the code is in reverse z-order, so the last thing in the code is the topmost thing in the layers panel.
    -Adam

Maybe you are looking for