Template error when pasting code between editable region tags

Hi everyone,
The following code snippet is part of the code in my template file:
  <div id="content">
  <div id="content_main">
    <div id="content_inner"><!-- InstanceBeginEditable name="inner" --><!-- InstanceEndEditable --></div>
    <div id="sidebar">
    <h3 class="round2">Categories</h3>
Note that the above code contains an editable region as follows:
<!-- InstanceBeginEditable name="inner" --><!-- InstanceEndEditable -->
Back in my file that's attached to this template, I tried to paste code between these two tags:
<!-- InstanceBeginEditable name="inner" --> A whole heap of code was pasted here <!-- InstanceEndEditable -->
But I'm getting the following error:
"You have made changes to code that is not marked as editable. If you retain those changes, they will be lost the next time you apply a template update to this file. Do you want to retain the changes until then?"
I don't know why it's saying this since I'm adding code in between the two instance editable tags.
Does anyone know what's going on here?
Appreciate any help.

Hello hth
Just so you'll know, although 'hth' looks like a signature, it's really an abbreviation for "hope this helps"!
I have put the code in that you suggested, (via new style sheet I named paradent) enclosed the text within the <p>...</p> but still not working:
P
.twoColLiqLtHdr #container #mainContent .paradent {
font-family: Arial, Helvetica, sans-serif;
font-size: medium;
font-weight: normal;
text-indent: 35px;
word-spacing: normal;
<span class="paradent">No color flagged the coming of spring to the Lowveld. The rains were late again, and from the Limpopo to the Sabi River and beyond into Mozambique, the mopani trees were leafless and grey; the wide rivers dry and white under the relentless sun.<br />
This is not valid code - it's not how you use CSS.
All CSS needs to either be placed in an external stylesheet which is linked in the head of the document, embedded between <style> tags in the head of the document, or placed inline in the target tag.  Examples of each would be -
LINKED -
<link rel="stylesheet" href="path_to_CSS_file.css" type="text/css">
</head>
EMBEDDED -
<style type="text/css">
body { margin:0; }
</style>
INLINE -
<body style="margin:0;">
Yours is not only in the wrong place (within the body content), but it's also between <p> tags rather than <style> tags.  That's not going to work at all.  Can you handle getting that rule into the right place in your code?

