Update the list of person notified by a workflow

Hi,
Working with Oracle Applications R12.
I have a workflow that notifiy the employee for the validation or not of his leave of absence when his manager validate it.
I want now add other person to this workflow (for example : departement assistante).
How can i do this ?
Best regards,
Saad.

For Absences Oracle uses AME (Approvals Management Engine) to send notifications. You would have to write a new rule to send notification to new person for an absence

Similar Messages

  • Need to update the list item in the same sharepoint list with particular condition with Sharepoint Designer 2013.

    Hi All
    I have one sharepoint list with huge data i.e with 20columns and more than 200 records with the fields .
    Suppose lets consider there are A,B,C,D,E,F,G,H columns.
    Now i want to create one form with the fields A,C,E.
    When the user enter the existing data of list for columns A,C..based on C value the E column value should change and update that particular item in the list.
    Please guide me without visual web part can we acheive this by Sharepoint designer 2013 or what would be the preferable solution.
    Please help me on this as it is very urgent from me..
    Thanks in Advance
    Sowjanya G

    Hi,
    According to your post, my understanding is that you wanted to update the list item in the same sharepoint list with particular condition with Sharepoint Designer 2013.
    I recommend to create workflow associated to the list and then start the workflow automatically when an item is changed.
    In the workflow, you can add condition and actions as below:
    If current item: C equal to Test1
         Set E to Test2
    Then the value of the filed E will be changed based on the value of the filed C.
    In addition, if you create the form using InfoPath, you can add rule to the filed C as below:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • WebPart is raising the following error "Invalid data has been used to update the list item.The field you are trying to update may be read only"

    I have created a farm solution and then i deploy it to SharePoint server, the code looks as follow, and i use it to update a page info values (as the current page values represents old info):-
    [ToolboxItemAttribute(false)]
    public partial class VisualWebPart1 : WebPart
    // Uncomment the following SecurityPermission attribute only when doing Performance Profiling using
    // the Instrumentation method, and then remove the SecurityPermission attribute when the code is ready
    // for production. Because the SecurityPermission attribute bypasses the security check for callers of
    // your constructor, it's not recommended for production purposes.
    // [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Assert, UnmanagedCode = true)]
    public VisualWebPart1()
    protected override void OnInit(EventArgs e)
    base.OnInit(e);
    InitializeControl();
    using (SPSite site = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb web = site.OpenWeb())
    SPList list = web.Lists["Pages"];
    web.AllowUnsafeUpdates = true;
    foreach (SPListItem items in list.Items)
    items["Author"] = "SharePoint";
    items["Created"] = "01/08/2014 01:44 PM";
    items.Update();
    list.Update();
    web.AllowUnsafeUpdates = false;
    protected void Page_Load(object sender, EventArgs e)
    but when i try adding this web part to a page i got the following error:-
    Invalid data has been used to update the list item.The field you are trying to update may be read only
    so can anyone advice?

    i only changed lines bitween 
    web.AllowUnsafeUpdates = true;
    and
    web.AllowUnsafeUpdates = false;
    and other parts of code remains without change
    so it will updates all pages in current web
    yaşamak bir eylemdir

  • Invalid data has been used to update the list item. The field you are trying to update may be read only.

    Trying to follow Serge Luca's Step by Step Tutorial. Creating Workflows for Windows Sharepoint Services and MOSS2007.  http://sergeluca.spaces.live.com/blog/cns!E8A06D5F2F585013!859.entry
    I have an onWorkflowActivated, followed by an ifElse condition and a log to history.
    In the IfElse, each branch has a code segment, that trys to update the status column in the list that the workflow is attached to.
    private void Authorize_ExecuteCode(object sender, EventArgs e)
    // tried serveral methods
    WorkflowProperties.Item["Status"] = "Automatically Approved";
    // tried all of the following (one at a time)
    item.update();
    WorkflowProperties.Item.Update();
    WorkflowProperties.Item.SystemUpdate();
    //tried this as well.
    Microsoft.SharePoint.SPListItem item = WorkflowProperties.Item;
    item["Status"] = "Automatically Approved";
    item.Update() ;
    On the update call I keep getting "Invalid data has been used to update the list item. The field you are trying to update may be read only."
    Could someone explain how to update "Status" column of the list item that the workflow is working on?
    Thank you very much.
    Bill
     

    Hi:
    you can do the following:
    add the following code to the workflow.xml file (under the MetaData section)
    Code Snippet
    <ExtendedStatusColumnValues>
    <StatusColumnValue>Branch1</StatusColumnValue>
    <StatusColumnValue>Branch2</StatusColumnValue>
    </ExtendedStatusColumnValues>
    then add 2 SetState activities one in each branch of the IfElse.
    for the code behind of setState1 (branch1) write the following code:
    Code Snippet
    state = Convert.ToInt32(SPWorkflowStatus.Max);
    for setState2 (branch2) write the following:
    Code Snippet
    state = Convert.ToInt32(SPWorkflowStatus.Max) + 1;
    where state is the variable assigned to the field State in the properties of the SetState(design lever), or instead of state u can use the following code:
    Code Snippet
    ((SetState)sender).State
    where sender is the object sent through the function parameter.
    hope this answered your question
    Best Regards

  • Invalid data has been used to update the list item. The field you are trying to update may be read only (Lookup Field).

    Hi.
    I am getting below error while adding value to look-up field.
    Invalid data has been used to update the list item. The field you are trying to update may be read only.
    I have tried many forums ans post but didn't come to know what's the root cause of issue. I am also posting Code for creating and adding lookup field.
    CAML to create lookup field (It works Fine)
    string lkproductNumber = "<Field Type='Lookup' DisplayName='Product Number' StaticName='ProductNumber' ReadOnly='FALSE' List='" + pNewMaster.Id + "' ShowField='Product_x0020_Number' />";
    Code to insert value to lookup field
    ClientContext client = new ClientContext(SiteUrl);
    client.Load(client.Web);
    client.Credentials = new NetworkCredential(this.UserName, this.Password, this.Domain);
    // Lookup Lists
    List pmList = client.Web.Lists.GetByTitle("Product_Master");
    //List Conatining Lookup Columns
    List piList = client.Web.Lists.GetByTitle("Product_Inventory");
    client.Load(piList);
    query.ViewXml = "<View/>";
    ListItemCollection collection = pmList.GetItems(query);
    client.Load(collection);
    client.ExecuteQuery();
    int prodid=0;
    foreach (ListItem item in collection)
    if (Convert.ToString(item["Product_x0020_Number"]) == ProductNumber)
    { prodid = Convert.ToInt32(item["ID"]); }
    ListItem piItem = piList.AddItem(new ListItemCreationInformation());
    piItem["Product_x0020_Number"] = new FieldLookupValue() { LookupId = prodid };
    piItem.Update();
    client.ExecuteQuery();
    Exception Detail
    Microsoft.SharePoint.Client.ServerException was caught
    Message=Invalid data has been used to update the list item. The field you are trying to update may be read only.
    Source=Microsoft.SharePoint.Client.Runtime
    ServerErrorCode=-2147352571
    ServerErrorTypeName=Microsoft.SharePoint.SPException
    ServerStackTrace=""
    StackTrace:
    at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream responseStream)
    at Microsoft.SharePoint.Client.ClientRequest.ProcessResponse()
    at WebServiceProviders.ClientServices.NewProductInventory() in Z:\.............ClientServices.cs:line 889
    InnerException:
    Quick response is highly appreciated.
    Thanks
    Mehar

    Try some thing like below,
    your data value that needs to be update should be in this format "ID of the lookup";#"Title of the Lookup" 
    For example,
    listItem["Product_x0020_Number"]
    = "1;#iPhone";
    listItem["Product_x0020_Number"]
    = "2;#Mobile";
    Hope this helped you....

  • T.codes to view the list of persons that are assigned to "activity"

    Hi Guru's
    Are there any transaction codes to view the list of persons that are assigned to u201Cactivity - personal assignment tabu201D in the project?
    Regards,
    Bha

    the same you can view from CJ20n , by clicking perticular activity--> click on person assignment tab.
    This can be true for all the netwrok maintenance txn.
    Regards
    Nitin

  • Difficulty in updating the list object values

    I have created a list with Objects(MyVertex). I am trying to update the list based on the condition . Instead it adds duplicate values. The simple logic is (if the object is already in the list )only update the values or add to the list (Object) Please help me how can I correct my code.
    public static void updateResult(MyVertex c)
              Iterator it2=result.iterator();
              while(it2.hasNext())
                   //System.out.println( "Result to be added : "+c.getName());
                   j=(MyVertex)it2.next();
                   if(j.getName().equals(c.getName()))
                        j.setWeight(c.getWeight());
                        break;
                   //System.out.println( "Result item name : "+j.getName());
              result.add(c);
         }Thanks a lot .

    Thank you all for your immediate reply. It has solved half of my problem.Now It is not adding all "c" ,but it still not updating the value if the matching found.
    public static void updateResult(MyVertex c)
              Iterator it2=result.iterator();
              while(it2.hasNext())
                   //System.out.println( "Result to be added : "+c.getName());
                   j=(MyVertex)it2.next();
                   if(j.getName().equals(c.getName()))
                        j.setWeight(c.getWeight());
                        flag=true;
                        return;
                   //System.out.println( "Result item name : "+j.getName());
              if(!flag)
              {result.add(c);}
         }

  • Conditionally update the list cell

    Is it possible to update the list cell based on a given condition?
    I was trying something like this, but it turns out that updateItem() is called later (and not when the Listview is updated from the ObservableList which i presumed)
    public class lCell extends ListCell<String> {
    @Override
    public void updateItem(String item, boolean empty) {
                super.updateItem(item, empty);
                label.setText(getItem());//hbox contains image & a label
                System.out.println(item);
                if (item != null && !isCurrentUser)
                  setGraphic(hbox);// Set the list cell as a hbox
                else if (item!=null && isCurrentUser)
                 setText(getItem()); //Set it as the message present in the ObservableList
            }isCurrentUser is a "global" variable which changes it's value in a method (when another user - other than the one currently posting messages -enters the message)
    Is there a way to get an output like:
    <Image> User 1:
    msg1
    msg2
    msg3...
    <Image> User2:
    msg1
    msg2...
    <Image> User1:
    msgs...

    Like you said, I created an object userMessage which has the username and the message. >>
    public class userMessage {
            private static String user;
            private static String message;
            public userMessage(String u, String m) {
            this.user = u;
            this.message=m;
            public static String getUser() {
            return user;
            public void setUser(String user) {
            this.user = user;
            public static String getMessage() {
            return message;
            public void setMessage(String message) {
            this.message = message;
    }And my list cell class looks something like this:
    public class lCell extends ListCell<userMessage> {
    @Override
            public void updateItem(userMessage item, boolean empty) {
                super.updateItem(item, empty);
                if (item != null)
                    StringBuilder sb = new StringBuilder();
                    sb.append(item.getUser()).append(": \n").append(item.getMessage());
                    setText(sb.toString());
    }Q). How do I add a <user name> and a <message> to the list?
    I thought, if i want a new message to be sent, i call a function add() which does the needful.>>
    public void add(String user, String message)
           userMessage um = new userMessage(user, message);
           obs.addAll(um);
    }But it seems like the last known item (object) created over rides all the previous ones.
    so if for example I have:
    add(user1, Hi);
    add(user2, Hi!);
    add(user1, zzz); The list view shows me:
    user1, zzz
    user1, zzz
    user1, zzz
    What do I do to prevent this? Do I have to create a different object every time? :\

  • How to get the list of IDM users in a workflow.

    Hi,
    I wanted to get the list of IDM users in a workflow into a list.Now I tried to use getObjects Method,I do not have the display session here,I passed the workflow context or WF_Context.But it is giving exception like context null .
    I used the same method in a form and it worked.How can I get the list of users in a workflow.It is for customizing reports.
    Thanks and Regards,
    Pandu
    Any Idea on how to customize reports including attributes from resources and auditing attributes etc.Any help would be really great.
    Thank you.

    Hi John,
    I get this exception WorkItemForm: no id.
    This comes when I click on the other column.I generate the data needed in a report and display it as a sorting table when I get the data.
    I want to give the user ability to sort data by different columns.But when I click any column I get the exception
    WorkItemForm: no id
    How can I save a workitem on a manual form before invoking it from a manual action.
    Here is the code snippet
    <Field name='tblUsers'>
            <Display class='SortingTable'>
              <Property name='selectEnable' value='false'/>
              <Property name='align' value='left'/>
              <Property name='linkEnable' value='false'/>
              <Property name='sortEnable' value='true'/>
              <Property name='width' value='400'/>
              <Property name='columns'>
                <List>
                  <String>Account id</String>
                  <String>First Name</String>                      
                </List>
              </Property>
            </Display>      
            <FieldLoop for='row' in='_searchList[*]'>
              <Field name='enduserId'>
                <Display class='Label'>
                  <Property name='value'>
                    <block trace='true'>
                      <invoke name='getAccountId'>
                        <ref>row</ref>
                      </invoke>
                    </block>
                  </Property>
                </Display>
              </Field>
              <Field name='lblfirstname'>
                <Display class='Label'>
                  <Property name='value'>
                    <invoke name='getAttribute'>
                      <ref>row</ref>
                      <s>firstname</s>
                    </invoke>
                  </Property>
                </Display>
              </Field>
         <FieldLoop>      I think I may need to save some workItem,That is why this may be giving the error.How can I correct this.
    Thanks,
    pandu

  • How to update the lists using the timer jobs?

    Hi,
    I'm new to sharepoint developing
    Using the timer jobs the items which are present in the one list must get updated in the another list and also should be overwritten.
    For example:
    If there 10 items present in a X list. After some time period the first five of X should get updated in Y  list . After some more time the next 5 items of X has to overwrite the items present in the Y list.
    Regards,
    Santto.

    Hi Santto,
    The following articles and code examples would be helpful.
    SharePoint 2010 Custom Timer Job
    https://code.msdn.microsoft.com/office/SharePoint-2010-Custom-416cd3a1
    SharePoint Add/Update/Delete List Item Programmatically to SharePoint List using C#
    http://www.sharepointblog.in/2013/04/add-new-list-item-to-sharepoint-list.html
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Errror Update the data service Personal Information -- Personal Data

    We have a problem in ESS at the time of updating the data, somebody knows as it can be the cause
    In the portal --->Personal Information -->Personal Data
    com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException: Screen output without connection to user., error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:101)
         at com.sap.xss.per.fc.persinfo.FcPersInfo.save(FcPersInfo.java:411)
         at com.sap.xss.per.fc.persinfo.wdp.InternalFcPersInfo.save(InternalFcPersInfo.java:768)
         at com.sap.xss.per.fc.persinfo.FcPersInfoInterface.save(FcPersInfoInterface.java:186)
         at com.sap.xss.per.fc.persinfo.wdp.InternalFcPersInfoInterface.save(InternalFcPersInfoInterface.java:275)
         at com.sap.xss.per.fc.persinfo.wdp.InternalFcPersInfoInterface$External.save(InternalFcPersInfoInterface.java:423)
         at com.sap.xss.per.vc.reviewnavi.VcPersInfoReviewNavi.onEvent(VcPersInfoReviewNavi.java:213)
         at com.sap.xss.per.vc.reviewnavi.wdp.InternalVcPersInfoReviewNavi.onEvent(InternalVcPersInfoReviewNavi.java:171)
         at com.sap.xss.per.vc.reviewnavi.VcPersInfoReviewNaviInterface.onEvent(VcPersInfoReviewNaviInterface.java:115)
         at com.sap.xss.per.vc.reviewnavi.wdp.InternalVcPersInfoReviewNaviInterface.onEvent(InternalVcPersInfoReviewNaviInterface.java:124)
         at com.sap.xss.per.vc.reviewnavi.wdp.InternalVcPersInfoReviewNaviInterface$External.onEvent(InternalVcPersInfoReviewNaviInterface.java:200)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:533)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:437)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.access$600(FPMComponent.java:78)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.raiseSaveEvent(FPMComponent.java:951)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.raiseSaveEvent(FPMComponent.java:1114)
         at com.sap.xss.per.vc.reviewnavi.VcPersInfoReviewNavi.next(VcPersInfoReviewNavi.java:227)
         at com.sap.xss.per.vc.reviewnavi.wdp.InternalVcPersInfoReviewNavi.next(InternalVcPersInfoReviewNavi.java:175)
         at com.sap.xss.per.vc.reviewnavi.ReviewNaviView.onActionNext(ReviewNaviView.java:153)
         at com.sap.xss.per.vc.reviewnavi.wdp.InternalReviewNaviView.wdInvokeEventHandler(InternalReviewNaviView.java:173)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:420)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
         at com.sap.tc.webdynpro.portal.pb.impl.localwd.LocalApplicationProxy.sendDataAndProcessAction(LocalApplicationProxy.java:77)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1257)
         at com.sap.portal.pb.PageBuilder.SendDataAndProcessAction(PageBuilder.java:325)
         at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:826)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         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:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.aii.proxy.framework.core.BaseProxyException: Screen output without connection to user., error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.aii.proxy.framework.core.AbstractProxy.send$(AbstractProxy.java:150)
         at com.sap.xss.per.model.mac.HRXSS_PER_MAC.hrxss_Per_Save(HRXSS_PER_MAC.java:476)
         at com.sap.xss.per.model.mac.Hrxss_Per_Save_Input.doExecute(Hrxss_Per_Save_Input.java:137)
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:92)
         ... 64 more

    > We have a problem in ESS at the time of updating the
    > data, somebody knows as it can be the cause
    >
    > In the portal --->Personal Information -->Personal
    > Data
    >
    >
    > com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFC
    > ExecuteException: Screen output without connection to
    > user., error key: RFC_ERROR_SYSTEM_FAILURE
    > at
    > t
    > com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCMo
    > delClassExecutable.execute(DynamicRFCModelClassExecuta
    > ble.java:101)
    > at
    > t
    > com.sap.xss.per.fc.persinfo.FcPersInfo.save(FcPersInfo
    > .java:411)
    > at
    > t
    > com.sap.xss.per.fc.persinfo.wdp.InternalFcPersInfo.sav
    > e(InternalFcPersInfo.java:768)
    > at
    > t
    > com.sap.xss.per.fc.persinfo.FcPersInfoInterface.save(F
    > cPersInfoInterface.java:186)
    > at
    > t
    > com.sap.xss.per.fc.persinfo.wdp.InternalFcPersInfoInte
    > rface.save(InternalFcPersInfoInterface.java:275)
    > at
    > t
    > com.sap.xss.per.fc.persinfo.wdp.InternalFcPersInfoInte
    > rface$External.save(InternalFcPersInfoInterface.java:4
    > 23)
    > at
    > t
    > com.sap.xss.per.vc.reviewnavi.VcPersInfoReviewNavi.onE
    > vent(VcPersInfoReviewNavi.java:213)
    > at
    > t
    > com.sap.xss.per.vc.reviewnavi.wdp.InternalVcPersInfoRe
    > viewNavi.onEvent(InternalVcPersInfoReviewNavi.java:171
    > )
    > at
    > t
    > com.sap.xss.per.vc.reviewnavi.VcPersInfoReviewNaviInte
    > rface.onEvent(VcPersInfoReviewNaviInterface.java:115)
    > at
    > t
    > com.sap.xss.per.vc.reviewnavi.wdp.InternalVcPersInfoRe
    > viewNaviInterface.onEvent(InternalVcPersInfoReviewNavi
    > Interface.java:124)
    > at
    > t
    > com.sap.xss.per.vc.reviewnavi.wdp.InternalVcPersInfoRe
    > viewNaviInterface$External.onEvent(InternalVcPersInfoR
    > eviewNaviInterface.java:200)
    > at
    > t
    > com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(F
    > PMComponent.java:533)
    > at
    > t
    > com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMC
    > omponent.java:437)
    > at
    > t
    > com.sap.pcuigp.xssfpm.wd.FPMComponent.access$600(FPMCo
    > mponent.java:78)
    > at
    > t
    > com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.raiseSaveEve
    > nt(FPMComponent.java:951)
    > at
    > t
    > com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.raiseSa
    > veEvent(FPMComponent.java:1114)
    > at
    > t
    > com.sap.xss.per.vc.reviewnavi.VcPersInfoReviewNavi.nex
    > t(VcPersInfoReviewNavi.java:227)
    > at
    > t
    > com.sap.xss.per.vc.reviewnavi.wdp.InternalVcPersInfoRe
    > viewNavi.next(InternalVcPersInfoReviewNavi.java:175)
    > at
    > t
    > com.sap.xss.per.vc.reviewnavi.ReviewNaviView.onActionN
    > ext(ReviewNaviView.java:153)
    > at
    > t
    > com.sap.xss.per.vc.reviewnavi.wdp.InternalReviewNaviVi
    > ew.wdInvokeEventHandler(InternalReviewNaviView.java:17
    > 3)
    > at
    > t
    > com.sap.tc.webdynpro.progmodel.generation.DelegatingVi
    > ew.invokeEventHandler(DelegatingView.java:87)
    > at
    > t
    > com.sap.tc.webdynpro.progmodel.controller.Action.fire(
    > Action.java:67)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.window.WindowPhaseMo
    > del.doHandleActionEvent(WindowPhaseModel.java:420)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.window.WindowPhaseMo
    > del.processRequest(WindowPhaseModel.java:132)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.window.WebDynproWind
    > ow.processRequest(WebDynproWindow.java:335)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.cal.AbstractClient.e
    > xecuteTasks(AbstractClient.java:143)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.session.ApplicationS
    > ession.doProcessing(ApplicationSession.java:313)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.session.ClientSessio
    > n.doApplicationProcessingPortal(ClientSession.java:733
    > )
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.session.ClientSessio
    > n.doApplicationProcessing(ClientSession.java:668)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.session.ClientSessio
    > n.doProcessing(ClientSession.java:250)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.session.RequestManag
    > er.doProcessing(RequestManager.java:149)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.session.core.Applica
    > tionHandle.doProcessing(ApplicationHandle.java:73)
    > at
    > t
    > com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicatio
    > nProxy.sendDataAndProcessActionInternal(AbstractApplic
    > ationProxy.java:860)
    > at
    > t
    > com.sap.tc.webdynpro.portal.pb.impl.localwd.LocalAppli
    > cationProxy.sendDataAndProcessAction(LocalApplicationP
    > roxy.java:77)
    > at
    > t
    > com.sap.portal.pb.PageBuilder.updateApplications(PageB
    > uilder.java:1257)
    > at
    > t
    > com.sap.portal.pb.PageBuilder.SendDataAndProcessAction
    > (PageBuilder.java:325)
    > at
    > t
    > com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.ja
    > va:826)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.window.WindowPhaseMo
    > del.processPhaseListener(WindowPhaseModel.java:755)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.window.WindowPhaseMo
    > del.doPortalDispatch(WindowPhaseModel.java:717)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.window.WindowPhaseMo
    > del.processRequest(WindowPhaseModel.java:136)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.window.WebDynproWind
    > ow.processRequest(WebDynproWindow.java:335)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.cal.AbstractClient.e
    > xecuteTasks(AbstractClient.java:143)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.session.ApplicationS
    > ession.doProcessing(ApplicationSession.java:313)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.session.ClientSessio
    > n.doApplicationProcessingStandalone(ClientSession.java
    > :713)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.session.ClientSessio
    > n.doApplicationProcessing(ClientSession.java:666)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.session.ClientSessio
    > n.doProcessing(ClientSession.java:250)
    > at
    > t
    > com.sap.tc.webdynpro.clientserver.session.RequestManag
    > er.doProcessing(RequestManager.java:149)
    > at
    > t
    > com.sap.tc.webdynpro.serverimpl.defaultimpl.Dispatcher
    > Servlet.doContent(DispatcherServlet.java:62)
    > at
    > t
    > com.sap.tc.webdynpro.serverimpl.defaultimpl.Dispatcher
    > Servlet.doPost(DispatcherServlet.java:53)
    > at
    > t
    > javax.servlet.http.HttpServlet.service(HttpServlet.jav
    > a:760)
    > at
    > t
    > javax.servlet.http.HttpServlet.service(HttpServlet.jav
    > a:853)
    > at
    > t
    > com.sap.engine.services.servlets_jsp.server.HttpHandle
    > rImpl.runServlet(HttpHandlerImpl.java:401)
    > at
    > t
    > com.sap.engine.services.servlets_jsp.server.HttpHandle
    > rImpl.handleRequest(HttpHandlerImpl.java:266)
    > at
    > t
    > com.sap.engine.services.httpserver.server.RequestAnali
    > zer.startServlet(RequestAnalizer.java:387)
    > at
    > t
    > com.sap.engine.services.httpserver.server.RequestAnali
    > zer.startServlet(RequestAnalizer.java:365)
    > at
    > t
    > com.sap.engine.services.httpserver.server.RequestAnali
    > zer.invokeWebContainer(RequestAnalizer.java:944)
    > at
    > t
    > com.sap.engine.services.httpserver.server.RequestAnali
    > zer.handle(RequestAnalizer.java:266)
    > at
    > t
    > com.sap.engine.services.httpserver.server.Client.handl
    > e(Client.java:95)
    > at
    > t
    > com.sap.engine.services.httpserver.server.Processor.re
    > quest(Processor.java:175)
    > at
    > t
    > com.sap.engine.core.service630.context.cluster.session
    > .ApplicationSessionMessageListener.process(Application
    > SessionMessageListener.java:33)
    > at
    > t
    > com.sap.engine.core.cluster.impl6.session.MessageRunne
    > r.run(MessageRunner.java:41)
    > at
    > t
    > com.sap.engine.core.thread.impl3.ActionObject.run(Acti
    > onObject.java:37)
    > at
    > t java.security.AccessController.doPrivileged(Native
    > Method)
    > at
    > t
    > com.sap.engine.core.thread.impl3.SingleThread.execute(
    > SingleThread.java:100)
    > at
    > t
    > com.sap.engine.core.thread.impl3.SingleThread.run(Sing
    > leThread.java:170)
    > Caused by:
    > com.sap.aii.proxy.framework.core.BaseProxyException:
    > Screen output without connection to user., error key:
    > RFC_ERROR_SYSTEM_FAILURE
    > at
    > t
    > com.sap.aii.proxy.framework.core.AbstractProxy.send$(A
    > bstractProxy.java:150)
    > at
    > t
    > com.sap.xss.per.model.mac.HRXSS_PER_MAC.hrxss_Per_Save
    > (HRXSS_PER_MAC.java:476)
    > at
    > t
    > com.sap.xss.per.model.mac.Hrxss_Per_Save_Input.doExecu
    > te(Hrxss_Per_Save_Input.java:137)
    > at
    > t
    > com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCMo
    > delClassExecutable.execute(DynamicRFCModelClassExecuta
    > ble.java:92)
    >      ... 64 more
    version 32 Mexico.

  • How do I update the list of applications in the help panel?

    When I hit F1, the help module comes up. It has a very outdated list of Adobe applications. For example, I've owned Lightroom 3, 4, and now 5. Only 3 shows up in the list of applications for which I can search. How do I add/delete applications for which I want to search or download help information?

    Hi,
    When you hit F1 in Lightroom 3, a special client opens up, and it displays help for supported Adobe software.
    However, Lightroom 4 and Lightroom 5 do not use this mechanism or client. Please use the links (below) to find offline help:
    PDF manual for Lightroom 4: http://help.adobe.com/en_US/lightroom/using/lightroom_4_help.pdf
    PDF manual for Lightroom 5: http://helpx.adobe.com/pdf/lightroom_reference.pdf
    Online docs for Lightroom 5: http://helpx.adobe.com/lightroom/topics.html
    Help Hub page for Lightroom 5: http://helpx.adobe.com/lightroom.html
    You can navigate to links 1, 2, and 3, from the Help Hub page (link 4), too.
    Cheers,
    David

  • SiteManager doesn't update the list of websites after creating a LiveCopy

    Hi,
    I am facing a strange issue with the SiteAdmin LiveCopy feature.
    I have created a LiveCopy website from a BluePrint site. The new livecopy site is created successfully with all the necessary rollout config changes. But for some reason the SiteAdmin refresh doesn't show the website list. The page is blank. I can only see the list of websites on the left side frame. The right side frame is empty. Please see the attached image and the firebug error log.
    Any suggestions to resolve this issue are most welcome. Appreciate for your time.
    Best,
    Suku.
    Header 1
    {"pages":[{"index":0,"path":"/content/geometrixx","label":"geometrixx","title":"Geometrixx Demo Site","title_xss":"Geometrixx Demo Site","title":"Geometrixx Demo Site","monthlyHits":0,"type":"cq:Page","dialogPath":"/libs/foundation/components/page/dia log","lastModifiedBy":null,"lastModifiedBy_xss":null,"lastModified":0,"timeUntilValid":0," onTime":0,"offTime":0,"replication":{"numQueued":0},"inWorkflow":false,"workflows":[],"sch eduledTasks":[],"msm:isLiveCopy":false,"msm:isInBlueprint":true,"msm:isSource":false},{"in dex":1,"path":"/content/geometrixx_mobile","label":"geometrixx_mobile","title":"Geometrixx Mobile Demo Site","title_xss":"Geometrixx Mobile Demo Site","title":"Geometrixx Mobile Demo Site","monthlyHits":0,"type":"cq:Page","dialogPath":"/libs/wcm/mobile/components/page/dia log","templateTitle":"Geometrixx Mobile Content Page","templateTitle_xss":"Geometrixx Mobile Content Page","templatePath":"/apps/geometrixx/templates/mobilecontentpage","templateShortTitle": "Mobile Content","templateShortTitle_xss":"Mobile Content","lastModifiedBy":"Administrator","lastModifiedBy_xss":"Administrator","lastModif ied":1268041912426,"timeUntilValid":0,"onTime":0,"offTime":0,"replication":{"numQueued":0} ,"inWorkflow":false,"workflows":[],"scheduledTasks":[],"msm:isLiveCopy":false,"msm:isInBlu eprint":false,"msm:isSource":false},{"index":2,"path":"/content/campaigns","label":"campai gns","title":"Campaigns","title_xss":"Campaigns","title":"Campaigns","monthlyHits":0,"type ":"sling:Folder","lastModifiedBy":null,"lastModifiedBy_xss":null,"lastModified":-1,"timeUn tilValid":0,"onTime":0,"offTime":0,"replication":{"numQueued":0},"inWorkflow":false,"workf lows":[],"scheduledTasks":[]},{"index":3,"path":"/content/dam","label":"dam","title":"Digi tal Assets","title_xss":"Digital Assets","title":"Digital Assets","monthlyHits":0,"type":"sling:OrderedFolder","lastModifiedBy":null,"lastModifiedB y_xss":null,"lastModified":-1,"timeUntilValid":0,"onTime":0,"offTime":0,"replication":{"nu mQueued":0},"inWorkflow":false,"workflows":[],"scheduledTasks":[]},{"index":4,"path":"/con tent/wiki","label":"wiki","title":"Wiki Content","title_xss":"Wiki Content","title":"Wiki Content","monthlyHits":0,"type":"wiki:Topic","lastModifiedBy":null,"lastModifiedBy_xss":n ull,"lastModified":-1,"timeUntilValid":0,"onTime":0,"offTime":0,"replication":{"numQueued" :0},"inWorkflow":false,"workflows":[],"scheduledTasks":[]},{"index":5,"path":"/content/blu eprintdemo","label":"blueprintdemo","title":"BluePrint demo","title_xss":"BluePrint demo","title":"BluePrint demo","monthlyHits":23,"type":"cq:Page","dialogPath":"/libs/foundation/components/page/di alog","lastModifiedBy":"Administrator","lastModifiedBy_xss":"Administrator","lastModified" :1333643319629,"timeUntilValid":0,"onTime":0,"offTime":0,"replication":{"numQueued":30,"pu blished":1333575432993,"publishedBy":"Administrator","publishedBy_xss":"Administrator","ac tion":"ACTIVATE"},"inWorkflow":false,"workflows":[],"scheduledTasks":[],"msm:isLiveCopy":f alse,"msm:isInBlueprint":true,"msm:isSource":true},{"index":6,"path":"/content/livecopydem o","label":"livecopydemo","title":"LiveCopy Demo","title_xss":"LiveCopy Demo","title":"LiveCopy Demo","monthlyHits":7,"type":"cq:Page","dialogPath":"/libs/foundation/components/page/dia log","lastModifiedBy":"Administrator","lastModifiedBy_xss":"Administrator","lastModified": 1333646845631,"timeUntilValid":0,"onTime":0,"offTime":0,"replication":{"numQueued":0},"inW orkflow":false,"workflows":[],"scheduledTasks":[]<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <html>
    <head>
    <title>500 String index out of range: -1</title>
    </head>
    <body>
    <h1>String index out of range: -1 (500)</h1>
    <p>The requested URL /content.pages.json resulted in an error in com.day.cq.wcm.core.impl.servlets.PageListServlet.</p>
    <h3>Exception:</h3>
    <pre>
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
        at java.lang.String.substring(String.java:1937)
        at java.lang.String.substring(String.java:1904)
        at com.day.cq.wcm.msm.impl.LiveRelationshipManagerImpl.computeRolloutConfigs(LiveRelationshi pManagerImpl.java:1149)
        at com.day.cq.wcm.msm.impl.LiveRelationshipManagerImpl.buildRelationship(LiveRelationshipMan agerImpl.java:1085)
        at com.day.cq.wcm.msm.impl.LiveRelationshipManagerImpl.getLiveRelationship(LiveRelationshipM anagerImpl.java:936)
        at com.day.cq.wcm.core.impl.servlets.PageListServlet$PageListItem.writeLiveRelationshipState (PageListServlet.java:346)
        at com.day.cq.wcm.core.impl.servlets.PageListServlet$PageListItem.write(PageListServlet.java :270)
        at com.day.cq.commons.servlets.AbstractListServlet.write(AbstractListServlet.java:234)
        at com.day.cq.commons.servlets.AbstractListServlet.doGet(AbstractListServlet.java:108)
        at com.day.cq.commons.servlets.AbstractPredicateServlet.doGet(AbstractPredicateServlet.java: 75)
        at org.apache.sling.api.servlets.SlingSafeMethodsServlet.mayService(SlingSafeMethodsServlet. java:268)
        at org.apache.sling.api.servlets.SlingAllMethodsServlet.mayService(SlingAllMethodsServlet.ja va:139)
        at org.apache.sling.api.servlets.SlingSafeMethodsServlet.service(SlingSafeMethodsServlet.jav a:344)
        at org.apache.sling.api.servlets.SlingSafeMethodsServlet.service(SlingSafeMethodsServlet.jav a:375)
        at org.apache.sling.engine.impl.request.RequestData.service(RequestData.java:529)
        at org.apache.sling.engine.impl.filter.SlingComponentFilterChain.render(SlingComponentFilter Chain.java:45)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:64)
        at com.day.cq.wcm.core.impl.WCMDebugFilter.doFilter(WCMDebugFilter.java:146)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
        at com.day.cq.wcm.core.impl.WCMComponentFilter.filterRootInclude(WCMComponentFilter.java:308 )
        at com.day.cq.wcm.core.impl.WCMComponentFilter.doFilter(WCMComponentFilter.java:141)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
        at org.apache.sling.engine.impl.SlingRequestProcessorImpl.processComponent(SlingRequestProce ssorImpl.java:269)
        at org.apache.sling.engine.impl.filter.RequestSlingFilterChain.render(RequestSlingFilterChai n.java:49)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:64)
        at com.day.cq.wcm.mobile.core.impl.redirect.RedirectFilter.doFilter(RedirectFilter.java:185)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
        at org.apache.sling.engine.impl.debug.RequestProgressTrackerLogFilter.doFilter(RequestProgre ssTrackerLogFilter.java:59)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
        at com.day.cq.wcm.foundation.forms.impl.FormsHandlingServlet.doFilter(FormsHandlingServlet.j ava:220)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
        at com.day.cq.theme.impl.ThemeResolverFilter.doFilter(ThemeResolverFilter.java:67)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
        at org.apache.sling.i18n.impl.I18NFilter.doFilter(I18NFilter.java:96)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
        at com.day.cq.wcm.core.impl.WCMRequestFilter.doFilter(WCMRequestFilter.java:119)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
        at org.apache.sling.rewriter.impl.RewriterFilter.doFilter(RewriterFilter.java:84)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
        at org.apache.sling.portal.container.internal.request.PortalFilter.doFilter(PortalFilter.jav a:76)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
        at org.apache.sling.bgservlets.impl.BackgroundServletStarterFilter.doFilter(BackgroundServle tStarterFilter.java:135)
        at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
        at org.apache.sling.engine.impl.SlingRequestProcessorImpl.processRequest(SlingRequestProcess orImpl.java:161)
        at org.apache.sling.engine.impl.SlingMainServlet.service(SlingMainServlet.java:183)
        at org.apache.felix.http.base.internal.handler.ServletHandler.doHandle(ServletHandler.java:9 6)
        at org.apache.felix.http.base.internal.handler.ServletHandler.handle(ServletHandler.java:79)
        at org.apache.felix.http.base.internal.dispatch.ServletPipeline.handle(ServletPipeline.java: 42)
        at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:49)
        at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
        at org.apache.felix.http.base.internal.dispatch.FilterPipeline.dispatch(FilterPipeline.java: 48)
        at org.apache.felix.http.base.internal.dispatch.Dispatcher.dispatch(Dispatcher.java:39)
        at org.apache.felix.http.base.internal.DispatcherServlet.service(DispatcherServlet.java:67)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
        at org.apache.felix.http.proxy.ProxyServlet.service(ProxyServlet.java:60)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
        at org.apache.sling.launchpad.base.webapp.SlingServletDelegate.service(SlingServletDelegate. java:277)
        at org.apache.sling.launchpad.webapp.SlingServlet.service(SlingServlet.java:148)
        at com.day.j2ee.servletengine.ServletRuntimeEnvironment.service(ServletRuntimeEnvironment.ja va:228)
        at com.day.j2ee.servletengine.RequestDispatcherImpl.doFilter(RequestDispatcherImpl.java:315)
        at com.day.j2ee.servletengine.FilterChainImpl.doFilter(FilterChainImpl.java:74)
        at com.day.crx.launchpad.filters.CRXLaunchpadLicenseFilter.doFilter(CRXLaunchpadLicenseFilte r.java:96)
        at com.day.j2ee.servletengine.FilterChainImpl.doFilter(FilterChainImpl.java:72)
        at com.day.j2ee.servletengine.RequestDispatcherImpl.service(RequestDispatcherImpl.java:334)
        at com.day.j2ee.servletengine.RequestDispatcherImpl.service(RequestDispatcherImpl.java:378)
        at com.day.j2ee.servletengine.ServletHandlerImpl.execute(ServletHandlerImpl.java:315)
        at com.day.j2ee.servletengine.DefaultThreadPool$DequeueThread.run(DefaultThreadPool.java:134 )
        at java.lang.Thread.run(Thread.java:662)
    </pre>
    <h3>Request Progress:</h3>
    <pre>
          0 (2012-04-05 12:49:08) TIMER_START{Request Processing}
          0 (2012-04-05 12:49:08) COMMENT timer_end format is {&lt;elapsed msec&gt;,&lt;timer name&gt;} &lt;optional message&gt;
          0 (2012-04-05 12:49:08) LOG Method=GET, PathInfo=/content.pages.json
          0 (2012-04-05 12:49:08) TIMER_START{ResourceResolution}
          1 (2012-04-05 12:49:08) TIMER_END{1,ResourceResolution} URI=/content.pages.json resolves to Resource=JcrNodeResource, type=sling:redirect, superType=null, path=/content
          1 (2012-04-05 12:49:08) LOG Resource Path Info: SlingRequestPathInfo: path='/content', selectorString='pages', extension='json', suffix='null'
          1 (2012-04-05 12:49:08) TIMER_START{ServletResolution}
          1 (2012-04-05 12:49:08) TIMER_START{resolveServlet(JcrNodeResource, type=sling:redirect, superType=null, path=/content)}
          1 (2012-04-05 12:49:08) TIMER_END{0,resolveServlet(JcrNodeResource, type=sling:redirect, superType=null, path=/content)} Using servlet com.day.cq.wcm.core.impl.servlets.PageListServlet
          1 (2012-04-05 12:49:08) TIMER_END{0,ServletResolution} URI=/content.pages.json handled by Servlet=com.day.cq.wcm.core.impl.servlets.PageListServlet
          1 (2012-04-05 12:49:08) LOG Applying Requestfilters
          1 (2012-04-05 12:49:08) LOG Calling filter: org.apache.sling.bgservlets.impl.BackgroundServletStarterFilter
          1 (2012-04-05 12:49:08) LOG Calling filter: org.apache.sling.portal.container.internal.request.PortalFilter
          1 (2012-04-05 12:49:08) LOG Calling filter: org.apache.sling.rewriter.impl.RewriterFilter
          1 (2012-04-05 12:49:08) LOG Calling filter: com.day.cq.wcm.core.impl.WCMRequestFilter
          1 (2012-04-05 12:49:08) LOG Calling filter: org.apache.sling.i18n.impl.I18NFilter
          1 (2012-04-05 12:49:08) LOG Calling filter: com.day.cq.theme.impl.ThemeResolverFilter
          1 (2012-04-05 12:49:08) LOG Calling filter: com.day.cq.wcm.foundation.forms.impl.FormsHandlingServlet
          1 (2012-04-05 12:49:08) LOG Calling filter: org.apache.sling.engine.impl.debug.RequestProgressTrackerLogFilter
          1 (2012-04-05 12:49:08) LOG Calling filter: com.day.cq.wcm.mobile.core.impl.redirect.RedirectFilter
          1 (2012-04-05 12:49:08) LOG RedirectFilter did not redirect (MobileUtil.isMobileResource() returns false)
          1 (2012-04-05 12:49:08) LOG Applying Componentfilters
          1 (2012-04-05 12:49:08) LOG Calling filter: com.day.cq.wcm.core.impl.WCMComponentFilter
          2 (2012-04-05 12:49:08) LOG Calling filter: com.day.cq.wcm.core.impl.WCMDebugFilter
          2 (2012-04-05 12:49:08) TIMER_START{com.day.cq.wcm.core.impl.servlets.PageListServlet#0}
         55 (2012-04-05 12:49:08) TIMER_END{53,com.day.cq.wcm.core.impl.servlets.PageListServlet#0}
        100 (2012-04-05 12:49:08) TIMER_START{handleError:throwable=javax.servlet.ServletException}
        114 (2012-04-05 12:49:08) TIMER_END{14,handleError:throwable=javax.servlet.ServletException} Using handler org.apache.sling.servlets.resolver.internal.defaults.DefaultErrorHandlerServlet
        119 (2012-04-05 12:49:08) TIMER_END{119,Request Processing} Dumping SlingRequestProgressTracker Entries
    </pre>
    <hr>
    <address>ApacheSling/2.2 (Java HotSpot(TM) 64-Bit Server VM 1.6.0_30; Windows 7 6.1 amd64)</address>
    </body>
    </html>

    I ran into a similar issue when creating a new live site using the name of a previously deleted site. Are you reusing the name of a previously deleted site?

  • Workflow status is missing from the List after make some change in workflow

    Hi,
    We have this strange situation where the workflow status is missing from List views. Here is the situation:
    Now if I check the All List view of this list, I can see these workflows that shows the status of the workflow - say "In progress", "Completed" etc.
    When i make some workflow modification and after i save and publish. The workflow status in List will missing.
    This issue happening  is intermittent.
    Why does this happen?
    Any workaround/findings for the above scenario are much appreciated.
    Thanks
    JWei

    Hi JWei,
    The workflow status column gets created when you first create the workflow and its first instance runs. The columns gets removed (and disappears from the view) if you delete the workflow or remove all instances of the wf on the list.
    Please check whether you created some lookup columns in this list. If yes, please increase the lookup threshold for that web application in Central Administration.
    Please create a new view which only contains the Title column and Workflow Status column, modify the workflow, check the workflow status column in the new view, compare the result.
    Please create a new list, create a workflow, and test again, compare the result.
    Please check if the link below is useful for you:
    http://naimmurati.wordpress.com/2013/11/11/workflow-progress-column-missing-in-a-document-library/
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • "SharePoint list itme update error : Invalid data has been used to update the list item. The field you are trying to update may be read only."

    Hi Everyone,
    i am facing one problem ...
    when i am updating an SharePoint List item, it is throwing above error....
    This is my code......
     try
                    tbl = getListDateTable("NCR");
                    DataTable dt = tbl;
                    oWebsite = mysite.OpenWeb();
                    oList = oWebsite.Lists["NCR"];
                    SPListItem itemToUpdate = null;
                    foreach (SPListItem listItem in oList.Items)
                        listItem.Update();
                        workOrderID = Convert.ToInt32(txtTitle.Text);
                        itemToUpdate = listItem;
                    //SPListItem itemToUpdate = oList.GetItemById(workOrderID);
                    //itemToUpdate.Fields["Title"].ReadOnlyField = false;
                    //string str = ddlStatus.SelectedValue;
                    itemToUpdate["Title"] = txtTitle.Text;
                    itemToUpdate["JobNumber"] = txtJobNumber.Text;
                    itemToUpdate["PartNumber"] = txtPartNumber.Text;
                    itemToUpdate["PartDescription"] = txtPartDescription.Text;
                    //itemToUpdate["RequiredBy"] = txtRequiredBy.Text;
                    itemToUpdate["ReportedBy"] = txtReportedBy.Text;
                    itemToUpdate["WrittenBy"] = txtWrittenBy.Text;
                    //itemToUpdate["DateOpened"] = txtDateOpened.SelectedDate;
                    //itemToUpdate["DateClosed"] = txtDateClosed.SelectedDate;
                    itemToUpdate.Update();
                    oList.Update();
                   // bind();
                catch (Exception ex)
                    throw ex;
    Thanks
    viswanath

    Hi Viswanath,
    If you are using People/User Type Field Column then use below code methord
    SPUser user = web.EnsureUser(loginName);
    item["UserTypeFieldName"] = user;
    Lookup Type Field Column then use below code methord
    public static SPFieldLookupValue GetLookupFieldFromValue(string lookupValue,string lookupSourceColumn, SPList lookupSourceList)
    SPFieldLookupValue value = null;
    SPQuery query = new SPQuery();
    query.Query = "<Where><Eq><FieldRef Name='" + lookupSourceColumn + "'/><Value Type='Text'>" + lookupValue + "</Value></Eq></Where>";
    SPListItemCollection listItems = lookupSourceList.GetItems(query);
    if(listItems.Count > 0 )
    value = new SPFieldLookupValue(listItems[0].ID,lookupValue);
    return value;
    item["LookupField"] = GetLookupFieldFromValue(lookupfieldValue, lookupSourceColumn, listName);
    Please mark the replies as answers if they help or unmark if not.

Maybe you are looking for

  • Two seperate contacts appear to be the same one in Text Messaging

    I have two separate contacts that when I text message them it always lists them as the same contact.  So when I look at my list of conversations in the Text messaging app it shows two separate conversations for the same contact, but one of them is fa

  • HT201272 I cannot play on my I-Pod Touch recent purchases I-Tunes

    I recently purchases some I-Tunes songs and they will not sync or play on my I-Pod Touch?

  • Workflows -ABAP

    Hello ABAPers, I am looking for some technical information relating to workflows in DP Approval route.It is looking interesting as I am Functional consultant and looking for inputs from Technical team.I thought of sharing this interesting this error

  • Delivery and billing block

    Hi : It is strange to get deliveyr and billing block once I finished creating the sales order, and block reason is 01, I don't know which condition to trigger that block? Is it possible to investigate how is that triggered?

  • Apache Server starting up problem !

    Hi, I am getting problem in starting up the server. Right now I am using the Apache - tomcat server. I have started the Apache server and restarted the tomcat server by using restart_apache.bat .The server is starting fine. Somehow i couldn't able to