WD- "Internal error occured at initialize in source code of INTERF_SECTION"

Hello Experts,
I am facing a strange error in Webdynpro ABAP.
When I try to check or save the webdynpro component, the system is giving me an error "Internal error occured at initialize in source code of INTERF_SECTION". It could not save the changes or activate the component.
It will be great if somebody can help me to resolve this error.
Thank you in advance
Best regards
Ravi

You should defintely enter a support ticket (after search SAP Notes of course - although I didn't find anything in a quick search that matched).

Similar Messages

  • Flash Builder 4.5 Data Services Wizard, setting up REST service call returns Internal Error Occurred

    Dear all -
    I am writing with the confidence that someone will be able to assist me.
    I am using the Flash Builder Data Services Wizard to access a Server that utilizes REST type calls and returns JSON objects. The server is a JETTY server and it apparantly already works and is returning JSON objects (see below for example). It is both HTTP and HTTPS enabled, and right now it has a cross-domain policy file that is wide open (insecure but its not a production server, it's internal).
    The crossdomain file looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
       <allow-http-request-headers-from domain="*" headers="*" secure="false"   />
       <allow-access-from domain="*" to-ports="*" secure="false"/>
       <site-control permitted-cross-domain-policies="master-only" />
    </cross-domain-policy>
    The crossdomain file is in the jetty server's root directory and is browseable via HTTP and HTTPS (i.e. browsing to it returns the xml)
    Now before all of you say that using wizards sucks (generally) I thought I would utilize the FB Data Services Wizard as at least it would provide a template for which I could build additional code against, or replace and improve the code it produces.
    With that in mind, I browse to the URL of the Jetty Server with any web browser (for example, Google Chrome, Firefox or IE) with a URL like this (the URL is a little confidential at the moment, but the structure is the same)
    https://localhost:somePort/someKey/someUser/somePassword/someTask
    *somePort is the SSL port like 8443
    *someKey is a key to access the URL's set of services
    returns a JSON object as a string in the web browser and it appears like the following:
    {"result":success,"value":"whatEverTheValueShould"}
    Looks like the JSON string/object is valid.
    I went through the Flash Builder Data Services Wizard to set up HTTP access to this server. The information that I filled in is described below:
    Do you want to use a Base URL as a prefix for all operation URLs?
    YES
    Base URL:
    https://localhost:8443/someKey/
    Name                    : someTask
    Method                    : POST
    Content-Type: application/x-www-form-urlencoded
    URL                              : {someUser}/{somePassword}/someTask
    Service Name: SampleRestapi
    Services Package: services.SampleRestapi
    datatype objects: valueObjects:
    Completing the wizard, I run the Test Operation command. Remember, no authentication is needed to get a JSON string.
    It returns:
    InvocationTargetException: Unable to connect to the URL specified
    I am thinking - okay, but the URL IS browseable (as I originally was able to browse to it, as noted above).
    I continue to test the service by creating a Flex application that accepts a username and password in a form. when the form is submitted, the call to the service is invoked and an event handler returns the result. The code is below (with some minor changes to mask the actual source).
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:s="library://ns.adobe.com/flex/spark"
                                     xmlns:mx="library://ns.adobe.com/flex/mx"
                                     xmlns:SampleRestapi="services.SampleRestapi.*"
                                     minWidth="955" minHeight="600">
              <fx:Script>
                        <![CDATA[
                                  import mx.controls.Alert;
                                  import mx.rpc.events.ResultEvent;
                                  protected function button_clickHandler(event:MouseEvent):void
                                            isUserValidResult.token = SampleRestAPI.isUserValid(userNameTextInput.text,passwordTextInput.text);
                                  protected function SampleRestAPI_resultHandler(event:ResultEvent):void
                                            // TODO Auto-generated method stub
                                            // print out the results
                                            txtAreaResults.text = event.result.message as String;
                                            // txtAreaResults.appendText( "headers \n" + event.headers.toString() );
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <SampleRestapi:SampleRestAPI id="SampleRestAPI"
                                                                                                 fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)"
                                                                                                 result="SampleRestAPI_resultHandler(event)"
                                                                                                 showBusyCursor="true"/>
                        <s:CallResponder id="isUserValidResult"/>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Form defaultButton="{button}">
                        <s:FormItem label="UserName">
                                  <s:TextInput id="userNameTextInput" text="q"/>
                        </s:FormItem>
                        <s:FormItem label="Password">
                                  <s:TextInput id="passwordTextInput" text="q"/>
                        </s:FormItem>
                        <s:Button id="button" label="IsUserValid" click="button_clickHandler(event)"/>
                        <s:FormItem  label="results:">
                                  <s:TextArea id="txtAreaResults"/>
                        </s:FormItem>
              </s:Form>
    </s:Application>
    It's a simple application to be sure. When I run it , I get the following returned in the text area field txtAreaResults:
    An Internal Error Occured.
    Which is equivalent to the following JSON string being returned:
    {"success":false,"value":"An Internal Error Occured"}
    It appears that the call is being made, and that a JSON object is being returned... however it does not return the expected results?
    Again the URL constructed is the same:
    https://www.somedomain.com:somePort/someKey/someUser/somePassword/someTask
    So I am wondering what the issue could be:
    1) is it the fact that I am browsing the test application from an insecure (http://) web page containing the Flex application and it is accessing a service through https:// ?
    2) is the JSON string structurally correct? (it appears so).
    3) There is a certificate enabled for HTTPs. it does not match the test site I am using ( the cert is for www.somedomain.com but I am using localhost for testing). Would that be an issue? Google Chrome and IE just asks me to proceed anyway, which I say "yes".
    Any help or assistance on this would be appreciated.
    thanks
    Edward

    Hello everyone -
    Since I last posted an interesting update happened. I tested my  Flex application again, it is calling a Jetty Server that returns a JSON object, in different BROWSERS.  I disabled HTTPS for now, and the crossdomain.xml policy file is wide open for testing (ie. allowing every request to return data). So the app accessing the data using HTTP only. Browsers  -  IE, Opera, Firefox and Chrome. Each browser contained the SAME application, revision of the Flash Player (10.3.183.10 debugger for firefox, chrome, opera, safari PC; 11.0.1.129 consumer version in IE9,) take a look at the screen shot (safari not shown although the result was the same as IE and chrome)
    Note that Opera and Firefox returned successful values (i.e. successful JSON objects) using the same code generated from the Data Services Wizard. Chrome, IE and, Safari failed with an Internal error. So I am left wondering - WHY? Is it something with the Flash Player? the Browsers?  the Flex SDK? Any thoughts are appreciated. Again, the code is found in the original thread above.

  • An internal error occurred while writing imported graphics in this document. The file has been saved

    An internal error occurred while writing imported graphics in this document. The file has been saved, but has lost some image data. Please report this error to Adobe Technical Support.
    How do i fix this, there are no images in the document
    thanks
    emma

    We are running FM version 7.2b144 on MS Win xp Pro (32 bit), and I did not notice this until service pack 3 was installed. I believe I have found a work around to the situation and another contributing cause. If graphic files are placed directly in an anchored frame instead of importing by reference, the file somehow becomes misplaced. If you right click the graphic and open the Object Properties dialog box, and see the phrase "no referenced file" below Main Editor: Referenced File: in the lower left hand corner, this has happened. I found if I removed all graphics files without references and imported them by reference, the source file may then be properly saved. I am also using a program called CCleaner, which removes cookies, temp files, browsing history and the like from a system. If the program settings are chosen too aggressively, and the application runs when FM has a file open, this same error will occur, even if all files are referenced properly. I don't know if SP3 has some similar application which is now running in the background and causing this.
    To summarize, if you want to retain SP3, I have eliminated this error by confirming the links to referenced graphics files and avoiding using 3rd party "cleaners" while FM is open.

  • SQL reporting - An internal error occurred on the report server. See the error log for more details. (rsInternalError)

    I have created an RDL file programatically. When I execute the code I get the error as mentioned below:
    Error: Sub report cannot be shown.
    An internal error occurred on the report server. See the error log for more details. (rsInternalError)
    When I copy and paste the code of RDL file into new RDL file and try to preview the output I get correct result.
    Note: The new RDL file does not give any error if the output is seen using preview tab but it gives the error only when executed from report viewer or from internet explorer.
    Any Suggestion/feedback is highly appreciated.
    Thank You.
    The code of the sample RDL is shown below:
    <?xml version="1.0" encoding="utf-8"?>
    <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
      <DataSources>
        <DataSource Name="DataSource1">
          <DataSourceReference>DataSource1</DataSourceReference>
          <rd:DataSourceID>fe4806ee-0358-4a87-b764-ac5de049545e</rd:DataSourceID>
        </DataSource>
      </DataSources>
      <BottomMargin>0.25in</BottomMargin>
      <RightMargin>0.25in</RightMargin>
      <PageWidth>11in</PageWidth>
      <ReportParameters>
        <ReportParameter Name="machine_id">
          <DataType>String</DataType>
          <Prompt>machine_id</Prompt>
        </ReportParameter>
        <ReportParameter Name="from_date">
          <DataType>String</DataType>
          <AllowBlank>true</AllowBlank>
          <Prompt>From Date</Prompt>
        </ReportParameter>
        <ReportParameter Name="to_date">
          <DataType>String</DataType>
          <AllowBlank>true</AllowBlank>
          <Prompt>To Date</Prompt>
        </ReportParameter>
      </ReportParameters>
      <rd:DrawGrid>true</rd:DrawGrid>
      <InteractiveWidth>8.5in</InteractiveWidth>
      <rd:SnapToGrid>true</rd:SnapToGrid>
      <Body>
        <ReportItems>
          <Table Name="table1">
            <DataSetName>Main_Report</DataSetName>
            <TableGroups>
              <TableGroup>
                <Header>
                  <TableRows>
                    <TableRow>
                      <TableCells>
                        <TableCell>
                          <ReportItems>
                            <Textbox Name="textbox2">
                              <rd:DefaultName>textbox2</rd:DefaultName>
                              <ZIndex>1</ZIndex>
                              <Style>
                                <TextAlign>Left</TextAlign>
                                <PaddingLeft>2pt</PaddingLeft>
                                <PaddingBottom>2pt</PaddingBottom>
                                <PaddingRight>2pt</PaddingRight>
                                <PaddingTop>2pt</PaddingTop>
                              </Style>
                              <CanGrow>true</CanGrow>
                              <Value>=Fields!syscode.Value</Value>
                            </Textbox>
                          </ReportItems>
                        </TableCell>
                      </TableCells>
                      <Height>0.25in</Height>
                    </TableRow>
                  </TableRows>
                  <RepeatOnNewPage>true</RepeatOnNewPage>
                </Header>
                <Grouping Name="table1_Group1">
                  <PageBreakAtEnd>true</PageBreakAtEnd>
                  <GroupExpressions>
                    <GroupExpression>=Fields!syscode.Value</GroupExpression>
                  </GroupExpressions>
                </Grouping>
              </TableGroup>
            </TableGroups>
            <Details>
              <TableRows>
                <TableRow>
                  <TableCells>
                    <TableCell>
                      <ReportItems>
                        <Subreport Name="subreport1">
                          <Parameters>
                            <Parameter Name="machine_id">
                              <Value>=Fields!machine_ip.Value</Value>
                            </Parameter>
                            <Parameter Name="syscode">
                              <Value>=Fields!syscode.Value</Value>
                            </Parameter>
                            <Parameter Name="from_date">
                              <Value>=Parameters!from_date.Value</Value>
                            </Parameter>
                            <Parameter Name="to_date">
                              <Value>=Parameters!to_date.Value</Value>
                            </Parameter>
                          </Parameters>
                          <ReportName>Holding_Summary_Multi_Period</ReportName>
                        </Subreport>
                      </ReportItems>
                    </TableCell>
                  </TableCells>
                  <Height>0.25in</Height>
                </TableRow>
              </TableRows>
            </Details>
            <TableColumns>
              <TableColumn>
                <Width>10.5in</Width>
              </TableColumn>
            </TableColumns>
            <Height>0.5in</Height>
          </Table>
        </ReportItems>
        <Height>0.75in</Height>
      </Body>
      <rd:ReportID>d0a1293a-e98c-4f75-9597-03426d2e7218</rd:ReportID>
      <LeftMargin>0.25in</LeftMargin>
      <DataSets>
        <DataSet Name="Main_Report">
          <Query>
            <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
            <CommandText>select account_syscode as syscode , 'display Name' as display_name , * from mars_customer_list
    where machine_ip = @machine_id</CommandText>
            <QueryParameters>
              <QueryParameter Name="@machine_id">
                <Value>=Parameters!machine_id.Value</Value>
              </QueryParameter>
            </QueryParameters>
            <DataSourceName>DataSource1</DataSourceName>
          </Query>
          <Fields>
            <Field Name="syscode">
              <rd:TypeName>System.Int64</rd:TypeName>
              <DataField>syscode</DataField>
            </Field>
            <Field Name="display_name">
              <rd:TypeName>System.String</rd:TypeName>
              <DataField>display_name</DataField>
            </Field>
            <Field Name="customer_syscode">
              <rd:TypeName>System.Int64</rd:TypeName>
              <DataField>customer_syscode</DataField>
            </Field>
            <Field Name="account_syscode">
              <rd:TypeName>System.Int64</rd:TypeName>
              <DataField>account_syscode</DataField>
            </Field>
            <Field Name="machine_ip">
              <rd:TypeName>System.String</rd:TypeName>
              <DataField>machine_ip</DataField>
            </Field>
          </Fields>
        </DataSet>
      </DataSets>
      <Code>Shared offset As Integer
    Public Function GetPN(reset As Boolean, pagenumber As Integer) As Integer
      If reset
        offset = pagenumber - 1
      End If
      Return pagenumber - offset
    End Function
    </Code>
      <Width>10.5in</Width>
      <InteractiveHeight>11in</InteractiveHeight>
      <Language>en-US</Language>
      <PageFooter>
        <ReportItems>
          <Image Name="image1">
            <Sizing>Fit</Sizing>
            <Left>8.875in</Left>
            <MIMEType />
            <Width>1.5in</Width>
            <Source>External</Source>
            <Style />
            <Value>bottom_right_logo.gif</Value>
          </Image>
        </ReportItems>
        <Height>0.5in</Height>
        <PrintOnLastPage>true</PrintOnLastPage>
        <PrintOnFirstPage>true</PrintOnFirstPage>
      </PageFooter>
      <TopMargin>0.5in</TopMargin>
      <PageHeight>8.5in</PageHeight>
    </Report>

    i created a SSRS report with shared datasets and uploaded rdl files and rsd files , while trying to map rdl file with data sets i am getting an error
    when i click on manage for .rdl file, its throwing error , as
    "An internal error occurred on the report server. See the error log for more details. (rsInternalError)
    Object reference not set to an instance of an object.
    please help me with this

  • AC-50480: Internal error occurred: java.lang.Exception: Error while generat

    Hi there
    I am moving db tier on another server with the clone utility. post clone on db tier were successful but on apps tier i am getting following error in adconfig.log file
    AC-50480: Internal error occurred: java.lang.Exception: Error while generating listener.ora.
    Error generating tnsnames.ora from the database, temporary tnsnames.ora will be generated using templates
    Instantiating Tools tnsnames.ora
    Tools tnsnames.ora instantiated
    Web tnsnames.ora instantiated
    adgentns.pl exiting with status 2
    ERRORCODE = 2 ERRORCODE_END
    .end std out.
    .end err out.
    Result : FAILED
    i have used following options for solution but no success
    1. Open a new shell and source the APPS Environment.
    2. Start the sqlplus Utility and execute following commands :
    sqlplus apps/<Password>
    exec fnd_conc_clone.setup_clean
    3. Open a new shell and source the DB-Tier Environment.
    4. Execute Autoconfig at the DB-Tier.
    5. Switch to the Shell with the APPS Enviornment sourced or start a new Shell and source the APPS Environment.
    6. Execute Autoconfig at the APPS-Tier.
    autoconfig run successufully on db tier but failed on apps tier.
    Please help me out what to do.
    Regards,
    Mohsin

    Hi;
    What is EBS version?
    Please see:
    AC-50480: Internal error occurred: java.lang.Exception: Error while generating listener.ora. [ID 1324667.1]
    During Autoconfig "adgentns.pl" fails: "AC-50480: Internal error occurred: java.lang.Exception: Error while generating listener.ora" [ID 453901.1]
    "AC-50480" Error Generating the "listener.ora" File. [ID 1089036.1]
    Regard
    Helios

  • JRE 1.4 US only - Error occurred during initialization of VM

    JAVA.EXE in JRE give that message Error occurred during initialization of VM with throwing NullPointerException
    This is NOT happening when using JRE international
    OR sdk - which is almost like JRE international but
    for some unknown reason WITHOUT the SERVER
    directory which is a bug for itself.

    I am getting a report from a customer that seems to match the symptoms you describe i.e. they see
    Error occurred during initialization of VM
    java.lang.NullPointerException
    Did you find out what was causing this. I seem unable to reproduce the problem with the 1.4.0 US JRE.

  • E-Recruitment - Error "An Internal Error Occured Please try again Later"

    Hi Experts,
    When I try generating the url, It popups for User Name and Password, then it gives the Message like this..
    "An Intenal error occured, Please try again later"
    Kindly help, Is that any Techinical Settings I have missed to get this error...?
    Thanks
    Nirmal Kumar

    Hi everybody,
    I'm getting the same error in erec BSP pages.
    "An internal error occurred. Please try again later."
    i Checked the detailed about the error in SLG1 transaction.
    The error occurred in program CL_HRRCF_QA_TEMPLATE==========CM004 line 29
    Message no. HRRCF0001010
    Diagnosis
    The system detects a technical inconsistency.
    System Response
    The operation will be terminated.
    Termination takes place in:
    Main program: CL_HRRCF_QA_TEMPLATE==========CP
    Subroutine: CL_HRRCF_QA_TEMPLATE==========CM004
    Line in source code: 29
    The error occurred in program CL_HRRCF_SIMPLE_MAIN_OBJECT===CM00A line 45
    Message no. HRRCF0001010
    Diagnosis
    The system detects a technical inconsistency.
    System Response
    The operation will be terminated.
    Termination takes place in:
    Main program: CL_HRRCF_SIMPLE_MAIN_OBJECT===CP
    Subroutine: CL_HRRCF_SIMPLE_MAIN_OBJECT===CM00A
    Line in source code: 45
    Can You please help me what would be the cause of this error.
    Regards,
    Nilesh

  • CNS-9025 An internal error occurred. ORA-00904: EXTRA_COL: invalid ID

    With our new version of Mobile Server (10.2.0.2) a lot of problems seem to have been solved. In older versions we didn't succeed in republishing. Meaning we had to drop the old version en publish a new version. Doing this meant we had to redo data subsetting for every user, which is a lengthy task. Besides it triggers full refresh for every user, that is a major one as well.
    In the new version a lot goes better, but still we are experiencing some problems (or challenges).
    Again the main issue is that in the course of time our application grows.
    Now we stumble into the simple issue:
    We want to add a column to our database.
    What we do is the following (as described by Oracle):
    - Add the column (EXTRA_COL) to our 'mother'database
    - Alter the snapshot definition for this column (add the column)
    - Republish...
    When I resynch the new column appears on my client, so far so good.
    However if I change something to the data on the client and I do a resynch I get:
    "CNS-9025 An internal error occurred. ORA-00904: EXTRA_COL: invalid ID.
    It seems as though 'internally' the column is not added everywhere it should be.
    For example the CEQ$table does not have the EXTRA_COL column.
    I'm quite sure that somebody else should encounter these problems as well as new views lead to data structure changes quite often.
    Anybody encountering this as well, and more important, somebody got a clue on what is going on?
    Thnx in advance.

    There is a bug with 10.2 where the re-publish of a item that has has ddl changes (like an extra column) does not always work correctly. It seems to be intermittent (at least in our environment) and the symptoms are
    alter base schema table
    re-publish snapshot (note if the snapshot definition is the standard 'select * from ...' you should not need to do anything apart from republishing)
    no errors reported in the re-publish
    however the new column has not been added to either CEQ$object OR CFM$WTGPI_nnnnn (the inqueue table for the object) - the missing column on the CFM$ table is the source of the error shown above in the posting as there is a mismatch when the data is uploaded
    dropping the publication item would fix the problem, but be aware if you have any users out there, when they synchronise any data being uploaded for a publication item that has been dropped and re-created will be LOST with no error being reported (in the sync history you will see a blank name in the upload section), due to the internal mapping having changed
    We have found that normally when this happens forcing a republish of the affected object by making a change to the selection logic (eg adding something like 'id is not null') and republishing again fixes the problem - as with a lot of mobile issues, fiddle with it enough and it will eventiually sort itself out

  • Adobe Reader Startup Error (Internal Error Occurred)

    I've been using adobe reader X without a problem for a long time, until suddenly one day it started poping up a message "An internal error occurred" (marked with a red X), every time I try to run it or open a pdf file. The error pops up even when windows explorer tries to create thumbnails for pdf files, or when I try to save documents as pdfs in Microsoft Office Word.
    I uninstalled it, installed reader XI, but get the same error.
    Help please, I really need to be able to open pdf files !
    // Note: when I tried to download reader XI the normal way, it kept freezing at 50% with the message "failed to initialize". I tried turning off firewalls/antivirus but the problem still occurred. (the installer file kept disappearing after the error, so I assumed it was being quarantined by my antivirus). I had to download the complete installer manually in order to get it to work. I dont know if this could be somehow related.

    Sorry, no other idea except using the cleaner tool http://labs.adobe.com/downloads/acrobatcleaner.html
    then reinstall using the full installer from http://get.adobe.com/reader/enterprise/

  • Illustrator CS5 (.ai) Flash Pro CS(5/6) Flex4 internal error occurs

    Hi, I'm begginer in Flash-Flex env development.
    pass through the data symbol drawn in Adobe Illustrator CS5 Converted to components in Flash Pro CS6,
    the swc file compiled with Flash Builder 4.6 Flex, Build an internal error occurs.
    Not all files to error, Occurs in some files.
    The fact that the file is not found error was passed to AbcCompiler is Why do not contain data when turned into swc in Flash Pro?
    I'm looking for information from people who were able to resolve the situation the same way.
    error log is as follows:
    !SESSION 2012-06-12 20:02:55.172 -----------------------------------------------
    eclipse.buildId=I20100608-0911
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=ja_JP
    Command-line arguments:  -os win32 -ws win32 -arch x86
    This is a continuation of log file C:\Users\User\Adobe Flash Builder 4.6\.metadata\.bak_0.log
    Created Time: 2012-06-12 23:26:39.448
    !ENTRY com.adobe.flexbuilder.project 4 43 2012-06-12 23:26:39.450
    !MESSAGE Uncaught exception in compiler
    !STACK 0
    java.lang.NullPointerException
              at java.io.ByteArrayInputStream.<init>(Unknown Source)
              at flex2.compiler.io.InMemoryFile.getInputStream(InMemoryFile.java:97)
              at flex2.compiler.Source.getInputStream(Source.java:381)
              at flex2.compiler.abc.AbcCompiler.parse1(AbcCompiler.java:196)
              at flex2.compiler.CompilerAPI.parse1(CompilerAPI.java:2872)
              at flex2.compiler.CompilerAPI.parse1(CompilerAPI.java:2825)
              at flex2.compiler.CompilerAPI.batch2(CompilerAPI.java:457)
              at flex2.compiler.CompilerAPI.batch(CompilerAPI.java:1291)
              at flex2.compiler.CompilerAPI.compile(CompilerAPI.java:1568)
              at flex2.tools.oem.Application.compile(Application.java:1349)
              at flex2.tools.oem.Application.recompile(Application.java:1287)
              at flex2.tools.oem.Application.compile(Application.java:886)
              at flex2.tools.flexbuilder.BuilderApplication.compile(BuilderApplication .java:359)
              at com.adobe.flexbuilder.multisdk.compiler.internal.ASApplicationBuilder $MyBuilder.mybuild(ASApplicationBuilder.java:319)
              at com.adobe.flexbuilder.multisdk.compiler.internal.ASApplicationBuilder .build(ASApplicationBuilder.java:129)
              at com.adobe.flexbuilder.multisdk.compiler.internal.ASBuilder.build(ASBu ilder.java:198)
              at com.adobe.flexbuilder.multisdk.compiler.internal.ASItemBuilder.build( ASItemBuilder.java:70)
              at com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.bu ildItem(FlexProjectBuilder.java:607)
              at com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.bu ild(FlexProjectBuilder.java:382)
              at com.adobe.flexbuilder.project.compiler.internal.FlexIncrementalBuilde r.build(FlexIncrementalBuilder.java:187)
              at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java :728)
              at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
              at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager .java:199)
              at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager .java:239)
              at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java :292)
              at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
              at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager .java:295)
              at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildMan ager.java:351)
              at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java :374)
              at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.ja va:143)
              at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:2 41)
              at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)

    as a result of devising the data, we were able to eliminate the error.
    I will be shared information when I get the cause of the path information available.

  • ATG Error occurred during initialization of VM when trying to start CIM

    I am following this tutorial: https://www.sparkred.com/blog/installing-oracle-commerce-11-1-with-commerce-reference-store/
    I get Endeca working fine, but when I try to start ATG using CIM
    I use:
    [oracle@soabpm-vm ~]$ source ~/atg-env.sh
    [oracle@soabpm-vm ~]$ sh $DYNAMO_HOME/bin/cim.sh
    I get this error:
    Error occurred during initialization of VM
    java/lang/NoClassDefFoundError: java/lang/Object
    Error: /opt/java/jdk1.7.0_55/bin/java  -Djava.security.policy=lib/java.policy -Datg.dynamo.home=/opt/atg/ATG11.1/home -Datg.dynamo.root=/opt/atg/ATG11.1/home/.. -Datg.dynamo.display=:0.0 -Djava.protocol.handler.pkgs=atg.net.www.protocol -Djava.naming.factory.url.pkgs=atg.jndi.url  -Datg.dynamo.modulepath=/opt/atg/ATG11.1/home/.. -Xms512m -Xmx1024m -XX:MaxPermSize=128m -XX:MaxNewSize=128m -Datg.dynamo.server.home=CIM -Datg.dynamo.modules=CIM:DSS -Datg.dynamo.layers= -Datg.dynamo.root=/opt/atg/ATG11.1/home/.. -Datg.cygwin=false atg.applauncher.dynamo.DynamoServerLauncher -environment /tmp/dynamoEnv4612.sh CIM:DSS -classPathModules CIM:DSS  failed
    CLASSPATH was /opt/atg/ATG11.1/home/locallib/:/opt/atg/ATG11.1/home/lib/launcher.jar:/opt/atg/ATG11.1/home/../Tomcat/apache-tomcat-7.0.37/lib/servlet-api.jar:/opt/atg/ATG11.1/home/../Tomcat/apache-tomcat-7.0.37/lib/jsp-api.jar:/opt/atg/ATG11.1/home/../DafEar/Tomcat/atomikos/jta.jar:/opt/atg/ATG11.1/home/../DAS/lib/min-ejb3-api.jar:/opt/atg/ATG11.1/home/../Tomcat/apache-tomcat-7.0.37/lib/servlet-api.jar:/opt/atg/ATG11.1/home/../Tomcat/apache-tomcat-7.0.37/lib/jsp-api.jar:/opt/atg/ATG11.1/home/../DafEar/Tomcat/atomikos/jta.jar:/opt/atg/ATG11.1/home/../DAS/lib/min-ejb3-api.jar
    DYNAMO_HOME was /opt/atg/ATG11.1/home
    DYNAMO_MODULES was CIM:DSS
    Error occurred during initialization of VM
    java/lang/NoClassDefFoundError: java/lang/Object
    My atg-env.sh contains:
    #!/bin/sh
    export JDK_HOME=/opt/java/jdk1.7.0_55
    export PATH=$PATH:/opt/java/jdk1.7.0_55/bin
    export JAVA_HOME=$JDK_HOME
    export JBOSS_HOME=/opt/jboss/jboss-eap-6.1
    export DYNAMO_ROOT=/opt/atg/ATG11.1
    export DYNAMO_HOME=$DYNAMO_ROOT/home
    export ATGJRE=$JDK_HOME/bin/java
    Any help would be appreciated.

    I fixed this by going into the ant-sca-compile.xml and changing the <jvmarg value="-Xmx512m"/>below.
    Before
    <target name="scac" description="Compile and validate a composite">
    <scac input="${scac.input}" outXml="${scac.output}" error="${scac.error}" appHome="${scac.application.home}" failonerror="true" displayLevel="${scac.displayLevel}">
    <jvmarg value="-Xms128m"/>
    <jvmarg value="-Xmx1024m"/>
    <jvmarg value="-XX:PermSize=32m"/>
    <jvmarg value="-XX:MaxPermSize=512m"/>
    <!-- jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"/ -->
    </scac>
    After
    <target name="scac" description="Compile and validate a composite">
    <scac input="${scac.input}" outXml="${scac.output}" error="${scac.error}" appHome="${scac.application.home}" failonerror="true" displayLevel="${scac.displayLevel}">
    <jvmarg value="-Xms128m"/>
    <jvmarg value="-Xmx512m"/>
    <jvmarg value="-XX:PermSize=32m"/>
    <jvmarg value="-XX:MaxPermSize=512m"/>
    <!-- jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"/ -->
    </scac>

  • Internal error occurs in background job scheduling

    Hi Experts,
    We are facing an error message "Internal error occurs in background job scheduling" while trying to execute a custom report(Z report) in background in SA38.
    Please find the following observation on our side on this message.
    1) This message is not coming for only one report not for others.
    2) SU53 screen shot shows that SE38 check is failed, but the weird thing is not happening for other report.
    3) Persons having SE38 auhtorization are able to run this report.
    Please advise.
    Thanks in advance,
    Viven

    What is the message ID and number? Have you tried OSS search and debugging?
    What does this program do, in a nutshell?

  • Error occurred during initialization of VM

    im new to jdeveloper please anyone help me...
    Starting WLS with line:
    C:\Oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=C:\Users\reir\AppData\Local\Temp\trustStore9189074039610736238.jks -javaagent:../modules/org.eclipse.persistence_1.1.0.0_2-1.jar -Doracle.jdeveloper.adrs=true -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Dcommon.components.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=C:\Users\reir\AppData\Roaming\JDEVEL~1\SYSTEM~1.81\DEFAUL~1 -Djrockit.optfile=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.config.dir=C:\Users\reir\AppData\Roaming\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.domain.config.dir=C:\Users\reir\AppData\Roaming\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\config\FMWCON~1 -Digf.arisidbeans.carmlloc=C:\Users\reir\AppData\Roaming\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\config\FMWCON~1\carml -Digf.arisidstack.home=C:\Users\reir\AppData\Roaming\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\config\FMWCON~1\arisidprovider -Doracle.security.jps.config=C:\Users\reir\AppData\Roaming\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\config\fmwconfig\jps-config.xml -Doracle.deployed.app.dir=C:\Users\reir\AppData\Roaming\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\servers\DefaultServer\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=C:\Users\reir\AppData\Roaming\JDEVEL~1\SYSTEM~1.81\DEFAUL~1\oracle\store\gmds -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1\patch_jdev1112\profiles\default\sysext_manifest_classpath weblogic.Server
    Error occurred during initialization of VM
    Error opening zip file or JAR manifest missing : ../modules/org.eclipse.persistence_1.1.0.0_2-1.jar
    agent library failed to init: instrument
    Process exited.

    This issue is usally caused by missing rt.jar. It's a good idea to manually unpack libraries.
    Look for your java library directory (usually jre<version>/lib) .
    If you can see rt.pack and can't see rt.ajr -
    make the follwoing (I consider you save this to a script file then run it and your JAVA_HOME is correctly set and you're using some sort of UNIX):
    ---------------------------------cut---------------------------------
    #!/bin/sh
    JH=${JAVA_HOME:-"/usr/java/jre1.5.0_04"}
    UNPACK_EXE=$JH/bin/unpack200
    if [ -f $UNPACK_EXE ]; then
    chmod +x $UNPACK_EXE
    PACKED_JARS="lib/rt.jar lib/jsse.jar lib/charsets.jar lib/ext/localedata.jar lib/plugin.jar lib/javaws.jar lib/deploy.jar"
    for i in $PACKED_JARS; do
    srcFile=${JH}/`dirname $i`/`basename $i .jar`.pack
    dstFile=${JH}/$i
    if [ ! -f  $srcFile ]; then
    printf "Error: Unable to find %s. Please, check out your installation.\n" $srcFile
    exit 1
    fi
    $UNPACK_EXE $srcFile $dstFile
    if [ ! -f  $dstFile ]; then
    printf "Error: unpack could not create %s. Please refer to the Troubleshooting\n" $dstFile
    printf "Section of the Installation Instructions on the download page.\n"
    exit 1
    fi
    rm -f $srcFile
    done
    else
    printf "Error: unpack command could not be found. Please refer to the \n"
    printf "TroubleShooting Section of the Installation Instructions on \n"
    printf "the download page.\n"
    printf "Please do not attempt to install this archive file.\n"
    exit 2
    fi
    ---------------------------------cut---------------------------------

  • Error occurred during initialization of VM. Could not reserve enough space

    Dear All,
    I am trying to install SAP NetWeaver 7.0 SR2 SP9 on Oracle 10.2 and platform is Windows 2003 32 bits. While installing, in t he restarting the JAVA Instance step, server0 node is getting shutdown. When I further analyzed dev_server0 log, I could get below useful information:
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    [Thr 6008] JLaunchIAbortJava: abort hook is called
    [Thr 6008] **********************************************************************
    *** ERROR => The Java VM aborted unexpectedly.
    *** Please see SAP Note 943602 , section 'Java VM crashes'
    *** for additional information and trouble shooting.
    [Thr 6008] JLaunchCloseProgram: good bye (exitcode = -2)
    I referred the note mentioned above and it inturn referred to note# 940893. I followed many other sap notes also. However my above problem did not solve yet. I have checke my JAVA SDK version also. It is j2sdk1.4.2_11 and seems to be fine. My systems memory is 3 GB and I gave 20 GB as Virtual memory. I dont think that it should be a memory problem. However somewhere I am lost and can not get the grip over the problem  to resolve it.
    May I request all of you to kindly help me on above issue? Please let me know if you need any more information.
    Waiting for your kind replies.
    Regards,
    Faisal

    Dears,
    Thank you very much for your replies. The heap size was 1024. I changed it to the below:
    Heap Size=512 (earlier 1024)
    Changed below paramters in configtool:
    -Xmx512m (earlier 1024)
    -Xms256m (earlier 1024)
    Hope this information will be helpful to others as well.
    Once again, I thank both of you to guide me in proper directions.
    Regards,
    Faisal

  • Can't launch Adobe Reader 11.0.06: 'An internal error occurred'

    Today I purchased a highly recommended e-book ('Rally All Around') which is available by download. Double clicking on its file brought up a message that I needed a newer version of Adobe Reader, and linked me directly to 11.0.06 (Mac) on the Adobe site, which I downloaded and installed. Unfortunately, this application refuses to launch: irrespective of whether I try to launch it directly, from the Applications Folder, or by double clicking the new book, I receive the 'An internal error occurred' error message and the program shuts down. I have followed the advice provided in this forum for a previous version of Reader: I deleted all existing versions of the program, as well as the Adobe Folder in my Library, then attempted to reinstall. I've also used 'Get Info' to ensure I have the required read/write permissions on the application, and the Adobe Library Folder. Unfortunately now I have lost the ability to open any PDF file at all!  I'm very unimpressed (to say the least!) that I have lost hours trying to troubleshoot this problem, as well as my money for the book and functionality on my machine! I am running Mac OS X 10.9.1 on an Intel Core i5. I'd be grateful for help, and advice, if you care to share. I'd like to count to 10 and try and fix this, before succumbing to the temptation to send a howler to the publisher.

    I did eventually solve it, and I think it was using this advice I received on the Adobe Forums:
    The error that you are facing might be due the reason that the user logged in doesn't have permissions to access the following directory: "~/Library/Application Support/Adobe". Can you please try the following steps with the user account in which you are facing the error:
    1. Remove the Adobe Reader from Applications directory by moving it to Trash.
    2. Now delete the following directory: "~/Library/Application Support/Adobe". Please note that this path is for the Library folder present inside the user directory that you are currently logged in.
    3. Restart the machine.
    4. Now re-install Adobe Reader XI.

Maybe you are looking for