Similar Messages

  • Template: Adding Site Wide Code To Editable Region

    I have a template
    I have an editable region called content
    I would now like to add a navigation bar within the editable region, so that it can be managed from the Template and thereon aplies to the child pages
    Q:
    How do I insert a site wide section within an editable region, which is only edited via the template, so that I can set up my navigation bar?
    woolf

    So, here's a sample page: http://www.gravenimagedesign.net/levnav/
    Here's the template code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    #header {
         background-color: #333;
         height: 200px;
         width: 800px;
         position: relative;
         margin: 0 auto;
    #header h1 {
         color: white;
    #content {
         background-color: #FFC;
         height: 500px;
         width: 800px;
         margin: 0 auto;
         border: 1px solid red;
         position: relative;
    #content h1 {
         color: red;
         text-align: center;
    #apDiv1 {
         position:absolute;
         width:663px;
         height:115px;
         z-index:1;
         left: 63px;
         top: 438px;
         background-color: #FCF;
    -->
    </style>
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body>
         <div id="header"><!--begin header-->
           <h1>This header div is position: relative;</h1>
           <div id="apDiv1">
             <ul id="MenuBar1" class="MenuBarHorizontal">
               <li><a class="MenuBarItemSubmenu" href="#">Item 1</a>
                 <ul>
                   <li><a href="#">Item 1.1</a></li>
                   <li><a href="#">Item 1.2</a></li>
                   <li><a href="#">Item 1.3</a></li>
                </ul>
              </li>
               <li><a href="#">Item 2</a></li>
               <li><a class="MenuBarItemSubmenu" href="#">Item 3</a>
                 <ul>
                   <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
                     <ul>
                       <li><a href="#">Item 3.1.1</a></li>
                       <li><a href="#">Item 3.1.2</a></li>
                    </ul>
                  </li>
                   <li><a href="#">Item 3.2</a></li>
                   <li><a href="#">Item 3.3</a></li>
                </ul>
              </li>
               <li><a href="#">Item 4</a></li>
            </ul>
             <p><br />
            This menu bar is <strong>position: absolute;</strong></p>
             <p>It is  nested in the code inside the &quot;header&quot; div (the dark grey one), which is positioned &quot;relative.&quot;</p>
          </div>
         </div><!--end header-->
         <div id="content">
           <!--begin content-->
           <!-- TemplateBeginEditable name="EditRegion3" -->
           <h1>This text (really an h1) is appearing within the div with id of "content"</h1>
           <!-- TemplateEndEditable --></div>
         <!--end content-->
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
        </script>
    </body>
    </html>
    And here's a child page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/maintemplate.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    #header {
         background-color: #333;
         height: 200px;
         width: 800px;
         position: relative;
         margin: 0 auto;
    #header h1 {
         color: white;
    #content {
         background-color: #FFC;
         height: 500px;
         width: 800px;
         margin: 0 auto;
         border: 1px solid red;
         position: relative;
    #content h1 {
         color: red;
         text-align: center;
    #apDiv1 {
         position:absolute;
         width:663px;
         height:115px;
         z-index:1;
         left: 63px;
         top: 438px;
         background-color: #FCF;
    -->
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    </head>
    <body>
         <div id="header"><!--begin header-->
           <h1>This header div is position: relative;</h1>
           <div id="apDiv1">
             <ul id="MenuBar1" class="MenuBarHorizontal">
               <li><a class="MenuBarItemSubmenu" href="#">Item 1</a>
                 <ul>
                   <li><a href="#">Item 1.1</a></li>
                   <li><a href="#">Item 1.2</a></li>
                   <li><a href="#">Item 1.3</a></li>
                </ul>
              </li>
               <li><a href="#">Item 2</a></li>
               <li><a class="MenuBarItemSubmenu" href="#">Item 3</a>
                 <ul>
                   <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
                     <ul>
                       <li><a href="#">Item 3.1.1</a></li>
                       <li><a href="#">Item 3.1.2</a></li>
                    </ul>
                  </li>
                   <li><a href="#">Item 3.2</a></li>
                   <li><a href="#">Item 3.3</a></li>
                </ul>
              </li>
               <li><a href="#">Item 4</a></li>
            </ul>
             <p><br />
            This menu bar is <strong>position: absolute;</strong></p>
             <p>It is  nested in the code inside the &quot;header&quot; div (the dark grey one), which is positioned &quot;relative.&quot;</p>
          </div>
         </div><!--end header-->
         <div id="content">
           <!--begin content-->
           <!-- InstanceBeginEditable name="EditRegion3" -->
           <h1>This text (really an h1) is appearing within the div with id of &quot;content&quot;</h1>
           <!-- InstanceEndEditable --></div>
         <!--end content-->
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
        </script>
    </body>
    <!-- InstanceEnd --></html>
    I arbitrarily positioned the nav in the middle of the action. You can play with its positioning, but remember that it is positioned "absolutely" from the left and top of the "header" div. (in this case)
    If this is unclear, let me know! By the way, the CSS is in the head of the Template, and the child page, but I didn't print out the other auxiliary files, which you will get automatically if you insert a SpryMenuBar. But the sample on my site will work...
    Beth

  • Spry tool tip does not work in template or child pages within an editable region. Why not?

    Ok. so I am getting pretty frustrated. I take the time to learn how to use CSS and to create a template page for a Contractor Site (www.ContractorInsurance.net). The idea is to create a page that I can use for different classes of Contractors...right?
    Then I get all happy about being able to insert ToolTip onto pages to help the user. Great!
    LIfe to turn to Sorrow after nearly five hours of searching for a "eeking" answer.
    So what good does it do to have an Editable region to update if we cannot have the flexibility to insert a tool tip on child pages?  Ok so the fast solution is to what... Have a question mark image, insert another apDiv, name it toolTip_Not and provide it with a show=hide behavior?
    RRRRRrrr...
    This really sucks not being able to find a solution within a reasonable amount of time.

    I have tried thank you. However...it is still not working.
    www.ContractorInsurance.net/course_of_construction.php
    The error message is "Making this change would require code that is locked by a template translator"
        Re: Spry tool tip does not work in template or child pages within an editable region. Why not?
        created by altruistic gramps in Spry Framework for Ajax - View the full discussion
    If you have a look at the following simple document with a tooltipTooltip trigger goes here.
    Tooltip content goes here.
    you will notice that a couple of lines have been placed in the HEAD section of the document. When using DW templates, the HEAD section is usually not editable, hence the error mesaage. By default, your template should have an editable region in it just before the closing tag. It looks like this: <!-- TemplateBeginEditable name="head" > <! TemplateEndEditable --> Dreamweaver should be able to find that editable region and insert the
    <script> tag there automatically. Because you don't have an editable region like that in the <head>, open the master template, and paste the code above just before the closing </head>
    tag. Gramps
    Edited to remove personal data

  • Frequently faced errors when making code as unicode enabled document

    Hi ALL,
    Does any have frequently faced errors when making code as unicode enabled document
    please forward it to
    [email protected]
    thanks
    Suchitra

    WS_DOWNLOAD and WS_UPLOAD function calls will need to be replaced with GUI_UPLOAD and GUI_DOWNLOAD or the assocaited methods of the class CL_GUI_FRONTEND_SERVICES.  Also, some syntax changes to some statements, like OPEN DATASET will need the ENCODING extension.
    Regards,
    Rich HEilman

  • Adding editable region tags moves my content in non-editable regions

    I have a template based on a template (the first with my navigation, and the second is based on the first with a sidebar added). When I add an editable region to the second template, it moves my sidebar down to leave a gap between the nav bar and the top of the sidebar. On the second template I want to add editable regions to the content area and to the sidebar. Even if I don't add any content to the editable reagions and just place the editable regions tags, my sidebar still moves down. I have tried adding two seperate editable regions and also adding one large editable region covering the content area and sidebar and the sidebar moved both times. My content area is a div floated left and the sidebar is a div floated right.
    I don't understand why anything is moving when I am only adding tags to make an area editable

    Do you have a container that the two divs are in and if so, are you clearing the floats? It's hard to give an answer without seeing the problem page.
    Jim

  • With Firefox running, Office 2007 generates a "Cannot Empty Clipboard" error message when pasting information between Excel cells -- the behavior goes away when I close Firefox. Is there a way to prevent this?

    I am running Windows XP, Office 2007, and Firefox 3.6.13.
    Whenever I have Firefox running in the background and I attempt to paste information between Excel cells a "Cannot Empty Clipboard" error is generated. I have attempted numerous other fixes for this: Excel and Office settings. But nothing seems to help. When I close Firefox, the errors are no longer generated.

    The Skype add-in was the culprit in my case. Disabling it fixed the problem. As soon as I enable it, the problem comes back.

  • Templates in DW CS5.5 and editable regions

    I have a template page that has an editable region defined as follows:
    <div class="sidebar1">
        <nav>
          <ul>
            <li><a href="#">Home</a></li>
            <li><a href="#"></a></li>
            <li><a href="#"></a></li>
            <li><a href="#"></a></li>
            <li><a href="#">Members Only</a></li>
            <li><a href="#"> Gallery</a></li>
            <li><a href="#">Constitution</a></li>
            <li><a href="#">Links</a></li>
          </ul>
        </nav>
        <!-- InstanceBeginEditable name="all" -->
    </div>
          <!-- end .sidebar1 -->
      <article class="content">
        <h1>BCEF Clubs</h1>
        <section>
    other code goes here
    </section>
    <!-- InstanceEndEditable -->
    Note the </div> tag  after the start of the editable region. This is a proper tag, as it is needed to close the sidebar1 div.
    When it is not in an editable region, the </div> does not show up in yellow in design veiw and it works in every repect.
    When the editable region is introduced, the </div> shows yellow in design view, and it works in every respect.
    It validates using the W3C validation page.
    Pages built with it also show the tag as yellow but they do not display it when live or in a browser.
    If I delete the </div> as dreamweaver suggests, the css breaks and the page will not work.
    It seems that DW thinks that this is an illegal tag. If I click my mouse on the <!-- InstanceBeginEditable name="all" --> tag, and collapse the tag, all the code in the editable region + that in the sidebare 1 div, ( even that before the editable region begins) collapses. The editable region does not allow edits in the sidebar1 code outside the region.
    I need to put the editable region within part of the sidebar 1 div so that I can add aditional floated items in the sidebar 1 div if needed later.
    Is this a bug or am I missing something?

    This would make more sense.
    </nav>
    <!-- InstanceBeginEditable name="sidebar1" -->
    <p>Some unique sidebar1 content goes here</p>
    <!-- InstanceEndEditable -->
    </div><!-- end .sidebar1 -->
    <article class="content">
    <!-- InstanceBeginEditable name="content" -->
    <h1>Unique heading here</h1>
    <section>
    other code
    </section>
    <!-- InstanceEndEditable -->
    </div> <!--end .content-->
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    Message was edited by: Nancy O.  Forgot to close the .content div.

  • Error when I try to edit a Page

    I successfully added the In Context editing code throughout
    mu site but when I try to edit the site I get the following error,
    I tried editing in different browsers and received the same error.
    Internal Server Error
    The server encountered an internal error or misconfiguration
    and was unable to complete your request.
    Please contact the server administrator,
    [email protected] and inform them of the time the error
    occurred, and anything you might have done that may have caused the
    error.
    More information about this error may be available in the
    server error log.
    Apache/1.3.33 Server at www.thewildinstitute.com Port 80
    The site is:
    http://www.thewildinstitute.com

    Hello shanij,
    The behavior with your server is similar to this thread:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=82&catid=859&threadid =1414213&enterthread=y
    The difference being that the HEAD response from your server
    is 500 Internal Server Error. InContext editing uses HEAD HTTP
    requests to test for the existence of the draft page. If no page
    exists, InContext Editing should receive a 404 Not Found response
    from your server. Your server is responding with a 500 Internal
    Server error.
    Your server is responding with a 500 Internal Server error
    when you navigate to any page that 'doesn't exist' on your site.
    For example, if you simply go to
    http://www.thewildinstitute.com/example.html,
    you'll also receive the 500 Internal Server error.
    It could be that the HEAD HTTP request method is disabled, or
    the HEAD HTTP request method is enabled on your server and simply
    not functioning properly. In either case, please contact your
    hosting provider to fix this configuration problem.
    Here is some more information:
    http://www.adobe.com/go/kb406749
    Best regards,
    Corey

  • Dreamweaver Template: circle with diagonal line in editable region, but can still edit

    Since upgrading to Dreamweaver CC 2014, for only one of dozens of clients, in a Template, I get a circle with diagonal line in editable region, but I can still edit it, I just can't click to the spot that I want to edit, I have to navigate there with the up down left and right arrows on my keyboard. And, I created a new Template and it didn't happen, until I "got" a file, and now it happens in the new Template too. What's going on?

    Sorry, I'm new here. Do you mean like a screen shot? I just thought maybe somebody had seen this before and would just tell me "you need to uncheck the something or other"

  • GetDefinitionByName() error when calling class between modules

    i have a main application which loads two modules - lets call them x and y.
    module x has a class called dataObject. i have made a dummy instance of this class in module x.
    in module y, i have the following code:
    flash.utils.getDefinitionByName( 'dataObject' )
    the main app loads both module x and y successfully in seperate child domains BEFORE calling the line above.
    i am getting a variable 'dataObject' is not defined error.
    i know the reason why this error occurs under normal single-app circumstances. however, i could not find any posts relating to this error when dealing with multiple modules loaded dynamically. i have tried loading both modules in the same domain as the main app but still no luck.
    any help appreciated!
    thanks!

    i looked it at a cursory level.
    basically, the class that you want the definition for needs to either be in the module app domain loading it or its parent app domain? in my case it is in a seperate child app domain of the parent, which is why it can't be found.. am i right?
    however, this forces me to put the module containing the class in the same app domain as the main app. is there a way i can get the definition of the class regardless of what app domain it is in (assuming it is in the same security domain, however) ?
    thanks!

  • PSE7 - Error when open the quick edit tab

    Hi,
    I have installed PSE7 on my new pc (xp). Since the installation I get an error message when I open the quick editor. (see attachment)
    I uninstalled PSE7 and tried to clean the registry with the CS3_clean_script. After that I installed PSE7 again, but I got the same error message.
    I also got the error when I loggin with a othe admin user.
    What can I do?
    Conrad
    (Germany)

    I know you have tried it once before as well, but try to uninstall and then check if any file/folder/registry is remaining even after the uninstallation by cross verifying from the below link:
    http://kb2.adobe.com/cps/405/kb405847.html
    Now again try to install again. If the issue again appears then may be we can assume that the issue is not specific to installation but to something else.
    Regards,
    Ankush

  • "Unable to communicate with server error" when pasting data in in list via edit

    Hi Guys, I imported data into a SharePoint site and it seems that it made the fields in to multiline, so I had to edit each colum and make it single, but when I did that it seems that the html font code also detached and views in the record as you can see.
    So I went into edit list so I can copy and past the same data back in without having the font color html code in, but once I did that I am getting a error which isn't letting me save
    Does anyone know how to pass this error or another way to remove all these font codes in my fields names?
    Thank you.

    Hi,
    For your issue, try to do IIS Reset, compare the results.                       
    You can use compatibility mode to check whether it works.
    Open IE->Tools->Compatibility View Settings
    You can also use Internet Explorer 8,9,10 to check whether it works.
    Also, please check the SharePoint ULS log located at : C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS to get a detailed error description.
    meanwhile check the following, may help:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/8142d297-d8f7-4b7a-8faa-052ecb9ae74a/custom-item-updating-throws-unable-to-communicate-with-the-server-error?forum=sharepointgeneral
    http://sharepoint.stackexchange.com/questions/94087/give-users-edit-permission-to-a-list-but-no-access-to-the-site
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/d7845547-e0f1-40de-badd-c66a34c0cfb4/the-server-was-unable-to-save-the-form-at-this-time-please-try-again
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • BI template error when running it via Portal

    Hi
    We have recently upgraded Portal to SP18 from SP16 and all the reports were working fine. But when stack level came to SP18 we are facing a problem a bi planning report. The web template opens fine and if I select any option and perform then it is saying
    Portal Runtime Error
    An exception occurred while processing a request for:
    iView : N/A
    Component Name : N/A
    Could not find portal application com.sap.portal.dotnet.framework.
    Exception id: 05:04_date_0003_4860850
    See the details for the exception ID in the log file.
    The below is the complete details of the log file.
    #1#com.sap.security.api.UMException: This is not an error. The following stacktrace illustrates the stack of components involved in a user mapping call:
         at com.sap.security.core.umap.imp.UserMapping.traceCallerStack(UserMapping.java:1901)
         at com.sap.security.core.umap.imp.UserMapping.getInverseMappingData(UserMapping.java:574)
         at com.sap.security.core.server.jaas.EvaluateAssertionTicketLoginModule.getUserFromTicket(EvaluateAssertionTicketLoginModule.java:487)
         at com.sap.security.core.server.jaas.EvaluateAssertionTicketLoginModule.login(EvaluateAssertionTicketLoginModule.java:353)
         at com.sap.engine.services.security.login.LoginModuleLoggingWrapperImpl.login(LoginModuleLoggingWrapperImpl.java:185)
         at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:70)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:181)
         at com.sap.engine.system.SystemLoginModule.login(SystemLoginModule.java:90)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
         at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
         at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
         at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
         at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:71)
         at com.sap.engine.services.rfcengine.RFCJCOServer$J2EEApplicationRunnable.run(RFCJCOServer.java:254)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    #1.5 #001A4BAB5F26008100000A120000014F000467801AE729A9#1239699811674#com.sap.security.core.umap.imp.UserMappingUtils##com.sap.security.core.umap.imp.UserMappingUtils.isMasterSystemConfigured(#Guest#0##n/a##2083265028d311dec8c8001a4bab5f26#SAPEngine_Application_Thread[impl:3]_30##0#0#Debug##Java###The current ABAP master system is configured as "".#1#SAP_BW#
    #1.5 #001A4BAB5F26008100000A130000014F000467801AE72A06#1239699811674#com.sap.security.core.umap.imp.UserMappingUtils##com.sap.security.core.umap.imp.UserMappingUtils.getDefaultSystemLandscape()#Guest#0##n/a##2083265028d311dec8c8001a4bab5f26#SAPEngine_Application_Thread[impl:3]_30##0#0#Debug##Java###The current default system landscape is an instance of class "".#1#com.sapportals.portal.prt.service.usermapping.EPSystemLandscapeWrapper#
    #1.5 #001A4BAB5F26008100000A140000014F000467801AE72AC8#1239699811674#com.sap.portal.ivs.semantic.systemLandscape##com.sap.portal.ivs.semantic.systemLandscape.get alias registry entry#Guest#0##n/a##2083265028d311dec8c8001a4bab5f26#SAPEngine_Application_Thread[impl:3]_30##0#0#Debug##Java###Failed to get alias '' from the Portal Registry#1#SAP_BW#
    #1.5 #001A4BAB5F26008100000A150000014F000467801AE72B5C#1239699811674#com.sap.portal.ivs.semantic.systemLandscape##com.sap.portal.ivs.semantic.systemLandscape.getSystemId#Guest#0##n/a##2083265028d311dec8c8001a4bab5f26#SAPEngine_Application_Thread[impl:3]_30##0#0#Debug##Java###System could not be resolved dynamically, use default PCD resolution##
    #1.5 #001A4BAB5F26008100000A160000014F000467801AE72FA1#1239699811675#com.sap.security.core.umap.imp.UserMapping##com.sap.security.core.umap.imp.UserMapping.getMappedUserID(ISystemLandscapeObject, IUser, String)#Guest#0##n/a##2083265028d311dec8c8001a4bab5f26#SAPEngine_Application_Thread[impl:3]_30##0#0#Info##Java###Trying to determine user ID for ID "" and system .#4#local#remote#ANKITH#"SAP_BW"#
    #1.5 #001A4BAB5F26008100000A170000014F000467801AE73008#1239699811676#com.sap.security.core.umap.imp.UserMappingUtils##com.sap.security.core.umap.imp.UserMappingUtils.isMasterSystemConfigured(#Guest#0##n/a##2083265028d311dec8c8001a4bab5f26#SAPEngine_Application_Thread[impl:3]_30##0#0#Debug##Java###The current ABAP master system is configured as "".#1#SAP_BW#
    #1.5 #001A4BAB5F26008100000A180000014F000467801AE730EB#1239699811676#com.sap.security.core.umap.imp.UserMappingUtils##com.sap.security.core.umap.imp.UserMappingUtils.isMasterSystem(ISystemLandscapeObject)#Guest#0##n/a##2083265028d311dec8c8001a4bab5f26#SAPEngine_Application_Thread[impl:3]_30##0#0#Debug##Java###System is considered as the current ABAP master system because the system alias matches the one of the configured master system.#1#Enterprise Portal System Landscape Object:
    Retrieved by alias  : SAP_BW
    Default system alias: SAP_BW
    Wrapper type        : com.sapportals.portal.prt.service.usermapping.EPSystemObjectWrapper
    Original type       : com.sap.portal.pcm.system.System
    Unique key (GUID)   : null
    Hashcode            : 727,131,416#
    I guess experts would have already faced this kind of error. <removed_by_moderator>
    Read the "Rules of Engagement"
    Thanks.
    Edited by: Juan Reyes on Apr 14, 2009 1:56 PM

    when ever iview gets corrupted this issue comes
    we had this issue than we took .par file from other system and deployed into this system but i dont remember which one
    Samrat

  • CG02 Report from Template error when starting the display application

    System info: SAP GUI 720 (patch 10007878), ECC 6.0, SAP_APPL/EA-APPL 605, WWI 2.7 (patch 20000084)
    Hi, folks.
    I was able to execute CG02 'Report from Template' function. My local MS Word 2003 would open successfully to display the report as expected. Suddenly, I couldn't do that anymore. I'm now getting msg "An error occurred when starting the display application" (C$772). And I didn't change anything.
    Any clue to what has happened or why it is happening? In my Word, I have 'C:\Program Files\SAP\FrontEnd\SAPgui\wwi' set as the file location for User templates. What else should I check?
    Thanks in advance.

    Hi, Caroline.
    Thanks for pointing me (back) to it! (I've encountered a similar issue with the same param back in 2010...)
    I'm positive that the problem started after I tried to run the transaction code (of my custom report program that does the CG02 'Report from Template' function) from the web gui ('You Can Also' menu function). Somehow, the standard SAP fms within It changed the param ESWWI_INST value from 'EXISTFRONT' to 'WWISERVER'. So when I ran CG02 and the WWI server is not available yet, I received the error msg.

  • Error when a DataGrid is edited

    Hi,
    I set my app DataGrid to editable to true. But when I double click to edit a cell, a Flash Player error occur :
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at spark.accessibility::DataGridAccImpl/makeRowString()[E:\dev\4.5.1\frameworks\projects\spa rk\src\spark\accessibility\DataGridAccImpl.as:1068]
        at spark.accessibility::DataGridAccImpl/eventHandler()[E:\dev\4.5.1\frameworks\projects\spar k\src\spark\accessibility\DataGridAccImpl.as:1031]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.core::UIComponent/dispatchEvent()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\co re\UIComponent.as:13128]
        at spark.components.gridClasses::DataGridEditor/setEditedItemPosition()[E:\dev\4.5.1\framewo rks\projects\spark\src\spark\components\gridClasses\DataGridEditor.as:315]
        at spark.components.gridClasses::DataGridEditor/dataGrid_gridItemEditorSessionStartingHandle r()[E:\dev\4.5.1\frameworks\projects\spark\src\spark\components\gridClasses\DataGridEditor .as:1204]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.core::UIComponent/dispatchEvent()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\co re\UIComponent.as:13128]
        at spark.components.gridClasses::DataGridEditor/startItemEditorSession()[E:\dev\4.5.1\framew orks\projects\spark\src\spark\components\gridClasses\DataGridEditor.as:798]
        at spark.components::DataGrid/startItemEditorSession()[E:\dev\4.5.1\frameworks\projects\spar k\src\spark\components\DataGrid.as:3803]
        at spark.components.gridClasses::DataGridEditor/grid_gridMouseUpHandler()[E:\dev\4.5.1\frame works\projects\spark\src\spark\components\gridClasses\DataGridEditor.as:1379]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.core::UIComponent/dispatchEvent()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\co re\UIComponent.as:13128]
        at spark.components::Grid/dispatchGridEvent()[E:\dev\4.5.1\frameworks\projects\spark\src\spa rk\components\Grid.as:4038]
        at spark.components::Grid/grid_mouseDownDragUpHandler()[E:\dev\4.5.1\frameworks\projects\spa rk\src\spark\components\Grid.as:3883]
        at Function/<anonymous>()[E:\dev\4.5.1\frameworks\projects\spark\src\spark\utils\MouseEventU til.as:96]
    I tried to put the DataGrid in a very simple new project and there is no error.
    Here is the code :
    <s:DataGrid id="dgProperties" width="100%" height="100%" editable="true"
            sortableColumns="false">
            <s:ArrayCollection>
                    <s:DataItem key="1000" name="Abrasive" price="100.11" call="false"/>
                    <s:DataItem key="1001" name="Brush" price="110.01" call="true"/>
                    <s:DataItem key="1002" name="Clamp" price="120.02" call="false"/>
                    <s:DataItem key="1003" name="Drill" price="130.03" call="true"/>
                    <s:DataItem key="1004" name="Epoxy" price="140.04" call="false"/>
                    <s:DataItem key="1005" name="File" price="150.05" call="true"/>
                    <s:DataItem key="1006" name="Gouge" price="160.06" call="false"/>
                    <s:DataItem key="1007" name="Hook" price="170.07" call="true"/>
                    <s:DataItem key="1008" name="Ink" price="180.08" call="false"/>
                    <s:DataItem key="1009" name="Jack" price="190.09" call="true"/>            
                </s:ArrayCollection>
            <s:columns>
                <s:ArrayList>
                    <s:GridColumn headerText="name" dataField="name"/>
                    <s:GridColumn headerText="price" dataField="price"/>
                </s:ArrayList>
            </s:columns>
        </s:DataGrid>
    Thx.

    I have same problem.
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at spark.accessibility::DataGridAccImpl/makeRowString()[E:\dev\4.5.1\frameworks\projects\spa rk\src\spark\accessibility\DataGridAccImpl.as:1068]
        at spark.accessibility::DataGridAccImpl/eventHandler()[E:\dev\4.5.1\frameworks\projects\spar k\src\spark\accessibility\DataGridAccImpl.as:1031]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.core::UIComponent/dispatchEvent()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\co re\UIComponent.as:13128]
        at spark.components.gridClasses::DataGridEditor/setEditedItemPosition()[E:\dev\4.5.1\framewo rks\projects\spark\src\spark\components\gridClasses\DataGridEditor.as:315]
        at spark.components.gridClasses::DataGridEditor/dataGrid_gridItemEditorSessionStartingHandle r()[E:\dev\4.5.1\frameworks\projects\spark\src\spark\components\gridClasses\DataGridEditor .as:1204]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.core::UIComponent/dispatchEvent()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\co re\UIComponent.as:13128]
        at spark.components.gridClasses::DataGridEditor/startItemEditorSession()[E:\dev\4.5.1\framew orks\projects\spark\src\spark\components\gridClasses\DataGridEditor.as:798]
        at spark.components::DataGrid/startItemEditorSession()[E:\dev\4.5.1\frameworks\projects\spar k\src\spark\components\DataGrid.as:3803]
        at spark.components.gridClasses::DataGridEditor/doubleClickTimerHandler()[E:\dev\4.5.1\frame works\projects\spark\src\spark\components\gridClasses\DataGridEditor.as:1428]
        at flash.utils::Timer/_timerDispatch()
        at flash.utils::Timer/tick()
    In the class DataGridAccImpl, line 1068: "rowString = rowString.replace("%1", dgAccInfo.reachableRowIndex + 1).replace("%2", dgAccInfo.reachableRowCount);". rowString is null.
    After app initialized i call ResourceManager.getInstance().localeChain = [language]; (language = "fr_FR"). I tried "fr" "en_US" "pt_BR".. Same problem.
    This problem is only in AIR project.
    Anyone already solved this problem?

Maybe you are looking for