UWL, MDM - Accepting requests

Hello All,
Our MDM system is now configured in a such a way that all Workflows are role based. In the scenario, when a workflow is triggered the workflow step goes to all the users who are in a role. ONE user has to accept the workflow step (and he will complete that step), so that it goes off from the list of others.
We have got a Universal Worklist (UWL) configured on for the MDM repository. The UWL should display all the pending tasks for the user, so that he can complete the step.
Now comes the issue. The UWL would only display the "Accepted" worklists for the logged in user. The only way (as I know) to get it displayed is to login to MDM using data manager and accept the workflow. In that case the worklist would get displayed on UWL. But this is exactly what we were trying to avoid (i.e using Data Manager).
Am I missing out on some configuration on UWL?
Thanks in advance,
PKS.

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE UWLConfiguration PUBLIC '-//SAP//UWL1.0//EN' 'uwl_configuration.dtd' [
]>
<UWLConfiguration version="1.0">
   <ItemTypes>
      <ItemType name="uwl.completedtask.mdm.all.MDM_CUSTOMER_GLOBAL" connector="MdmUwlConnector" defaultView="MdmViewTasks" defaultAction="launchApplication" executionMode="default">
         <Actions>
            <Action name="launchApplication" groupAction="no" handler="SAPWebDynproLauncher" launchInNewWindow="no">
               <Properties>
                  <Property name="WebDynproApplication" value="MyOwnApp" />
                  <Property name="WebDynproDeployableObject" value="local/MyOwnApp" />
                  <Property name="System" value="SAP_LocalSystem" />
                  <Property name="taskId" value="${item.jobId}" />
                  <Property name="userID" value="${item.userId}" />
               </Properties>
               <Descriptions default="Show Record Details" />
            </Action>
            <Action name="sendToNextStep" groupAction="no" handler="IViewLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="no">
               <Properties>
                  <Property name="itemId" value="${item.jobId}" />
                  <Property name="externalRequestEvent" value="com.sap.pct.mdm.appl.masteriviews.events.externals.ViewTaskRecordsHandler" />
                  <Property name="iview" value="pcd:portal_content/com.myown.iviews.IVIEW" />
               </Properties>
               <Descriptions default="Send To Next Step" />
            </Action>
         </Actions>
      </ItemType>
      <ItemType name="uwl.task.mdm.jobs.MDM_CUSTOMER_GLOBAL" connector="MdmUwlConnector" defaultView="MdmViewTasks" defaultAction="launchApplication" executionMode="default">
         <Actions>
            <Action name="launchApplication" groupAction="no" handler="SAPWebDynproLauncher" launchInNewWindow="no">
               <Properties>
                  <Property name="WebDynproApplication" value="MyOwnApp" />
                  <Property name="WebDynproDeployableObject" value="local/MyOwnApp" />
                  <Property name="System" value="SAP_LocalSystem" />
                  <Property name="taskId" value="${item.jobId}" />
                  <Property name="userID" value="${item.userId}" />
               </Properties>
               <Descriptions default="Show Record Details" />
            </Action>
            <Action name="sendToNextStep" groupAction="no" handler="IViewLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="no">
               <Properties>
                  <Property name="itemId" value="${item.jobId}" />
                  <Property name="externalRequestEvent" value="com.sap.pct.mdm.appl.masteriviews.events.externals.ViewTaskRecordsHandler" />
                  <Property name="iview" value="pcd:portal_content/com.myown.iviews.IVIEW" />
               </Properties>
               <Descriptions default="Send To Next Step" />
            </Action>
         </Actions>
      </ItemType>
      <ItemType name="uwl.task.mdm.tasks.MDM_CUSTOMER_GLOBAL" connector="MdmUwlConnector" defaultView="MdmWorkItemsCompletedView" defaultAction="launchApplication" executionMode="default">
         <Actions>
            <Action name="launchApplication" groupAction="no" handler="SAPWebDynproLauncher" launchInNewWindow="no">
               <Properties>
                  <Property name="WebDynproApplication" value="MyOwnApp" />
                  <Property name="WebDynproDeployableObject" value="local/MyOwnApp" />
                  <Property name="System" value="SAP_LocalSystem" />
                  <Property name="taskId" value="${item.jobId}" />
                  <Property name="userID" value="${item.userId}" />
               </Properties>
               <Descriptions default="Show Record Details" />
            </Action>
            <Action name="sendToNextStep" groupAction="no" handler="IViewLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="no">
               <Properties>
                  <Property name="itemId" value="${item.jobId}" />
                  <Property name="externalRequestEvent" value="com.sap.pct.mdm.appl.masteriviews.events.externals.ViewTaskRecordsHandler" />
                  <Property name="iview" value="pcd:portal_content/com.myown.iviews.IVIEW" />
               </Properties>
               <Descriptions default="Send To Next Step" />
            </Action>
         </Actions>
      </ItemType>
   </ItemTypes>
   <Views>
      <View name="MdmViewJobs" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.mdm.jobs" columnOrder="mdmStatus, priority, subject, jobId, userNames, dueDate, creatorId, createdDate" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="86400000" dueDateWarning="259200000" emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="top">
         <Descriptions default="My Open MDM Jobs" />
         <DisplayAttributes>
            <DisplayAttribute name="workflowTable" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="Workflow Table">
                  <ShortDescriptions>
                     <Description Language="en" Description="Workflow Table" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="userNames" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="User Names">
                  <ShortDescriptions>
                     <Description Language="en" Description="User Names" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="mdmStatus" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="MDM Status">
                  <ShortDescriptions>
                     <Description Language="en" Description="MDM Status" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="stepId" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="Step ID">
                  <ShortDescriptions>
                     <Description Language="en" Description="Step ID" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="jobId" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="Job ID">
                  <ShortDescriptions>
                     <Description Language="en" Description="Job ID" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="stepName" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="Step Name">
                  <ShortDescriptions>
                     <Description Language="en" Description="Step Name" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
         </DisplayAttributes>
         <Actions>
            <Action reference="refresh" />
            <Action reference="defaultGlobalWizard" />
            <Action reference="addToNavigation" />
            <Action reference="removeFromNavigation" />
         </Actions>
      </View>
      <View name="MdmViewTasks" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.mdm.tasks" columnOrder="mdmStatus, priority, subject, jobId, userNames, dueDate, creatorId, createdDate" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="300" dueDateSevere="86400000" dueDateWarning="259200000" emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="top">
         <Descriptions default="My Open MDM Tasks" />
         <DisplayAttributes>
            <DisplayAttribute name="workflowTable" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="Workflow Table">
                  <ShortDescriptions>
                     <Description Language="en" Description="Workflow Table" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="userNames" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="User Names">
                  <ShortDescriptions>
                     <Description Language="en" Description="User Names" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="mdmStatus" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="MDM Status">
                  <ShortDescriptions>
                     <Description Language="en" Description="MDM Status" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="stepId" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="Step ID">
                  <ShortDescriptions>
                     <Description Language="en" Description="Step ID" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="jobId" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="Job ID">
                  <ShortDescriptions>
                     <Description Language="en" Description="Job ID" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="stepName" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="Step Name">
                  <ShortDescriptions>
                     <Description Language="en" Description="Step Name" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
         </DisplayAttributes>
         <Actions>
            <Action reference="refresh" />
            <Action reference="defaultGlobalWizard" />
            <Action reference="addToNavigation" />
            <Action reference="removeFromNavigation" />
         </Actions>
      </View>
      <View name="MdmWorkItemsCompletedView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.completedtask.mdm.all" columnOrder="subject, jobId, userNames, creatorId, createdDate, status" sortby="creatorId:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="-1" dueDateSevere="0" dueDateWarning="0" emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="top">
         <Descriptions default="Completed MDM Tasks" />
         <DisplayAttributes>
            <DisplayAttribute name="workflowTable" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="Workflow Table">
                  <ShortDescriptions>
                     <Description Language="en" Description="Workflow Table" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="userNames" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="User Names">
                  <ShortDescriptions>
                     <Description Language="en" Description="User Names" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
            <DisplayAttribute name="jobId" type="string" width="10" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
               <Descriptions default="Step Name">
                  <ShortDescriptions>
                     <Description Language="en" Description="Job ID" />
                  </ShortDescriptions>
               </Descriptions>
            </DisplayAttribute>
         </DisplayAttributes>
         <Actions>
            <Action reference="refresh" />
            <Action reference="defaultGlobalWizard" />
            <Action reference="addToNavigation" />
            <Action reference="removeFromNavigation" />
         </Actions>
      </View>
   </Views>
