SRM Get PO details

Good Day!
May i know if there were standard report or function module to get the PO details.
I need the following fields to create a Customized Report.
- Reference Shopping Cart
- Approver of the PO
- PO Status
by the way we are using SRM 7.0 (Extended Classic Scenario)
Thanks
Wally Delgado
Edited by: Wally URC Delgado on Mar 16, 2011 7:14 AM

Hi,
Please use BBP_PD_PO_GETDETAIL to get the PO and related SC information. For status, you may need to find out which is the latest one for the PO document.
Need others to advise you on the workflow though..
Regards.
YS

Similar Messages

  • Getting SC details using Backend Purchase Order

    Hi Friends,
    I am running a report in backend (R/3), I want to get shopping cart details from SRM simply by passing backend <b>purchase order number.</b>
    Can you suggest me a function module in SRM side please?
    Regards.
    Pras

    Pras-
    I can't think of an existing FM to get SC details knowing the backend PO number, however you can easily find the shopping cart ID if you use view BBP_PDVIEW_BIH, select using your PO number as BE_REFOBJ, technical docuemnt type for PO as BE_REFOBJ_TYPE, and ideally you should do the select per PO item # and R/3 Logical system.  So just make a wrapper function module with this logic.
    The cart will be returned in the table as the object ID.
    You can then use the function BBP_PD_SC_GETDETAIL to get your shopping cart details you required.
    Regards-
    b

  • SRM PO Change Details

    Hi all,
    I need to display change details in PO using smartforms in SRM.Like if i create a PO and change any item like Qty or delivery date or price of that PO those changes should be shown in PO Output. How can i do this in SRM 5.0?
    I found that BUS2201 can be used to get these details.But how to use this BUS2201.Please help me. This is an urgent issue.
    Regards
    Pavan

    I can see some internal errors in RZ20
    System: ABC
    Context: EBP Procurement Internal (050).
    Object name: Internal
    Short Name: Approval
    Status: Active
    Alert Text:  Function Module BBP_PDH_WFL_PARAM_APPLET_FILL at SWD_API_WORKFLOW_GRAPHIC_GET_X; SY-SUBRC:1
    If i can click on it
    ABC\EBP Procurement Internal(050)\...\Internal\App: No method assigned.
    Any ideas?? Any OSS notes related to this issue would be higly appreciated!!
    Krishna

  • Request for Step by step procedure to create SRM User in detail

    Hi All,
    Could you please provide Step by step procedure to create SRM User in detail.
    I have completed the following:
    1. I created SU01 User.
    2. I created Root Organistaion with PPOCA_BBP.
    3. I went into PPOMA_BBP Tr. code and added Organisation structure like Root Organisation -> Organisation for Company Code -> Organisation for Pur Org -> Organisation fro Pur Group -> Position.
    4. I got struck at assigning BusinessPartner for each organisation and creating Cntral Person
    Plase provide further steps to copmplete SRM USer creation.
    Thanks in advance,
    Regards,
    Siva

    Hi
    Are you using USERS_GEN transaction in SRM to create users ? Please read the SAP documentation in this case associated with the transaction using SRM GUI logon..
    Which option do you use in USERS_GEN : file upload ?
    In your case where the "US" (User) link is missing: is the SU01 user created ? Wasn't is already created before USERS_GEN ?
    If the system is not able to create the CP <-> US relation, you should get back an error message in USERS_GEN.
    Please go through the related very helpful pointers ->
    Central Person
    Re: Error while assigning user to a position
    Re: How to assign contact person user id to Vendor uploaded from ECC?
    Re: Central Person already exists
    Re: Correct relationships not being created from USERS_GEN
    Business Partner(BP) and Central Person(CP) distribution
    Contact person of vendors created inconsistently in my organizative structu
    Please revert in the event of any query.
    Regards
    - Atul

  • Function module for getting stock details for a given period or date range

    Hi experts,
         Any function module available for getting stock details batch, plant, storage location, and period wise. <<removed_by_moderator>>
    Thanks in advance
    M Prasanna
    Edited by: Vijay Babu Dudla on Apr 28, 2009 7:23 AM

    Hi,
    Try with this FM:
    BAPI_MATERIAL_AVAILABILITY .
    Go through this link for more details:
    ABAP Development
    by
    Prasad gvk.

  • How can I get a detail block to requery after a database change?

    Hi, I have a master/detail form. When the status of the master record changes, I need to update a date in one of the detail records. If I use SQL to update the detail row in the database in the ON-CHANGE trigger of the master block, how can I get the detail block to requery to show the change? When I try doing a go_block from any of the ...UPDATE triggers, it says it is restricted.

    wjpenfold,
    Do you have a "Relationship" defined between your Master and Detail blocks? If so, you simply need to requery your master block and the detail block will automatically be requeried. If you can't use a relationship, then you can use can create a timer in the trigger that updates the database and then in the When-Timer-Expired (WTE) trigger you can go to the detail block and execute a query. For example:
    /* Sample On-Change trigger */
    DECLARE
       timer_id  TIMER;
    BEGIN
    ....your code here that performs the update....
       /* Now create an instance of a timer */
       timer_id := Create_Timer ('upd_detail',1,NO_REPEAT);
    END;
    /* Sample Form Level When-Timer-Expired trigger */
    DECLARE
       timer_id   TIMER;
    BEGIN
       -- Find the timer first
       timer_id := FIND_TIMER('upd_detail');
       IF NOT ID_NULL(timer_id) THEN
          GO_BLOCK('DETAIL_BLOCK');
          Execute_Query;
       END IF;
    END;Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Is there a way to get the details for each hit in the portal database WCR_WEBCONTENTSTAT?

    Hi,
    I need to get the details for each user hit.
    Apparently, this table has the IMPRESSIONS column which returns the total number of hitcounts and VISITS which counts the number of unique user who accesses the portal. What I am trying to look for is to get all the details per hitcount. I need to find out how many time a specific user accessed a specific page or iview.
    I also used the table WCR_USERPAGEUSAGE, which I get the information of the users counted in the VISITS column in the first table.
    I could not get the specific user per hit.
    Please enlighten me if this is possible and how to do this?
    Thanks!

    Hi Catherine,
    Why not use the portal activity report iView?
    In the portal activity report iView the 3rd option allows you to choose a page for example and see
    the user who accessed it and how many times.
    Thanks and BR,
    Saar

  • Getting Window details in Cocoa

    Hi,
    I'm a student and newbie to Cocoa. I was trying to learn by practicing more programming when I became curious of the Grab tool. In the Grab tool, we can take a snap of the contents of the window when we click on it. I'm trying to do similar to that. I want to get the details of the window I clicked, its owner, the view, etc.
    I tried using the NSResponder, 'mouseDown:' class which didn't work. I'm not sure whether it can be used on a 'NSObject' classes.
    I tried using the NSDistributionNotificationCenter. I could get some events only when I give the 'name:' as 'nil'. Even in this case, I'm notified when I click on Menus... not on the windows.
    I don't know where I'm going wrong or how to go about it....
    I would greatly appreciate if anyone could provide me any pointers for this issue...
    Thanking you in advance
    Sakthi

    Hi abapuser
                       as of now, i need all details pertaining to leave and travel requests, (creation, approval, rejection & withdrawn).

  • Getting the Details from a HTTP Request using C#

    Hi,
    Suppose, a user submits a form with some details as Address, Phone Number etc.. to a Web Application. On the client side, I need to have a proxy to intercept this http request message being sent to the Server and get the details in it like Phone number and
    Address in this case and display them to user in a pop up box for confirming and if he clicks YES, then only I should forward the request to Web Server/Web Application. 
    If the user feels that the information shown to him is not correct he can Click NO and the request will not be sent to the Server. Anyone know how to use this in DOTNET WEB APPLICATIONS?
    I need to write code for the Proxy Part, I am not sure how to handle HTTP messages and from where to start with. Any help would be of great help.
    Thanks
    K.V.N.PAVAN

    http://forums.asp.net/
    Yu have many sections to choose from concerning Web based solutions.

  • Error on tracking a self registration request : Failed to get request details. Please verify the request ID.

    Hey Everyone,
    Can someone please help me with this issue faced.
    I have a 11G r1 FMW setup in which i am trying to create a new self registration request.
    Requests gets submitted properly and i am even able to approve this from the task lists of xelsysadm but i am not able to track this request from the Track request option available on the login page.
    Error on clicking the request id from the registration page : Failed to get request details. Please verify the request ID.
    Error in logs.
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4583)
            at com.collaxa.cube.engine.CubeEngine._callbackPerformer(CubeEngine.java:1411)
            at com.collaxa.cube.engine.CubeEngineSecurityManager$3.run(CubeEngineSecurityManager.java:116)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.internal.jaas.AccActionExecutor.execute(AccActionExecutor.java:74)
            at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242)
            at oracle.security.jps.internal.jaas.CascadeActionExecutor$SubjectPrivilegedExceptionAction.run(CascadeActionExecutor.java:83)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at weblogic.security.Security.runAs(Security.java:61)
            at oracle.security.jps.wls.jaas.WlsActionExecutor.execute(WlsActionExecutor.java:51)
            at oracle.security.jps.internal.jaas.CascadeActionExecutor.execute(CascadeActionExecutor.java:56)
            at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242)
            at com.collaxa.cube.engine.CubeEngineSecurityManager.performActionAsSubject(CubeEngineSecurityManager.java:79)
            at com.collaxa.cube.engine.CubeEngine.callbackPerformer(CubeEngine.java:1330)
            at com.collaxa.cube.engine.delivery.DeliveryHelper.callbackPerformer(DeliveryHelper.java:396)
            at com.collaxa.cube.engine.delivery.DeliveryService.handleCallback(DeliveryService.java:812)
            at com.collaxa.cube.engine.delivery.DeliveryService.handleCallback(DeliveryService.java:722)
            at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleCallback(CubeDeliveryBean.java:359)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at com.oracle.pitchfork.intercept.MethodInvocationInvocationContext.proceed(MethodInvocationInvocationContext.java:103)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor$1.run(JpsAbsInterceptor.java:113)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor.runJaasMode(JpsAbsInterceptor.java:100)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor.intercept(JpsAbsInterceptor.java:154)
            at oracle.security.jps.ee.ejb.JpsInterceptor.intercept(JpsInterceptor.java:113)
            at sun.reflect.GeneratedMethodAccessor1566.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
            at com.oracle.pitchfork.intercept.JeeInterceptorInterceptor.invoke(JeeInterceptorInterceptor.java:68)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
            at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
            at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at com.sun.proxy.$Proxy340.handleCallback(Unknown Source)
            at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.__WL_invoke(Unknown Source)
            at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:39)
            at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.handleCallback(Unknown Source)
            at com.collaxa.cube.engine.dispatch.message.instance.CallbackDeliveryMessageHandler.handle(CallbackDeliveryMessageHandler.java:45)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:141)
            at com.collaxa.cube.engine.dispatch.BaseDispatchTask.process(BaseDispatchTask.java:89)
            at com.collaxa.cube.engine.dispatch.BaseDispatchTask.run(BaseDispatchTask.java:65)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)
            at com.collaxa.cube.engine.dispatch.Dispatcher$ContextCapturingThreadFactory$2.run(Dispatcher.java:933)
            at java.lang.Thread.run(Thread.java:682)
    Caused By: java.net.MalformedURLException: no protocol: @oimFrontEndURL/workflowservice/CallbackService
            at java.net.URL.<init>(URL.java:567)
            at java.net.URL.<init>(URL.java:464)
            at java.net.URL.<init>(URL.java:413)
            at oracle.wsm.security.identity.WSMIdentityReaderValidator.getHostname(WSMIdentityReaderValidator.java:200)
            at oracle.wsm.security.identity.WSMIdentityReaderValidator.getIdentity(WSMIdentityReaderValidator.java:149)
            at oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor.fetchIdentity(SecurityScenarioExecutor.java:488)
            at oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor.initialize(SecurityScenarioExecutor.java:455)
            at oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor.init(SecurityScenarioExecutor.java:347)
            at oracle.wsm.security.policy.scenario.executor.Wss11SamlWithCertsScenarioExecutor.init(Wss11SamlWithCertsScenarioExecutor.java:76)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.populateAssertionExecutors(WSPolicyRuntimeExecutor.java:259)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.populateAssertionExecutors(WSPolicyRuntimeExecutor.java:282)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.init(WSPolicyRuntimeExecutor.java:165)
            at oracle.wsm.policyengine.impl.PolicyExecutionEngine.getPolicyExecutor(PolicyExecutionEngine.java:137)
            at oracle.wsm.policyengine.impl.PolicyExecutionEngine.execute(PolicyExecutionEngine.java:101)
            at oracle.wsm.agent.WSMAgent.processCommon(WSMAgent.java:1059)
            at oracle.wsm.agent.WSMAgent.processRequest(WSMAgent.java:489)
            at oracle.fabric.common.BindingSecurityInterceptor.processRequest(BindingSecurityInterceptor.java:94)
            at oracle.integration.platform.common.InterceptorChainImpl$1.run(InterceptorChainImpl.java:211)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAsPrivileged(Subject.java:515)
            at oracle.integration.platform.common.InterceptorChainImpl.processRequestAsSubject(InterceptorChainImpl.java:209)
            at oracle.integration.platform.common.InterceptorChainImpl.processRequest(InterceptorChainImpl.java:126)
            at oracle.integration.platform.common.mgmt.InterceptorChainManager.processRequest(InterceptorChainManager.java:276)
            at oracle.j2ee.ws.client.mgmt.runtime.SuperClientInterceptorPipeline.handleRequest(SuperClientInterceptorPipeline.java:96)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:625)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:603)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:819)
            at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:235)
            at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:106)
            at oracle.integration.platform.blocks.soap.AbstractWebServiceBindingComponent.dispatchRequest(AbstractWebServiceBindingComponent.java:563)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.processOutboundMessage(WebServiceExternalBindingComponent.java:287)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.sendSOAPMessage(WebServiceExternalBindingComponent.java:1191)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.request(WebServiceExternalBindingComponent.java:785)
            at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
            at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:182)
            at oracle.integration.platform.blocks.mesh.MeshImpl$2.run(MeshImpl.java:217)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAs(Subject.java:394)
            at oracle.integration.platform.blocks.mesh.MeshImpl.doRequestAsSubject(MeshImpl.java:215)
            at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:187)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at com.sun.proxy.$Proxy358.request(Unknown Source)
            at oracle.fabric.CubeServiceEngine.requestToMesh(CubeServiceEngine.java:858)
            at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:267)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.__invoke(InvokeHandler.java:1099)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.handleNormalInvoke(InvokeHandler.java:594)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.handle(InvokeHandler.java:132)
            at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:74)
            at com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform(BaseBPELActivityWMP.java:173)
            at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:2718)
            at com.collaxa.cube.engine.CubeEngine._handleWorkItem(CubeEngine.java:1197)
            at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1100)
            at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:76)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:251)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:330)
            at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4652)
            at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4583)
            at com.collaxa.cube.engine.CubeEngine._callbackPerformer(CubeEngine.java:1411)
            at com.collaxa.cube.engine.CubeEngineSecurityManager$3.run(CubeEngineSecurityManager.java:116)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.internal.jaas.AccActionExecutor.execute(AccActionExecutor.java:74)
            at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242)
            at oracle.security.jps.internal.jaas.CascadeActionExecutor$SubjectPrivilegedExceptionAction.run(CascadeActionExecutor.java:83)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at weblogic.security.Security.runAs(Security.java:61)
            at oracle.security.jps.wls.jaas.WlsActionExecutor.execute(WlsActionExecutor.java:51)
            at oracle.security.jps.internal.jaas.CascadeActionExecutor.execute(CascadeActionExecutor.java:56)
            at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242)
            at com.collaxa.cube.engine.CubeEngineSecurityManager.performActionAsSubject(CubeEngineSecurityManager.java:79)
            at com.collaxa.cube.engine.CubeEngine.callbackPerformer(CubeEngine.java:1330)
            at com.collaxa.cube.engine.delivery.DeliveryHelper.callbackPerformer(DeliveryHelper.java:396)
            at com.collaxa.cube.engine.delivery.DeliveryService.handleCallback(DeliveryService.java:812)
            at com.collaxa.cube.engine.delivery.DeliveryService.handleCallback(DeliveryService.java:722)
            at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleCallback(CubeDeliveryBean.java:359)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at com.oracle.pitchfork.intercept.MethodInvocationInvocationContext.proceed(MethodInvocationInvocationContext.java:103)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor$1.run(JpsAbsInterceptor.java:113)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor.runJaasMode(JpsAbsInterceptor.java:100)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor.intercept(JpsAbsInterceptor.java:154)
            at oracle.security.jps.ee.ejb.JpsInterceptor.intercept(JpsInterceptor.java:113)
            at sun.reflect.GeneratedMethodAccessor1566.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
            at com.oracle.pitchfork.intercept.JeeInterceptorInterceptor.invoke(JeeInterceptorInterceptor.java:68)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
            at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
            at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at com.sun.proxy.$Proxy340.handleCallback(Unknown Source)
            at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.__WL_invoke(Unknown Source)
            at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:39)
            at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.handleCallback(Unknown Source)
            at com.collaxa.cube.engine.dispatch.message.instance.CallbackDeliveryMessageHandler.handle(CallbackDeliveryMessageHandler.java:45)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:141)
            at com.collaxa.cube.engine.dispatch.BaseDispatchTask.process(BaseDispatchTask.java:89)
            at com.collaxa.cube.engine.dispatch.BaseDispatchTask.run(BaseDispatchTask.java:65)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)
            at com.collaxa.cube.engine.dispatch.Dispatcher$ContextCapturingThreadFactory$2.run(Dispatcher.java:933)
            at java.lang.Thread.run(Thread.java:682)
    >
    <Apr 7, 2015 5:37:09 PM AST> <Warning> <oracle.integration.platform.blocks.soap> <BEA-000000> <Unable to invoke endpoint URI "@oimFrontEndURL/workflowservice/CallbackService" successfully due to: Unable to invoke endpoint URI "@oimFrontEndURL/workflowservice/CallbackService" successfully due to: oracle.fabric.common.PolicyEnforcementException: no protocol: @oimFrontEndURL/workflowservice/CallbackService>
    <Apr 7, 2015 5:37:09 PM AST> <Error> <oracle.soa.bpel.engine.ws> <BEA-000000> <got FabricInvocationException
    java.net.MalformedURLException: no protocol: @oimFrontEndURL/workflowservice/CallbackService
            at java.net.URL.<init>(URL.java:567)
            at java.net.URL.<init>(URL.java:464)
            at java.net.URL.<init>(URL.java:413)
            at oracle.wsm.security.identity.WSMIdentityReaderValidator.getHostname(WSMIdentityReaderValidator.java:200)
            at oracle.wsm.security.identity.WSMIdentityReaderValidator.getIdentity(WSMIdentityReaderValidator.java:149)
            at oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor.fetchIdentity(SecurityScenarioExecutor.java:488)
            at oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor.initialize(SecurityScenarioExecutor.java:455)
            at oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor.init(SecurityScenarioExecutor.java:347)
            at oracle.wsm.security.policy.scenario.executor.Wss11SamlWithCertsScenarioExecutor.init(Wss11SamlWithCertsScenarioExecutor.java:76)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.populateAssertionExecutors(WSPolicyRuntimeExecutor.java:259)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.populateAssertionExecutors(WSPolicyRuntimeExecutor.java:282)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.init(WSPolicyRuntimeExecutor.java:165)
            at oracle.wsm.policyengine.impl.PolicyExecutionEngine.getPolicyExecutor(PolicyExecutionEngine.java:137)
            at oracle.wsm.policyengine.impl.PolicyExecutionEngine.execute(PolicyExecutionEngine.java:101)
            at oracle.wsm.agent.WSMAgent.processCommon(WSMAgent.java:1059)
            at oracle.wsm.agent.WSMAgent.processRequest(WSMAgent.java:489)
            at oracle.fabric.common.BindingSecurityInterceptor.processRequest(BindingSecurityInterceptor.java:94)
            at oracle.integration.platform.common.InterceptorChainImpl$1.run(InterceptorChainImpl.java:211)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAsPrivileged(Subject.java:515)
            at oracle.integration.platform.common.InterceptorChainImpl.processRequestAsSubject(InterceptorChainImpl.java:209)
            at oracle.integration.platform.common.InterceptorChainImpl.processRequest(InterceptorChainImpl.java:126)
            at oracle.integration.platform.common.mgmt.InterceptorChainManager.processRequest(InterceptorChainManager.java:276)
            at oracle.j2ee.ws.client.mgmt.runtime.SuperClientInterceptorPipeline.handleRequest(SuperClientInterceptorPipeline.java:96)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:625)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:603)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:819)
            at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:235)
            at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:106)
            at oracle.integration.platform.blocks.soap.AbstractWebServiceBindingComponent.dispatchRequest(AbstractWebServiceBindingComponent.java:563)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.processOutboundMessage(WebServiceExternalBindingComponent.java:287)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.sendSOAPMessage(WebServiceExternalBindingComponent.java:1191)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.request(WebServiceExternalBindingComponent.java:785)
            at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
            at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:182)
            at oracle.integration.platform.blocks.mesh.MeshImpl$2.run(MeshImpl.java:217)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAs(Subject.java:394)
            at oracle.integration.platform.blocks.mesh.MeshImpl.doRequestAsSubject(MeshImpl.java:215)
            at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:187)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at com.sun.proxy.$Proxy358.request(Unknown Source)
            at oracle.fabric.CubeServiceEngine.requestToMesh(CubeServiceEngine.java:858)
            at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:267)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.__invoke(InvokeHandler.java:1099)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.handleNormalInvoke(InvokeHandler.java:594)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.handle(InvokeHandler.java:132)
            at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:74)
            at com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform(BaseBPELActivityWMP.java:173)
            at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:2718)
            at com.collaxa.cube.engine.CubeEngine._handleWorkItem(CubeEngine.java:1197)
            at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1100)
            at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:76)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:251)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:330)
            at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4652)
            at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4583)
            at com.collaxa.cube.engine.CubeEngine._callbackPerformer(CubeEngine.java:1411)
            at com.collaxa.cube.engine.CubeEngineSecurityManager$3.run(CubeEngineSecurityManager.java:116)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.internal.jaas.AccActionExecutor.execute(AccActionExecutor.java:74)
            at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242)
            at oracle.security.jps.internal.jaas.CascadeActionExecutor$SubjectPrivilegedExceptionAction.run(CascadeActionExecutor.java:83)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at weblogic.security.Security.runAs(Security.java:61)
            at oracle.security.jps.wls.jaas.WlsActionExecutor.execute(WlsActionExecutor.java:51)
            at oracle.security.jps.internal.jaas.CascadeActionExecutor.execute(CascadeActionExecutor.java:56)
            at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242)
            at com.collaxa.cube.engine.CubeEngineSecurityManager.performActionAsSubject(CubeEngineSecurityManager.java:79)
            at com.collaxa.cube.engine.CubeEngine.callbackPerformer(CubeEngine.java:1330)
            at com.collaxa.cube.engine.delivery.DeliveryHelper.callbackPerformer(DeliveryHelper.java:396)
            at com.collaxa.cube.engine.delivery.DeliveryService.handleCallback(DeliveryService.java:812)
            at com.collaxa.cube.engine.delivery.DeliveryService.handleCallback(DeliveryService.java:722)
            at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleCallback(CubeDeliveryBean.java:359)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at com.oracle.pitchfork.intercept.MethodInvocationInvocationContext.proceed(MethodInvocationInvocationContext.java:103)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor$1.run(JpsAbsInterceptor.java:113)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor.runJaasMode(JpsAbsInterceptor.java:100)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor.intercept(JpsAbsInterceptor.java:154)
            at oracle.security.jps.ee.ejb.JpsInterceptor.intercept(JpsInterceptor.java:113)
            at sun.reflect.GeneratedMethodAccessor1566.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
            at com.oracle.pitchfork.intercept.JeeInterceptorInterceptor.invoke(JeeInterceptorInterceptor.java:68)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
            at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
            at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at com.sun.proxy.$Proxy340.handleCallback(Unknown Source)
            at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.__WL_invoke(Unknown Source)
            at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:39)
            at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.handleCallback(Unknown Source)
            at com.collaxa.cube.engine.dispatch.message.instance.CallbackDeliveryMessageHandler.handle(CallbackDeliveryMessageHandler.java:45)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:141)
            at com.collaxa.cube.engine.dispatch.BaseDispatchTask.process(BaseDispatchTask.java:89)
            at com.collaxa.cube.engine.dispatch.BaseDispatchTask.run(BaseDispatchTask.java:65)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)
            at com.collaxa.cube.engine.dispatch.Dispatcher$ContextCapturingThreadFactory$2.run(Dispatcher.java:933)
            at java.lang.Thread.run(Thread.java:682)
    >
    <Apr 7, 2015 5:37:09 PM AST> <Error> <oracle.wsm.resources.enforcement> <WSM-07501> <Failure in Oracle WSM Agent processRequest, category=security, function=agent.function.client, application=default, composite=DefaultRequestApproval, modelObj=CallbackService_2, policy=null, policyVersion=null, assertionName=null.
    oracle.wsm.common.sdk.WSMException: no protocol: @oimFrontEndURL/workflowservice/CallbackService
            at oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor.initialize(SecurityScenarioExecutor.java:476)
            at oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor.init(SecurityScenarioExecutor.java:347)
            at oracle.wsm.security.policy.scenario.executor.Wss11SamlWithCertsScenarioExecutor.init(Wss11SamlWithCertsScenarioExecutor.java:76)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.populateAssertionExecutors(WSPolicyRuntimeExecutor.java:259)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.populateAssertionExecutors(WSPolicyRuntimeExecutor.java:282)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.init(WSPolicyRuntimeExecutor.java:165)
            at oracle.wsm.policyengine.impl.PolicyExecutionEngine.getPolicyExecutor(PolicyExecutionEngine.java:137)
            at oracle.wsm.policyengine.impl.PolicyExecutionEngine.execute(PolicyExecutionEngine.java:101)
            at oracle.wsm.agent.WSMAgent.processCommon(WSMAgent.java:1059)
            at oracle.wsm.agent.WSMAgent.processRequest(WSMAgent.java:489)
            at oracle.fabric.common.BindingSecurityInterceptor.processRequest(BindingSecurityInterceptor.java:94)
            at oracle.integration.platform.common.InterceptorChainImpl$1.run(InterceptorChainImpl.java:211)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAsPrivileged(Subject.java:515)
            at oracle.integration.platform.common.InterceptorChainImpl.processRequestAsSubject(InterceptorChainImpl.java:209)
            at oracle.integration.platform.common.InterceptorChainImpl.processRequest(InterceptorChainImpl.java:126)
            at oracle.integration.platform.common.mgmt.InterceptorChainManager.processRequest(InterceptorChainManager.java:276)
            at oracle.j2ee.ws.client.mgmt.runtime.SuperClientInterceptorPipeline.handleRequest(SuperClientInterceptorPipeline.java:96)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:625)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:603)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:819)
            at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:235)
            at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:106)
            at oracle.integration.platform.blocks.soap.AbstractWebServiceBindingComponent.dispatchRequest(AbstractWebServiceBindingComponent.java:563)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.processOutboundMessage(WebServiceExternalBindingComponent.java:287)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.sendSOAPMessage(WebServiceExternalBindingComponent.java:1191)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.request(WebServiceExternalBindingComponent.java:785)
            at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
            at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:182)
            at oracle.integration.platform.blocks.mesh.MeshImpl$2.run(MeshImpl.java:217)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAs(Subject.java:394)
            at oracle.integration.platform.blocks.mesh.MeshImpl.doRequestAsSubject(MeshImpl.java:215)
            at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:187)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at com.sun.proxy.$Proxy358.request(Unknown Source)
            at oracle.fabric.CubeServiceEngine.requestToMesh(CubeServiceEngine.java:858)
            at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:267)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.__invoke(InvokeHandler.java:1099)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.handleNormalInvoke(InvokeHandler.java:594)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.handle(InvokeHandler.java:132)
            at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:74)
            at com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform(BaseBPELActivityWMP.java:173)
            at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:2718)
            at com.collaxa.cube.engine.CubeEngine._handleWorkItem(CubeEngine.java:1197)
            at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1100)
            at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:76)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:251)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:330)
            at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4652)
            at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4583)
            at com.collaxa.cube.engine.CubeEngine._callbackPerformer(CubeEngine.java:1411)
            at com.collaxa.cube.engine.CubeEngineSecurityManager$3.run(CubeEngineSecurityManager.java:116)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.internal.jaas.AccActionExecutor.execute(AccActionExecutor.java:74)
            at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242)
            at oracle.security.jps.internal.jaas.CascadeActionExecutor$SubjectPrivilegedExceptionAction.run(CascadeActionExecutor.java:83)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at weblogic.security.Security.runAs(Security.java:61)
            at oracle.security.jps.wls.jaas.WlsActionExecutor.execute(WlsActionExecutor.java:51)
            at oracle.security.jps.internal.jaas.CascadeActionExecutor.execute(CascadeActionExecutor.java:56)
            at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242)
            at com.collaxa.cube.engine.CubeEngineSecurityManager.performActionAsSubject(CubeEngineSecurityManager.java:79)
            at com.collaxa.cube.engine.CubeEngine.callbackPerformer(CubeEngine.java:1330)
            at com.collaxa.cube.engine.delivery.DeliveryHelper.callbackPerformer(DeliveryHelper.java:396)
            at com.collaxa.cube.engine.delivery.DeliveryService.handleCallback(DeliveryService.java:812)
            at com.collaxa.cube.engine.delivery.DeliveryService.handleCallback(DeliveryService.java:722)
            at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleCallback(CubeDeliveryBean.java:359)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at com.oracle.pitchfork.intercept.MethodInvocationInvocationContext.proceed(MethodInvocationInvocationContext.java:103)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor$1.run(JpsAbsInterceptor.java:113)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor.runJaasMode(JpsAbsInterceptor.java:100)
            at oracle.security.jps.ee.ejb.JpsAbsInterceptor.intercept(JpsAbsInterceptor.java:154)
            at oracle.security.jps.ee.ejb.JpsInterceptor.intercept(JpsInterceptor.java:113)
            at sun.reflect.GeneratedMethodAccessor1566.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
            at com.oracle.pitchfork.intercept.JeeInterceptorInterceptor.invoke(JeeInterceptorInterceptor.java:68)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
            at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
            at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
            at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
            at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at com.sun.proxy.$Proxy340.handleCallback(Unknown Source)
            at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.__WL_invoke(Unknown Source)
            at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:39)
            at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.handleCallback(Unknown Source)
            at com.collaxa.cube.engine.dispatch.message.instance.CallbackDeliveryMessageHandler.handle(CallbackDeliveryMessageHandler.java:45)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:141)
            at com.collaxa.cube.engine.dispatch.BaseDispatchTask.process(BaseDispatchTask.java:89)
            at com.collaxa.cube.engine.dispatch.BaseDispatchTask.run(BaseDispatchTask.java:65)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)
            at com.collaxa.cube.engine.dispatch.Dispatcher$ContextCapturingThreadFactory$2.run(Dispatcher.java:933)
            at java.lang.Thread.run(Thread.java:682)
    Caused By: oracle.wsm.security.SecurityException: no protocol: @oimFrontEndURL/workflowservice/CallbackService
            at oracle.wsm.security.identity.WSMIdentityReaderValidator.getHostname(WSMIdentityReaderValidator.java:206)
            at oracle.wsm.security.identity.WSMIdentityReaderValidator.getIdentity(WSMIdentityReaderValidator.java:149)
            at oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor.fetchIdentity(SecurityScenarioExecutor.java:488)
            at oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor.initialize(SecurityScenarioExecutor.java:455)
            at oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor.init(SecurityScenarioExecutor.java:347)
            at oracle.wsm.security.policy.scenario.executor.Wss11SamlWithCertsScenarioExecutor.init(Wss11SamlWithCertsScenarioExecutor.java:76)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.populateAssertionExecutors(WSPolicyRuntimeExecutor.java:259)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.populateAssertionExecutors(WSPolicyRuntimeExecutor.java:282)
            at oracle.wsm.policyengine.impl.runtime.WSPolicyRuntimeExecutor.init(WSPolicyRuntimeExecutor.java:165)
            at oracle.wsm.policyengine.impl.PolicyExecutionEngine.getPolicyExecutor(PolicyExecutionEngine.java:137)
            at oracle.wsm.policyengine.impl.PolicyExecutionEngine.execute(PolicyExecutionEngine.java:101)
            at oracle.wsm.agent.WSMAgent.processCommon(WSMAgent.java:1059)
            at oracle.wsm.agent.WSMAgent.processRequest(WSMAgent.java:489)
            at oracle.fabric.common.BindingSecurityInterceptor.processRequest(BindingSecurityInterceptor.java:94)
            at oracle.integration.platform.common.InterceptorChainImpl$1.run(InterceptorChainImpl.java:211)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAsPrivileged(Subject.java:515)
            at oracle.integration.platform.common.InterceptorChainImpl.processRequestAsSubject(InterceptorChainImpl.java:209)
            at oracle.integration.platform.common.InterceptorChainImpl.processRequest(InterceptorChainImpl.java:126)
            at oracle.integration.platform.common.mgmt.InterceptorChainManager.processRequest(InterceptorChainManager.java:276)
            at oracle.j2ee.ws.client.mgmt.runtime.SuperClientInterceptorPipeline.handleRequest(SuperClientInterceptorPipeline.java:96)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:625)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:603)
            at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:819)
            at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:235)
            at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:106)
            at oracle.integration.platform.blocks.soap.AbstractWebServiceBindingComponent.dispatchRequest(AbstractWebServiceBindingComponent.java:563)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.processOutboundMessage(WebServiceExternalBindingComponent.java:287)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.sendSOAPMessage(WebServiceExternalBindingComponent.java:1191)
            at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.request(WebServiceExternalBindingComponent.java:785)
            at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
            at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:182)
            at oracle.integration.platform.blocks.mesh.MeshImpl$2.run(MeshImpl.java:217)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAs(Subject.java:394)
            at oracle.integration.platform.blocks.mesh.MeshImpl.doRequestAsSubject(MeshImpl.java:215)
            at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:187)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at com.sun.proxy.$Proxy358.request(Unknown Source)
            at oracle.fabric.CubeServiceEngine.requestToMesh(CubeServiceEngine.java:858)
            at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:267)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.__invoke(InvokeHandler.java:1099)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.handleNormalInvoke(InvokeHandler.java:594)
            at com.collaxa.cube.engine.ext.common.InvokeHandler.handle(InvokeHandler.java:132)
            at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:74)
            at com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform(BaseBPELActivityWMP.java:173)
            at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:2718)
            at com.collaxa.cube.engine.CubeEngine._handleWorkItem(CubeEngine.java:1197)
            at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1100)
            at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:76)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:251)
            at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:330)
            at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4652)
            at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4583)
            at com.collaxa.cube.engine.CubeEngine._callbackPerformer(CubeEngine.java:1411)
            at com.collaxa.cube.engine.CubeEngineSecurityManager$3.run(CubeEngineSecurityManager.java:116)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.internal.jaas.AccActionExecutor.execute(AccActionExecutor.java:74)
            at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242)
            at oracle.security.jps.internal.jaas.CascadeActionExecutor$SubjectPrivilegedExceptionAction.run(CascadeActionExecutor.java:83)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
            at weblogic.security.Security.runAs(Security.java:61)
            at oracle.security.jps.wls.jaas.WlsActionExecutor.execute(WlsActionExecutor.java:51)
            at oracle.security.jps.internal.jaas.CascadeActionExecutor.execute(CascadeActionExecutor.java:56)
            at oracle.security.jps.internal.jaas.AbstractSubjectSecurity$ActionExecutorWrapper.execute(AbstractSubjectSecurity.java:242)
            at com.collaxa.cube.engine.CubeEngineSecurityManager.performActionAsSubject(CubeEngineSecurityManager.java:79)
            at com.collaxa.cube.engine.CubeEngine.callbackPerformer(CubeEngine.java:1330)
            at com.collaxa.cube.engine.delivery.DeliveryHelper.callbackPerformer(DeliveryHelper.java:396)
            at com.collaxa.cube.engine.delivery.DeliveryService.handleCallback(DeliveryService.java:812)
            at com.collaxa.cube.engine.delivery.DeliveryService.handleCallback(DeliveryService.java:722)
            at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleCallback(CubeDeliveryBean.java:359)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMeth

    Hi Philipp,
    Here is the screen shot after clicking on the approval process.
    and below is the payload information in it.
    <messages>
    <initiateTaskInput>
    <part  name="payload">
    <initiateTask>
    <task>
    <payload>
    <RequestID>65</RequestID>  
    <RequestModel>Self-Register User</RequestModel>
    <RequestTarget/>
    <url>http://suvwcs.mmaa.gov.qa:12000/workflowservice/CallbackService</url>
    <RequesterDetails>
    <Login/>  
    <DisplayName/>
    </RequesterDetails>
    <BeneficiaryDetails>
    <DisplayName>None</DisplayName>  
    </BeneficiaryDetails>
    <ObjectDetails>
    <attributes/>  
    </ObjectDetails>
    <OtherDetails/>
    <RequesterDisplayName/>
    <BeneficiaryDisplayName>None</BeneficiaryDisplayName>
    <Requester/>
    </payload>
    <creator/>
    <priority>3</priority>
    <identificationKey>65</identificationKey>
    </task>
    </initiateTask>
    </part>
    </initiateTaskInput>
    <initiateTaskResponseMessage>
    <part  name="payload">
    <initiateTaskResponse>
    <workflowContext>
    <credential>
    <login>xelsysadm</login>  
    <identityContext>jazn.com</identityContext>
    </credential>
    <token>cfa1a87b-dc18-4f1a-b738-e60946c6802f;;tX7BQ9MC2NHec20RGwzAjiCF6c0O/nTe6hPA8yMA/K24ih8nXajK37AyzDEItoIGJU/Ez/6LqaHWVLosIU+NivB5nPD9/5z1bT7q5JujxH0FZlYnyzpLu6wuR7rbQEyuIgi7lRFuMSO2aW9/oAPw+YbEBCOpUAbzQtAhg2Ngc9KLnCe4acrDUgutanN8qv5V26tVM6OX7bDBRg/LNSAC/rAf1UlOXmmdK5hnF23fzEEj8Y9gNj+CmZ4vpAkKKjcs5ACkFtPWuJ5tpo7enDdrI0fetHKCoJTasygwMX9HS3A=</token>
    <locale>en_US#en_US</locale>
    <timeZone>Asia/Qatar</timeZone>
    </workflowContext>
    <task>
    <title>Default request level approval for Request ID 65</title>  
    <payload>
    <RequestID>65</RequestID>  
    <RequestModel>Self-Register User</RequestModel>
    <RequestTarget/>
    <url>http://suvwcs.mmaa.gov.qa:12000/workflowservice/CallbackService</url>
    <RequesterDetails>
    <Login/>  
    <DisplayName/>
    </RequesterDetails>
    <BeneficiaryDetails>
    <DisplayName>None</DisplayName>  
    </BeneficiaryDetails>
    <ObjectDetails>
    <attributes/>  
    </ObjectDetails>
    <OtherDetails/>
    <RequesterDisplayName/>
    <BeneficiaryDisplayName>None</BeneficiaryDisplayName>
    <Requester/>
    </payload>
    <taskDefinitionURI>default/DefaultRequestApproval!1.0/ApprovalTask</taskDefinitionURI>
    <creator/>
    <ownerUser>xelsysadm</ownerUser>
    <priority>3</priority>
    <identityContext>jazn.com</identityContext>
    <processInfo/>
    <systemAttributes>
    <approvalDuration>0</approvalDuration>  
    <assignedDate>2015-04-08T17:07:49.9+03:00</assignedDate>
    <assigneeUsers>
    <id>xelsysadm</id>  
    <displayName>xelsysadm</displayName>
    <type>user</type>
    </assigneeUsers>
    <createdDate>2015-04-08T17:07:49+03:00</createdDate>
    <digitalSignatureRequired>false</digitalSignatureRequired>
    <fromUser>
    <type>user</type>  
    </fromUser>
    <hasSubTasks>false</hasSubTasks>
    <inShortHistory>true</inShortHistory>
    <isGroup>false</isGroup>
    <numberOfTimesModified>1</numberOfTimesModified>
    <passwordRequiredOnUpdate>false</passwordRequiredOnUpdate>
    <pushbackSequence>INITIAL_ASSIGNEES;1</pushbackSequence>
    <secureNotifications>false</secureNotifications>
    <state>ASSIGNED</state>
    <taskId>8450a055-7c8d-47d9-b356-4035f3ef1947</taskId>
    <taskNumber>200012</taskNumber>
    <updatedBy>
    <id>workflowsystem</id>  
    <displayName>workflowsystem</displayName>
    <type>user</type>
    </updatedBy>
    <updatedDate>2015-04-08T17:07:49+03:00</updatedDate>
    <version>1</version>
    <versionReason>TASK_VERSION_REASON_INITIATED</versionReason>
    <taskDefinitionId>default/DefaultRequestApproval!1.0/ApprovalTask</taskDefinitionId>
    <taskDefinitionName>ApprovalTask</taskDefinitionName>
    <workflowPattern>Participant</workflowPattern>
    <participantName>Assignee1</participantName>
    <assignees>
    <id>xelsysadm</id>  
    <displayName>xelsysadm</displayName>
    <type>user</type>
    </assignees>
    <parentTaskVersion>0</parentTaskVersion>
    <rootTaskId>8450a055-7c8d-47d9-b356-4035f3ef1947</rootTaskId>
    <systemStringActions>PUSH_BACK,sharePayload</systemStringActions>
    <stage>Stage1</stage>
    <taskNamespace>http://xmlns.oracle.com/ApprovalApp/DefaultRequestApproval/ApprovalTask</taskNamespace>
    <componentType>Workflow</componentType>
    </systemAttributes>
    <systemMessageAttributes>
    <textAttribute1>65</textAttribute1>  
    <textAttribute2>Self-Register User</textAttribute2>
    <textAttribute3/>
    <textAttribute4/>
    <textAttribute5>None</textAttribute5>
    <textAttribute6/>
    </systemMessageAttributes>
    <callback>
    <id>ApprovalProcess/ApprovalTask.TaskService_1</id>  
    <converstationId>urn:A3D6D1B0DDF811E48F3A1BD42D5C690D</converstationId>
    </callback>
    <identificationKey>65</identificationKey>
    <sca>
    <applicationName>default</applicationName>  
    <componentName>ApprovalTask</componentName>
    <compositeDN>default/DefaultRequestApproval!1.0*soa_b7c6e1b5-bf45-43da-b98e-513081b60c61</compositeDN>
    <compositeInstanceId>40002</compositeInstanceId>
    <compositeName>DefaultRequestApproval</compositeName>
    <compositeVersion>1.0</compositeVersion>
    <ecId>00iSSpOAod7Fw0zsZk0FJz4eFvE0j9Izf00018G0001c3</ecId>
    <parentComponentInstanceId>bpel:40002</parentComponentInstanceId>
    <parentComponentInstanceRefId>40002-BpInv1-BpSeq2.6-2</parentComponentInstanceRefId>
    <headerProperties>rO0ABXNyABFqYXZhLnV0aWwuSGFzaE1hcAUH2sHDFmDRAwACRgAKbG9hZEZhY3RvckkACXRocmVzaG9sZHhwP0AAAAAAABh3CAAAACAAAAAHdAAnb3JhY2xlLmZhYnJpYy5zZWN1cml0eS5pZGVudGl0eS5zdWJqZWN0c3IAG2phdmF4LnNlY3VyaXR5LmF1dGguU3ViamVjdIyyMpMAM/poAwACWgAIcmVhZE9ubHlMAApwcmluY2lwYWxzdAAPTGphdmEvdXRpbC9TZXQ7eHAAc3IAJWphdmEudXRpbC5Db2xsZWN0aW9ucyRTeW5jaHJvbml6ZWRTZXQGw8J5Au7fPAIAAHhyACxqYXZhLnV0aWwuQ29sbGVjdGlvbnMkU3luY2hyb25pemVkQ29sbGVjdGlvbiph+E0JnJm1AwACTAABY3QAFkxqYXZhL3V0aWwvQ29sbGVjdGlvbjtMAAVtdXRleHQAEkxqYXZhL2xhbmcvT2JqZWN0O3hwc3IAJWphdmF4LnNlY3VyaXR5LmF1dGguU3ViamVjdCRTZWN1cmVTZXRtzDKAF1V+JwMAA0kABXdoaWNoTAAIZWxlbWVudHN0ABZMamF2YS91dGlsL0xpbmtlZExpc3Q7TAAGdGhpcyQwdAAdTGphdmF4L3NlY3VyaXR5L2F1dGgvU3ViamVjdDt4cAAAAAFzcgAUamF2YS51dGlsLkxpbmtlZExpc3QMKVNdSmCIIgMAAHhwdwQAAAANc3IAKHdlYmxvZ2ljLnNlY3VyaXR5LnByaW5jaXBhbC5XTFNHcm91cEltcGyEKTtGw0ofuQIAAHhyADB3ZWJsb2dpYy5zZWN1cml0eS5wcmluY2lwYWwuV0xTQWJzdHJhY3RQcmluY2lwYWyv/kb+QWV+/AIACFoAFWVxdWFsc0Nhc2VJbnNlbnNpdGl2ZVoAFmVxdWFsc0NvbXBhcmVEbkFuZEd1aWRaABdwcmluY2lwYWxGYWN0b3J5Q3JlYXRlZEwAAmRudAASTGphdmEvbGFuZy9TdHJpbmc7TAAEZ3VpZHEAfgATTAAEbmFtZXEAfgATWwAEc2FsdHQAAltCWwAJc2lnbmF0dXJlcQB+ABR4cAAAAXQANWNuPUFkbWluaXN0cmF0b3JzLG91PWdyb3VwcyxvdT1teXJlYWxtLGRjPUlETTdfRG9tYWludAAgNjdDMjNGOTA1MzlBMTFFNEJGMDBEQkEzMjQ0QjIxRjF0AA5BZG1pbmlzdHJhdG9yc3VyAAJbQqzzF/gGCFTgAgAAeHAAAAANMTQyODUwMjA2OTc5NnBzcgAnd2VibG9naWMuc2VjdXJpdHkucHJpbmNpcGFsLldMU1VzZXJJbXBsvg4469/XbFUCAAB4cQB+ABIAAAF0ADB1aWQ9d2VibG9naWMsb3U9cGVvcGxlLG91PW15cmVhbG0sZGM9SURNN19Eb21haW50ACA2N0M2MzczMDUzOUExMUU0QkYwMERCQTMyNDRCMjFGMXQACHdlYmxvZ2ljdXEAfgAZAAAADTE0Mjg1MDIwNjk3OTZwc3IARW9yYWNsZS5zZWN1cml0eS5qcHMuaW50ZXJuYWwuY29yZS5wcmluY2lwYWxzLkpwc0F1dGhlbnRpY2F0ZWRSb2xlSW1wbJHX+L9u5tJOAgAAeHIARW9yYWNsZS5zZWN1cml0eS5qcHMuaW50ZXJuYWwuY29yZS5wcmluY2lwYWxzLkpwc0Fic3RyYWN0UHJpbmNpcGFsSW1wbISYQolw5SikAgAGTAAFX2Rlc2NxAH4AE0wADF9kaXNwbGF5TmFtZXEAfgATTAAFX2d1aWRxAH4AE0wABV9uYW1lcQB+ABNMAApfcmVhbG1OYW1lcQB+ABNMAAtfdW5pcXVlTmFtZXEAfgATeHBwcHB0ABJhdXRoZW50aWNhdGVkLXJvbGVwcHNyADdvcmFjbGUuc2VjdXJpdHkuanBzLnNlcnZpY2UucG9saWN5c3RvcmUuQXBwbGljYXRpb25Sb2xlukpv/D1OxgwCAAtJAAlfaGFzaENvZGVMAAZfYXBwSURxAH4AE0wACF9hcHBJRExDcQB+ABNMAAVfZGVzY3EAfgATTAAMX2Rpc3BsYXlOYW1lcQB+ABNMAAVfZ3VpZHEAfgATTAAHX2d1aWRMQ3EAfgATTAAFX25hbWVxAH4AE0wAB19uYW1lTENxAH4AE0wAC191bmlxdWVOYW1lcQB+ABNMAA1fdW5pcXVlTmFtZUxDcQB+ABN4cEq/k090AAlzb2EtaW5mcmFxAH4AJ3QAZ1NPQSBhcHBsaWNhdGlvbiBhZG1pbiByb2xlLCBoYXMgZnVsbCBwcml2aWxlZ2UgZm9yIHBlcmZvcm1pbmcgYW55IG9wZXJhdGlvbnMgaW5jbHVkaW5nIHNlY3VyaXR5IHJlbGF0ZWRwdAAgNjc2QTcwQjA1MzlDMTFFNEJGMzU2NUU5MENDMzY0QzF0ACA2NzZhNzBiMDUzOWMxMWU0YmYzNTY1ZTkwY2MzNjRjMXQACFNPQUFkbWludAAIc29hYWRtaW50AFZjbj1TT0FBZG1pbixjbj1BcHBsaWNhdGlvbiBSb2xlLGNuPXNvYS1pbmZyYSxjbj1qcHNYbWxGYXJtLGNuPUpQU0NvbnRleHQsY249anBzWG1sUm9vdHQAVmNuPXNvYWFkbWluLGNuPWFwcGxpY2F0aW9uIHJvbGUsY249c29hLWluZnJhLGNuPWpwc3htbGZhcm0sY249anBzY29udGV4dCxjbj1qcHN4bWxyb290c3EAfgAl/NYnOXEAfgAncQB+ACd0AFlTT0EgYXBwbGljYXRpb24gb3BlcmF0b3IsIGZvciBjb21tb24gb3BlcmF0aW9uYWwgdGFza3MgbGlrZSBzdGFydCwgc3RvcCwgbW9uaXRvciwgYmFja3Vwc3B0ACA2NzZBOTdDMDUzOUMxMUU0QkYzNTY1RTkwQ0MzNjRDMXQAIDY3NmE5N2MwNTM5YzExZTRiZjM1NjVlOTBjYzM2NGMxdAALU09BT3BlcmF0b3J0AAtzb2FvcGVyYXRvcnQAWWNuPVNPQU9wZXJhdG9yLGNuPUFwcGxpY2F0aW9uIFJvbGUsY249c29hLWluZnJhLGNuPWpwc1htbEZhcm0sY249SlBTQ29udGV4dCxjbj1qcHNYbWxSb290dABZY249c29hb3BlcmF0b3IsY249YXBwbGljYXRpb24gcm9sZSxjbj1zb2EtaW5mcmEsY249anBzeG1sZmFybSxjbj1qcHNjb250ZXh0LGNuPWpwc3htbHJvb3RzcQB+ACXxVnVJcQB+ACdxAH4AJ3QAUFNPQSBhdWRpdCBhZG1pbmlzdHJhdG9yIHJvbGUsIGNhbiBwZXJmb3JtIGF1ZGl0IGNvbmZpZ3VyYXRvaW4gYW5kIGFkbWluaXN0cmF0aW9ucHQAIDY3NkFFNUUwNTM5QzExRTRCRjM1NjVFOTBDQzM2NEMxdAAgNjc2YWU1ZTA1MzljMTFlNGJmMzU2NWU5MGNjMzY0YzF0AA1TT0FBdWRpdEFkbWludAANc29hYXVkaXRhZG1pbnQAW2NuPVNPQUF1ZGl0QWRtaW4sY249QXBwbGljYXRpb24gUm9sZSxjbj1zb2EtaW5mcmEsY249anBzWG1sRmFybSxjbj1KUFNDb250ZXh0LGNuPWpwc1htbFJvb3R0AFtjbj1zb2FhdWRpdGFkbWluLGNuPWFwcGxpY2F0aW9uIHJvbGUsY249c29hLWluZnJhLGNuPWpwc3htbGZhcm0sY249anBzY29udGV4dCxjbj1qcHN4bWxyb290c3EAfgAlz3uuBHEAfgAncQB+ACd0ACdCUE0gV29ya2Zsb3cgQ3VzdG9taXplIEFwcGxpY2F0aW9uIFJvbGVwdAAgNjc2QjM0MDA1MzlDMTFFNEJGMzU2NUU5MENDMzY0QzF0ACA2NzZiMzQwMDUzOWMxMWU0YmYzNTY1ZTkwY2MzNjRjMXQAFEJQTVdvcmtmbG93Q3VzdG9taXpldAAUYnBtd29ya2Zsb3djdXN0b21pemV0AGJjbj1CUE1Xb3JrZmxvd0N1c3RvbWl6ZSxjbj1BcHBsaWNhdGlvbiBSb2xlLGNuPXNvYS1pbmZyYSxjbj1qcHNYbWxGYXJtLGNuPUpQU0NvbnRleHQsY249anBzWG1sUm9vdHQAYmNuPWJwbXdvcmtmbG93Y3VzdG9taXplLGNuPWFwcGxpY2F0aW9uIHJvbGUsY249c29hLWluZnJhLGNuPWpwc3htbGZhcm0sY249anBzY29udGV4dCxjbj1qcHN4bWxyb290c3EAfgAlq7weX3EAfgAncQB+ACd0AC9CUE0gT3JnYW5pemF0aW9uIEFkbWluaXN0cmF0b3IgQXBwbGljYXRpb24gUm9sZXB0ACA2NzZCODIyMDUzOUMxMUU0QkYzNTY1RTkwQ0MzNjRDMXQAIDY3NmI4MjIwNTM5YzExZTRiZjM1NjVlOTBjYzM2NGMxdAAUQlBNT3JnYW5pemF0aW9uQWRtaW50ABRicG1vcmdhbml6YXRpb25hZG1pbnQAYmNuPUJQTU9yZ2FuaXphdGlvbkFkbWluLGNuPUFwcGxpY2F0aW9uIFJvbGUsY249c29hLWluZnJhLGNuPWpwc1htbEZhcm0sY249SlBTQ29udGV4dCxjbj1qcHNYbWxSb290dABiY249YnBtb3JnYW5pemF0aW9uYWRtaW4sY249YXBwbGljYXRpb24gcm9sZSxjbj1zb2EtaW5mcmEsY249anBzeG1sZmFybSxjbj1qcHNjb250ZXh0LGNuPWpwc3htbHJvb3RzcQB+ACWMIb2JcQB+ACdxAH4AJ3QAMUJQTSBBY3Rpdml0eSBHdWlkZSBBZG1pbmlzdHJhdG9yIEFwcGxpY2F0aW9uIFJvbGVwdAAgNjc2QjVCMTA1MzlDMTFFNEJGMzU2NUU5MENDMzY0QzF0ACA2NzZiNWIxMDUzOWMxMWU0YmYzNTY1ZTkwY2MzNjRjMXQACkJQTUFHQWRtaW50AApicG1hZ2FkbWludABYY249QlBNQUdBZG1pbixjbj1BcHBsaWNhdGlvbiBSb2xlLGNuPXNvYS1pbmZyYSxjbj1qcHNYbWxGYXJtLGNuPUpQU0NvbnRleHQsY249anBzWG1sUm9vdHQAWGNuPWJwbWFnYWRtaW4sY249YXBwbGljYXRpb24gcm9sZSxjbj1zb2EtaW5mcmEsY249anBzeG1sZmFybSxjbj1qcHNjb250ZXh0LGNuPWpwc3htbHJvb3RzcQB+ACUUjtXRcQB+ACdxAH4AJ3QAK0JQTSBXb3JrZmxvdyBBZG1pbmlzdHJhdG9yIEFwcGxpY2F0aW9uIFJvbGVwdAAgNjc2QjBDRjE1MzlDMTFFNEJGMzU2NUU5MENDMzY0QzF0ACA2NzZiMGNmMTUzOWMxMWU0YmYzNTY1ZTkwY2MzNjRjMXQAEEJQTVdvcmtmbG93QWRtaW50ABBicG13b3JrZmxvd2FkbWludABeY249QlBNV29ya2Zsb3dBZG1pbixjbj1BcHBsaWNhdGlvbiBSb2xlLGNuPXNvYS1pbmZyYSxjbj1qcHNYbWxGYXJtLGNuPUpQU0NvbnRleHQsY249anBzWG1sUm9vdHQAXmNuPWJwbXdvcmtmbG93YWRtaW4sY249YXBwbGljYXRpb24gcm9sZSxjbj1zb2EtaW5mcmEsY249anBzeG1sZmFybSxjbj1qcHNjb250ZXh0LGNuPWpwc3htbHJvb3RzcQB+ACWLfd3ZcQB+ACdxAH4AJ3QARVNPQSBhcHBsaWNhdGlvbiBtb25pdG9yIHJvbGUsIGhhcyByZWFkLW9ubHkgcHJpdmlsZWdlcyBmb3IgbW9uaXRvcmluZ3B0ACA2NzZBQkVEMDUzOUMxMUU0QkYzNTY1RTkwQ0MzNjRDMXQAIDY3NmFiZWQwNTM5YzExZTRiZjM1NjVlOTBjYzM2NGMxdAAKU09BTW9uaXRvcnQACnNvYW1vbml0b3J0AFhjbj1TT0FNb25pdG9yLGNuPUFwcGxpY2F0aW9uIFJvbGUsY249c29hLWluZnJhLGNuPWpwc1htbEZhcm0sY249SlBTQ29udGV4dCxjbj1qcHNYbWxSb290dABYY249c29hbW9uaXRvcixjbj1hcHBsaWNhdGlvbiByb2xlLGNuPXNvYS1pbmZyYSxjbj1qcHN4bWxmYXJtLGNuPWpwc2NvbnRleHQsY249anBzeG1scm9vdHNxAH4AJb6BT+pxAH4AJ3EAfgAndAAtU09BIGF1ZGl0IHZpZXdlciByb2xlLCBjYW4gdmlldyBhdWRpdCByZWNvcmRzcHQAIDY3NkIwQ0YwNTM5QzExRTRCRjM1NjVFOTBDQzM2NEMxdAAgNjc2YjBjZjA1MzljMTFlNGJmMzU2NWU5MGNjMzY0YzF0AA5TT0FBdWRpdFZpZXdlcnQADnNvYWF1ZGl0dmlld2VydABcY249U09BQXVkaXRWaWV3ZXIsY249QXBwbGljYXRpb24gUm9sZSxjbj1zb2EtaW5mcmEsY249anBzWG1sRmFybSxjbj1KUFNDb250ZXh0LGNuPWpwc1htbFJvb3R0AFxjbj1zb2FhdWRpdHZpZXdlcixjbj1hcHBsaWNhdGlvbiByb2xlLGNuPXNvYS1pbmZyYSxjbj1qcHN4bWxmYXJtLGNuPWpwc2NvbnRleHQsY249anBzeG1scm9vdHNxAH4AJQIx0mZxAH4AJ3EAfgAndAAMU09BIERlc2lnbmVycHQAIDY3NkJBOTMwNTM5QzExRTRCRjM1NjVFOTBDQzM2NEMxdAAgNjc2YmE5MzA1MzljMTFlNGJmMzU2NWU5MGNjMzY0YzF0AAtTT0FEZXNpZ25lcnQAC3NvYWRlc2lnbmVydABZY249U09BRGVzaWduZXIsY249QXBwbGljYXRpb24gUm9sZSxjbj1zb2EtaW5mcmEsY249anBzWG1sRmFybSxjbj1KUFNDb250ZXh0LGNuPWpwc1htbFJvb3R0AFljbj1zb2FkZXNpZ25lcixjbj1hcHBsaWNhdGlvbiByb2xlLGNuPXNvYS1pbmZyYSxjbj1qcHN4bWxmYXJtLGNuPWpwc2NvbnRleHQsY249anBzeG1scm9vdHhxAH4ABXhxAH4ACnh4dAAcdHJhY2tpbmcuY29tcG9zaXRlSW5zdGFuY2VJZHQABTQwMDAydAANdHJhY2tpbmcuZWNpZHQALTAwaVNTcE9Bb2Q3RncwenNaazBGSno0ZUZ2RTBqOUl6ZjAwMDE4RzAwMDFjM3QACHByaW9yaXR5dAABMHQAKG9yYWNsZS5mYWJyaWMuc2VjdXJpdHkuaWRlbnRpdHkudXNlcm5hbWVxAH4AH3QAJXRyYWNraW5nLmNvbXBvc2l0ZUluc3RhbmNlQ3JlYXRlZFRpbWVzcgAOamF2YS51dGlsLkRhdGVoaoEBS1l0GQMAAHhwdwgAAAFMmVvB1Hh0ABd0cmFja2luZy5jb252ZXJzYXRpb25JZHQAJHVybjpBM0Q2RDFCMERERjgxMUU0OEYzQTFCRDQyRDVDNjkwRHg=</headerProperties>
    <compositeCreatedTime>2015-04-08T17:07:49.716+03:00</compositeCreatedTime>
    </sca>
    <applicationContext/>
    <taskDefinitionId>default/DefaultRequestApproval!1.0/ApprovalTask</taskDefinitionId>
    <correlationId>8450a055-7c8d-47d9-b356-4035f3ef1947</correlationId>
    <mdsLabel>soa_45112c9c-f119-494c-81a2-82fd1844bc0c</mdsLabel>
    </task>
    </initiateTaskResponse>
    </part>
    </initiateTaskResponseMessage>
    </messages>
    Reagrds,
    Anil

  • FM RV_INVOICE_DOCUMENT_READ not getting KONV details when ran multiple times

    Hi, I'm calling the Function Module 'RV_INVOICE_DOCUMENT_READ' with the parameter KONV_READ as 'X' thru one of the Output type via Smartform driver program from VF02. I found that this FM was not returning KONV(XKOMV) details. When I debugged, I came to know that when this FM is run multiple times, only for the initial time it fetches KONV details. This FM was triggered by standard program first and later was called in my Smartform Driver program. Inside this FM, it was checking against an internal table 'TABGL' and was fetching KONV details if it is initial. For the first time this internal table(TABGL) will be initial and after fetching KONV details, it is filled with Condition record(KONV-KNUMV). So for the second time call of this FM, KONV details are not fetched. To confirm this I ran this FM from SE37. For the first time it fetched KONV details. In the same session I executed again. This time it didn't populate KONV details, whereas VBRK, VBRP, VBPA details were fetched even in the second run. Could you please let me know if we can use this FM for getting KONV details irrespective of number of times it has been called before. Thanks, Adithya M.

    Try to call RV_INVOICE_REFRESH before calling RV_INVOICE_DOCUMENT_READ again.
    Regards,
    Raymond

  • FM to get the details of the file on presentation server

    hi friends ,
      i need to read the files on the front end in c:\ directory which start with hw.  
    is their any function module to get the details of the files like name of the file .
    as for application server we have "EPS_GET_DIRECTORY_LISTING".
    thank you,
    kat.

    Use method CL_GUI_FRONTEND_SERVICES=>DIRECTORY_LIST_FILES
    CALL METHOD cl_gui_frontend_services=>directory_list_files
      EXPORTING
        directory                   = 'C:\'
        filter                      = 'hw*.*'
      changing
        file_table                  = t_file_table
        count                       = w_count.
    Edited by: Swastik Bharati on Nov 3, 2008 7:53 AM

  • Any Function Module For getting Shipment Details

    Hi All,
    I want to get all details of shipment. i tired , but unable to get any function? I was able to find the creation or change shipment function modules, but not able to find the function module for getting the details for Shipment.
    like BAPI_SHIPMENT_CHANGE           Change Shipment
    BAPI_SHIPMENT_CREATE           Create Shipment
    similary
    Do you have any idea for getting (display)the details of Shipments?
    Regards,
    Raju

    hi,
    you can use
    VTTP,VTTK
    or
    RV_SHIPMENT_READ

  • R/3 job and get the details of variants like (from and to)

    Hi,
    How to find R/3 job and get the details of variants like (from and to) for that job.
    the job is extraction job and running for 4 hours in R/3 once atfer this job completes BW job will start executing. Now i have to analyse R/3 job that how many years of data it is extracting (from, to) and other useful information why it is taking time for 4 hours.
    Please let me know what transaction i have to use and how to check this information in R/3 side.
    Thanks,

    Hi........
    Go to SM37 >> select the job >> Click on Job log.........Check there whether u r getting any Clue or not...........Is this load is through PSA..........? if so check the records of the First data packet...........then the Last data packet............from there u can get some idea..................
    Also u can check the data in the Extractor.......is it a full load?.............Go to RSA3 >> Execute..........there check the data........
    Is it a LO datasource ? if so................Go to LBWE >> Click on maintenance link for your datasource........>> Here in the Right pane u can see the Structute associated with that Datasource ...........If u remove MC from those structure name............u will get the table name..............In those tables also u can check the data...............there should be some data field.............from where u can get some idea.........
    If ur Extractor is extracting data using some Function Module.............then open the datasource using RSA2.............there double click on the Exrtractor..............u will get the function module.................u can try to analyze the function module............
    For Variants..................select the job >> click on Step in the top >> then Go to in the top >> Variant..............but I don't think this will help u............this will tell u that this Extraction job is part of which chain or IP......
    Regards,
    Debjani..........

  • PowerShell Script to get the details Like Scope,Last Deployed date and Name for a Solution Deployed in the Farm.

    Hi Experts,
    I am trying to  build a PowerShell Script to get the details Like Scope,Last Deployed date and Name for a Solution Deployed in the Farm.
    Can anyone advise on this please.
    Regards

    Get-SPSolution|Select Name,Scope,LastOperationResult,LastOperationEndTime|Export-CSV "SPInstalledSolutions.csv" -NoTypeInformation
    SPSolution properties
    Get-SPSolution
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

Maybe you are looking for

  • Not able to fetch the data by Virtual Cube

    Hi Experts, My requirement is I need to fetch the data from Source System (From Data base table) by using Virtual Cube. What I have done is I have created Virtual Cube and created corresponding Function Module in Source System. That Function MOdule i

  • Not able to execute one Java program from another one via. exec()

    Hi, I am new to this forum, so I might be asking a very trivial quetion. My program Ap1 is : class Ap1 public static void main(String a[]) throws Exception Runtime rt=Runtime.getRuntime(); Process p=null; p=rt.exec("javac,Pr.java"); Runtime.getRuntim

  • SharePoint Hosted App - Creating cascaded drop down on hosted web lists

    Hi, I have created an SharePoint Hosted App(Javascript Object Model) that creates lists on the host web. I need to put some javascript into new and edit forms in order to create the cascaded drop down effect on 2 lookup fields. Can you please give me

  • Error joining

    Hello. I have just returned from a wifi hotspot where I could not connect. My airport recognized the network but when i clicked to join it stated that there was an error in joining the network. My choices were to click retry or ok. Once I returned ho

  • Payment details requesting six digit pin and 3d, w...

    Help I've been sent a request for payment details and they want a six digit pin and 3d. How do I get these?