Regarding workflow please help

Hi,
In my workflow i'am sending the workitem to approvers at various levels in the hierarchy based on the deadline.
when the workitem is woth the 1st level of approvers and no action had been taken on it by the deadline time, it is getting disappeared from the 1st level approvers inbox and going to second leve; approvers inbox.
But in case if the higher level does not exist, i'am sending a work item to the initiator denoting NO ACTION HAD BEEN TAKEN.
At this stage the workitem is not getting disappeared from the inbox of the highest level approver.Is it the standard or SAP Workflow or is there any way that we can remove the work item from the users inbox.
Please Help..............................
Thanks & Regards,
bala

Maybe this can help you... Although I used it to stop workflows that were still running at a certain point in the logic.
You can use function 'SWW_WI_ADMIN_CANCEL'  to cancel a workitem.
If I am not mistaken, it should remove the item from the inbox.
Just a piece of the code:
* And now, the change:                                             
* Get workitems of object                                          
  CALL FUNCTION 'SWI_WORKITEMS_OF_OBJECT_GET'                      
       EXPORTING                                                   
            objtype  = 'BUS2012'                                   
            objkey   = z_objkey                                    
       TABLES                                                      
            itemlist = zitemlist.                                                                               
* If at this point WF ZWF_PO_REL (WS90200009) is still running, it 
* should be cancelled! Because the release is fully completed.     
  LOOP AT zitemlist WHERE wi_stat   <> 'ERROR'     AND             
                          wi_stat   <> 'COMPLETED' AND             
                          wi_stat   <> 'CANCELLED' AND             
                          wi_chckwi IS initial     AND             
                          wi_rh_task = 'WS90200009'.               
    CALL FUNCTION 'SWW_WI_ADMIN_CANCEL'                            
         EXPORTING                                                 
              wi_id = zitemlist-wi_id.                             
    IF sy-subrc <> 0.                                              
    ENDIF.                                                         
  ENDLOOP.                                                         