</UWLConfiguration>

Similar Messages

  • No Radius-accept-request received on Radius server

    Hi,
    I'm trying to access my network through 802.1X Radius authentication. My PC is connected to a 2950 switch with following configuration:
    aaa new-model
    aaa authentication dot1x default group radius
    dot1x system-auth-control
    radius-server host 11.0.0.2 key Ralf
    on interface level(connection to PC):
    switchport mode access
    switchport access vlan 8
    dot1x port-control auto
    on interface level(connection to Radius server):
    switchport mode access
    switchport access vlan 8
    I enabled 802.1X authentication on my PC via the service 'Wired Autoconfig' and in the tab authentication (one of the tabs of the interface configuration)
    I choose PEAP.
    Result:
    When I trace my PC-interface with Wireshark, I see an EAPOL- EAP-Request and a EAP-Response message. The next message in the flow should be a Radius-Accept-request message but it seems that this message is never sent. Although, when i open a 'debug radius' session on the switch, the logs are indicating that the accept-request message is sent. Strange because I see no message coming in on the Radius-server interface.
    The Radius-server has IP-address 11.0.0.2 and my PC 11.0.0.3.
    Does anybody see a reason why the Radius-Accept-Request message is not received on my Radius-server interface?
    Kind regards,Ralf.

    Hi,
    When using PEAP, the authnetication is not as simple as that.
    This is the PEAP authentication process:
    Here you can see the switch as the AP.
    So, after the first  EAP-Response message, the ACS must reply with an Access-Challenge containing the EAP-TLS start, so the encryption tunnel can be started.
    One possible reason for this not to happen is simply because the ACS does not support PEAP and/or does not conatin the server certificate needed to build the TLS tunnel.
    HTH,
    Tiago
    If  this helps you and/or answers your question please mark the question as  "answered" and/or rate it, so other users can easily find it.

  • How to create a proxy that accept requestes get/post in the same time?

    Hi everybody,
    I have two questions with Service Bus 11gR1.
    I have to create a proxy in https that accept request get/post in the same time, also this proxy should be able to recognize the common name of the certificate.
    Is it possibile?
    Thanks a lot.
    Ettore

    The approach I mentioned is part of correctly configuring client cert authentication. For client cert authentication to succeed weblogic expects the user derived from the certificate by the user name mapper class to exist ( just exist , it wont check the password) in its security realm. The problem you have mentioned is common for any type of 'authentication' and not just specific to this approach.
    The user name mapper class can be configured to accept any attribute in the certificate DN as the mapped user. Since the thread starter is interested in CN, then he has to set CN as the mapping attribute.
    Edited by: atheek1 on Nov 10, 2010 1:33 AM

  • SOA serve not accepting requests and running

    I have a manged server.
    I am starting up admin first, then SOA and then BAM.
    however when I get to SOA im supposed to get FabricProviderServlet.stateChanged SOA Platform is running and accepting requests however I just get is is started in running mode any ideas why??
    I believe this is the reason I cannot acces
    the BPM composer and BPM workspace
    Any ideas
    Thanks in advance!!

    Hi Ashwin,
    Is there any warnning or error information when you try to restart the PRODUCTION environment?
    Best Regards.
    Steven Lee Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Personalization in UWL MDM Views

    Hi All,
    Is there any ways to make "My Open MDM Jobs" as the default view?
    This is to make JobId visible as a separate column in the workflow inbox.
    Please put forth your suggestions.
    Regards,
    Nimal

    Hi Nimal
    By default MDM used standart UWL iView
    You can configurate fields which will view in UWL
    or use custom development for add new functionality for standart components
    More about integration and UWL configuration:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/771f1a61-0e01-0010-daa9-93a52905da09&overridelayout=true
    Regards
    Kanstantsin
    Edited by: Kanstantsin Chernichenka on Nov 12, 2009 1:27 PM

  • 404 Resource Not Found In UWL for Display Request in Travel Management

    Hi Team,
    Issue regarding Uwl in Travel Management.In Mss inbox when approver clicks on display form for travel request its throwing error like 404 resource not found.
    i have check all uwl iview properties like list actions to be excluded and Xml code etc.
    Regards,
    Venkat.

    Hi Venkat
    I hope you are well and many thanks for using the discussion forums .
    In relation to the scenario that you have described you mentioned that:
    Once a user (via the MSS Inbox) clicks on the display form for travel request you are encountering a 404 resource not found error.
    Ok so the first means of analysis is to ensure the UWL Destination Service Configuration is setup and maintained accordingly. Kindly review and consult the documentation below carefully.
    SAP Note: 1133821 - UWL Destination Service configuration
    After ensuring the destination(s) are setup accordingly and if the issue persists kindly restart the UWL service and clear the UWL cache to see if that resolves the issue.
    In the destination configuration kindly ensure there are no discrepancies or misconfigurations.
    Now have you navigated to your current connector setup and viewed the status columns to see if there are any exceptions appearing?
    Lastly kindly check if the URL being called (at the request page) is correct.
    Kindly update me as per your findings.
    Kind Regards & All The Best
    Troy Cronin - Enterprise Portal Support Engineer

  • Correct password not accepted, requested password reset but not receiving reset emails

    I am signed into the OLD Firefox sync with my correct password and username. I want to update to the new sync because I've got a new PC that i need to sync to and the old syn won't accept adding new units anymore. However, when I try to log in to update Firefox, it tells me that my password is wrong, which I know it isn't. I read that passwords set before 2012 may not be accepted, so I asked to have my password reset and Mozilla is supposed to send me a reset email. I've asked for the reset email multiple times, but they're never sent one (not in spam folder, I checked). Other have had this same problem, how can it be resolved? No way to email Mozilla support for help (grrr)

    No, I cannot, despite the fact that I know I have the correct password. I have requested a password reset many times, but the email is never received, and is not going to spam folder

  • Using CAF GP for Approving MDM Record Request.

    I am going to use CAF GP for approval workflow.
    I need to understand how to approvve the record using Java API. I know it needs to be moved from checked out stage to Checked in stage. But how do we do that from Java APIs.
    I am using SP4 for now, but need the information for SP6 too.
    ~Nitin

    If you look at your process description:
    Requestor - Submit a request - store in MDM in checked out mode.
    [Create a webdynpro callable object implementing IGPWebDynproCO|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e3f07a7a-0601-0010-ebbd-b9cfb445b814]
    Have it use the checkout(new)recordCommand (this works similar as the checkincommand I described above)
    Have validation at MDM to take care of all the required parameters/fields.
    Approver - Approves > Change the record to check in
    Use checkin as described above
    Rejects > Delete the record.
    For Reject you probably do not wantto delete the record but use the rollback command.
    [Here some more info on how to create a GP with Webdynpro COs|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0957cb6-5103-2a10-6d9d-a0a4d68c8bf1]
    This should get you started. You'll run into more questions though

  • Custom BAPI not accepting Request Parameters.

    Hello all
    I i'm using a JCO connector to call a custom ZBAPI to do a material move update.  the BAPI has 3 required and 1 optional parameters.. all type string.  The response is either an error message or confirm.  
    I have several BAPI's that I call in my application both standard and custom, all of them work except this one.  For some reason it is not accepting the parameters we send it.  I had the SAP integrator alter the BAPI to return the values I send it and its getting none of them. 
    I have Auto Commit Turned on as well.
    Any thoughts?  I have the source code for the BAPI if that would help

    Doug,
    Unfortunatly I cannot answer that question because the Group/Role/User configuration for the ERP system is custom.  Sometimes in the BAPI you will attempt to call a func. that requires additional permissions than the standard BAPIs; such as Cost Assignment when releasing a work order.  If this is the case the user will have to have access/permissions to the FI/CO module.  In order to check and eliminate the permissions issue as a possibility, request SAP_ALL permissions in the dev system and try it again.
    Hope this helps.
    Sam

  • SIRI: "sorry, but at the moment I can not accept requests"

    often when I ask something answers:
    "sorry, but at the moment I can not accept your requests"
    one minute remains and more "thinking" then responds with the phrase at issue.
    I'm using siri in Italian, can you help me to understand if it's a problem because ios 6 is not perfect or settings.
    thank

    It's because Tim is hitting her to answers on how to fix the maps issue and advice about whether or not to allow people to downgrade back to 5.1.1 because it was stable and it "just worked".
    Keep hitting her, she'll answer after awhile... Tim will go to sleep sometime or pass out from exhaustion. 

  • Separating show REQUEST from accept REQUEST

    I have some page components that are rendered conditionally upon REQUEST=FOO.
    When this page is submitted, I would like some after-submit components (computations, branches, processes, etc) to be conditional upon that same REQUEST=FOO.
    But, when the page is submitted, REQUEST is set to the page component (button or item) that submits the page.
    My initial REQUEST=FOO from when the page was rendered is "lost".
    Any way to keep track of the initial request used when rendering the page?
    Thanks

    Bill - The request value is available to after-submit elements on the page as a result of a button or standard tab submitting the page. During "show" processing, however, the request value is usually null. It has a value only if the URL used to request the page has a value in the request field e.g.,
    ...f?p=100:1:84356773300033228:DIST_SEARCH::NO::P1_ITEM:foo
    You can make this happen by putting the request value in the branch definition if the branch type results in a URL redirect, as most do.
    Scott

  • Blackberry Messenger- can't accept requests :/

    i have recently brought the bblackberry curve 8520 and i really want to be able to message all my friends on bbm but when ever someone sends me a reguest and i click on them it doesnt come up with an accept button, like everyone is saying it should.... any ideas would be greatful  

    Hello diddens,
    Welcome to the forums. 
    In this case we can try to reload the software on the BlackBerry® smartphone to make sure it is running the latest version and there are no issues with the OS.
    Here is how to backup your BlackBerry smartphone http://bbry.lv/oPVWXc
    Once you have backed up your BlackBerry smartphone please follow the link below to complete a clean reload of the BlackBerry smartphone software.
    Link: http://www.blackberry.com/btsc/KB03621
    Once completed test it and proceed with a selective restore, here is how to restore http://bbry.lv/qgQxLo
    If this does not correct your issues then you will want to contact your wireless service provider to ensure you have the correct services enabled on your account. 
    Hope this helps. Have a good day. 
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • How can I set a JSF page to accept requests from outside

    I have a file upload page in my application(JSF and MyFaces). It works fine when I navigate to page and select the file to upload and submit. Do I need to make any changes to this page to post from an external system?
    I created a perl script to send a file to this page. When I called the URL for this page, it returned the page content. How can I submit from the perl script?
    <h:form id="apppostform" name="apppostform" enctype="multipart/form-data" >
              <h:panelGrid styleClass="mbformdata" columns="2" border="0" cellspacing="25" cellpadding="0">
              <h:outputText value="#{appmsg.prompt_upload_file}"/>
              <t:inputFileUpload id="fileupload"
              value="#{fileUploadForm.upFile}"
              storage="file"
              styleClass="fileUploadInput"
              />
                   <h:commandButton type="submit" value="submit" action="#{fileUploadForm.uploadFile}"/>
                   </h:panelGrid>
    </h:form>
    Thanks,
    rm

    I created uploadservlet. I specified in web.xml:
    <servlet>
    <servlet-name>uploadservlet</servlet-name>
    <display-name>UploadServlet</display-name>
    <servlet-class>servlet.UploadServlet</servlet-class>
    </servlet>
    When I try to access uploadservlet, I am getting 404 error.
    I have few questions:
    How does it know about uploadservlet if it is not inherited from facesservlet while using JSF?
    Do I need to add any info about this in faces-config.xml?
    Please help!
    Thanks

  • JMS Queue is not accepting requests after restarting the weblogic server

    Hi,
    JMS queue is able to receive message after redeploying the application or restarting the weblogic server. It is intermittent , not happening every time.
    Please suggest how to resolve this issue. do we missed any configuration settings we are missing at clinet side or server side.
    we are using Weblogic 92 MP2 version.
    thanks.
    [email protected]

    I assume you meant "is unable to receive messages".
    Are you getting any exceptions in the code, or errors in the log, or is nothing happening when you know there's a message on the queue to be read?
    Are you perhaps reading from a distributed destination?

  • UWL do not refresh correctly when leave request change status

    hi
    I implemented the standar workflow of "Leave Request"(succesfuly), and the leave request  appareced in UWL in MSS, I approved the leave request, but Leave Request is not change the status. But The employee of the leave request watch the new "status" with approved in the ESS option (Leave Request).
    I refresh the UWL but Leave request stills appears with status "new", I clicked in the Leave Request (it had already approved in the previous step) and the new window open with error "index 0,0".
    My questions are:
    1.  How I can refresh my UWL? and that I displayed the request approved
    2.  Why not change your status to approve the leave, if I do not get any error?
    thanks for your post and answers
    Ivan

    implement the note 1501377 which was created to clear the leave request workitems
    ensure it is done
    and then following settings, In SWU3 schedule background jobs
    in uwl administration you can set these
    Default Execution Mode: Optimistic
    Webflow User Format: Full Name
    Default Cache Validity Period, in Minutes: 2
    Maximum Number of Threads Created in the Thread Pool: 10
    Timeout Value for the Connected Systems, in Seconds: 60
    Please check how frequent you refresh your cache
    1.,,Open task in the same window in the portal - rather than opening in
    a new window when approving and rejecting tasks.  This is so that the
    actions will be controlled through the UWL UI rather than an external
    window.
    2.You can configure an additional column on the UWL UI called
    isLaunched to mark an item that were already executed and may have been
    completed already.  This is very similar to the marked as read
    functionality contained in an email client.  If a user opens a task the
    item will  be marked as launched.  If refresh happens either manually or
    automatically then the workitem may be completed (marked as launched)
    and disappears from the inbox.  If it has been opened but not completed
    the launched icon disappears.
    3. Is Delta Pull enabled in your system?
    Steps to clear the UWL cache
    please go to "System Administration" "System Configuration" ->
    -> Universal Work list & Workflow
    -> Universal Workflow Administration
    -> Click on cache administration page
    -> Click "Clear Cache" button.

