Aii properties not updated

Hi
I gave com.sap.aii.ib.client.login.languagesproperties in administration--> exchange profile but it is not getting updated,
would you please tell me the reason why it is not updated.

You would probably need to restart the system after changing this parameter.

Similar Messages

  • Live Copy Properties not updating on Modify

    Hi,
    I'm creating a Mobile Site using the Live Copy feature.
    I created a Live Copy, with a new MSM (triggered on Rollout), with "Edit Properties" that transforms the content resource type to my Mobile Components.  Works Great!
    I wanted the Mobile content (Live Copy) to be updated when the author updates the content.  I tried creating a MSM which is triggered on "Modify" with the same Edit Properties.
    What happens is that the updated content is copied but the Properties are not updated.  i.e. the Live Copy site content reverts to the resourceType of the Blueprint Site ... Not Good!
    We are using CQ5.5 without any Service Pack applied.  It looks like this might be fixed with Service Pack 2.
    http://dev.day.com/docs/en/cq/current/release_notes_service_pack_2.html
    Is that correct?
    Thanks

    Just confirming that I tested this issue with the later version of CQ5.5, and it was fixed.

  • Aii.properties not loading in NW CE 7.1

    I have placed aii.properties file under cluster/server0,but it seems not loading the properties from this file to server.
    Environment: Stand alone, NW CE 7.1, configured to PCK. Most of the functionality is working fine, except which relays on aii.properties file. What could be the reason that server is not loading aii.properties?
    Can any one suggest?

    Thanks for your input, i am using textpad only. When I opened the file while server is running,it is trying to load some changes, as i debug thru what server is trying, I noticed that it is trying to synchronize server config (utilix) parameters with aii.properties.
    I did not see connec.directory.* parameters in utilx parameters, however these are must for pck, so not sure what is the problem.

  • 3D Text color properties not updating on stage

    I'm using a 3D Text object, and changing the color dyamically
    via:
    member("3D Text").diffuseColor = rgb(redVal, grnVal, bluVal)
    (More complicated than that, but this is the simplified
    version. I'm also
    playing around with directionalColor, ambientColor, and
    specularColor.)
    At any rate, watching the color values in the Object
    Inspector shows the
    colors are indeed doing what I ask them to, but on the stage
    it doesn't
    reflect the changes. I've tried with or without Direct to
    Stage, tried
    using an UpdageStage() command every frame, tried setting the
    sprite's loc
    value to itself (to force a redraw), but nothing seems to
    work. I can get
    the colors to update by manually checking and unchecking the
    DTS box in the
    Property Inspector while the movie is running, so I know it's
    doing the
    color changes, just not displaying it unless forced to
    redraw. How can I
    force this redraw via script? I know I've done it before, but
    it was a long
    time (and several versions) ago, and I've since lost the code
    to do it. Any
    help here?

    > You could try setting 'the stageColor = the stageColor'
    but I don't know
    > whether this will force a redraw of DTS sprites.
    Nope, no dice. Doesn't matter if it's DTS or not. I just
    found that
    checking and unchecking DTS caused it to refresh. The same is
    true if I
    check/uncheck any other property - antialias, wordWrap,
    editable, autoTab,
    anything. But obviously, that doesn't help me much if I can't
    find a way to
    refresh it via scripts...

  • Custom propertie's values are not updated for workflow metadata

    Hi,
    I've a requirement where I need to add and update some properties. to /etc/workflow/instance/<Instancename>/data/metadata node.
    I've two workflow Process steps,
    Process step 1:
        Adds some properties to metadata.
    Process step 2:
        Updates the propertie's values which are added in Process step 1.
    But the issue is update is not working when the node is /etc/workflow/instance/<Instancename>/data/metadata.
    i.e. In the step 1, Properties are added to metadata node but In the step 2 propertie's values are not updated to the same node.
    Here is my process code:
    =================================================
    import java.util.Locale;
    import java.util.StringTokenizer;
    import javax.jcr.Node;
    import javax.jcr.Session;
    import org.apache.felix.scr.annotations.Component;
    import org.apache.felix.scr.annotations.Properties;
    import org.apache.felix.scr.annotations.Property;
    import org.apache.felix.scr.annotations.Reference;
    import org.apache.felix.scr.annotations.Service;
    import org.osgi.framework.Constants;
    import javax.jcr.Value;
    import com.adobe.granite.workflow.WorkflowException;
    import com.adobe.granite.workflow.WorkflowSession;
    import com.adobe.granite.workflow.exec.WorkItem;
    import com.adobe.granite.workflow.metadata.MetaDataMap;
    import com.adobe.granite.workflow.exec.WorkflowProcess;
    import com.adobe.granite.workflow.model.WorkflowModel;
    import org.apache.sling.api.resource.ResourceResolver;
    import org.apache.sling.api.resource.ResourceResolverFactory;
    import org.apache.sling.jcr.resource.JcrResourceUtil;
    import org.apache.sling.api.resource.PersistableValueMap;
    import org.apache.sling.api.resource.PersistenceException;
    import org.apache.sling.api.resource.Resource;
    @Component
    @Service
    @Properties({
           @Property(name = Constants.SERVICE_DESCRIPTION, value = "Test"),
           @Property(name = Constants.SERVICE_VENDOR, value = "Adobe"),
           @Property(name = "process.label", value = "Test 1")})
    public class Test1 implements WorkflowProcess
        @Reference
        private ResourceResolverFactory resourceResolverFactory;
              public void execute(WorkItem workItem, WorkflowSession wfsession, MetaDataMap metadata)
                                  throws WorkflowException {
                        System.out.println("Testing");
            try{
                ResourceResolver resolver;
                resolver = resourceResolverFactory.getAdministrativeResourceResolver(null);
                String instancePath = workItem.getWorkflow().getId();
                Node instanceNode=null;
                Session jcrSession = wfsession.adaptTo(Session.class);
               String payload = (String) workItem.getWorkflowData().getPayload();
               //instanceNode=JcrResourceUtil.createPath(payload+"/jcr:content", "nt:resource","nt:resource", jcrSession, true);
                                  instanceNode=JcrResourceUtil.createPath(instancePath+"/data/metaData", "nt:resource","nt:resource", jcrSession, true);
                                  System.out.println("Test: instance PAth:"+instanceNode.getPath());
                Resource resource = resolver.getResource(instanceNode.getPath());
                    if(resource != null)
                        PersistableValueMap valueMap= resource.adaptTo(PersistableValueMap.class);
                        valueMap.put("name", "Rajesh");
                        valueMap.put("id", "A002");
                        valueMap.put("designation","SE");
                        valueMap.save();
                        System.out.println("Name:"+valueMap.get("name"));
                        System.out.println("Id:"+valueMap.get("id"));
                jcrSession.save();
                resolver.close();
            }catch(Exception e)
                System.out.println("Exception:"+e.getMessage());
    ===================
    The code works fine when the node is payload/jcr:content.
    Note : Process 1 and Process 2 code is same expect the values I'm passing to the PersistableValueMap.
    Any pointers would be more helpful..
    Thanks
    Siva

    Is there anything wrong in my code/ it's a bug..  
    Thanks
    Siva

  • Symbol Properties panel not updating or refreshing

    Y'all,
    I'm running FW CS5 under Windows 7 Pro (64-bit), and my Symbol Properties panel has stopped updating when I select a symbol to modify. I have to close and re-open the Symbol Properties panel to force it to refresh.
    If I have the panel open and select a symbol on the page, the panel remains blank.
    If I have edited a symbol then deselected it, that symbol's properties remain visible in the Symbol Properties panel after the symbol is deselected.
    If I have edited a symbol then select another symbol, the first symbol's properties remain visible in the panel and it does not update to show the properties of the newly selected symbol.
    In all cases I must close and re-open the Symbol properties panel to force it to refresh and update.
    I've also noticed two other peculiar refresh problems lately - when the rulers are visible and I either zoom in / zoom out on the document or change the application window size, the top ruler often vanishes. I have to minimize then maximize the Fireworks application window to force a refresh and get the rulers to re-appear.
    Finally, the little document info boxes at the lower right corner of the canvas showing document size and zoom level often go blank or vanish when I either zoom in / zoom out on the document or change the application window size. I have to minimize then maximize the Fireworks application window to force a refresh and get the info boxes to re-appear.
    It seems that the problem may be related to some larger Fireworks screen refresh problem. It did not behave this way when first installed - it began happening recently, and the only thing that has changed was a minor update to all of the CS5 design tools (including FW) about the way that image metadata is handled.
    Is anyone else experiencing odd refresh errors? Is it possible that an extension could cause this?
    Any help and advice would be appreciated, because it has become really cumbersome to use component symbols.
    Thanks,
    Dave

    After digging around and looking at what has been updated or installed on my computer since these weird refresh problems began, I may have identified a possible cause.
    Adobe installs the Java runtime with the Creative Suite (I'm not sure why, but it's there), and a few weeks ago the 1.6.20 update installed itself, but it failed multiple times before installing, then Windows 7 informed me that a component was improperly installed with the incorrect privileges. Last night the 1.6.21 update installed itself without any errors, and this morning Fireworks seems to be working normally again.
    I'll keep monitoring FW for weird refresh problems, and if they return I'll post an update. It is possible that the 1.6.20 update broke something that was fixed by the 1.6.21 update.
    Can anyone tell me why the CS programs require Java and what it is used for?
    Thanks,
    Dave

  • Backing bean properties not getting updated

    I have an input text in my JSP page and it is component-bound to backing bean. The problem is that when I change value of the InputText in the JSP, the value is not getting updated in the backing bean.
    Here is the InputField definition in JSP page.
    <h:inputText binding="#{backing_employeeEdit.firstName}"
    id="firstName"/>
    and here is the setter in backing bean
    public void setFirstName(HtmlInputText inputText1) {
    this.firstName = inputText1;
    Pls note that there is no validation errors because the page navigates successfully. The only problem is that new value is not updated.

    I don't know, wht exactly u wants to do... Here is java code and is working fine for me...
    Emp.java
    public void action() {
         System.out.println(inputText.getValue());
         Emp tt = new Emp();
         inputText.setValue(inputText.getValue().toString()+"bilal");
         tt.setInputText(inputText);
         System.out.println(inputText.getValue());
    JSP...
    <f:view>
    <h:form>
    <h:inputText binding="#{emp.inputText}" />
    <h:commandButton value="submit" action="#{emp.action}" />
    </h:form>
    </f:view>
    faces-config file contents....
    <managed-bean>
              <managed-bean-name>emp</managed-bean-name>
              <managed-bean-class>
                   com.nous.application.Emp
              </managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    Here scope has to be session, otherwise u will lose old value...

  • HAL not updating change in properties

    Hi John,
    When we tried to push members changing their property HAL is not updating the changed property in hyperion
    Ex-- If i have member Account with TB LAst as its property in the source and using HAL we pushed this member to Hyperion. Now i changed the property from TB Last to None in the source and used HAl to push the member. But it is still showing TB last in the hierarchy.
    Please suggest
    Thanks,
    Sravan

    Which HAL adapter are you using, Essbase or Planning? Where are you looking for the updated property, in Essbase or Planning?
    If you're not already, what you should be doing is use the Planning adapter to update the property in Planning, and then refresh Essbase from Planning. When you've done those two things, and assuming there haven't been any errors in the HAL integration, you should see the updated property in both Essbase and Planning.
    Of course, you have to run the HAL integration as a user with sufficient privileges in the Planning application to make metadata changes.

  • Dreamweaver Teamplate with Library Item for Navigation/Sidebar not updating editable classes

    I have a Dreamweaver Template that contains two Library items. One Library item is my navigation bar, the other is a sidebar that shows different content depending on what page you are on. I'm assigning an editable class "active" to the navigation bar to show you are on a particular page, and also assigning the editable class "active" to the sidebar to reveal a portion of the sidebar with links pertaining to that specific page. The default value for the class is "hidden". So what is happening is when I open a page I have created and "edit" the Library Items in it to edit these classes, it resets resets all the other pages on the site to the default class values. How am I able to use editable classes and Library Items to achieve this kind of functionality? The idea is to only have ONE navigaton bar to update on the site and to only have ONE sidebar item to update. Here is an example of the sidebar and navigation in action so you can see what I'm going for. Notice the green button in the navigation bar (that is a list item with the class "active" which is an editable class in the Library Item, also notice the tan links in the sidebar, that is an unordered list that has an editable class of "active" in the Library Items --- these editable classes reset to their defaults when updating the Library Item on the website).
    http://www.brumleve.org/joe/temp/CAP/mission.html

    In my understanding, whenever you edit the contents of a library item, it will update all other occurances of this library item on the rest of the site. That's "working as designed" as far as I know, unless you break the link by telling it to not update - which kinda defeats the purpose I think.
    But theres another way to do this using template properties, i#ve been using this approach myself a couple of times:
    Write your navigation bar in the template (.dwt) file itself, then select the class= of your first menu item and choose .. (names might be off, I am using a non-English copy of DW): "modify > template > make attribute editable" from the main menu. Do so for all your menu items and name these new template properties something like "item_x_class"
    You'll end up with something like this in your template source:
    <div class="@@(item_1_class)@@">
    and a matching
    <!-- TemplateParam name="item_1_class" type="text" value="active" --> in the header
    Now, on each page, you can set the class within the template properties dialog ("modify > template properties"). If your main menu changes, it won't overwrite your template properties, but still update all pages when you do make a change to the menu.
    If you're using multiple templates for your site, consider nesting templates, so the master template already includes your navbar and all subsequent templates will "inherit" changes to the navbar code (sans the editable class property).
    Hope this helps.. or at least gives you an idea for further experiments..
    Stephan

  • PI 7.1 - CPA Cache not updated with directory data.

    Hi Gurus,
    I have installed PI 7.1 and recently I refreshed my cache in partial and full mode. when I go to RWB->Cache monitoring -> Show Cache Status Table, I see following error for Central Adaptor engine.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <ConfirmationXML>
       <CacheRefreshError>
          <EngineType>
          AE
          </EngineType>
          <EngineName>
          af.sxd.mchir134
          </EngineName>
          <RefreshMode>
          C
          </RefreshMode>
          <GlobalError>
             <Message>
             CPA Cache not updated with directory data.
             </Message>
             <Trace>
             com.sap.aii.af.service.cpa.impl.exception.CPADirectoryCacheException: Failed to check secure connection configuration. Reason: com.sap.aii.af.lib.sld.SLDException: Failed to read SLD instance name. Reason: HTTP response code: 503 (Service Unavailable)
         at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDirectoryURL(DirectoryAccess.java:134)
         at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDeltaRefreshURL(DirectoryAccess.java:191)
         at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDeltaCacheUpdateXML(DirectoryAccess.java:440)
         at com.sap.aii.af.service.cpa.impl.cache.CacheManager.performCacheUpdate(CacheManager.java:491)
         at com.sap.aii.af.service.cpa.impl.cache.CacheManager$CacheUpdateRunnable.run(CacheManager.java:322)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:73)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:144)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:242)
    Caused by: com.sap.aii.af.lib.sld.SLDException: Failed to read SLD instance name. Reason: HTTP response code: 503 (Service Unavailable)
         at com.sap.aii.af.lib.sld.impl.SLDAccessor.getSLDInstanceName(SLDAccessor.java:471)
         at com.sap.aii.af.lib.sld.impl.SLDAccessImpl.getSLDInstanceName(SLDAccessImpl.java:96)
         at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDirectoryURL(DirectoryAccess.java:119)
         ... 7 more
    Caused by: com.sap.aii.utilxi.sld.SldReadFailedException: HTTP response code: 503 (Service Unavailable)
         at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:126)
         at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:142)
         at com.sap.aii.af.lib.sld.impl.SLDAccessor.getSLDInstanceName(SLDAccessor.java:458)
         ... 9 more
    Caused by: com.sap.lcr.api.cimclient.LcrException: com.sap.lcr.api.cimclient.CIMClientException: HTTP response code: 503 (Service Unavailable)
         at com.sap.aii.utilxi.sld.SldProxy.getXISubSystem(SldProxy.java:526)
         at com.sap.aii.utilxi.sld.XIEntityInSld.getInstFromSld(XIEntityInSld.java:494)
         at com.sap.aii.utilxi.sld.XIEntityInSld.readFromSld(XIEntityInSld.java:156)
         at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:120)
         ... 11 more
             </Trace>
          </GlobalError>
          <GlobalError>
             <Message>
             Confirmation handling failed.
             </Message>
             <Trace>
             com.sap.aii.af.service.cpa.impl.exception.CPADirectoryCacheException: Failed to check secure connection configuration. Reason: com.sap.aii.af.lib.sld.SLDException: Failed to read SLD instance name. Reason: HTTP response code: 503 (Service Unavailable)
         at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDirectoryURL(DirectoryAccess.java:134)
         at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getConfirmationURL(DirectoryAccess.java:162)
         at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.invokeConfirmationURL(DirectoryAccess.java:462)
         at com.sap.aii.af.service.cpa.impl.cache.CacheManager.performCacheUpdate(CacheManager.java:603)
         at com.sap.aii.af.service.cpa.impl.cache.CacheManager$CacheUpdateRunnable.run(CacheManager.java:322)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:73)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:144)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:242)
    Caused by: com.sap.aii.af.lib.sld.SLDException: Failed to read SLD instance name. Reason: HTTP response code: 503 (Service Unavailable)
         at com.sap.aii.af.lib.sld.impl.SLDAccessor.getSLDInstanceName(SLDAccessor.java:471)
         at com.sap.aii.af.lib.sld.impl.SLDAccessImpl.getSLDInstanceName(SLDAccessImpl.java:96)
         at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDirectoryURL(DirectoryAccess.java:119)
         ... 7 more
    Caused by: com.sap.aii.utilxi.sld.SldReadFailedException: HTTP response code: 503 (Service Unavailable)
         at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:126)
         at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:142)
         at com.sap.aii.af.lib.sld.impl.SLDAccessor.getSLDInstanceName(SLDAccessor.java:458)
         ... 9 more
    Caused by: com.sap.lcr.api.cimclient.LcrException: com.sap.lcr.api.cimclient.CIMClientException: HTTP response code: 503 (Service Unavailable)
         at com.sap.aii.utilxi.sld.SldProxy.getXISubSystem(SldProxy.java:526)
         at com.sap.aii.utilxi.sld.XIEntityInSld.getInstFromSld(XIEntityInSld.java:494)
         at com.sap.aii.utilxi.sld.XIEntityInSld.readFromSld(XIEntityInSld.java:156)
         at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:120)
         ... 11 more
             </Trace>
          </GlobalError>
       </CacheRefreshError>
    </ConfirmationXML>
    Please suggest the solution.
    Thanks,
    Surendra

    Guys,
    I have the same issue. Any help on this is appreciated!
    Issue log from CPA cache refresh
    <?xml version="1.0" encoding="UTF-8" ?>
    - <CacheRefreshError> 
    <EngineType>AE</EngineType>  
    <EngineName>af.sxd.pl1vw158</EngineName>  
    <RefreshMode>C</RefreshMode>  
    - <GlobalError> 
    <Message>CPA Cache not updated with directory data.</Message>  
    <Trace>com.sap.aii.af.service.cpa.impl.exception.CPADirectoryCacheException: Failed to check secure connection configuration. Reason: com.sap.aii.af.lib.sld.SLDException: Failed to read SLD instance name. Reason: HTTP response code: 503 (Service Unavailable) at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDirectoryURL(DirectoryAccess.java:134) at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDeltaRefreshURL(DirectoryAccess.java:195) at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDeltaCacheUpdateXML(DirectoryAccess.java:448) at com.sap.aii.af.service.cpa.impl.cache.CacheManager.performCacheUpdate(CacheManager.java:457) at com.sap.aii.af.service.cpa.impl.cache.CacheManager$CacheUpdateRunnable.run(CacheManager.java:291) at com.sap.engine.frame.core.thread.Task.run(Task.java:73) at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:162) at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:260) Caused by: com.sap.aii.af.lib.sld.SLDException: Failed to read SLD instance name. Reason: HTTP response code: 503 (Service Unavailable) at com.sap.aii.af.lib.sld.impl.SLDAccessor.getSLDInstanceName(SLDAccessor.java:505) at com.sap.aii.af.lib.sld.impl.SLDAccessImpl.getSLDInstanceName(SLDAccessImpl.java:96) at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDirectoryURL(DirectoryAccess.java:119) ... 7 more Caused by: com.sap.aii.utilxi.sld.SldReadFailedException: HTTP response code: 503 (Service Unavailable) at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:133) at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:150) at com.sap.aii.af.lib.sld.impl.SLDAccessor.getSLDInstanceName(SLDAccessor.java:492) ... 9 more Caused by: com.sap.lcr.api.cimclient.LcrException: com.sap.lcr.api.cimclient.CIMClientException: HTTP response code: 503 (Service Unavailable) at com.sap.aii.utilxi.sld.SldProxy.getXISubSystem(SldProxy.java:527) at com.sap.aii.utilxi.sld.XIEntityInSld.getInstFromSld(XIEntityInSld.java:553) at com.sap.aii.utilxi.sld.XIEntityInSld.readFromSld(XIEntityInSld.java:165) at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:127) ... 11 more</Trace>  
    </GlobalError>
    - <GlobalError> 
    <Message>Confirmation handling failed.</Message>  
    <Trace>com.sap.aii.af.service.cpa.impl.exception.CPADirectoryCacheException: Failed to check secure connection configuration. Reason: com.sap.aii.af.lib.sld.SLDException: Failed to read SLD instance name. Reason: HTTP response code: 503 (Service Unavailable) at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDirectoryURL(DirectoryAccess.java:134) at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getConfirmationURL(DirectoryAccess.java:166) at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.invokeConfirmationURL(DirectoryAccess.java:470) at com.sap.aii.af.service.cpa.impl.cache.CacheManager.performCacheUpdate(CacheManager.java:576) at com.sap.aii.af.service.cpa.impl.cache.CacheManager$CacheUpdateRunnable.run(CacheManager.java:291) at com.sap.engine.frame.core.thread.Task.run(Task.java:73) at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:162) at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:260) Caused by: com.sap.aii.af.lib.sld.SLDException: Failed to read SLD instance name. Reason: HTTP response code: 503 (Service Unavailable) at com.sap.aii.af.lib.sld.impl.SLDAccessor.getSLDInstanceName(SLDAccessor.java:505) at com.sap.aii.af.lib.sld.impl.SLDAccessImpl.getSLDInstanceName(SLDAccessImpl.java:96) at com.sap.aii.af.service.cpa.impl.cache.directory.DirectoryAccess.getDirectoryURL(DirectoryAccess.java:119) ... 7 more Caused by: com.sap.aii.utilxi.sld.SldReadFailedException: HTTP response code: 503 (Service Unavailable) at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:133) at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:150) at com.sap.aii.af.lib.sld.impl.SLDAccessor.getSLDInstanceName(SLDAccessor.java:492) ... 9 more Caused by: com.sap.lcr.api.cimclient.LcrException: com.sap.lcr.api.cimclient.CIMClientException: HTTP response code: 503 (Service Unavailable) at com.sap.aii.utilxi.sld.SldProxy.getXISubSystem(SldProxy.java:527) at com.sap.aii.utilxi.sld.XIEntityInSld.getInstFromSld(XIEntityInSld.java:553) at com.sap.aii.utilxi.sld.XIEntityInSld.readFromSld(XIEntityInSld.java:165) at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:127) ... 11 more</Trace>  
    </GlobalError>
    </CacheRefreshError>
    Regards

  • Modification of Global channels In NIMax while Labview Program running, not updating in Labview

    Hello,
         Okay, here is my issue.  I have a program that reads data from a device using global channels in MAX.
    Step 1:  I open MAX with the systemExecute.vi with the parameters to wait till program finishes.
    Step 2:  I Modify a channel in Max, for example change the assigned daqMX Scale, or Min Max values.
    Step 3:  Save channel in Max.
    Step 4: Exit MAX with the file exit.
    Step 5: The Labview program continues, and I re-read the available global channels and global scales in the Labview vi but the properties have not changed to match what I change in MAX.
    If I stop the VI then start it again and read the global channels then the properties get updated.  How can I get the channel properties to update in Labview after changes are made in Max without stopping the labview vi and starting it again?

    Many properties of the channel can only be modified when the task is not running.  Have you tried stopping the task in LV before modifying the parameters, and then re-starting the task?
    Dan

  • Not Updating DashBoard

    Hi,
    I am facing one issue like, AR Dashboard not updating for jan 2010. But test of the dashboards are updated.
    I done update row count for AR table in Administrator. Replaced AR table in SQLYog.
    Any one please gudie me in this situation.
    Thanks
    EP

    Check if the physical table has the "cacheable" option turned on. Go to the physical table -> right click and choose properties -> go to the General tab, and look at the bottom half of the tab. Uncheck the "cacheable" option and try again.

  • Parameters on linked report not updating

    Hi,
    I updated a report adding parameter expressions.  A linked report based on the report I updated didn't get the parameter expressions when I deployed the base report.  Anybody else having that issue?  It's not much of a problem.  I just have to recreate the linked report which is a nusance.
    Thanks,
    DD

    I know this question is old, but I had the same problem today, and I think the answer is useful.
    When you deploy a new "main" report, the linked reports are NOT updated automatically, so you need to refresh them. You can do this easily from the Report Manager:
    1 - Update the main report;
    2 - Go to the linked report, use the "Manage" menu, and in the "Properties" tab click in the "Change Link" button:
    3 - In the following screen, select the main report, and click "OK". This will refresh the linked report with the modified main report:
    4 - Once you're back to the previous screen, click the "Apply" button, to really update the linked report.
    5 - VERY IMPORTANT: Since you changed the main report, all the previous adjustments you made in the linked report parameters were lost - like Null, Hide, Prompt User and Display Text, only the Default Value is preserved - so GO TO THE PARAMETERS tab and
    adjust the linked report parameters again!!!

  • Folders last modified time stamp are not updated in Windows 7

    After changing any .cpp file in Visual Studio, the last modified time stamp for the file's folder
    IS NOT updated. What's happening ?
    However when I change a Word (.docx) file, the last modified time stamp for the file's folder
    IS updated ! How come ?

    Hi,
    If you thought this issue gets worse and if you have already set NtfsDisblesLastAccessUpdate to 0, then please revoke it to 1.
    From the above Blog we can see that in Windows 7, the "Last Modified" field on log files is not updated when a program attempts to open the file or the utility is stopped, this is a design change to NTFS , becase we cache the metadata for
    folder contents and do not refresh it until a handle is closed on an open file or an explicit call is made to retrieve the properties of an individual file.
    Per your current issue that even if you closed these Vistual Studio files, the timestamp still didn't update. Please try the following and check whether any of them work:
    - open the file in a second program
    - view the proprties of the file
    - "dir <filename>" at a command prompt 
    In addition, if you edit these Vistual Studio files with Notepad(Before doing that, please close all the programs include Vistual Studio) and try to reproduce the issue, does the issue still occur?
    Regards,
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • View not updating in event receiver

    I have created a C# SharePoint 2010 Non-sandboxed project that implements the ListAdded event receiver. What I want to do is to check the new document library and add a number of site columns to it depending on the template. (I have discovered that the ListAdding
    event receiver is useless as the list reference is null at that point.)
    For each field, I run the following code whch successfully adds the columns. However, the code seems to have no effect on the default view.
    private void AddColumn(string name, SPListEventProperties properties)
    SPWeb web = properties.Web;
    SPField field = null;
    try
    field = web.AvailableFields[name];
    properties.List.Fields.Add(field);
    field.ShowInDisplayForm = true; // Saw these in an post about SP 2007. Not needed?
    field.ShowInEditForm = true;
    field.ShowInListSettings = true;
    field.ShowInNewForm = true;
    field.ShowInViewForms = true;
    properties.List.Update();
    var xx = field.InternalName;
    properties.List.DefaultView.ViewFields.Add(xx);
    properties.List.DefaultView.Update();
    catch (Exception)
    At the bottom of the method, examining properties.List.ViewFields in the Watch window shows that it is untouched by my code. What am I doing wrong? The UI confirms the fact that the the columns have been added and are available for adding to the view.

    Hi,
    According to your description, my understanding is you can’t add field to the default view in Event Receiver.
    I suggest you create a simple demo and try the code below to test whether it works properly.
    static void Main(string[] args)
    SPSite site = new SPSite("your site URL");
    SPWeb web = site.OpenWeb();
    SPList list = web.Lists.TryGetList("your list name");
    list.Fields.Add("Information", SPFieldType.Text, false);
    list.Update();
    SPView defaultView = list.DefaultView;
    defaultView.ViewFields.Add(list.Fields["Information"]);
    defaultView.Update();
    Feel free to reply to reply the test result.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

