Work flow task id not found in UWL config XML file

Hi
We are facing a strange issue with UWL XML file.
We are running EP 7.0 SP13
We configured UWL and we are able to see the work items in UML iview.  These are the same work items as seen in SAP Inbox.
But when we open the uwl.webflow.<system alias> XML file corresponding to the back end system, We were not able to see the task id of the work flow item displayed in the UWL.
Any help on this would be highly appreciated.
Thanks and Regards
VNK

Hi VNK
I am facing the same issue - Please let me know if you have found a solution.
Regards
John

Similar Messages

  • Navigation Rule not found in faces-config.xml file

    Hi All,
    I have a B2C custom Webshop application where in the startpage i have a client logo and when i click on that it will navigate to another page for that i have a header.xhtml page in that i have a code <h:link id="iLkL" outcome="toStartPage" value="#{i18n['main.ui.header.logo']}" styleClass="fw-header-logo"> but i was unable to find  <Navigation-rule> of  toStartPage which is mentioned in the outcome="toStartPage" in the faces-config.xml file. I have checked in the standard component also but didn't find anything. Please help me where can i find the toStartpage value.
    Regards,
    Rahul.

    Hi Rahul,
    As correctly mentioned by Steffen earlier, the navigation targets are maintained in the ui-repository.xml files (or navigation-rules.xml files) for each module. Since, you would like to see the definition of the target toStartPage (which is a target accessible and relevant throughout the application), it should be in the WEC main module's (wec/~/main/ui) ui-repository.xml file. Please note that sometimes, the targets are maintained in a file called navigation-rules.xml, which itself is then included into the ui-reppsitory.
    Please let me know if you got what you need here.
    Best Regards
    Pranshu Agarwal

  • Working with multiple faces-config.xml files

    I would organize the menu definitions of my application in different faces-config.xml files. I would also put the label in different properties files.
    The SRDemo application uses a unique properties file for the menu used in the el expression from the faces-config.xml.
    Is it possible to have the same approach with not only one faces-config.xml file but has many faces-config.xml i want for my application.
    If yes does the binding name to be different or may be the same for each file ?

    We still have a litlle problem we don't find the reason. May be you can help us.
    The second menu level never appear in the menu list. The menu list appear as empty.
    The menu bar seem to be correct. We put twice the same model tree to be sure it was working well. Both menu appears. It is correct.
    Here is our faces-config-menu-flexsystem.xml file
    <?xml version="1.0" encoding="windows-1252"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
    <managed-bean>
    <description>Create menu item for flex system management</description>
    <managed-bean-name>menu_menuitem_FlexSystem_Create</managed-bean-name>
    <managed-bean-class>flex.view.util.MenuItem</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    <managed-property>
    <property-name>label</property-name>
    <value>#{resources['menu.FlexSystem.menuItem.create']}</value>
    </managed-property>
    <managed-property>
    <property-name>viewId</property-name>
    <null-value/>
    </managed-property>
    <managed-property>
    <property-name>outcome</property-name>
    <value>linkToCreateNewFlexSystem</value>
    </managed-property>
    </managed-bean>
    <managed-bean>
    <description>Manage menu item for flex system management</description>
    <managed-bean-name>menu_menuitem_FlexSystem_Manage</managed-bean-name>
    <managed-bean-class>flex.view.util.MenuItem</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    <managed-property>
    <property-name>label</property-name>
    <value>#{resources['menu.FlexSystem.menuItem.manage']}</value>
    </managed-property>
    <managed-property>
    <property-name>viewId</property-name>
    <value>\FlexHome.jspx</value>
    </managed-property>
    <managed-property>
    <property-name>outcome</property-name>
    <value>linkToManageFlexSystem</value>
    </managed-property>
    </managed-bean>
    <managed-bean>
    <description>Root menu item for flex system management</description>
    <managed-bean-name>menu_menuitem_FlexSystem_Root</managed-bean-name>
    <managed-bean-class>flex.view.util.MenuItem</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    <managed-property>
    <property-name>children</property-name>
    <list-entries>
    <value-class>flex.view.util.MenuItem</value-class>
    <value>#{menu_menuitem_FlexSystem_Create}</value>
    <value>#{menu_menuitem_FlexSystem_Manage}</value>
    </list-entries>
    </managed-property>
    <managed-property>
    <property-name>label</property-name>
    <value>#{resources['menu.FlexSystem.menuItem.root']}</value>
    </managed-property>
    </managed-bean>
    <application>
    <message-bundle>flex.view.resources.MenuFlexSystemProperties</message-bundle>
    <locale-config>
    <supported-locale>fr_CH</supported-locale>
    </locale-config>
    </application>
    <managed-bean>
    <managed-bean-name>resources</managed-bean-name>
    <managed-bean-class>flex.view.util.ResourceAdapter</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
    <from-view-id>/FlexHome.jspx</from-view-id>
    <navigation-case>
    <from-outcome>linkToCreateNewFlexSystem</from-outcome>
    <to-view-id>/CreateNewFlexSystem.jspx</to-view-id>
    </navigation-case>
    </navigation-rule>
    <navigation-rule>
    <from-view-id>/FlexHome.jspx</from-view-id>
    <navigation-case>
    <from-outcome>linkToManageFlexSystem</from-outcome>
    <to-view-id>/ManageFlexSystem.jspx</to-view-id>
    </navigation-case>
    </navigation-rule>
    <managed-bean>
    <managed-bean-name>menu_FlexSystem</managed-bean-name>
    <managed-bean-class>flex.view.util.MenuTreeModelAdapter</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    <managed-property>
    <property-name>childProperty</property-name>
    <value>children</value>
    </managed-property>
    <managed-property>
    <property-name>listInstance</property-name>
    <list-entries>
    <value-class>flex.view.util.MenuItem</value-class>
    <value>#{menu_menuitem_FlexSystem_Root}</value>
    <value>#{menu_menuitem_FlexSystem_Root}</value>
    </list-entries>
    </managed-property>
    </managed-bean>
    <managed-bean>
    <managed-bean-name>menuModel</managed-bean-name>
    <managed-bean-class>flex.view.util.MenuModelAdapter</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    <managed-property>
    <property-name>viewIdProperty</property-name>
    <value>viewId</value>
    </managed-property>
    <managed-property>
    <property-name>instance</property-name>
    <value>#{menu_FlexSystem.model}</value>
    </managed-property>
    </managed-bean>
    </faces-config>

  • URL is not displayed in Work flow task of CRM UI and displayed in SOST/SWIA Tcode

    Hi All,
    I am trying to display the dynamic URL with short link in work flow task, the same got properly displayed in SOST/swia Tcode but not displayed in CRM UI under work list of user, may I know how to solve it?
    code in work flow task under description is below :
    /*   <A HREF= www.google.com>Portal UWL</A>
    Thanks,
    VijHyd

    Hi
    You need to check with your CRM UI Consultant if HTML Tags are read and rendered.
    Screens in SOST are rendered using HTML and hence you can see the links. You may face the same issue if you send to outlook and if outlook settings do not support HTML.... whereas it may work on Yahoo or Gmail as the web page will render using HTML.
    So, check with your UI colleagues as to how HTML tags can be displayed correctly.
    Regards
    Modak

  • URL is not displayed in Work flow task of CRM UI and displayed in SOST Tcode

    Hi All,
    I am trying to display the dynamic URL with short link in work flow task, the same got properly displayed in SOST Tcode and mail but not displayed in CRM UI, may I know the reason behind it?
    code in work flow task under description is below :
    /*   <A HREF= "&URL&">Portal UWL</A>
    Thanks,
    VijHyd

    Hi Vij,
    You can use the below sample code to make a hyperlink for text,
    lv_url type string.
    lv_url = 'you can give url here'
    <thtmlb:link
                      id        = "test"
                     reference = " <%= lv_url %> "
                     tooltip   = "Download template file"
                     text      = "Please click on this link to download the Excel XML template" />

  • BPM TASK IS not visible in UWL  Inbox

    Hi  BPM Expert,
      I am facing the big issues in BPM process Triggered problem. earlier i used  to BPM start using Web service with Two entity as ID and Username  but its was  working fine .but i have some requirement to  adding one element in Existing WSDL entity as casename  , i have added that element and execute the web service using WEBDYNPRO application ,but Task is not visible in UWL inbox but earlier it was working perfectly,  after adding that field ,BPm tax is not visible UWL inbox ..
    Please guide me ,Its urgent...Plz plz..
    Its showing error as
      Technical issues is triggered during the process creation..
    Thanks
    sudhir

    Hi ,
      I am executing the WEbservice using WSNAVIGATOR but its not execute , its getting HTML log error as  below..
    1-Web service returned error. Fault Code: "(http://schemas.xmlsoap.org/soap/envelope/)Server" Fault String: "Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE"
    2-
    HTTP/1.1 500 Internal Server Error
    server: SAP NetWeaver Application Server 7.20 / AS Java 7.20
    content-type: text/xml; charset=utf-8
    date: Sat, 26 Nov 2011 11:40:56 GMT
    transfer-encoding: chunked
    Set-Cookie: <value is hidden>
    2e4
    <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE</faultstring><detail><yq1:com.sap.engine.interfaces.webservices.runtime.RuntimeProcessException xmlns:yq1='http://sap-j2ee-engine/error'>Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE</yq1:com.sap.engine.interfaces.webservices.runtime.RuntimeProcessException></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
    0
    Thnaks
    Sudhir

  • Work flow mails are not coming to inbox but coming to out box in quality

    Hello,
    We are working on the implementation of Work flow for Purchase orders.
    Work flow customization is completed and even work flow is triggering when ever I create Purchase Order.
    Even Agent assignment also completed for work flow tasks via T code PTFC_CHG.
    This work flow is working fine in development.
    When I moved this workflow to quality I got a problem.
    Problem here is Work flow mails are not processing out of SAP Outbox to approvers  inbox even also after executing the program RSWUWFML2.
    When I triggered the PO in development the work item is moved to SAP out box as well as inbox. In quality It is not coming to SAP inbox.
    If I check in SOST,I will not see any of the entries related to work flow mails.
    Only above I can see in my SAP Outbox.
    So how can I Process these messages to approvers SAP Inbox.
    Any body please help me where the problem is
    With regards,
    Sudhakar

    Hi SP,
    I may be wrong, but on reading ur thread, I feel u r mis interpreting SAP Outbox with Outlook.
    Is it so, because u have mentioned about RSWUWFML2 and SOST, which comes into picture only if u r using an external mail like Outlook.
    If its Outlook, then there is no doubt that ur work item would get deleted from SAP Inbox and would be present only in Outlook.
    If its SAP Outbox, then u r not supposed to get ur work item in ur Outbox unless it is processed or executed thru ur SAP Inbox.
    Hope it helps.
    Aditya
    Edited by: Aditya Varrier on May 23, 2008 1:52 PM

  • Work  Flow Template and Work flow tasks

    Hi,
    Work  Flow Template and Work flow tasks are the two objects which are found surprisingly in our client system(when we go to PP01/ HRP1000 IN SE16 ).My employer wants to know what these are:
    Can any one please tell me about "Work  Flow Template and Work flow tasks".
    are the SAP Generated?
    Can we delete them if we don't need?
                                                                                    Thanks in Advance
                                                                                    Gopi Palleti

    Hi Gopi,
    Workflow Template and workflow tasks are part of SAP Business workflow.
    A business workflow is an executable process embedded in SAP applications that you use to automate business processes. 
    You can find more info here.
    http://help.sap.com/saphelp_nw70/helpdata/en/c5/e4b62c453d11d189430000e829fbbd/content.htm
    Regards,
    Sharadha

  • Data Flow Task is not executing in the package

    I have a package in which I have a Data Flow Task which will load the data from Excel file to SQL Table.
    The Data Flow Task is executing and loading the data if I execute that particular task only.
    But when I run the whole package, the data is not loading into the table. (Its not even showing in the Data Viewers also)
    FYI: On every run, the Source Excel file will be deleted and created by the previous tasks (before the Data Flow Task)
    Please give me the cause and solution for this.
    Thanks in advance.. 

    Hello Sai -
    Can you please post the structure of your package (screenshot) , unless there is a change in excel connection prior to data flow , there should be no reason for no data.
    As you mentioned the source files are deleted prior to data load , it could mean :
    1 - New files have no data
    2 - The connection of the data flow is dynamically changed to the new files.
    Happy to help! Thanks. Regards and good Wishes, Deepak. http://deepaksqlmsbusinessintelligence.blogspot.com/

  • [[ Page Flow Error - Action Not Found ]] - urgent help needed!

    Hi all,
    My portal application runs on Weblogic 8.1 and I am encountering a vague error which does not point back to any of the application-based files. The error message, as stated in the subject, is
    "Page Flow Error - Action Not Found"
    I did modify the url-template-config.xml under groWeb/WEB_INF to add a new template to enforce secure access to application resources. Could this have caused the above error?
    Any feedback would be greatly appreciated!!
    Thanks.

    Here is just a portion of Page Controller class
    package com.amd.portal.presentation.GeneralRegistration
    public class GeneralRegistrationController extends PageFlowController
    * @jpf:action
    * @jpf:forward name="success" path="RegistrationConfirmation.jsp"
    * @jpf:validation-error-forward name="failure" path="index.jsp"
    public Forward registerUser(RegisterUserForm register_form)
              usermanager_ctrl.registerUser(register_form, this.getRequest());
              return new Forward( "success", register_form);
    Here is a portion of the code from the JSP that uses this controller
    <netui:form action="registerUser">
    <tr valign="top">
    <td><font color="red"> * </font> User Name:</td>
    <td>
    <netui:textBox dataSource="{actionForm.userName}"/>
       
    <netui:error value="userName"/>
    </td>
    </tr>
    <tr valign="top">
    <td><font color="red"> * </font> Password:</td>
    <td>
    <netui:textBox dataSource="{actionForm.password}" password="true" />
       
    <netui:error value="password"/>
    </td>
    </tr>
    <netui:button value="Submit" type="submit"/>
    </netui:form>
    This apparently doesn't display well when posted but I can email to you if you provide me with your email address. Thanks.
    - CW
    Message was edited by:
    lcwalters

  • PXE T01 file not found PXE E3B TFTP Error file not found error

    Hi,
    I was trying to deploy OS through SCCM . i have made DHCP server and  SCCM PC one PCst when i am trying to boot from client to DHCP by f12 i am getting following error. so that i have been completed following steps
    TFTP
    PXE-T01: File not found
    PXE:E3B: TFTP Error- File not found
    1)Removed WDS service and reconfigured
    2)PXE role removed and re assigned
    3)renamed temp folder
    4)DP updated
    suppose if i am trying to access the port throgh telnet
    i am getting
    C:\Documents and Settings\Administrator>telnet 192.168.1.65 60
    Connecting To 192.168.1.65...Could not open connection to the host, on port 60:
    Connect failed
    C:\Documents and Settings\Administrator>telnet 192.168.1.65 67
    Connecting To 192.168.1.65...Could not open connection to the host, on port 67:
    Connect failed
    C:\Documents and Settings\Administrator>telnet 192.168.1.65 66
    Connecting To 192.168.1.65...Could not open connection to the host, on port 66:
    Connect failed
    C:\Documents and Settings\Administrator>telnet 192.168.1.65 65
    Connecting To 192.168.1.65...Could not open connection to the host, on port 65:
    Connect failed
    SCCM PXEsetup.log
    ====================================================================
    <05-17-2011 22:02:14> SMSPXE Setup Started....
    <05-17-2011 22:02:14> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-17-2011 22:02:14> Installing Pre Reqs for SMSPXE
    <05-17-2011 22:02:14>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-17-2011 22:02:14> Found 2 Pre Reqs for Role SMSPXE
    <05-17-2011 22:02:14> Pre Req MSXML60 found.
    <05-17-2011 22:02:14> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-17-2011 22:02:14> Pre Req MSXML60 is already installed. Skipping it.
    <05-17-2011 22:02:14> Pre Req Wimgapi found.
    <05-17-2011 22:02:14> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-17-2011 22:02:14> Pre Req Wimgapi is already installed. Skipping it.
    <05-17-2011 22:02:14>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-17-2011 22:02:14> Installing the SMSPXE
    <05-17-2011 22:02:14> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-17-2011 22:02:14> Error - WDS is not installed. Installation cannot continue
    <05-17-2011 23:02:35> ====================================================================
    <05-17-2011 23:02:35> SMSPXE Setup Started....
    <05-17-2011 23:02:35> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-17-2011 23:02:35> Installing Pre Reqs for SMSPXE
    <05-17-2011 23:02:35>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-17-2011 23:02:35> Found 2 Pre Reqs for Role SMSPXE
    <05-17-2011 23:02:35> Pre Req MSXML60 found.
    <05-17-2011 23:02:35> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-17-2011 23:02:35> Pre Req MSXML60 is already installed. Skipping it.
    <05-17-2011 23:02:35> Pre Req Wimgapi found.
    <05-17-2011 23:02:35> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-17-2011 23:02:35> Pre Req Wimgapi is already installed. Skipping it.
    <05-17-2011 23:02:35>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-17-2011 23:02:35> Installing the SMSPXE
    <05-17-2011 23:02:35> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-17-2011 23:02:35> Error - WDS is not installed. Installation cannot continue
    <05-17-2011 23:38:26> ====================================================================
    <05-17-2011 23:38:26> SMSPXE Setup Started....
    <05-17-2011 23:38:26> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-17-2011 23:38:26> Installing Pre Reqs for SMSPXE
    <05-17-2011 23:38:26>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-17-2011 23:38:26> Found 2 Pre Reqs for Role SMSPXE
    <05-17-2011 23:38:26> Pre Req MSXML60 found.
    <05-17-2011 23:38:26> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-17-2011 23:38:26> Pre Req MSXML60 is already installed. Skipping it.
    <05-17-2011 23:38:26> Pre Req Wimgapi found.
    <05-17-2011 23:38:26> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-17-2011 23:38:26> Pre Req Wimgapi is already installed. Skipping it.
    <05-17-2011 23:38:26>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-17-2011 23:38:26> Installing the SMSPXE
    <05-17-2011 23:38:26> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-17-2011 23:38:26> WDS Service is installed.
    <05-17-2011 23:38:26> No versions of SMSPXE are installed.  Installing new SMSPXE.
    <05-17-2011 23:38:26> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-17-2011 23:38:26> Installing C:\Program Files\Microsoft Configuration Manager\bin\i386\pxe.msi CCMINSTALLDIR="C:\Program Files\SMS_CCM" PXEENABLELOGGING=TRUE PXELOGLEVEL=1 PXELOGMAXSIZE=1000000 PXELOGMAXHISTORY=1
    <05-17-2011 23:39:47> pxe.msi exited with return code: 0
    <05-17-2011 23:39:47> Installation was successful.
    <05-18-2011 22:20:04> ====================================================================
    <05-18-2011 22:20:04> SMSPXE Setup Started....
    <05-18-2011 22:20:04> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /deinstall /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-18-2011 22:20:04> Deinstalling the SMSPXE
    <05-18-2011 22:20:04> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-18-2011 22:20:04> Deinstalling SMSPXE, with product code {C63C1FBD-C9C8-469D-8ADE-12387FB5EA75}
    <05-18-2011 22:20:15> SMSPXE deinstall exited with return code: 0
    <05-18-2011 22:20:15> Deinstallation was successful.
    <05-18-2011 22:20:15> Removing PXE Registry.
    <05-18-2011 22:23:18> ====================================================================
    <05-18-2011 22:23:18> SMSPXE Setup Started....
    <05-18-2011 22:23:18> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-18-2011 22:23:18> Installing Pre Reqs for SMSPXE
    <05-18-2011 22:23:18>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-18-2011 22:23:18> Found 2 Pre Reqs for Role SMSPXE
    <05-18-2011 22:23:18> Pre Req MSXML60 found.
    <05-18-2011 22:23:18> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-18-2011 22:23:18> Pre Req MSXML60 is already installed. Skipping it.
    <05-18-2011 22:23:18> Pre Req Wimgapi found.
    <05-18-2011 22:23:18> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-18-2011 22:23:18> Pre Req Wimgapi is already installed. Skipping it.
    <05-18-2011 22:23:18>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-18-2011 22:23:18> Installing the SMSPXE
    <05-18-2011 22:23:18> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-18-2011 22:23:18> WDS Service is installed.
    <05-18-2011 22:23:18> No versions of SMSPXE are installed.  Installing new SMSPXE.
    <05-18-2011 22:23:18> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-18-2011 22:23:18> Installing C:\Program Files\Microsoft Configuration Manager\bin\i386\pxe.msi CCMINSTALLDIR="C:\Program Files\SMS_CCM" PXEENABLELOGGING=TRUE PXELOGLEVEL=1 PXELOGMAXSIZE=1000000 PXELOGMAXHISTORY=1
    <05-18-2011 22:24:11> pxe.msi exited with return code: 0
    <05-18-2011 22:24:11> Installation was successful.
    <05-18-2011 22:31:06> ====================================================================
    <05-18-2011 22:31:06> SMSPXE Setup Started....
    <05-18-2011 22:31:06> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-18-2011 22:31:06> Installing Pre Reqs for SMSPXE
    <05-18-2011 22:31:06>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-18-2011 22:31:06> Found 2 Pre Reqs for Role SMSPXE
    <05-18-2011 22:31:06> Pre Req MSXML60 found.
    <05-18-2011 22:31:06> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-18-2011 22:31:06> Pre Req MSXML60 is already installed. Skipping it.
    <05-18-2011 22:31:06> Pre Req Wimgapi found.
    <05-18-2011 22:31:06> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-18-2011 22:31:06> Pre Req Wimgapi is already installed. Skipping it.
    <05-18-2011 22:31:06>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-18-2011 22:31:06> Installing the SMSPXE
    <05-18-2011 22:31:06> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-18-2011 22:31:06> WDS Service is installed.
    <05-18-2011 22:31:06> SMSPXE already installed (Product Code: {C63C1FBD-C9C8-469D-8ADE-12387FB5EA75}).  Upgrading/Reinstalling SMSPXE
    <05-18-2011 22:31:06> New SMSPXE is the same product code.  This is a minor upgrade.
    <05-18-2011 22:31:06> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-18-2011 22:31:06> Installing C:\Program Files\Microsoft Configuration Manager\bin\i386\pxe.msi REINSTALL=ALL REINSTALLMODE=vmaus CCMINSTALLDIR="C:\Program Files\SMS_CCM" PXEENABLELOGGING=TRUE PXELOGLEVEL=1 PXELOGMAXSIZE=1000000 PXELOGMAXHISTORY=1
    <05-18-2011 22:35:43> pxe.msi exited with return code: 0
    <05-18-2011 22:35:43> Installation was successful.
    <05-18-2011 23:41:19> ====================================================================
    <05-18-2011 23:41:19> SMSPXE Setup Started....
    <05-18-2011 23:41:19> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /deinstall /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-18-2011 23:41:19> Deinstalling the SMSPXE
    <05-18-2011 23:41:19> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-18-2011 23:41:19> Deinstalling SMSPXE, with product code {C63C1FBD-C9C8-469D-8ADE-12387FB5EA75}
    <05-18-2011 23:41:33> SMSPXE deinstall exited with return code: 0
    <05-18-2011 23:41:33> Deinstallation was successful.
    <05-18-2011 23:41:33> Removing PXE Registry.
    <05-19-2011 00:38:50> ====================================================================
    <05-19-2011 00:38:50> SMSPXE Setup Started....
    <05-19-2011 00:38:50> Parameters: C:\PROGRA~1\MICROS~4\bin\i386\ROLESE~1.EXE /install /siteserver:DRDO-QQLUVGDI0P SMSPXE
    <05-19-2011 00:38:50> Installing Pre Reqs for SMSPXE
    <05-19-2011 00:38:50>         ======== Installing Pre Reqs for Role SMSPXE ========
    <05-19-2011 00:38:50> Found 2 Pre Reqs for Role SMSPXE
    <05-19-2011 00:38:50> Pre Req MSXML60 found.
    <05-19-2011 00:38:50> MSXML60 already installed (Product Code: {A43BF6A5-D5F0-4AAA-BF41-65995063EC44}). Would not install again.
    <05-19-2011 00:38:50> Pre Req MSXML60 is already installed. Skipping it.
    <05-19-2011 00:38:50> Pre Req Wimgapi found.
    <05-19-2011 00:38:50> Wimgapi already installed (Product Code: {721ABC3B-5F12-4332-9C0C-C11424EF666C}). Would not install again.
    <05-19-2011 00:38:50> Pre Req Wimgapi is already installed. Skipping it.
    <05-19-2011 00:38:50>         ======== Completed Installion of Pre Reqs for Role SMSPXE ========
    <05-19-2011 00:38:50> Installing the SMSPXE
    <05-19-2011 00:38:50> Machine is running Windows 2003 SP1 or later. (NTVersion=0X502, ServicePack=2)
    <05-19-2011 00:38:50> WDS Service is installed.
    <05-19-2011 00:38:50> No versions of SMSPXE are installed.  Installing new SMSPXE.
    <05-19-2011 00:38:50> Enabling MSI logging.  pxe.msi will log to C:\Program Files\Microsoft Configuration Manager\logs\pxeMSI.log
    <05-19-2011 00:38:50> Installing C:\Program Files\Microsoft Configuration Manager\bin\i386\pxe.msi CCMINSTALLDIR="C:\Program Files\SMS_CCM" PXEENABLELOGGING=TRUE PXELOGLEVEL=1 PXELOGMAXSIZE=1000000 PXELOGMAXHISTORY=1
    <05-19-2011 00:39:15> pxe.msi exited with return code: 0
    <05-19-2011 00:39:15> Installation was successful.

    I have similar issue same above error but this error i am getting intermittent  keeping trying 2 or 3 times i get F12 option to boot the network services 
    TFTP
    PXE-T01  The specified file not found 
    PXE-E3B TFTP Error : File not found 
    Our environment have DHCP configured In Inflobox and the Primary site server and PXE DP server located in Same Subnet and configured 2008 R2 sp1 and configured  SCCM2012 in VM environment 
    I tried all the Options uninstall and re-install no luck and i have tried to increase Tramsmiit and recive Buffer size in lan card but the issue is not resolved.
    Capture smspxe log when it found boot image the pxe working ,when it not found getting TFTP error.
    SMSPxe log says no errors but getting client Pxe TFTP error file not found  (Since its not looking Image throw out TFTP error)
    Client boot action reply: <ClientIDReply><Identification Unknown="0" ItemKey="16777230" ServerName="" ServerRemoteName=""><Machine><ClientID>GUID:49D9F374-7606-4277-8AE9-FEE608FFB01E</ClientID><NetbiosName/></Machine></Identification><PXEBootAction
    LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="SGP20001" OfferIDTime="6/25/2012 11:09:00 AM" PkgID="SGP00009" PackageVersion="" PackagePath="http://XXX.company.com/SMS_DP_SMSPKG$/SGP00004" BootImageID="SGP00004" Mandatory="0"/></ClientIDReply>
    Client Identity: 9c7f0d6a-58dd-4cda-a4f0-3f66316067fb
    PXE::CBootImageManager::FindMatchingArchitectureBootImage
    Set media certificate in transport
    Set authenticator in transport
    SMSPxe log says no errors t i can able to do pxe Log found Boot image 
    Client boot action reply: <ClientIDReply><Identification Unknown="0" ItemKey="16777230" ServerName="" ServerRemoteName=""><Machine><ClientID>GUID:49D9F374-7606-4277-8AE9-FEE608FFB01E</ClientID><NetbiosName/></Machine></Identification><PXEBootAction
    LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="SGP20001" OfferIDTime="6/25/2012 11:09:00 AM" PkgID="SGP00009" PackageVersion="" PackagePath="http://xxx.company.com/SMS_DP_SMSPKG$/SGP00004" BootImageID="SGP00004" Mandatory="0"/></ClientIDReply>
    Client Identity: 9c7f0d6a-58dd-4cda-a4f0-3f66316067fb
    PXE::CBootImageManager::FindMatchingArchitectureBootImage
    PXE::CBootImageManager::FindBootImage: SGP00004
    Looking for bootImage SGP00004
    PXE::CBootImageCache::FindImage
    PXE::CBootImageInfo::UpdateAccessTime
    Appreciate if you could provide some solution 
    Ksrini

  • Shared library: function is not found and recognized in header file

    Hello,
    I am trying to use Java methods into LV. I am doing so by creating Java Invocation Interface, usind which I can call Java methods into C++ and then create a shared library that can be called into LV.
    When I am importing my shared library into Labview, I am getting the following error messages:
    The shared library contains 3 function(s). But no function is found and recognized in the header file. The following function(s) cannot be wrapped. If you want to import these functions, please review the warning messages next to the functions below. You will need to fix the problems before you can continue with the wizard.
    jclass invokeJavaClass(JNIEnv* jenv, string className);
    The following symbols are not defined:
    jclass;
    Undefined symbols can prevent the wizard from recognizing functions and parameters. To correct this problem, check the header file to determine if you must add preprocessor definitions. Click the Back button to return to the previous page of the wizard to add a preprocessor definitionsl (for example, "NIAPI_stdcall = __stdcall" or "NIAPIDefined = 1").
    The following header file was not found in the specified header file or one of the referenced header files:
    -  string
    -  iostream
    -  cstring
    -  jni.h
    To fix, click the Back button to go to the previous page and add the header file path to the Include Paths list.
     Please advise.
    Regards,
    H
    Attachments:
    SharedLibError.png ‏51 KB

    Hello Vivek,
    The LabVIEW dll that I am trying to import does not include any third-party device..all my code is fully based on LabVIEW. Maybe this helps you to guess what is happening: once I've parsed the dll' header appears an error
    like this one:
    void
    __cdecl Zdmt(LVBoolean *stop, double P, char channelName[],
        TD1
    *errorIn, TD14 *FFTOptions, TD12 *Calibration, char FileName[],
    int32_t minRecordLength, TD26 *InstrumentHandler, LVRefNum
    sessionRefArray[],
        LVRefNum *queueIN, TD1 *errorOut, LVBoolean
    *averagingDone,
        HWAVES LastRecordFetched, TD24 *Impedance, TD17
    *ColeColeCluster,
        TD18 *FFTcluster, TD5
    *InstrumentHandleOutputCluster, LVRefNum *queueOut,
        int32_t
    *Acquired, TD6 *FreqTimeInfoCluster, double *averagesCompleted,
    int32_t len);
    The following symbols are not defined:
    LVBoolean;
    int32_t; LVRefNum;
    Undefined symbols can prevent the wizard
    from recognizing functions and parameters. To correct this problem,
    check the header file to determine if you must add predefined symbols.
    Click the Back button to return to the previous page of the wizard to
    add a preprocessor definitionsl (for example, "NIAPI_stdcall =
    __stdcall" or "NIAPIDefined = 1").
    The following header file was
    not found in the specified header file or one of the referenced header
    files:
    -  extcode.h
    To fix, click the Back button to go to the
    previous page and add the header file path to the Include Paths list.
    I have replaced the first line #include "extcode.h" of
    the dll header file for #include "C:\Program Files\National
    Instruments\LabVIEW 8.6\cintools\extcode.h" that is the full path where
    the header file is located. However, new libraries seems to be missed:
    -  stdint.h
    -  MacTypes.h
    As far as I know,  Mactypes.h contains basic mac os data types and it doesn't have any relation with stdint.h...
    I have created both of them and stored into the same folder as extcode.h, but then other libraries are missed!!!
    Do you know if it would be possible to create the .dll generating all the header files associated for its data structures???
    And if this is not factible, then what do you suggest me? because I hope to not having to create all the header files until it stops giving me an error!
    thanks for four time,
    ben

  • ASC 2.0 ant - does not load compiler constants from config.xml files

    Constants added to the mxmlc task with a config xml file do not work.
    Below, the CONFIG::debug and CONFIG::release constants will compile, but the one defined in the config-common.xml file (CONFIG::pi) does not.
    Portion of an ant macro:
    <mxmlc
    file="@{source.dir}/@{source.file}"
    output="@{output.dir}/@{project.name}.@{output.extension}"
    debug="@{debug}"
    target-player="@{target-player}"
    accessible="@{accessible}"
    use-network="@{use-network}"
    swf-version="@{swf.version}"
    inline="@{inline}"
    default-frame-rate="@{frameRate}"
    >
    <default-size width="@{width}" height="@{height}" />
    <source-path path-element="@{source.dir}" />
    <define name="CONFIG::debug" value="@{debug}"/>
    <define name="CONFIG::release" value="!CONFIG::debug"/>
    <load-config filename="config-common.xml" />
    <load-config filename="config-as-beta.xml" />
    <load-config filename="@{load-config}" />
    <arguments />
    </mxmlc>
    contents of config-common.xml:
    <flex-config>
    <compiler>
    <define append="true">
    <name>CONFIG::pi</name>
    <value>3.1415926535897932384626433832795</value>
    </define>
    </compiler>
    </flex-config>
    Compiling a ".as" file with something something like "trace(CONFIG::pi);" will result in "Error: Can not resolve config constant: 'pi'" with the ant macro.
    Using the Flash Builder 4.7 compiler with "Addition compiler arguments" set to "-define+=CONFIG::debug,true -define+=CONFIG::release,false -load-config+=config-common.xml -inline" does not produce the error. 

    I'm not sure I added the bug to the right place anymore.  It's been added to bugbase.adobe.com under AIR 3.4, but  I'm not sure if that covers the actionscript compiler 2 or not because I found another bug tracker at bugs.adobe.com.  The actual bug is here: https://bugbase.adobe.com/index.cfm?event=bug&id=3339017
    Does anyone know where to post bugs for the actionscript compiler 2.0?

  • Jabber-config.xml file, settings do not apply

    hi
    as i have a very simple setup i never used a jabber-config.xml file but as i have some display name issues and i thought it would be good to set some other settings as well i created a file but for some reason the settings do not seem to stick (do not show picture, docked window top right, presence server type
    in internet explorer and notepad the file looks fine but when i paste it in here there seem to be line breaks.
    below is my file
    <?xml version="1.0" encoding="utf-8"?>
    <config version="1.0">
    <Presence>
       <PresenceServerType>CUP</PresenceServerType>
    </Presence>
    <Directory>
       <DirectoryServerType>EDI</DirectoryServerType>
       <ConnectionType>0</ConnectionType>
       <PrimaryServerName>uk-dc2.domain.com</PrimaryServerName>
       <ServerPort1>3268</ServerPort1>
       <SecondaryServerName>uk-dc1.domain.com</SecondaryServerName>
       <ServerPort2>3268</ServerPort2>
       <UseWindowsCredentials>1</UseWindowsCredentials>
       <UseSSL>0</UseSSL>
       <UseSecureConnection>0</UseSecureConnection>
       <CommonName>cn</CommonName>
       <DisplayName>displayName</DisplayName>
       <FirstName>givenName</FirstName>
       <LastName>sn</LastName>
       <EmailAddress>mail</EmailAddress>
       <SipUri>msRTCSIP-PrimaryUserAddress</SipUri>
       <PhotoSource>thumbnailPhoto</PhotoSource>
       <BusinessPhone>telephoneNumber</BusinessPhone>
       <MobilePhone>mobile</MobilePhone>
       <HomePhone>homePhone</HomePhone>
       <OtherPhone>otherTelephone</OtherPhone>
       <Title>title</Title>
       <CompanyName>company</CompanyName>
       <UserAccountName>sAMAccountName</UserAccountName>
       <DomainName>userPrincipalName</DomainName>
       <Location>co</Location>
       <Nickname>Nickname</Nickname>
       <PostalCode>postalCode</PostalCode>
       <City>l</City>
       <State>st</State>
       <StreetAddress>streetAddress</StreetAddress>
       <BaseFilter>(&amp;(objectCategory=person))</BaseFilter>
       <PredictiveSearchFilter>anr=</PredictiveSearchFilter>
       <DisableSecondaryNumberLookups>0</DisableSecondaryNumberLookups>
       <SearchTimeout>5</SearchTimeout>
       <UseWildcards>1</UseWildcards>
       <MinimumCharacterQuery>3</MinimumCharacterQuery>
       <SearchBase1>ou=domain Users,dc=domain,dc=com</SearchBase1>
       <PhotoUriSubstitutionEnabled>false</PhotoUriSubstitutionEnabled>
       <UseSIPURIToResolveContacts>false</UseSIPURIToResolveContacts>
    </Directory>
    <Policies>
       <Screen_Capture_Enabled>true</Screen_Capture_Enabled>
       <File_Transfer_Enabled>true</File_Transfer_Enabled>
       <EnableVideo>false</EnableVideo>
       <InitialPhoneSelection>deskphone</InitialPhoneSelection>
       <UserDefinedRemoteDestinations>false</UserDefinedRemoteDestinations>
       <enableLocalAddressBookSearch>true</enableLocalAddressBookSearch>
       <EnableAccessoriesManager>false</EnableAccessoriesManager>
       <ForceFontSmoothing>true</ForceFontSmoothing>
    </Policies>
    <Options>
       <Set_Status_Away_On_Inactive>true</Set_Status_Away_On_Inactive>
       <Set_Status_Inactive_Timeout>15</Set_Status_Inactive_Timeout>
       <Set_Status_Away_On_Lock_OS>true</Set_Status_Away_On_Lock_OS>
       <StartCallWithVideo>false</StartCallWithVideo>
       <Start_Client_On_Start_OS>true</Start_Client_On_Start_OS>
       <AllowUserCustomTabs>false</AllowUserCustomTabs>
       <ShowContactPictures>false</ShowContactPictures>
       <ShowOfflineContacts>true</ShowOfflineContacts>
       <DockedWindowVisible>true</DockedWindowVisible>
       <DockedWindowPosition>TopRight</DockedWindowPosition>
    </Options>
    </config>

    when a user logs in for the first time and then exits jabber and logsin again the contact pictures are now no longer showing so those setttings seems to stick on the 2nd login
    but not the docked window setting for instance

  • Locker failed to offer due to timeout.Please increase worker thread count by increasing DeferredWorkerThreadCount in mediator-config.xml

    Can some one please assist me to get rid of the below error when trying to bring up the SOA services in Weblogic?
    "Locker failed to offer due to timeout.Please increase worker thread count by increasing DeferredWorkerThreadCount in mediator-config.xml"
    We tested the agent, node manager and everything seems to be working fine. Its persistent in UAT environment which is a clustered environment. 1st managed server for SOA is having the issue while the second one is working fine. Below are the list of manages servers in the env:
    2 managed servers for ADF,
    2 managed servers for BAM,
    2 managed servers for SOA,
    2 managed servers for WSM.
    The affected SOA1 managed server was working fine till last week and there were no changes made to the environment. Please let me know if I can furnish any further info.
    Thanks!
    Nidhi Gangadhar.
    WebLogic PortalSOA Suite

    Can some one please assist me to get rid of the below error when trying to bring up the SOA services in Weblogic?
    "Locker failed to offer due to timeout.Please increase worker thread count by increasing DeferredWorkerThreadCount in mediator-config.xml"
    We tested the agent, node manager and everything seems to be working fine. Its persistent in UAT environment which is a clustered environment. 1st managed server for SOA is having the issue while the second one is working fine. Below are the list of manages servers in the env:
    2 managed servers for ADF,
    2 managed servers for BAM,
    2 managed servers for SOA,
    2 managed servers for WSM.
    The affected SOA1 managed server was working fine till last week and there were no changes made to the environment. Please let me know if I can furnish any further info.
    Thanks!
    Nidhi Gangadhar.
    WebLogic PortalSOA Suite

Maybe you are looking for

  • Updated to Firefox 4.0, now I can't open the browser.

    I'm running a Mac OS X Version 10.4.11 Just updated to Firefox 4.0 after Yahoo advised that things would run better. Upgraded from Firefox 3.1.16 (I think).......now I cannot open the Firefox browser at all....it won't let me launch the browser. It s

  • Ipod shuffle with permanently attached cable?

    I got this shuffle from a friend (im not sure what gen) and it has a cable attached to it that cannot be pulled out. the end of the cable has the connector to plug it into the bottom of an ipod or iphone... I don't see the point in this cable because

  • Memory leak? Firefox won't load pages/open.

    Ok, I believe there is a memory leak. I am surfing ok then a page wont load. I go to taskmgr and I show that one firefox has 104,990 K of memory. The rest have at most 3,000K. After the page won't load I close Firefox. It won't open. I have to turn o

  • Pdf files from printer via Airort Exterme

    Hi, I have a hp > all-in-one > 3300 series.(LASERJET 3330MFP) I would like to run all my home work through the scanner and have them as a pdf format on my computer via > the Airport Extreme. I would like to add, I get my print out and dawn and up loa

  • Unable to transfer outside calls twice with CCME 4.0

    Hello, I have a 3825 with a CCME 4.0 and one E1. There is an IVR (from stonevoice) implemented. When the operator receives the call, she is able to transfer the call to a internal extension (for example 230), but when the user (ext. 230) tries to tra