Maybe you are looking for

  • Nano no longer recognizable by iTunes on either of my computers

    This is a little different from other similar problems I've found here on the forums: Until 2 days ago, my Nano was working fine (with iTunes 6.0.5 for XP). Then suddenly, iTunes stopped recognizing it. I tried resetting the Nano, same thing (and hav

  • Lame Foldernavigation with Zen Stone plus with spea

    I purchased the 4GB Model because i hear a lot of Audiobooks. Those are organised in folders. I downloaded the manual / help file before purchasing and was quite happy that the Zen support folders. Now im disappointed the way the Zen Stone handles th

  • Variable portion for Multi-shift-depreciation.

    Hi, I am using Multi shift depreciation for Depreciation calcualtion as per The Indian Company Act. Rates of depreciation are Single Shift-4.75%, Double shift-7.42%, Triple shift-10.34%. Variable component for double shift will be 56.21 and 117.68 fo

  • Problem with ALV : fieldcatlog

    Hi, I am trying to use 'REUSE_ALV_GRID_DISPLAY' to display  a simple ITAB. For some reason, its giving a runtime error. Pls help me to indentify the problem. Am enclosing the code over here. Thanks in advance Hrishi *& Report  ZTEST3 REPORT  ZTEST3 l

  • Why do my contacts have such large print? How can i reduce the Size?

    mmy contacts are appearing in large print, which means I do,not easily see the whole phone number. How can alter the size of the print?