Maybe you are looking for

  • Problem whit audio in sony ericsson k300

    Hello from colombia. I have this problem. I have an application that executes a file wav, in the emulator of java works perfectly nevertheless when proving it in the cellular east is speechless. i try whit a mp3 file but the application fails (MediaE

  • I need help uninstalling keynote and then installing keynote from dvd

    Hi Please help- I moved the iwork to the trash emptied it out, ten installed Iwork DVD. It then ask for serial number fr trial version. How do install new iwork without trial popping vback up. Thanks in advance J

  • Help me...does this look good?!?!?

    Hey all, I want a G4 to use in my music studio, have found one on ebay, does this look good to you... http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=8792713494&rd=1&sspagename= STRK%3AMEWA%3AIT&rd=1 If you can't access that, basically it's this

  • Time delay probelm in data aquirsition of voltage measurement

    Hi, I am measuring voltage using NI DAQPad-6015. Without time delay loop, I can get the data. But what I want to do is to compare the data with that of following moment. The delay time loop is used to aquire the next moment data.  With this loop, it

  • Slideshow Decoder issue

    I've seen a few people having this problem but haven't seen a solution that works. Spece/tech details are... Windows 8 Pro 64Bit 32Gb Ram 1TB+ free space Intel I7 3820CPU Nvidia GTX 560Ti GPU Master Suite CS6 All Software/OS updates applied. I am try