Similar Messages

  • Cannot close notification in workflow-Please help

    We had some notifications that got stuck for new hires and we manually processed them through IQS22 but we are not able to close the notification after processing those new hires! Does anyone happen to know any transaction/tables where I could go by notification number and close that notification?
    Thanks.
    Mithun

    Hi,
    We do not have any data in our system for this transaction. I assume it is like IW22.
    You should be able to close or complete by clicking on the "Technically Complete" button (if available).
    Or use function module: BAPI_ALM_NOTIF_CLOSE or ALM_PM_NOTIFICATION_CLOSE to try and close the notification. Check the func.module documentation for help.
    Regards,
    Subramanian

  • Reassign existing workflow - please help!!

    We have an existing workflow that has thrown an error. We have corrected the backend code which results in the workflow now working but we have three existing WFs that we'd like to push through. However, we are getting the dreaded no performer error.
    I've captured some screenshots here of what we have done in an attempt to reassign which may or may not be correct. Please can someone provide some pointers so that the process does not have to be completely restarted?
    http://www.2ql.net/uploads/1255023160.jpg
    http://www.2ql.net/uploads/1255058496.jpg
    http://www.2ql.net/uploads/1255017068.jpg
    http://www.2ql.net/uploads/1255000660.jpg
    http://www.2ql.net/uploads/1255057613.jpg
    Many thanks in advance,
    Phil

    Rewind the WF if you are not using Ad-hoc roles to approvals activity which will generate a notification or update the wf attribute values to required value in WF_ITEM_ATTRIBUTE_VALUES or in front end screen.

  • Question regarding Inheritance.Please HELP

    A question regarding Inheritance
    Look at the following code:
    class Tree{}
    class Pine extends Tree{}
    class Oak extends Tree{}
    public class Forest{
    public static void main(String args[]){
      Tree tree = new Pine();
      if( tree instanceof Pine )
      System.out.println( "Pine" );
      if( tree instanceof Tree )
      System.out.println( "Tree" );
      if( tree instanceof Oak )
      System.out.println( "Oak" );
      else System.out.println( "Oops" );
    }If I run this,I get the output of
    Pine
    Oak
    Oops
    My question is:
    How can Tree be an instance of Pine.? Instead Pine is an instance of Tree isnt it?

    The "instanceof" operator checks whether an object is an instance of a class. The object you have is an instance of the class Pine because you created it with "new Pine()," and "instanceof" only confirms this fact: "yes, it's a pine."
    If you changed "new Pine()" to "new Tree()" or "new Oak()" you would get different output because then the object you create is not an instance of Pine anymore.
    If you wonder about the variable type, it doesn't matter, you could have written "Object tree = new Pine()" and get the same result.

  • Please help me to visible the create event menu in workflow administrator.

    Hi All,
    please help me to visible the create event menu in workflow administrator.
    (select workflow administrators responsibility navigate to administrator workflow -->
    Business events-->events-->here i am seeing only search options,but i required create event,subscriptions.... )
    Regards
    Gopinath

    Hi,
    please help me to visible the create event menu in workflow administrator.
    (select workflow administrators responsibility navigate to administrator workflow -->
    Business events-->events-->here i am seeing only search options,but i required create event,subscriptions.... )You should find "Create Event" and "Create Events Groups" buttons in the same page under "Results : No Search Conducted".
    Regards,
    Hussein

  • PLEASE HELP:not able to load a simple servlet

    Hi,
    I'm new to weblogic server.I'm trying to setup weblogic 510.Everything was
    going fine until I got stuck to this small thing.I'm not able to load a
    simple servlet!.
    I would appreciate any pointers regarding this.Please Help me!!!
    Here is what I tried:
    I have installed weblogic510 plug-in for IIS.I could successfully run jsp
    files.However I am not able to load simple servlets;It gave an exception
    "java.lang.IllegalAccessError: try to access class
    weblogic/utils/classloaders/FileSource from class
    weblogic/servlet/internal/WarClassFinder"
    Details of my configuration:
    WebServer - IIS 4.0
    IIS port=80
    Weblogic port=7001
    I had set it in such a way that all the requests first go to IIS and then
    IIS redirects them to Weblogic.I've followed the steps according to the
    document "Installing the Weblogic ISAPI Plug-in".
    I've registered the servlet in weblogic.properties as following:
    weblogic.httpd.register.hello=examples.servlets.HelloWorld2
    I tested the servlet by URL http://localhost:7001/hello
    Following is the eact text for the exception I got in the WeblogicServer
    window:
    Mon Jul 24 12:13:13 PDT 2000:<E> <ServletContext-General> Error loading
    servlet:
    examples.servlets.HelloWorld2
    java.lang.IllegalAccessError: try to access class
    weblogic/utils/classloaders/Fi
    leSource from class weblogic/servlet/internal/WarClassFinder
    at
    weblogic.servlet.internal.WarClassFinder.getSource(WarClassFinder.jav
    a, Compiled Code)
    at
    weblogic.servlet.internal.WarClassFinder.getClassSource(WarClassFinde
    r.java:110)
    at
    weblogic.utils.classloaders.GenericClassLoader.findLocalClass(Generic
    ClassLoader.java:381)
    at
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(Generi
    cClassLoader.java, Compiled Code)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader$Slave.
    loadClass(RecursiveReloadOnModifyClassLoader.java:234)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:146)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader.findLo
    calClass(RecursiveReloadOnModifyClassLoader.java:109)
    at
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(Generi
    cClassLoader.java, Compiled Code)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:172)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:146)
    at
    weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
    mpl.java:291)
    at
    weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.
    java:164)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:99)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
    textImpl.java:742)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
    textImpl.java:686)
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
    ContextManager.java:247)
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
    a:361)
    at
    weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled
    Code)
    Mon Jul 24 12:13:13 PDT 2000:<E> <ServletContext-General> Servlet failed
    with Ex
    ception
    I dont think there were any problems in the classpath or
    servletpath;Basically WeblogicServer was able to locate the servlet but when
    it tried to load the servlet it gave this exception.
    I would appreciate any ideas/suggestions.
    Thanks,
    Sravan

    Nice to hear it works!
    However, one mistake you have in the configuration you provided:
    You put D:\weblogic\BDL\servletclasses in both CLASSPATH and
    weblogic.class.path, remove it from CLASSPATH.
    Cheers - Wei
    Sravan Thella <[email protected]> wrote in message
    news:[email protected]...
    Hi Michael and Wei,
    Thank you very much for the response.
    My servlet details:
    Name - HelloWorld2.class
    package - examples.servlets
    Location - d:\weblogic\BDL\servletclasses ---- here BDL is my new folder
    where I want to keep my servlets
    My CLASSPATH(environment) settings:
    D:\weblogic\BDL\servletclasses;d:\weblogic\classes\boot;d:\weblogic\eval\clo
    >
    udscape\lib\cloudscape.jar;d:\weblogic\lib\poolorb.jar;D:\java\jre\lib\rt.ja
    r;
    my weblogic classpath settings(set it thru wlconfig)
    D:\weblogic\BDL\servletclasses;d:\weblogic\classes\boot;d:\weblogic\eval\clo
    >
    udscape\lib\cloudscape.jar;d:\weblogic\lib\poolorb.jar;D:\java\jre\lib\rt.ja
    r;
    My weblogic.policy:
    grant codeBase "file:d:/weblogic/-" {
    permission java.io.FilePermission "d:${/}weblogic${/}-",
    "read,write,delete,execute";
    permission java.net.SocketPermission "localhost:1-9000",
    "connect,accept,listen,resolve";
    permission java.awt.AWTPermission "accessClipboard";
    permission java.awt.AWTPermission "accessEventQueue";
    permission java.awt.AWTPermission "showWindowWithoutWarningBanner";
    permission java.io.SerializablePermission"enableSubclassImplementation";
    permission java.io.SerializablePermission "enableSubstitution";
    permission java.lang.RuntimePermission "accessClassInPackage.*";
    permission java.lang.RuntimePermission "accessDeclaredMembers.*";
    permission java.lang.RuntimePermission "createClassLoader";
    permission java.lang.RuntimePermission "createSecurityManager";
    permission java.lang.RuntimePermission "defineClassInPackage.*";
    permission java.lang.RuntimePermission "exitVM";
    permission java.lang.RuntimePermission "getClassLoader";
    permission java.lang.RuntimePermission "createClassLoader";
    permission java.lang.RuntimePermission "getProtectionDomain";
    permission java.lang.RuntimePermission "loadLibrary.*";
    permission java.lang.RuntimePermission "modifyThread";
    permission java.lang.RuntimePermission "modifyThreadGroup";
    permission java.lang.RuntimePermission "readFileDescriptor";
    permission java.lang.RuntimePermission "setContextClassLoader";
    permission java.lang.RuntimePermission "setFactory";
    permission java.lang.RuntimePermission "setIO";
    permission java.lang.RuntimePermission "setProtectionDomain";
    permission java.lang.RuntimePermission "setSecurityManager";
    permission java.lang.RuntimePermission "writeFileDescriptor";
    permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
    permission java.net.NetPermission "requestPasswordAuthentication";
    permission java.net.NetPermission "setDefaultAuthenticator";
    permission java.security.SecurityPermission "getPolicy";
    permission java.security.SecurityPermission "setPolicy";
    permission java.util.PropertyPermission "*", "read,write";
    grant codeBase "file:d:/weblogic/BDL/servletclasses/-" {
    permission java.io.FilePermission
    "d:${/}weblogic${/}BDL{/}servletclasses{/}-", "read,write,delete,execute";
    permission java.net.SocketPermission "localhost:1-9000",
    "connect,accept,listen,resolve";
    permission java.awt.AWTPermission "accessClipboard";
    permission java.awt.AWTPermission "accessEventQueue";
    permission java.awt.AWTPermission "showWindowWithoutWarningBanner";
    permission java.io.SerializablePermission"enableSubclassImplementation";
    permission java.io.SerializablePermission "enableSubstitution";
    permission java.lang.RuntimePermission "accessClassInPackage.*";
    permission java.lang.RuntimePermission "accessDeclaredMembers.*";
    permission java.lang.RuntimePermission "createClassLoader";
    permission java.lang.RuntimePermission "createSecurityManager";
    permission java.lang.RuntimePermission "defineClassInPackage.*";
    permission java.lang.RuntimePermission "exitVM";
    permission java.lang.RuntimePermission "getClassLoader";
    permission java.lang.RuntimePermission "createClassLoader";
    permission java.lang.RuntimePermission "getProtectionDomain";
    permission java.lang.RuntimePermission "loadLibrary.*";
    permission java.lang.RuntimePermission "modifyThread";
    permission java.lang.RuntimePermission "modifyThreadGroup";
    permission java.lang.RuntimePermission "readFileDescriptor";
    permission java.lang.RuntimePermission "setContextClassLoader";
    permission java.lang.RuntimePermission "setFactory";
    permission java.lang.RuntimePermission "setIO";
    permission java.lang.RuntimePermission "setProtectionDomain";
    permission java.lang.RuntimePermission "setSecurityManager";
    permission java.lang.RuntimePermission "writeFileDescriptor";
    permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
    permission java.net.NetPermission "requestPasswordAuthentication";
    permission java.net.NetPermission "setDefaultAuthenticator";
    permission java.security.SecurityPermission "getPolicy";
    permission java.security.SecurityPermission "setPolicy";
    permission java.util.PropertyPermission "*", "read,write";
    I dont know what is wrong here. In the weblogic.policy file,I tried
    differrent combinations but it never worked.
    I find weblogic documentation for troubleshooting to be pathetic.Notuseful
    at all.Documentation looks
    good to read ;not for practical purposes.I'm not sure whether others have
    similar opinion.
    I'm stuck at this thing for the past few days,I still have lot of work todo
    to purusue our management team to buy weblogic
    but I'm still stuck at this thing.
    Thank you very much for your time.
    Thanks,
    Sravan
    "Sravan Thella" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I'm new to weblogic server.I'm trying to setup weblogic 510.Everything
    was
    going fine until I got stuck to this small thing.I'm not able to load a
    simple servlet!.
    I would appreciate any pointers regarding this.Please Help me!!!
    Here is what I tried:
    I have installed weblogic510 plug-in for IIS.I could successfully runjsp
    files.However I am not able to load simple servlets;It gave an exception
    "java.lang.IllegalAccessError: try to access class
    weblogic/utils/classloaders/FileSource from class
    weblogic/servlet/internal/WarClassFinder"
    Details of my configuration:
    WebServer - IIS 4.0
    IIS port=80
    Weblogic port=7001
    I had set it in such a way that all the requests first go to IIS andthen
    IIS redirects them to Weblogic.I've followed the steps according to the
    document "Installing the Weblogic ISAPI Plug-in".
    I've registered the servlet in weblogic.properties as following:
    weblogic.httpd.register.hello=examples.servlets.HelloWorld2
    I tested the servlet by URL http://localhost:7001/hello
    Following is the eact text for the exception I got in the WeblogicServer
    window:
    Mon Jul 24 12:13:13 PDT 2000:<E> <ServletContext-General> Error loading
    servlet:
    examples.servlets.HelloWorld2
    java.lang.IllegalAccessError: try to access class
    weblogic/utils/classloaders/Fi
    leSource from class weblogic/servlet/internal/WarClassFinder
    at
    weblogic.servlet.internal.WarClassFinder.getSource(WarClassFinder.jav
    a, Compiled Code)
    at
    weblogic.servlet.internal.WarClassFinder.getClassSource(WarClassFinde
    r.java:110)
    at
    weblogic.utils.classloaders.GenericClassLoader.findLocalClass(Generic
    ClassLoader.java:381)
    at
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(Generi
    cClassLoader.java, Compiled Code)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader$Slave.
    loadClass(RecursiveReloadOnModifyClassLoader.java:234)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:146)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader.findLo
    calClass(RecursiveReloadOnModifyClassLoader.java:109)
    at
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(Generi
    cClassLoader.java, Compiled Code)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:172)
    at
    weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClass
    Loader.java:146)
    at
    weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
    mpl.java:291)
    at
    weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.
    java:164)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:99)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
    textImpl.java:742)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
    textImpl.java:686)
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
    ContextManager.java:247)
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
    a:361)
    at
    weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java,Compiled
    Code)
    Mon Jul 24 12:13:13 PDT 2000:<E> <ServletContext-General> Servlet failed
    with Ex
    ception
    I dont think there were any problems in the classpath or
    servletpath;Basically WeblogicServer was able to locate the servlet butwhen
    it tried to load the servlet it gave this exception.
    I would appreciate any ideas/suggestions.
    Thanks,
    Sravan

  • Workflow WS20000317 - Problem please help

    Hi Sapgurus,
    I am currently working on Workflow WS20000317, basically my requirement is that when the notification is created i have to intimate the user that a notification has been generated , but i don't know how to configure this workflow.
    Could anybody please help me out so that i can complete my scenario.
    Well i am starting a workflow also tha ti have created tru the user exit but it is giving me this dumb.
         IF lh_transaction IS NOT BOUND.
           lh_transaction = cl_swf_utl_transaction=>create( im_commit_work_control = l_do_c
           l_transaction_created = 'X'.
         ENDIF.
         IF do_commit EQ 'W'.
           CALL METHOD lh_transaction->set_trfc_executed( ).
         ENDIF.
         l_enqueue_owner = l_fbname.
         CALL METHOD cl_swf_run_transaction_manager=>get_instance
           EXPORTING
             im_transaction   = lh_transaction
             im_enqueue_owner = l_enqueue_owner
           RECEIVING
             re_instance      = lh_txmgr.
         CALL METHOD cl_swf_run_wim_factory=>create_via_api
           EXPORTING
             im_context   = l_crt_ctx
             im_parameter = ls_wi_create
             im_tx        = lh_txmgr
             im_language  = language
           RECEIVING
             re_wi_handle = lh_wi_handle.
         CALL METHOD lh_txmgr->save( ).
         IF l_do_commit EQ 'X'.
           COMMIT WORK.
         ENDIF.
       CATCH cx_swf_run_wim INTO l_excp.
         IF l_transaction_created EQ 'X'.
           CALL METHOD lh_transaction->remove( ).
         ENDIF.
          lh_alm_context = cl_swf_alm_factory=>create_context(
                     im_category    = cl_swf_alm_factory=>c_cat_wi_create
                     im_system_type = cl_swf_alm_factory=>c_system_webflow ).
          CALL METHOD lh_alm_context->raise_exception( l_excp ).
         MESSAGE ID l_excp->t100_msg-msgid
                 TYPE l_excp->t100_msg-msgty
                 NUMBER l_excp->t100_msg-msgno
                 WITH l_excp->t100_msg-msgv1 l_excp->t100_msg-msgv2
                      l_excp->t100_msg-msgv3 l_excp->t100_msg-msgv4
         RAISING id_not_created.
    ENDTRY.
    Thanks and Regards,
    Rachti khanna
    Message was edited by:
            Rachit Khanna

    Hi,
    What about the container element values how can i set it the one i have told you .
    I m not able to understand how to configure it i m totally confused please guide me.
    I tried to run the workflow from my user exit using SWW_WI_START_SIMPLE but it is giving me this dumb
          ENDIF.
    *- create transaction and force commit work
          lh_transaction = cl_swf_utl_transaction=>get( ).
          IF lh_transaction IS NOT BOUND.
            lh_transaction = cl_swf_utl_transaction=>create( im_commit_work_control = l_do_commi
            l_transaction_created = 'X'.
          ENDIF.
          IF do_commit EQ 'W'.
            CALL METHOD lh_transaction->set_trfc_executed( ).
          ENDIF.
          l_enqueue_owner = l_fbname.
          CALL METHOD cl_swf_run_transaction_manager=>get_instance
            EXPORTING
              im_transaction   = lh_transaction
              im_enqueue_owner = l_enqueue_owner
            RECEIVING
              re_instance      = lh_txmgr.
          CALL METHOD cl_swf_run_wim_factory=>create_via_api
            EXPORTING
              im_context   = l_crt_ctx
              im_parameter = ls_wi_create
              im_tx        = lh_txmgr
              im_language  = language
            RECEIVING
              re_wi_handle = lh_wi_handle.
          CALL METHOD lh_txmgr->save( ).
          IF l_do_commit EQ 'X'.
            COMMIT WORK.
          ENDIF.
        CATCH cx_swf_run_wim INTO l_excp.
          IF l_transaction_created EQ 'X'.
            CALL METHOD lh_transaction->remove( ).
          ENDIF.
         lh_alm_context = cl_swf_alm_factory=>create_context(
                    im_category    = cl_swf_alm_factory=>c_cat_wi_create
                    im_system_type = cl_swf_alm_factory=>c_system_webflow ).
         CALL METHOD lh_alm_context->raise_exception( l_excp ).
          MESSAGE ID l_excp->t100_msg-msgid
                  TYPE l_excp->t100_msg-msgty
                  NUMBER l_excp->t100_msg-msgno
                  WITH l_excp->t100_msg-msgv1 l_excp->t100_msg-msgv2
                     l_excp->t10
        RAISING id_not_created.
    ENDTRY.
    Could you please tell me what is the mistake here
    Thanks for your reply.
    Message was edited by:
            Rachit Khanna

  • PLEASE HELP How to Activate the Correlation with the workflow ?

    Hi everyone,
    I am trying to retrigger a workflow with object (QMSM) using another Object event (BUS2007  event TECCOMPLETED )
    The objects are QMSM(complete task) and BUS2007(Plant Maintenance order) .
    I tried to do that using correlation but I am stuck in the following step because there is no name of the event there to choose from.
         *3.      Select the event for which the correlation is to be activated and the correlation to be activated*
    The procedure I used was from this link:
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/26/0b8b3f81fef93de10000000a114084/frameset.htm
    Things done so far:
    Defining a Correlation
    Defining a Wait Step: Wait for Event with Correlation
    Not done:  Activating a Correlation
    Please help everyone.
    Edited by: SAMI JAPR on Apr 29, 2008 6:34 PM

    You need to add events under WF header, version-dependent---> events.
    Regards, IA

  • Please help in Clock-in ESS Workflow

    Hello all,
                 Please help me to solve this issue.
    I had done this thing for clock in/out Work flow.
    Create  a custom transaction calling report program RPTCORAPP and selection screen 1000.(ZPT_APPROVE)
    2. Create another custom transaction(Z_APPROVE_CLINOUT) with following code.
    Call transaction ZPT_APPROVE AND SKIP FIRST SCREEN.
    3. Using transaction sw01 create an object.  call the above tranasaction in the object created in step 3.
    4. Create a custom task with the above object and method (STEP 3) (There will be no parameter passed between the task container and the workflow as we are calling a transaction only)
    5. Create Copy of WS12300111 using transaction SWDD.
    6. Delete the step Process Request by Employee (TS12300116) from copied workflow.
    7. In the copied workflow in the Approval process instead of standard approval task use the custom task created in step 4.
    8. Activate the customized workflow.
    But when I will execute the Work item. it will not show me any record.it will show me blank page.
    Please Reply.
    Thank You.

    Hi,
    Please try debugging by placing a break point in the method.
    Try with another transaction for testing purpose if debugging seems to be fine.
    Regards
    Narin.

  • Please help: Workflow service is not connected

    This questions is in continuation to my query posted ...see below link
    https://social.technet.microsoft.com/Forums/office/en-US/e6a880d4-e252-49bc-8866-f3f959abf23f/do-i-need-to-have-sharepoint-designer-2013-installed-on-sharepoint-2013-production-server-to-create?forum=sharepointgeneral
    I noticed that the web application is associated with "Workflow Service Application Proxy" from Central Administration site. However
    I do not see Workflow Service application listed in the Manage service applications, but only Workflow service application proxy is listed and when I clicked on this, I see that the workflow is not connected though it shows started.
    Also Ran ‘Get-WFFarmStatus’ command to check if the Workflow service is running, and to my surprise it is running.
    Snapshot below:
    If I re-register the workflow (used below command), I am getting Register-SPWorkflowService : Failed to register because the farm or partition
    is already registered with a workflow service
    Register-SPWorkflowService -SPSite "http://abc" -WorkflowHostUri "http://localhost:12291" -AllowOAuthHttp
    I am unaware of this… but now I am doubting if this is creating the problem. I have registered the workflow withhttp://localhost:12291
    on my SharePoint server. Should the workflow have DNS entry to register?
    Also, we do not have user profile service, so the user profile service & user profile synchronization service are not started. Do I need to start ‘user profile
    synchronization service’ as Nikhil suggested.
    Please help me to resolve this issue please.
    Regards,
    DJ

    Hi Rookio,
    Based on your description, your workflow service is not connected.
    For troubleshooting this issue, I recommend to verify the things below:
    1. Check the workflow management site is starting. If yes, restart the workflow management site.
    2. Check the ULS log to see some information about your problem.
    3. Re-register workflow service with force: Register-SPWorkflowService -SPSite "http://myserver/mysitecollection" -WorkflowHostUri "http://workflow.example.com:12291"
    -AllowOAuthHttp  -force.
    4. Run the PowerShell command to see if the issue still occurs: Enable-SPFeature -Identity WorkflowServiceStore –Url $yourUrl.
    Per my knowledge, you do not need to start user profile synchronization service when configuring the workflow manager.
    However, the user who deploys and runs a workflow must be added to the User Profile service, so it is recommended to start the user profile service application.
    http://technet.microsoft.com/en-us/library/jj658588(v=office.15).aspx
    More reference:
    http://www.datazx.cn/Forums/en-US/7675ea81-457d-4491-a224-e34471beec63/action?threadDisplayName=sharepoint-2013-workflow-manager-not-connected&forum=sharepointcustomization
    http://sharepoint.stackexchange.com/questions/79275/sharepoint-2013-workflow-manager-missing-service
    http://anujabhojani.blogspot.be/2013/06/the-option-for-sharepoint-2013-workflow.html
    Best regards,
    Victoria
    Victoria Xia
    TechNet Community Support

  • When recently syncing my iphone, itunes asked me something regarding transfering purchased items or something.. I foolishly didn't read it properly and now I can't get purchased songs from iTunes back on to my iPhone... Please help!!

    Hi,
    When recently syncing my iPhone a message came up regarding transferring purchases or something.. In haste I pressed the wrong reply.. My phone synced, but removed all of the songs I purchased on my iPhone. Although they are still on my iTunes and I can play them.. but they will not sync back to the iPhone what so ever.. I'm stressed out big time and can't believe I was such an idiot lol!! Had a look at a few forums.. But they seem to be about transffering from Iphone to Itunes...
    Please Help xxx

    At the AT&amp;T store. Tried using iCloud but only 120 songs were transferred and when I access my iTunes account now it only shows 120 and not the 450 anymore that I purchased on my old phone. Tried to sync again from the phone to iTunes and it still not working.
    I purchased everything under the same apple ID account I called apple support and spent almost 2 hours with tech support for assistance and we got disconected and they never called me back.
    I'm at the point where I'm about to never purchase anything anymore from apple go to another company retrieve every single charge made on my bank account from iTunes and file a law suit against the company. It's being a week that I called for assistance and no one called me back to help me with this matter even after I responded a survey with a complaint about not getting a resolution to my problem.
    If you could please help me I will appreciate, I'm out of the country now and can't stay on the phone for a long time.
    I need to sell my old phone but as right now besides all my bank statements the old phone is the only evidence that I purchased the songs.

  • PLEASE HELP ME TO FIND THE SOLUTION REGARDING "LOGICAL SYSTEM CHANGED"

    HAI EVERYBODY,
    PLEASE HELP ME TO FIND THE SOLUTION REGARDING "LOGICAL SYSTEM CHANGED" during the material master replication by using middleware parameters.
    step1 : i have taken SRM client 810 and named it as CHINNISRM
    step2 : i  have taken r3 client 810 and named it as CHINNIR3
    step3: During material master replication i maintained tables like crmconsum,crmrfcpar,crmparoltp in   r3   and smofparsfa in srm client and filtered the objects and loaded the objects through r3ac3,r3ac1,r3as.
    step4 : And later i have checked in r3 queues to activate the objects,but i have seen a message like  "LOGICAL SYSTEM CHANGED:SEE 588701".according to the oss instructions i have checked in CRMPRLS table in se16 in R3 .there i found out there is one logical client  named with T90CLNT810.
    oss :588701
    Solution
    There are different cases in which different forms of processing are
    required or where several options exist:
    - The logical system name of an R/3 Backend client was changed in
    current operation. In this case, the data hangs in the outbound
    queues of the R/3 Backend system as specified under point 1 of
    the symptom. In this case, the logical system name must be
    changed back to the original value. Then the outbound queues
    can be reactivated. If no data was transferred to the EBP/CRM
    server before the change, also a correctioin of the check table
    is possible.
    - The same logical system name was used again in a new client of
    an R/3 Backend system that was linked to the EBP/CRM server. In
    this case, the data is in the inbound queue of the EBP/CRM
    server with the exception GUID_FOR_LOGSYS_CHANGED. In this
    case, the queue entries which have status SYSFAIL must be rejected, however, not the entire queues. If the new client of  the R/3 Backend system you have linked has exactly the same
    data as the old client and if it is meant to replace the old
    client (that is, this was deactivated), also a correction of
    the check tables is possible. In this case, the inbound queues
    can be reactivated after the correction.
    oss:765018
    1. If the situation in your system corresponds to the situation described
    under "Reason and Prerequisites" and if symptom 1 occurs, you can
    delete the table entry from table CRMPRLS table (there is just one
    entry). Since there is no maintenance dialog for this table and you
    cannot maintain it using transaction SE16, you must use a report to
    delete it. This report is attached to this note as correction
    instructions.
    Create the report ZZ_DELETE_CRMPRLS in your system and copy the source
    code from the correction instructions. You cannot implement this
    source code using transaction SNOTE.
    You can use the report in every plug-in or plug-in basis system, even
    if it is not specified in the validity section.
    After you have run the report, you can trigger existing queues again
    in transaction SMQ1.
    2. If the situation in your system corresponds to the situation described
    under "Reason and prerequisite" and if symptom 2 occurs, you can
    delete the entry from table CRMMLSGUID (there is just one entry).
    Since there is no maintenance entry for this table and you cannot
    maintain it using transaction SE16, you must use a report to delete
    it. This report is attached to this note as correction instructions.
    If they do not yet exist, add the following messages to message class SMOF in your logon language:
    Message Message short text
    303 User &1 is not allowed to change table &2.
    304 User &1 IS not allowed to display table &2.
    305 Logical system &1 was not found in table &2.
    306 System error! The current client was not
    found in table T000.
    Create the report ZZ_DELETE_CRMMLSGUID in your system and copy the
    source code from the correction instructions. You cannot implement
    this source code using transaction SNOTE.
    You can use the report for every release of the CRM system, even if it
    is not specified in the validity section. The only exceptions are CRM
    releases with Support Package versions that are too low such as CRM
    Release 3.0 with Support Package 12.
    After you have run the report, you can trigger existing queues again
    in transaction SMQ1 of the R/3 back-end system or transaction SMQ2 of
    the CRM system.
    so what should i do to do the replication.please suggest me .untill and unless i solve my problem i cant move to the further activity.i hope you people can solve my problem.thanks in advance.
    thanks and best regards,
    n.chakradhar

    Hi chakradhar,
    Did you find a solution to your issue? We are facing a similar issue and looking to figure out how this can be resolved.
    BR// 420

  • Please help me regarding implemenatation of plsql webservices

    hello every one,
    My name is anil, I am working on the topic "building pl/sql web services". I successfully deployed my pl/sql function. But i got an error while invoking the function from a web service.
    my error is
    08/04/22 10:40:23 javax.servlet.ServletException: Cannot generate Class: java.lang.NoClassDefFoundError: com/sun/tools/javac/M
    ain
    Exception in thread "main"
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.generateWrapperClass(RpcWebService.java:569)
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.generate(RpcWebService.java:467)
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.getWrapper(RpcWebService.java:614)
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.doGetRequest(RpcWebService.java:725)
    08/04/22 10:40:23 at oracle.j2ee.ws.BaseWebService.doGet(BaseWebService.java:1199)
    08/04/22 10:40:23 at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    08/04/22 10:40:23 at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    08/04/22 10:40:23 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:691)
    08/04/22 10:40:23 at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    08/04/22 10:40:23 at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    08/04/22 10:40:23 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.ja
    va:303)
    08/04/22 10:40:23 at java.lang.Thread.run(Unknown Source)
    please help me

    SowmyRaj wrote:
    But i am unable to run it successfully...please help me regarding this... No wonder. Script is full of entries:
    **MOBILE CODE**Modify script:
    1. Change:
    **MOBILE CODE** immediateto:
    execute immediate2. Change:
    **MOBILE CODE**to:
    end ifRun the script. If you will run it second time, change:
    u_exist PLS_INTEGER;
    t_exist PLS_INTEGER;
    ts_exist PLS_INTEGER;
    ss_exist PLS_INTEGER;to:
    u_exist PLS_INTEGER := 1;
    t_exist PLS_INTEGER := 1;
    ts_exist PLS_INTEGER := 1;
    ss_exist PLS_INTEGER := 1;This way existing objects will be dropped before recreating them.
    SY.

  • My ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    my ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    This article should give you the options
    https://discussions.apple.com/docs/DOC-3991

  • Hi can anyone help me. I have a apple macbook laptop OSX 10.5.8 . When i push print, it shows my printer but says cannot communicate with printer. (epson stylus nx125). Do I need new drivers? Please help .  regards Cindy

    Hi can anyone help me. I have a apple macbook laptop OSX 10.5.8 . When i push print, it shows my printer but says cannot communicate with printer. (epson stylus nx125). Do I need new drivers? Please help .  regards Cindy

    Welcome to Apple Support Communities. We're users here and do not speak for "Apple Inc."
    Some basic printer troubleshooting steps before worrying about a printer driver:
    1. Have you tried turning the printer off and back on?
    2A. Is the printer attached with a cable?
         If yes, have you tried unplugging and re-plugging both ends of the printer cable?
         If that does not help, can you test the printer with another cable?
    2B. If your printer is not connected to the computer with a cable, have you tried restarting your printer (assuming wireless connection)?
         Have you tried restarting your wireless router?
    3. Have you tried restarting your MacBook? (Be sure to save your work first.)
    4. Does the printer have ink? (Doesn't usually generate a 'communications error' though)
    5. Have you updated OS X or the program you're trying to print from recently?

Maybe you are looking for

  • MDS Customization Problem with multiple root components

    Hello, Oracle JDeveloper 11.1.1.5.0 and WebLogic Server Version: 10.3.5.0 I am using Oracle MDS Customization class with the following classes: oracle.adf.view.rich.change.MDSDocumentChangeManager org.apache.myfaces.trinidad.change.ChangeManager org.

  • Literal value roblem in and E-mail htmldb

    Hi, Does anyone know how to display the value of a variable instead of the literal in the body of an-email? The problem I am having is the following variable: :P2_Issue_id Pasted below is my code: DECLARE intPERSONID NUMBER(7,0); strperson varchar2(1

  • Who chooses the little icons to the left of a website?

    On both the "Search or Enter Address" field and on the Bookmarks list, to the left of website names, there are tiny icons. How can I choose one for my own site?

  • Check Your Plugins gives a wrong answer about Shockwave Flash

    Fist of all, the page lists [http://www.adobe.com/products/shockwaveplayer/ Shockwave Flash] but it reports details about [http://www.adobe.com/software/flash/about/ Macromedia Flash]. This is in concert with the terminology used in the Plugin Manage

  • Installing 10.6 on new partition

    I'm trying to install OS 10.6 on a new partition on my MacBook. I am currently running 10.7.2 and when I load my 10.6 Install DVD for my new partition and try to run it, It gives me an error. I assumed when I ran the DVD it would ask me which partiti