User exit U935 in Mod. Pool RGGBS000 not executing in Parallel Processing

Hi,
Settlement of IO (KO88) is not successful in parallel processing mode.
While doing Settlement of IOs (KO88) in parallel processing mode, I am getting an error on account assignment object. CO account assignment in OKC9, an user exit U935 is maintained and this user exit is used in Mod.Pool RGGBS000.
When running the settlement in normal mode, the program is running through this user exit and settlement is successful. But in prallel processing mode, looks like the settlement program is not executing / by passing the user exit and errs out with CO object assignment.
How can we make the settlement execute through the user exit in parallel processing mode?
Thanks

Hi,
If the user exit supposed to trigger thru substitution (GGB1), then check whether active status is 1 in OKC9.  Just a wild guess....
Best Regards,
Madhu

Similar Messages

  • User exit for Pop-Up text Header Note II for transactions VA02 and VA03

    Hi ,
    Need  new user exit to call text pop-up functionality (used in standard at sales order creation) when modifying or displaying a sales order (VA02 / VA03)
    Text ID: ZX02
    Text Object: VBBK
    Text procedure: X1
    Access sequence: 6002
    Text is always shown at creation if exists for the SOLD-TO in the sold-to language, and is defined in customizing as to be displayed : V_TTXER_N-TXPFL = 'Y' or 'Z'
    This is checked in RV_TEXT_COPY
    NOTE: Present while creating the sales order , popup is coming to add the text.Same pop up required for VA02/VA03 transaction.
    Reason: all orders are entered via EDI . In these cases the info from the text is not displayed.
    Pl. let me know the user exit for above requirement.
    Moderator message: please do your own research before asking.
    Edited by: Thomas Zloch on Jan 13, 2011 1:50 PM

    How do you know "ECOM Order"?
    What constitutes a "HOLD"?
    I'd do something like:
    In USEREXIT_SAVE_DOCUMENT_PREPARE (SAVE has been pressed at this point and SAVE_DOCUMENT is to fire off other processes, etc).
    IF sy-tcode eq 'VA01' or sy-tcode eq 'VA02'.
      if vbak-something (identify your ECOM order)
        loop at vbap transporting no fields (Think it's back to VBAP at this point)
        where... (look for your hold indicator in every row)
      endloop.
    if sy-subrc eq 0. "found the hold
    message innn(class) display like 'E'.
    endif.
    endif.
    endif.
    Be VERY careful with ANYTHING that you put into SAVE_DOCUMENT exit form.

  • User Exits: On Linux: FRM-40833: Could not completely load the dynamic user

    Hi,
    While implementing user exits functionality, we got this run time error.
    We were able to successfully compile frmwebx, but still its giving the error.
    Are we doing something wrong in the app configuration? Or is this a indication of some kind of wrong compilation/linking?
    Any pointers on this will be very helpful.
    TIA
    Rohit

    Hi All,
    What exactly is frmwebx? I read on some pages that probably we need to rename it to frmweb, I implemented that but still its not working.
    Please let me know if more information is required.
    TIA
    Rohit

  • User exit call customer function 002 is not getting trigerred

    Hi
    I am using the user exit call customer function 002 in the function module idoc_input_proact to trigger and idoc.my problem is that the user exit is not geting triggered.
    please help me gurus as this the last day for finishing thw work.
    regards,
    Asish dash

    it means tthat, u are applying a wrong exit in the pgm.
    try to once again search for the suitable exits for your program.
    try this:
    how to find the customer exits for a particular transaction
    check out the pgm in this thread:
    Re: Find User Exits
    regards,
    padma

  • User exit to write CJI3 output into Unix server in background processing

    Hi Experts
       How to write CJI3 (project actual cost) output ALV report into unix server in b/g processing.
    Is there any user exit?
    What is the user exit for adding the fields in CJI3 transaction.
    Thanx
    Yugi

    Hi Experts
       How to write CJI3 (project actual cost) output ALV report into unix server in b/g processing.
    Is there any user exit?
    What is the user exit for adding the fields in CJI3 transaction.
    Thanx
    Yugi

  • Asynch controls not executing in parallel

    Can a control or JPD have more then one thread running thru it at a time?
    The workshop docs states controls can be asynch but test seem to indicate that asynch controls do not really run in parallel. They seem to be serialized (I think). The only exception I can find so far is a design using web services as demonstrated by the sample provided with the WebLogic install. The example is Conversation.jws which demonstrated conversations and polling.
    Is it possible, without using web services, to have both the parent process and the asynch custom control execute in parallel. That is, have them run in parallel threads?
    My goal is to create a JPD that calls a control to build a report and as the control is building the report, the JPD performs other actions in parallel. The JPD will monitor the progress of the report control by either a callback or by polling it to see if the report has been completed in between tasks.
    Can somebody tell me if this is possible?
    Is it possible for the parent process and the asynch custom control to run in parallel?
    Any comments would be appreciated.
    Thanks…

    Hi,
    If the activities are all PL/SQL, then the Workflow Engine doesn't run anything in parallel - there is only one engine processing the activities. The theory is that it runs so quickly it will look like it's in parallel with no real effect.
    So what you are getting is expected behaviour - it's just that because you have deferred it to the background engine, you have a greater opportunity to see how the engine works.
    HTH,
    Matt
    Alpha review chapters from my book "Developing With Oracle Workflow" are available on my website:
    http://www.workflowfaq.com
    http://forum.workflowfaq.com
    NEW! - WorkflowFAQ Blog at http://thoughts.workflowfaq.com

  • Hi frnds this is the code for dynamic creation of users in plsql but these statements r not executing so pls help me for this error

    DECLARE
    n NUMBER;
    BEGIN
    n:=1;
    WHILE(n<=10)
    LOOP
    CREATE user EM||n IDENTIFIED BY KLU;
    GRANT CREATE SESSION,GRANT ANY PRIVILEGE TO EM||n;
    COMMIT;
    n:=n+1;
    END LOOP;
    END;

    Hi,
         Here is the dynamic query for creating user and to give grants to user,
    DECLARE
       n         NUMBER;
       cr_user   VARCHAR2 (300);
       gr_user   VARCHAR2 (300);
    BEGIN
       n := 1;
       WHILE (n <= 10)
       LOOP
          cr_user := 'CREATE user EM' || n || ' IDENTIFIED BY KLU';
          gr_user := 'GRANT CREATE SESSION,GRANT ANY PRIVILEGE TO EM' || n || '';
          EXECUTE IMMEDIATE cr_user;
          EXECUTE IMMEDIATE gr_user;
          n := n + 1;
       END LOOP;
    END;
    Edited: Removed When OTHERS Exception Handling from Code.
    Cheers!

  • Dbora script not executing all startup processes

    Hi,
    I am running Oracle10gR2 on RHEL4. I am having issues with my dbora script. I read quite a few of the posts about it and most people were having similar issues as me. However, I was still not able to get it to work properly. I am going to paste my dbora script and all the other things that I am suppose to do like edit the /etc/oratab file. The main problem I am having is that not all the process that need to be started are starting up. I've been messing around with the /etc/rc.d/init.d/rc.2..rc.3...rc.4...etc files and trying different combinations and they all give me different results. However, the one thing that never starts up is the database. I can get the listener to work and sometimes http server also, but never the database. And another weird thing is that when I check the logs (/var/log/boot.log) it says that the opmn process, for example, has been started, but when I check the status it is down. Here is how things look now.
    The /etc/oratab file
    # This file is used by ORACLE utilities. It is created by root.sh
    # and updated by the Database Configuration Assistant when creating
    # a database.
    # A colon, ':', is used as the field terminator. A new line terminates
    # the entry. Lines beginning with a pound sign, '#', are comments.
    # Entries are of the form:
    # $ORACLE_SID:$ORACLE_HOME:<N|Y>:
    # The first and second fields are the system identifier and home
    # directory of the database respectively. The third filed indicates
    # to the dbstart utility that the database should , "Y", or should not,
    # "N", be brought up at system boot time.
    # Multiple entries with the same $ORACLE_SID are not allowed.
    FPRCQA:/opt/app/oracle/product/10.2.0/db_1:Y#
    # *:/opt/app/oracle/product/10.2.0/http_1:N
    *:/opt/app/oracle/product/10.2.0/http_1:N
    -- The /etc/rc.d directory
    /etc/rc.d/rc4.d/S99dbora
    /etc/rc.d/rc4.d/K01dbora
    /etc/rc.d/rc3.d/S99dbora
    /etc/rc.d/rc3.d/K01dbora
    /etc/rc.d/rc5.d/S99dbora
    /etc/rc.d/rc5.d/K01dbora
    /etc/rc.d/rc1.d/K01dbora
    /etc/rc.d/rc2.d/S99dbora
    /etc/rc.d/rc2.d/K01dbora
    /etc/rc.d/rc6.d/K01dbora
    /etc/rc.d/rc0.d/K01dbora
    -- The dbora script
    #!/bin/bash
    # chkconfig: 35 99 10
    # description: Starts and stops Oracle processes
    # Set ORA_HOME to be equivalent to the $ORACLE_HOME
    # from which you wish to execute dbstart and dbshut;
    # Set ORA_OWNER to the user id of the owner of the
    # Oracle database in ORA_HOME.
    ORA_DB_HOME=/opt/app/oracle/product/10.2.0/db_1
    ORA_HTTP_HOME=/opt/app/oracle/product/10.2.0/http_1
    ORA_OWNER=oracle
    ORA_LSNR=LSNR_FPRCQA
    case "$1" in
    'start')
    # Start the TNS Listener
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/lsnrctl start $ORA_LSNR"
    # Start the Oracle databases:
    # The following command assumes that the oracle login
    # will not prompt the user for any values
    su - $ORA_OWNER -c $ORA_DB_HOME/bin/dbstart
    # Start the Intelligent Agent
    if [ -f $ORA_DB_HOME/bin/emctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/emctl start agent"
    elif [ -f $ORA_DB_HOME/bin/agentctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/agentctl start"
    else
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/lsnrctl dbsnmp_start"
    fi
    # Start Management Server
    if [ -f $ORA_DB_HOME/bin/emctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/emctl start dbconsole"
    elif [ -f $ORA_DB_HOME/bin/oemctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/oemctl start oms"
    fi
    # Start HTTP Server
    if [ -f $ORA_HTTP_HOME/opmn/bin/opmnctl ]; then
    su - $ORA_OWNER -c "$ORA_HTTP_HOME/opmn/bin/opmnctl start"
    su - $ORA_OWNER -c "$ORA_HTTP_HOME/opmn/bin/opmnctl startproc -ias_component=HTTP_Server"
    fi
    # Start iSQL*Plus
    if [ -f $ORA_HTTP_HOME/bin/isqlplusctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/isqlplusctl start"
    fi
    touch /var/lock/subsys/dbora
    'stop')
    # Stop iSQL*Plus
    if [ -f $ORA_DB_HOME/bin/isqlplusctl ]; then
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/isqlplusctl stop"
    fi
    # Stop HTTP Server
    if [ -f $ORA_HTTP_HOME/opmn/bin/opmnctl ]; then
    su - $ORA_OWNER -c "$ORA_HTTP_HOME/opmn/bin/opmnctl stopall"
    fi
    # Stop the TNS Listener
    su - $ORA_OWNER -c "$ORA_DB_HOME/bin/lsnrctl stop $ORA_LSNR"
    # Stop the Oracle databases:
    # The following command assumes that the oracle login
    # will not prompt the user for any values
    su - $ORA_OWNER -c $ORA_DB_HOME/bin/dbshut
    rm -f /var/lock/subsys/dbora
    esac
    # End of script dbora
    exit 0
    I would also appreciate if someone could tell me how these rc.2 execute and what order.
    Thank you all.

    Ok, I have tried your combination as well as other ones for the runlevels and they all took an hour or more to get the server back up again. The current configurations bring up the server within a few minutes, however, the database nor opmn process is starting. I was wondering if you could still help me? Here is my current runlevel configuration and /var/log/boot.log file. Notice the dbora entries. Thanks!
    /etc/rc.d/rc4.d/K10dbora
    /etc/rc.d/rc3.d/S99dbora
    /etc/rc.d/init.d/dbora
    /etc/rc.d/rc5.d/S99dbora
    /etc/rc.d/rc1.d/K10dbora
    /etc/rc.d/rc2.d/K10dbora
    /etc/rc.d/rc6.d/K10dbora
    /etc/rc.d/rc0.d/K10dbora
    Aug 7 11:48:56 rh-staging cups-config-daemon: cups-config-daemon -TERM succeeded
    Aug 7 11:48:56 rh-staging haldaemon: haldaemon -TERM succeeded
    Aug 7 11:48:56 rh-staging messagebus: messagebus -TERM succeeded
    Aug 7 11:48:56 rh-staging rhnsd: rhnsd shutdown succeeded
    Aug 7 11:48:56 rh-staging atd: atd shutdown succeeded
    Aug 7 11:48:57 rh-staging cups: cupsd shutdown succeeded
    Aug 7 11:48:57 rh-staging dbora: iSQL*Plus 10.2.0.3.0
    Aug 7 11:48:57 rh-staging dbora: Copyright (c) 2003, 2006, Oracle. All Rights Reserved.
    Aug 7 11:49:26 rh-staging dbora: iSQL*Plus instance on port 5560 is not running ...
    Aug 7 11:49:26 rh-staging dbora: opmnctl: stopping opmn and all managed processes...
    Aug 7 11:49:32 rh-staging dbora:
    Aug 7 11:49:32 rh-staging dbora: LSNRCTL for Linux: Version 10.2.0.3.0 - Production on 07-AUG-2007 11:49:32
    Aug 7 11:49:32 rh-staging dbora:
    Aug 7 11:49:32 rh-staging dbora: Copyright (c) 1991, 2006, Oracle. All rights reserved.
    Aug 7 11:49:32 rh-staging dbora:
    Aug 7 11:49:32 rh-staging dbora: Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=rh-staging.fprc.ophth.wisc.edu)(PORT=1521)))
    Aug 7 11:49:33 rh-staging dbora: The command completed successfully
    Aug 7 11:49:33 rh-staging dbora: ORACLE_HOME_LISTNER is not SET, unable to auto-stop Oracle Net Listener
    Aug 7 11:49:33 rh-staging dbora: Usage: /opt/app/oracle/product/10.2.0/db_1/bin/dbshut ORACLE_HOME
    Aug 7 11:49:33 rh-staging dbora: Processing Database instance "FPRCQA": log file /opt/app/oracle/product/10.2.0/db_1/shutdown.logAug 7 11:49:34 rh-staging rc: Stopping dbora: succeededAug 7 11:49:34 rh-staging xfs: xfs shutdown succeeded
    Aug 7 11:49:35 rh-staging gpm: gpm shutdown succeeded
    Aug 7 11:49:35 rh-staging sshd: sshd -TERM succeeded
    Aug 7 11:49:35 rh-staging sendmail: sm-client shutdown succeeded
    Aug 7 11:49:35 rh-staging sendmail: sendmail shutdown succeeded
    Aug 7 11:49:35 rh-staging smb: smbd shutdown succeeded
    Aug 7 11:49:36 rh-staging smb: nmbd shutdown succeeded
    Aug 7 11:49:36 rh-staging xinetd: xinetd shutdown succeeded
    Aug 7 11:49:36 rh-staging acpid: acpid shutdown succeeded
    Aug 7 11:49:36 rh-staging crond: crond shutdown succeeded
    Aug 7 11:49:36 rh-staging autofs: Stopping automount:
    Aug 7 11:49:36 rh-staging autofs: automount shutdown succeeded
    Aug 7 11:49:36 rh-staging autofs:
    Aug 7 11:49:36 rh-staging autofs:
    Aug 7 11:49:36 rh-staging rc: Stopping autofs: succeeded
    Aug 7 11:49:37 rh-staging ntpd: ntpd shutdown succeeded
    Aug 7 11:49:37 rh-staging nfslock: rpc.statd shutdown succeeded
    Aug 7 11:49:37 rh-staging irqbalance: irqbalance shutdown succeeded
    Aug 7 11:49:38 rh-staging portmap: portmap shutdown succeeded
    Aug 7 11:49:39 rh-staging syslog: klogd shutdown succeeded
    Aug 7 11:51:32 rh-staging syslog: syslogd startup succeeded
    Aug 7 11:51:32 rh-staging syslog: klogd startup succeeded
    Aug 7 11:51:32 rh-staging irqbalance: irqbalance startup succeeded
    Aug 7 11:51:32 rh-staging portmap: portmap startup succeeded
    Aug 7 11:51:32 rh-staging nfslock: rpc.statd startup succeeded
    Aug 7 11:51:33 rh-staging rpcidmapd: rpc.idmapd startup succeeded
    Aug 7 11:51:33 rh-staging netfs: Mounting other filesystems: succeeded
    Aug 7 11:51:33 rh-staging rc: Starting lm_sensors: succeeded
    Aug 7 11:51:34 rh-staging autofs: automount startup succeeded
    Aug 7 11:51:34 rh-staging acpid: acpid startup succeeded
    Aug 7 06:50:19 rh-staging rc.sysinit: -e
    Aug 7 06:50:31 rh-staging start_udev: Starting udev: succeeded
    Aug 7 06:50:34 rh-staging rc.sysinit: -e
    Aug 7 06:50:41 rh-staging sysctl: net.ipv4.ip_forward = 0
    Aug 7 06:50:41 rh-staging sysctl: net.ipv4.conf.default.rp_filter = 1
    Aug 7 06:50:41 rh-staging sysctl: net.ipv4.conf.default.accept_source_route = 0
    Aug 7 06:50:41 rh-staging sysctl: kernel.sysrq = 0
    Aug 7 06:50:41 rh-staging sysctl: kernel.core_uses_pid = 1
    Aug 7 06:50:41 rh-staging sysctl: kernel.shmmax = 2147483648
    Aug 7 06:50:41 rh-staging sysctl: kernel.sem = 250 32000 100 128
    Aug 7 06:50:41 rh-staging sysctl: net.ipv4.ip_local_port_range = 1024 65536
    Aug 7 06:50:41 rh-staging sysctl: net.core.rmem_default = 262144
    Aug 7 06:50:41 rh-staging sysctl: net.core.rmem_max = 262144
    Aug 7 06:50:41 rh-staging sysctl: net.core.wmem_default = 262144
    Aug 7 06:50:41 rh-staging sysctl: net.core.wmem_max = 262144
    Aug 7 06:50:41 rh-staging rc.sysinit: Configuring kernel parameters: succeeded
    Aug 7 11:50:42 rh-staging date: Tue Aug 7 11:50:42 CDT 2007
    Aug 7 11:50:42 rh-staging rc.sysinit: Setting clock (localtime): Tue Aug 7 11:50:42 CDT 2007 succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Loading default keymap succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Setting hostname rh-staging.fprc.ophth.wisc.edu: succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Checking root filesystem succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Remounting root filesystem in read-write mode: succeeded
    Aug 7 11:50:42 rh-staging lvm.static: No volume groups found
    Aug 7 11:50:42 rh-staging rc.sysinit: Setting up Logical Volume Management: succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Checking filesystems succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Mounting local filesystems: succeeded
    Aug 7 11:50:42 rh-staging rc.sysinit: Enabling local filesystem quotas: succeeded
    Aug 7 11:50:43 rh-staging rc.sysinit: Enabling swap space: succeeded
    Aug 7 11:50:43 rh-staging sysstat: Calling the system activity data collector (sadc):
    Aug 7 11:50:43 rh-staging sysstat:
    Aug 7 11:50:43 rh-staging rc: Starting sysstat: succeeded
    Aug 7 11:50:44 rh-staging readahead_early: Starting background readahead:
    Aug 7 11:50:44 rh-staging rc: Starting readahead_early: succeeded
    Aug 7 11:51:28 rh-staging kudzu: failed
    Aug 7 11:51:28 rh-staging kudzu: Hardware configuration timed out.
    Aug 7 11:51:28 rh-staging kudzu: Run '/usr/sbin/kudzu' from the command line to re-detect.
    Aug 7 11:51:29 rh-staging pcmcia: Starting PCMCIA services:
    Aug 7 11:51:29 rh-staging pcmcia: cardmgr[2283]: no sockets found!
    Aug 7 11:51:29 rh-staging pcmcia: done.
    Aug 7 11:51:29 rh-staging rc: Starting pcmcia: succeeded
    Aug 7 11:51:29 rh-staging sysctl: net.ipv4.ip_forward = 0
    Aug 7 11:51:29 rh-staging sysctl: net.ipv4.conf.default.rp_filter = 1
    Aug 7 11:51:29 rh-staging sysctl: net.ipv4.conf.default.accept_source_route = 0
    Aug 7 11:51:29 rh-staging sysctl: kernel.sysrq = 0
    Aug 7 11:51:29 rh-staging sysctl: kernel.core_uses_pid = 1
    Aug 7 11:51:29 rh-staging sysctl: kernel.shmmax = 2147483648
    Aug 7 11:51:29 rh-staging sysctl: kernel.sem = 250 32000 100 128
    Aug 7 11:51:29 rh-staging sysctl: net.ipv4.ip_local_port_range = 1024 65536
    Aug 7 11:51:29 rh-staging sysctl: net.core.rmem_default = 262144
    Aug 7 11:51:29 rh-staging sysctl: net.core.rmem_max = 262144
    Aug 7 11:51:29 rh-staging sysctl: net.core.wmem_default = 262144
    Aug 7 11:51:29 rh-staging sysctl: net.core.wmem_max = 262144
    Aug 7 11:51:29 rh-staging network: Setting network parameters: succeeded
    Aug 7 11:51:30 rh-staging network: Bringing up loopback interface: succeeded
    Aug 7 11:51:31 rh-staging network: Bringing up interface eth0: succeeded
    Aug 7 11:51:35 rh-staging cups: cupsd startup succeeded
    Aug 7 11:51:36 rh-staging sshd: succeeded
    Aug 7 11:51:36 rh-staging xinetd: xinetd startup succeeded
    Aug 7 11:51:37 rh-staging ntpd: succeeded
    Aug 7 11:51:37 rh-staging ntpd: ntpd startup succeeded
    Aug 7 11:51:38 rh-staging sendmail: sendmail startup succeeded
    Aug 7 11:51:38 rh-staging sendmail: sm-client startup succeeded
    Aug 7 11:51:38 rh-staging gpm: gpm startup succeeded
    Aug 7 11:51:39 rh-staging crond: crond startup succeeded
    Aug 7 11:51:40 rh-staging xfs: xfs startup succeeded
    Aug 7 11:51:40 rh-staging smb: smbd startup succeeded
    Aug 7 11:51:40 rh-staging smb: nmbd startup succeeded
    Aug 7 11:51:41 rh-staging winbind: winbindd startup succeeded
    Aug 7 11:51:41 rh-staging anacron: anacron startup succeeded
    Aug 7 11:51:41 rh-staging atd: atd startup succeeded
    Aug 7 11:51:41 rh-staging readahead: Starting background readahead:
    Aug 7 11:51:41 rh-staging rc: Starting readahead: succeeded
    Aug 7 11:51:41 rh-staging messagebus: messagebus startup succeeded
    Aug 7 11:51:41 rh-staging rhnsd: rhnsd startup succeeded
    Aug 7 11:51:41 rh-staging cups-config-daemon: cups-config-daemon startup succeeded
    Aug 7 11:51:41 rh-staging haldaemon: haldaemon startup succeeded
    Aug 7 11:51:43 rh-staging dbora:
    Aug 7 11:51:43 rh-staging dbora: LSNRCTL for Linux: Version 10.2.0.3.0 - Production on 07-AUG-2007 11:51:43
    Aug 7 11:51:43 rh-staging dbora:
    Aug 7 11:51:43 rh-staging dbora: Copyright (c) 1991, 2006, Oracle. All rights reserved.
    Aug 7 11:51:43 rh-staging dbora:
    Aug 7 11:51:43 rh-staging dbora: Starting /opt/app/oracle/product/10.2.0/db_1/bin/tnslsnr: please wait...
    Aug 7 11:51:43 rh-staging dbora:
    Aug 7 11:51:44 rh-staging dbora: TNSLSNR for Linux: Version 10.2.0.3.0 - Production
    Aug 7 11:51:44 rh-staging dbora: System parameter file is /opt/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Aug 7 11:51:44 rh-staging dbora: Log messages written to /opt/app/oracle/admin/FPRCQA/logmuseum/oraclenet/lsnr_fprcqa.log
    Aug 7 11:51:44 rh-staging dbora: Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=rh-staging.fprc.ophth.wisc.edu)(PORT=1521)))
    Aug 7 11:51:44 rh-staging dbora: Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))
    Aug 7 11:51:44 rh-staging dbora:
    Aug 7 11:51:44 rh-staging dbora: Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=rh-staging.fprc.ophth.wisc.edu)(PORT=1521)))
    Aug 7 11:51:44 rh-staging dbora: STATUS of the LISTENER
    Aug 7 11:51:44 rh-staging dbora: ------------------------
    Aug 7 11:51:44 rh-staging dbora: Alias LSNR_FPRCQA
    Aug 7 11:51:44 rh-staging dbora: Version TNSLSNR for Linux: Version 10.2.0.3.0 - Production
    Aug 7 11:51:44 rh-staging dbora: Start Date 07-AUG-2007 11:51:43
    Aug 7 11:51:44 rh-staging dbora: Uptime 0 days 0 hr. 0 min. 0 sec
    Aug 7 11:51:44 rh-staging dbora: Trace Level off
    Aug 7 11:51:44 rh-staging dbora: Security ON: Local OS Authentication
    Aug 7 11:51:44 rh-staging dbora: SNMP OFF
    Aug 7 11:51:44 rh-staging dbora: Listener Parameter File /opt/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Aug 7 11:51:44 rh-staging dbora: Listener Log File /opt/app/oracle/admin/FPRCQA/logmuseum/oraclenet/lsnr_fprcqa.log
    Aug 7 11:51:44 rh-staging dbora: Listening Endpoints Summary...
    Aug 7 11:51:44 rh-staging dbora: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=rh-staging.fprc.ophth.wisc.edu)(PORT=1521)))
    Aug 7 11:51:44 rh-staging dbora: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))
    Aug 7 11:51:44 rh-staging dbora: Services Summary...
    Aug 7 11:51:44 rh-staging dbora: Service "FPRCQA.fprc.ophth.wisc.edu" has 1 instance(s).
    Aug 7 11:51:44 rh-staging dbora: Instance "FPRCQA", status UNKNOWN, has 1 handler(s) for this service...
    Aug 7 11:51:44 rh-staging dbora: Service "PLSExtProc" has 1 instance(s).
    Aug 7 11:51:44 rh-staging dbora: Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Aug 7 11:51:44 rh-staging dbora: The command completed successfully
    Aug 7 11:51:44 rh-staging dbora: ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net Listener
    Aug 7 11:51:44 rh-staging dbora: Usage: /opt/app/oracle/product/10.2.0/db_1/bin/dbstart ORACLE_HOME
    Aug 7 11:51:44 rh-staging dbora: Processing Database instance "FPRCQA": log file /opt/app/oracle/product/10.2.0/db_1/startup.log
    Aug 7 11:51:51 rh-staging dbora: TZ set to US/Central
    Aug 7 11:51:54 rh-staging dbora: Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0
    Aug 7 11:51:54 rh-staging dbora: Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Aug 7 11:51:55 rh-staging dbora: Starting agent ...
    Aug 7 11:51:56 rh-staging dbora: .
    Aug 7 11:51:57 rh-staging dbora: .
    Aug 7 11:51:58 rh-staging dbora: started.
    Aug 7 11:52:03 rh-staging dbora: TZ set to US/Central
    Aug 7 11:52:04 rh-staging dbora: Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0
    Aug 7 11:52:04 rh-staging dbora: Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Aug 7 11:52:04 rh-staging dbora: http://rh-staging.fprc.ophth.wisc.edu:1 ... pplication
    Aug 7 11:52:04 rh-staging dbora: Agent Version : 10.1.0.5.1
    Aug 7 11:52:04 rh-staging dbora: OMS Version : 10.1.0.5.0
    Aug 7 11:52:04 rh-staging dbora: Protocol Version : 10.1.0.2.0
    Aug 7 11:52:04 rh-staging dbora: Agent Home : /opt/app/oracle/product/10.2.0/db_1/rh-staging.fprc.ophth.wisc.edu_FPRCQA
    Aug 7 11:52:04 rh-staging dbora: Agent binaries : /opt/app/oracle/product/10.2.0/db_1
    Aug 7 11:52:04 rh-staging dbora: Agent Process ID : 3701
    Aug 7 11:52:04 rh-staging dbora: Parent Process ID : 3698
    Aug 7 11:52:04 rh-staging dbora: Agent URL : http://rh-staging.fprc.ophth.wisc.edu:3938/emd/main
    Aug 7 11:52:04 rh-staging dbora: Started at : 2007-08-07 11:51:55
    Aug 7 11:52:04 rh-staging dbora: Started by user : oracle
    Aug 7 11:52:04 rh-staging dbora: Last Reload : 2007-08-07 11:51:55
    Aug 7 11:52:04 rh-staging dbora: Last successful upload : (none)
    Aug 7 11:52:04 rh-staging dbora: Last attempted upload : (none)
    Aug 7 11:52:04 rh-staging dbora: Total Megabytes of XML files uploaded so far : 0.00
    Aug 7 11:52:04 rh-staging dbora: Number of XML files pending upload : 3
    Aug 7 11:52:04 rh-staging dbora: Size of XML files pending upload(MB) : 0.05
    Aug 7 11:52:04 rh-staging dbora: Available disk space on upload filesystem : 78.17%
    Aug 7 11:52:04 rh-staging dbora: Agent is already started. Will restart the agent
    Aug 7 11:52:09 rh-staging dbora: Stopping agent ...
    Aug 7 11:52:11 rh-staging dbora: stopped.
    Aug 7 11:52:11 rh-staging dbora: Starting Oracle Enterprise Manager 10g Database Control ...
    Aug 7 11:52:15 rh-staging dbora: .Aug 7 11:52:46 rh-staging last message repeated 6 times

  • Automated activity not executing in BPM process

    Hi All,
    We have created a BPM process in NWCE72, and it was executing fine.
    When we added an automated activitiy and assigned a Web Service created from a rule and run the process, it is possible to run the process till the automated activity only. The automated activity is throwing error a snapshot of the same pasted belw
    If anyone has encountered simllar problem kindly let us know how to overcome.
    Lookforward for help in overcoming this problem
    Down below it is saying that "You may have not assigned the Service Group to a Provider System, or the generation of the configuration has failed. "
    =====================================================================================================
    An error occurred while executing transition AUTOMATED_ACTIVITY_Determine_Criticality(Token_0_Equipment_Issue_Reporting_Process_2baa0100a79b04782f33bbea2160cdf3{64810061-7973-11df-872e-02004c4f4f50}(Instance_0_Equipment_Issue_Reporting_Process_2baa0100a79b04782f33bbea2160cdf3{4be7da15-7973-11df-b824-02004c4f4f50}(?),1,null,operator,ff12474b71b3fa29a516e53e125eaa18), Instance_0_Equipment_Issue_Reporting_Process_2baa0100a79b04782f33bbea2160cdf3{4be7da15-7973-11df-b824-02004c4f4f50}(null,null,null,false), Context_0_DO_IssueTrackingProcess_2baa0100a79b04782f33bbea2160cdf3{4be7da30-7973-11df-c7a0-02004c4f4f50}(Instance_0_Equipment_Issue_Reporting_Process_2baa0100a79b04782f33bbea2160cdf3{4be7da15-7973-11df-b824-02004c4f4f50}(?),Scope_14_Equipment_Issue_Reporting_2baa0100a79b04782f33bbea2160cdf3{4be7da2f-7973-11df-cc05-02004c4f4f50}(?),1,true,false,null)): com.sap.glx.core.kernel.api.TransitionException: An exception occurred while executing the script "_Equipment_Issue_Reporting:AUTOMATED_ACTIVITY_Determine_Criticality(
          com.sap.glx.adapter.BPMNAdapter:Token_0_Equipment_Issue_Reporting_Process_2baa0100a79b04782f33bbea2160cdf3 token,
          com.sap.glx.adapter.BPMNAdapter:Instance_0_Equipment_Issue_Reporting_Process_2baa0100a79b04782f33bbea2160cdf3 parent,
          com.sap.glx.adapter.internal.ContainerAdapter:Context_0_DO_IssueTrackingProcess_2baa0100a79b04782f33bbea2160cdf3 context_1){
      exit=new com.sap.glx.adapter.BPMNAdapter:Exit();
      exit:onActivation("E01DFA6EF00BAFC0797011DFB05502004C4F4F50", parent, token);
      delete exit;
      controller=new com.sap.glx.adapter.internal.ExceptionAdapter:ExceptionController();
      controller:setContext(token);
      delete controller;
      callscope=new com.sap.glx.adapter.internal.TypeRegistry:Scope_7_Equipment_Issue_Reporting_2baa0100a79b04782f33bbea2160cdf3(parent);
      call=new com.sap.glx.adapter.UnifiedConnectivityAdapter:Call_0_Determine_Criticality_2baa0100a79b04782f33bbea2160cdf3(callscope);
      ppUsername=token:ppUsername;
      ppHash=token:ppHash;
      call:setPrincipal(ppHash, ppUsername, token);
      request=callscope:instantiate("http://www.sap.com", "#RulesTypes-demo.sap.com-equuipissueruledc-CriticalityRuleSet-CriticalityRuleSet");
      mapper=new com.sap.glx.adapter.internal.Transformer:DataMapper();
      yves_in=new com.sap.glx.adapter.internal.Transformer:Data();
      yves_out=new com.sap.glx.adapter.internal.Transformer:Data();
      data=context_1:getData();
      yves_in:setData("demo.sap.com/reportissueprocessdc/Equipment_Issue_Reporting_Process/Equipment_Issue_Reporting", "$demo.sap.com/reportissueprocessdc/Equipment_Issue_Reporting_Process/Equipment_Issue_Reporting:DO_IssueTrackingProcess", data, "C000F957BEB5AA9E0E98E96A67EE2D06");
      yves_out:setData("http://www.sap.com", "$http://www.sap.com:Request-demo.sap.com-equuipissueruledc-CriticalityRuleSet-CriticalityRuleSet", request, "8F3954721A11A18DF1A2321F9544700D");
      mapper:map("E01DFA6EF00DF9B0797011DFC8A002004C4F4F50_2baa0100a79b04782f33bbea2160cdf3", yves_in, yves_out);
      request=yves_out:getData("http://www.sap.com", "$http://www.sap.com:Request-demo.sap.com-equuipissueruledc-CriticalityRuleSet-CriticalityRuleSet", "8F3954721A11A18DF1A2321F9544700D");
      delete yves_in;
      delete yves_out;
      delete mapper;
      call:setInputData("http://www.sap.com", "$http://www.sap.com:Request-demo.sap.com-equuipissueruledc-CriticalityRuleSet-CriticalityRuleSet", request);
      response=callscope:instantiate("http://www.sap.com", "#RulesTypes-demo.sap.com-equuipissueruledc-CriticalityRuleSet-CriticalityRuleSet");
      call:setOutputData("http://www.sap.com", "$http://www.sap.com:Response-demo.sap.com-equuipissueruledc-CriticalityRuleSet-CriticalityRuleSet", response);
      call:invoke();
      response=call:getOutputData("http://www.sap.com", "$http://www.sap.com:Response-demo.sap.com-equuipissueruledc-CriticalityRuleSet-CriticalityRuleSet");
      mapper=new com.sap.glx.adapter.internal.Transformer:DataMapper();
      yves_in=new com.sap.glx.adapter.internal.Transformer:Data();
      yves_out=new com.sap.glx.adapter.internal.Transformer:Data();
      yves_in:setData("http://www.sap.com", "$http://www.sap.com:Response-demo.sap.com-equuipissueruledc-CriticalityRuleSet-CriticalityRuleSet", response, "8F3954721A11A18DF1A2321F9544700D");
      data=context_1:getData();
      yves_in:setData("demo.sap.com/reportissueprocessdc/Equipment_Issue_Reporting_Process/Equipment_Issue_Reporting", "$demo.sap.com/reportissueprocessdc/Equipment_Issue_Reporting_Process/Equipment_Issue_Reporting:DO_IssueTrackingProcess", data, "C000F957BEB5AA9E0E98E96A67EE2D06");
      bind context_1;
      data=context_1:getData();
      scope=new com.sap.glx.adapter.internal.TypeRegistry:GenericScope(null, "C000F957BEB5AA9E0E98E96A67EE2D06");
      copy=scope:copy(data);
      delete scope;
      yves_out:setData("demo.sap.com/reportissueprocessdc/Equipment_Issue_Reporting_Process/Equipment_Issue_Reporting", "$demo.sap.com/reportissueprocessdc/Equipment_Issue_Reporting_Process/Equipment_Issue_Reporting:DO_IssueTrackingProcess", copy, "C000F957BEB5AA9E0E98E96A67EE2D06");
      mapper:map("E01DFA6EF0106AB0797011DFBC6D02004C4F4F50_2baa0100a79b04782f33bbea2160cdf3", yves_in, yves_out);
      data=yves_out:getData("demo.sap.com/reportissueprocessdc/Equipment_Issue_Reporting_Process/Equipment_Issue_Reporting", "$demo.sap.com/reportissueprocessdc/Equipment_Issue_Reporting_Process/Equipment_Issue_Reporting:DO_IssueTrackingProcess", "C000F957BEB5AA9E0E98E96A67EE2D06");
      context_1:setData(data);
      delete yves_in;
      delete yves_out;
      delete mapper;
      delete call;
      delete callscope;
      token:state=0;
    at com.sap.glx.core.kernel.execution.transition.ScriptTransition.execute(ScriptTransition.java:68)
    at com.sap.glx.core.kernel.execution.transition.Transition.commence(Transition.java:138)
    at com.sap.glx.core.kernel.execution.LeaderWorkerPool$Follower.run(LeaderWorkerPool.java:126)
    at com.sap.glx.core.resource.impl.common.WorkWrapper.run(WorkWrapper.java:58)
    at com.sap.glx.core.resource.impl.j2ee.ServiceUserManager$ServiceUserImpersonator$1.run(ServiceUserManager.java:121)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:337)
    at com.sap.glx.core.resource.impl.j2ee.ServiceUserManager$ServiceUserImpersonator.run(ServiceUserManager.java:118)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:169)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:277)
    Caused by: com.sap.glx.core.kernel.api.TransitionException: An exception occurred while executing the script command "call:invoke()"
    at com.sap.glx.core.kernel.trigger.config.Script.execute(Script.java:796)
    at com.sap.glx.core.kernel.execution.transition.ScriptTransition.execute(ScriptTransition.java:63)
    ... 11 more
    Caused by: java.lang.RuntimeException: com.sap.glx.adapter.api.AdapterException: com.sap.engine.interfaces.sca.exception.SCADASException: Could not invoke service reference name b51513b6-379d-4c0b-be2a-a3b13d7fe23b, component name demo.sap.comreportissueprocessdcBPMcomponent, application name demo.sap.com/reportissueprocessdc.
    at com.sap.glx.adapter.app.ucon.UnifiedWebServiceCallObject$PropagatedCall.run(UnifiedWebServiceCallObject.java:127)
    at com.sap.glx.core.login.LoginPersisterProxy$1.run(LoginPersisterProxy.java:76)
    at com.sap.glx.core.resource.impl.j2ee.J2EELoginPersisterImpl$1.run(J2EELoginPersisterImpl.java:80)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:396)
    at com.sap.glx.core.resource.impl.j2ee.J2EELoginPersisterImpl.invokeAsPropagated(J2EELoginPersisterImpl.java:74)
    at com.sap.glx.core.login.LoginPersisterProxy.invokeAsPropagated(LoginPersisterProxy.java:72)
    at com.sap.glx.adapter.app.ucon.UnifiedWebServiceCallObject.invokeWebServiceOperation(UnifiedWebServiceCallObject.java:93)
    at com.sap.glx.adapter.app.ucon.UnifiedWebServiceCallClass.invoke(UnifiedWebServiceCallClass.java:174)
    at com.sap.glx.core.dock.impl.DockObjectImpl.invokeMethod(DockObjectImpl.java:528)
    at com.sap.glx.core.kernel.trigger.config.Script$MethodInvocation.execute(Script.java:245)
    at com.sap.glx.core.kernel.trigger.config.Script.execute(Script.java:791)
    ... 12 more
    Caused by: com.sap.glx.adapter.api.AdapterException: com.sap.engine.interfaces.sca.exception.SCADASException: Could not invoke service reference name b51513b6-379d-4c0b-be2a-a3b13d7fe23b, component name demo.sap.comreportissueprocessdcBPMcomponent, application name demo.sap.com/reportissueprocessdc.
    at com.sap.glx.adapter.app.ucon.SCADASWrapperImpl.invoke(SCADASWrapperImpl.java:151)
    at com.sap.glx.adapter.app.ucon.UnifiedWebServiceCallObject$PropagatedCall.run(UnifiedWebServiceCallObject.java:125)
    ... 23 more
    Caused by: com.sap.engine.interfaces.sca.exception.SCADASException: Could not invoke service reference name b51513b6-379d-4c0b-be2a-a3b13d7fe23b, component name demo.sap.comreportissueprocessdcBPMcomponent, application name demo.sap.com/reportissueprocessdc.
    at com.sap.engine.services.sca.das.SCADASImpl.invokeReference(SCADASImpl.java:362)
    at com.sap.glx.adapter.app.ucon.SCADASWrapperImpl.invoke(SCADASWrapperImpl.java:116)
    ... 24 more
    Caused by: com.sap.engine.interfaces.sca.config.exception.ESBConfigurationException: Configuration not found for application: demo.sap.com/reportissueprocessdc,composite:reportissueprocessdc,component:demo.sap.comreportissueprocessdcBPMcomponent,reference:b51513b6-379d-4c0b-be2a-a3b13d7fe23b,bindingType:WS
    at com.sap.esi.esp.service.server.ESPServiceInterfaceImpl.getConfiguration(ESPServiceInterfaceImpl.java:450)
    at com.sap.engine.services.sca.plugins.ws.WebServiceImplementationInstance.initWsdas(WebServiceImplementationInstance.java:193)
    at com.sap.engine.services.sca.plugins.ws.WebServiceImplementationInstance.accept(WebServiceImplementationInstance.java:76)
    at com.sap.engine.services.sca.das.SCADASImpl.invokeReference(SCADASImpl.java:335)
    ... 25 more
    Caused by: com.sap.esi.esp.lib.mm.config.exceptions.ObjectNotExistsException: Configuration not found for application: demo.sap.com/reportissueprocessdc,composite:reportissueprocessdc,component:demo.sap.comreportissueprocessdcBPMcomponent,reference:b51513b6-379d-4c0b-be2a-a3b13d7fe23b,bindingType:WS
    at com.sap.esi.esp.service.server.esb.ConnectivityConfigurationManagerImpl.readConfiguration(ConnectivityConfigurationManagerImpl.java:276)
    at com.sap.esi.esp.service.server.ESPServiceInterfaceImpl.getConfiguration(ESPServiceInterfaceImpl.java:443)
    ... 28 more
    Caused by: com.sap.esi.esp.lib.mm.config.exceptions.ObjectNotExistsException: Configuration not found for application: demo.sap.com/reportissueprocessdc,serviceRefId:reportissueprocessdc_demo.sap.comreportissueprocessdcBPMcomponent_b51513b6-379d-4c0b-be2a-a3b13d7fe23b_WS. Please check the configuration details from the NWA. You may have not assigned the Service Group to a Provider System, or the generation of the configuration has failed.
    at com.sap.esi.esp.service.server.esb.ConnectivityConfigurationManagerImpl.readConfiguration(ConnectivityConfigurationManagerImpl.java:334)
    at com.sap.esi.esp.service.server.esb.ConnectivityConfigurationManagerImpl.readConfiguration(ConnectivityConfigurationManagerImpl.java:263)
    ... 29 more
    Date:  2010-06-16
    Time:  19:17:16:800
    Category:  com.sap.glx.core.kernel.execution.LeaderWorkerPool
    Location:  com.sap.glx.core.kernel.execution.LeaderWorkerPool
    Application:  sap.com/com.sap.glx.process.ear
    Thread:  Galaxy 340 / Follower Worker
    Data Source:  j2ee\cluster\server0\log\defaultTrace_00.trc
    Arguments:  
    DSR Transaction:  c6a0ff48796211dfca1602004c4f4f50
    Message ID:  com.sap.BPM.core_svc.000047
    Session:  0
    Transaction:  
    User:  SAP_BPM_Service
    Time Zone:  +0100
    Customer Message Component:  BC-BMT-BPM-SRV
    DC Name:  com.sap.glx.core.svc
    Correlation ID:  5164050000004002
    DSR Root Context ID:  C6A0FF48796211DFCA1602004C4F4F50
    DSR Connection:  c6a0ff48796211dfca1602004c4f4f50
    DSR Counter:  0
    Host:  dcwwwx11871
    System:  CE2
    Instance:  J00
    Node:  server0
    Log ID:  02004C4F4F50039E000000010000162C

    Hi,
    Your Error Says
    You may have not assigned the Service Group to a Provider System, or the generation of the configuration has failed. at com.sap.esi.esp.service.server.esb.ConnectivityConfigurationManagerImpl.readConfiguration
    Procedure to Create Provide System
    https://cw.sdn.sap.com/cw/docs/DOC-101203 (From the service where you are consuming)
    Procedure to Create and Assign ServiceGroup
    While importing the Enterprise Service into Automated Activity it will ask the name of Service Group.Please check what is the Service Group Name and Assign the Service Group to the Provider System by following the Below Procedure.
    https://cw.sdn.sap.com/cw/docs/DOC-109461
    Thanks
    Srikanth

  • Internet Explorer 11 not executing 32-bit processes

    Haven't found another posting exactly like this, so I am making one. I have a workstation running Windows 7 SP1 x64 with Internet Explorer 11 (v.11.0.9600.17728). I have a third-party 32-bit ActiveX Control that needs to run in this browser. However, every
    time I execute iexplore, it opens as a 64 bit process.  My understanding was that by default, IE11 runs a 64-bit wrapper, with 32-bit tabs, however when I check Task Manager, all I am seeing is a single iexplore.exe process, no iexplore.exe*32, no matter
    how many tabs I open, I only see the single iexplore process. I also cannot click and drag tabs to spawn separate IE windows; the tabs are all stuck in the single Internet Explorer window. I've tried manually running iexplore from the x86 Program Files folder
    and it still only runs the single 64-bit process. I'm looking for some guidance as to where to go next as this user needs to run this add-on and can't unless I can successfully get the 32-bit IE tabs to open.  The last version that I've confirmed successfully
    opened iexplore*32 processes was IE9, which was on here previously. IE10 and 11 have both failed to execute separate processes. Any assistance is much appreciated. Thanks.

    Hi,
    Based on my test, same result with Frederik. For your situation, have you tried to reset IE for test? 
    In addition, Enable IE protected mode and turn on 64 bit tab option is not help with this problem. If you doubt it is Group Policy problem, you can use GPresult command to check if there is any settings about IE.
    Open CMD with Administrator, type  GPRESULT /H GPReport.html
    After that, type .\GPReport.html command to open the report.
    If no use, you can try to use Process Monitor to check IE startup process for test. We may found some clue with this problem.
    You can access to the link below to download Process Monitor:
    https://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
    How to capture a Process Monitor trace:
    http://blogs.msdn.com/b/dswl/archive/2010/01/10/how-to-capture-a-process-monitor-trace.aspx
    Learning Example:
    Using Process Monitor to Troubleshoot and Find Registry Hacks:
    http://www.howtogeek.com/school/sysinternals-pro/lesson5/all/
    Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information. 
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • For-each loop atom not executing in B1if processing step

    Dear All,
    I have designed scenario in B1if in which Inbound is SAP ERP(ECC) IDOC and Outbound is UDO object. In this scenario I have loop placed in it, on the basis of IDOC fields I am executing query but it's not going inside the loop, I have entered correct path in loop. Please see attached image of processing, for loop path and inbound message.
    for-each path : /vpf:Msg/vpf:Body/vpf:Payload[./@Role='S']/ZSD_IDOC_B1_JW_ASN/IDOC/ZSD_SEG_B1_ASN_SO
    Inbound Message :
    - <Payload Role="S" mode="0">
    - <ZSD_IDOC_B1_JW_ASN xmlns="">
      <?msgid 150402232456625499260A1301F349C4?>
    - <IDOC BEGIN="1">
    - <EDI_DC40 SEGMENT="1">
      <TABNAM>EDI_DC40</TABNAM>
      <MANDT>120</MANDT>
      <DOCNUM>0000000000425819</DOCNUM>
      <DOCREL>731</DOCREL>
      <STATUS>30</STATUS>
      <DIRECT>1</DIRECT>
      <OUTMOD>2</OUTMOD>
      <EXPRSS />
      <TEST />
      <IDOCTYP>ZSD_IDOC_B1_JW_ASN</IDOCTYP>
      <CIMTYP />
      <MESTYP>ZSD_MSG_B1_ASN</MESTYP>
      <MESCOD />
      <MESFCT />
      <STD />
      <STDVRS />
      <STDMES>ZSD_MS</STDMES>
      <SNDPOR>SAPJED</SNDPOR>
      <SNDPRT>LS</SNDPRT>
      <SNDPFC />
      <SNDPRN>JED120</SNDPRN>
      <SNDSAD />
      <SNDLAD />
      <RCVPOR>B1IFPORT</RCVPOR>
      <RCVPRT>LS</RCVPRT>
      <RCVPFC />
      <RCVPRN>B1IFSYS</RCVPRN>
      <RCVSAD />
      <RCVLAD />
      <CREDAT>20150402</CREDAT>
      <CRETIM>175415</CRETIM>
      <REFINT />
      <REFGRP />
      <REFMES />
      <ARCKEY />
      <SERIAL>20150221173915</SERIAL>
      </EDI_DC40>
    - <ZSD_SEG_B1_ASN_SO SEGMENT="1">
      <SO_CREATE_DATE>04000205</SO_CREATE_DATE>
      <DELIVERY_DATE>04000205</DELIVERY_DATE>
      <CARD_CODE>04000205</CARD_CODE>
      <CARD_NAME>04000205</CARD_NAME>
      <SO_POSTING_DATE>04000205</SO_POSTING_DATE>
      <CUST_REF_NO>04000205</CUST_REF_NO>
      <PO>04000205</PO>
      <PO_ITEM>04000</PO_ITEM>
      <PO_MATERIAL>0400020504000205</PO_MATERIAL>
      <PO_QUANTITY>040002050400020</PO_QUANTITY>
      <PO_UOM>400</PO_UOM>
      <BOM_COMPONENT1>04000205</BOM_COMPONENT1>
      <BOM_COMPONENT2>04000205</BOM_COMPONENT2>
      <_--357F4>04000205</_--357F4>
      <ITEM_CODE>04000205</ITEM_CODE>
      <ITEM_NAME>04000205</ITEM_NAME>
      <QUANTITY>04000205</QUANTITY>
      <GROSS_WT>04000205</GROSS_WT>
      <NET_WT>04000205</NET_WT>
      <PCSPERPKT>0400020504000205</PCSPERPKT>
      <CUST_REQ_PKTWT>04000205</CUST_REQ_PKTWT>
      <ECC_BATCH>04000205</ECC_BATCH>
      <ECC_BATCH_QUALITY>04000205</ECC_BATCH_QUALITY>
      <SO_NO>04000205</SO_NO>
      <SO_ITEM>040002</SO_ITEM>
    - <ZSD_SEG_B1_ASN_CHARS SEGMENT="1">
      <S_PROD_TYPE>S_CRCACF</S_PROD_TYPE>
      <S_PROD_FORM>S_CRCACF</S_PROD_FORM>
      <S_PLANT>S_CRCACF</S_PLANT>
      <S_SUB_CON_SENDING_MAT>S_CRCACF</S_SUB_CON_SENDING_MAT>
      <S_JSW_GRADE>S_CRCACF</S_JSW_GRADE>
      <S_THICK_MM>S_CRCACF</S_THICK_MM>
      <S_WIDTH_MM>S_CRCACF</S_WIDTH_MM>
      <S_EQ_SPEC>S_CRCACF</S_EQ_SPEC>
      <S_UNITISATION>S_CRCACF</S_UNITISATION>
      <S_EDGE_CON>S_CRCACF</S_EDGE_CON>
      <S_COIL_ID_MM>S_CRCACFS_CRCACF</S_COIL_ID_MM>
      <S_PACKAGING_TYPE>S_CRCACF</S_PACKAGING_TYPE>
      <S_OIL_TYPE>S_CRCACF</S_OIL_TYPE>
      <S_OILING_CODE>S_CRCACF</S_OILING_CODE>
      <S_OIL_REQ>S_CRCACF</S_OIL_REQ>
      <S_END_APPN>S_CRCACF</S_END_APPN>
      <S_INT_EDGE_CON>S_CRCACF</S_INT_EDGE_CON>
      <S_SKINPASS_REQ>S_CRCACF</S_SKINPASS_REQ>
      <S_SURFACE_FINISH>S_CRCACF</S_SURFACE_FINISH>
      <S_ROUGHNESS_CODE>S_CRCACF</S_ROUGHNESS_CODE>
      <S_TOL_TYPE>S_CRCACF</S_TOL_TYPE>
      <S_THICK_TOL_TYPE>S_CRCACF</S_THICK_TOL_TYPE>
      <S_THK_TOL_MM_UPPER>S_CRCACF</S_THK_TOL_MM_UPPER>
      <S_THK_TOL_MM_LOWER>S_CRCACF</S_THK_TOL_MM_LOWER>
      <S_WDTH_TOL_MM_UPPER>S_CRCACF</S_WDTH_TOL_MM_UPPER>
      <S_WDTH_TOL_MM_LOWER>S_CRCACF</S_WDTH_TOL_MM_LOWER>
      <S_LENGTH_TOL_MM_UPPER>S_CRCACF</S_LENGTH_TOL_MM_UPPER>
      <S_LENGTH_TOL_MM_LOWER>S_CRCACF</S_LENGTH_TOL_MM_LOWER>
      </ZSD_SEG_B1_ASN_CHARS>
      </ZSD_SEG_B1_ASN_SO>
    - <ZSD_SEG_B1_ASN_SO SEGMENT="1">
      <SO_CREATE_DATE />
      <DELIVERY_DATE />
      <CARD_CODE />
      <CARD_NAME />
      <SO_POSTING_DATE />
      <CUST_REF_NO />
      <PO />
      <PO_ITEM />
      <PO_MATERIAL />
      <PO_QUANTITY />
      <PO_UOM />
      <BOM_COMPONENT1 />
      <BOM_COMPONENT2 />
      <_--357F4 />
      <ITEM_CODE />
      <ITEM_NAME />
      <QUANTITY />
      <GROSS_WT />
      <NET_WT />
      <PCSPERPKT />
      <CUST_REQ_PKTWT />
      <ECC_BATCH />
      <ECC_BATCH_QUALITY />
      <SO_NO />
      <SO_ITEM />
    - <ZSD_SEG_B1_ASN_CHARS SEGMENT="1">
      <S_PROD_TYPE />
      <S_PROD_FORM />
      <S_PLANT />
      <S_SUB_CON_SENDING_MAT />
      <S_JSW_GRADE />
      <S_THICK_MM />
      <S_WIDTH_MM />
      <S_EQ_SPEC />
      <S_UNITISATION />
      <S_EDGE_CON />
      <S_COIL_ID_MM />
      <S_PACKAGING_TYPE />
      <S_OIL_TYPE />
      <S_OILING_CODE />
      <S_OIL_REQ />
      <S_END_APPN />
      <S_INT_EDGE_CON />
      <S_SKINPASS_REQ />
      <S_SURFACE_FINISH />
      <S_ROUGHNESS_CODE />
      <S_TOL_TYPE />
      <S_THICK_TOL_TYPE />
      <S_THK_TOL_MM_UPPER />
      <S_THK_TOL_MM_LOWER />
      <S_WDTH_TOL_MM_UPPER />
      <S_WDTH_TOL_MM_LOWER />
      <S_LENGTH_TOL_MM_UPPER />
      <S_LENGTH_TOL_MM_LOWER />
      </ZSD_SEG_B1_ASN_CHARS>
      </ZSD_SEG_B1_ASN_SO>
      </IDOC>
      </ZSD_IDOC_B1_JW_ASN>
      </Payload>

    Hi Bastian,
    Thanks for response.
    In Graphical For-Each Loop I have used xpath </vpf:Msg/vpf:Body/vpf:Payload[./@Role='S']/ZSD_IDOC_B1_JW_ASN/IDOC/ZSD_SEG_B1_ASN_SO> and its correct as per the input message which I have shown in discussion, please correct me if I have done wrong inn xpath expression.
    As per my understanding I can not write loop in xslt because on the basis of some fields I am querying from database, if there is another way to achieve this please let me know.
    Thanks

  • Workflow Activities not executing in Parallel

    Hi,
    I am using Oracle Workflow as a dependency management system to load a Data Warehouse.
    Workflow Activities are used to execute a custom PL/SQL wrapper that kick off Oracle Warehouse Builder (OWB) mappings that load target tables with source system data.
    This process works correctly and data is loaded into the Data Warehouse as expected.
    However, when I create a Workflow with activities in parallel they are not loaded concurrently, they load sequentially instead.
    ie.
    START
    => ACTIVITY1 =>
    => ACTIVITY2 =>
    => ACTIVITY3 =>
    AND => END
    In the example above I would expect all 3 Activities to run in parallel, then wait until all 3 are completed at the AND condition.
    All 3 Activities above are DEFERRED to the Background Engine.
    After executing the Workflow and viewing the Workflow Public View WF_ITEM_ACTIVITY_STATUSES_V, it displays all of the Activities in DEFERRED status as expected.
    Workflow then proceeds to execute each Activity one at a time, instead of all 3 at once.
    Any ideas how to execute all 3 Activities in Parallel?
    Thanks.

    Hi,
    If the activities are all PL/SQL, then the Workflow Engine doesn't run anything in parallel - there is only one engine processing the activities. The theory is that it runs so quickly it will look like it's in parallel with no real effect.
    So what you are getting is expected behaviour - it's just that because you have deferred it to the background engine, you have a greater opportunity to see how the engine works.
    HTH,
    Matt
    Alpha review chapters from my book "Developing With Oracle Workflow" are available on my website:
    http://www.workflowfaq.com
    http://forum.workflowfaq.com
    NEW! - WorkflowFAQ Blog at http://thoughts.workflowfaq.com

  • Event in not triggered in parallel processing

    Hello ABAP community,
    i am playing around with ABAP OO and doing my first lessons in parallel processing. I am trying to comibine parallel processing (CALL FUNCTION STARTING NEW TASK) with the ABAP OO concept of events.
    The idea is to create many instances of a class (RECEIVER_CLASS) and call them in parallel. I want to catch the result of each CALL with the RECEIVE statement and trigger an event to inform the caller class about the finished function/class. In this case a method RESULT is called. I want to access the data of the event via the implicit parameter SENDER (according to online documentation).
    Here you can find a simple report. The event seems to be triggerd but the method RESULT will never be called.
    REPORT  zcra_parallel2.
    *       CLASS receiver_class DEFINITION
    CLASS receiver_class DEFINITION.
      PUBLIC SECTION.
        METHODS:
          start IMPORTING value(i_taskname) TYPE char8,
          receiver1 IMPORTING value(p_task) TYPE clike.
        <b>EVENTS:
          finished.</b>
    ENDCLASS.                    "receiver_class DEFINITION
    *       CLASS receiver_class IMPLEMENTATION
    CLASS receiver_class IMPLEMENTATION.
      METHOD start.
        CALL FUNCTION 'ZZ_CRA1' STARTING NEW TASK i_taskname
          CALLING me->receiver1 ON END OF TASK
          EXPORTING
            mytask = i_taskname.
        IF sy-subrc = 0.
          WRITE: /, i_taskname, ' TASK started...'.
        ENDIF.
      ENDMETHOD.   "start
      METHOD receiver1.
        DATA:
          myinfo TYPE TABLE OF zcra1.
        RECEIVE RESULTS FROM FUNCTION 'ZZ_CRA1'
          TABLES my_itab = myinfo.
        <b>RAISE EVENT finished.</b>
      ENDMETHOD.                                                "receiver1
    ENDCLASS.                    "receiver_class IMPLEMENTATION
    *       CLASS x DEFINITION
    CLASS caller DEFINITION.
      PUBLIC SECTION.
        DATA:
          y_ref TYPE REF TO receiver_class,
          z_ref TYPE REF TO receiver_class.
        METHODS:
          constructor,
          <b>result FOR EVENT finished OF receiver_class.</b>
    ENDCLASS.                    "callerx DEFINITION
    *       CLASS callerx IMPLEMENTATION
    CLASS caller IMPLEMENTATION.
      METHOD constructor.
        SET HANDLER: me->result FOR ALL INSTANCES.
        CREATE OBJECT: y_ref, z_ref.
        CALL METHOD y_ref->start( 'WAIT1' ).
        CALL METHOD z_ref->start( 'WAIT2' ).
      ENDMETHOD.                    "constructor
      <b>METHOD result.
        WRITE: /, 'EVENT TRIGGERD!'.
      ENDMETHOD.</b>                    "result
    ENDCLASS.                    "callerx IMPLEMENTATION
    DATA:
      mycaller TYPE REF TO caller.
    START-OF-SELECTION.
      CREATE OBJECT mycaller.
    Thanks for any help!

    Here is the sample program that I'm working with.  I took your code and changed some things in order to get it working on my system(46c).   Maybe this will help you.
    report zrich_0003 .
    data:    session(1) type c.
    data:    event_fired(1) type c.
    *       CLASS receiver_class DEFINITION
    class receiver_class definition.
      public section.
        methods:     trigger_event,
                     start importing value(i_taskname) type char8,
                     receiver1 importing value(p_task) type c .
        events:      finished.
    endclass.
    *       CLASS receiver_class IMPLEMENTATION
    class receiver_class implementation.
      method start.
        data: messtab type table of bdcmsgcoll,
              bdcdata type table of bdcdata .
        call function 'ABAP4_CALL_TRANSACTION' starting new task i_taskname
    *      calling me->receiver1 on end of task
           performing reciever on end of task
            exporting        mytask = i_taskname
                     tcode                         = 'SM50'
                     mode_val                      = 'N'
                     update_val                    = 'S'
                   tables
                     using_tab                     = bdcdata
                     mess_tab                      = messtab.
        wait until session = 'X'.
    *    if sy-subrc = 0.
    *      write: / i_taskname, ' TASK started...'.
    *    endif.
      endmethod.   "start
      method receiver1.
    *    data: myinfo type table of zcra1.
    *    receive results from function 'ABAP4_CALL_TRANSACTION'
    *   tables
    *      mess_tab              = messtab.
    *    raise event finished.
      endmethod.
      method trigger_event.
        raise event finished.
      endmethod.
    endclass.
    *       CLASS caller DEFINITION
    class caller definition.
      public section.
    *    data: y_ref type ref to receiver_class,
    *          z_ref type ref to receiver_class.
        methods:
        constructor,
        result for event finished of  receiver_class.
    endclass.
    *       CLASS caller IMPLEMENTATION
    class caller implementation.
      method constructor.
        set  handler: me->result for all instances.
    *    create object: y_ref, z_ref.
    *    call method y_ref->start( 'WAIT1' ).
    *    call method z_ref->start( 'WAIT2' ).
      endmethod.
      method result.
        event_fired = 'X'.
      endmethod.
    endclass.
    data: y_ref type ref to receiver_class,
          z_ref type ref to receiver_class.
    data: mycaller type ref to caller.
    start-of-selection.
      create object mycaller.
      create object: y_ref, z_ref.
      call method y_ref->start( 'ZRICH2' ).
      write:/ 'Event Fired:', event_fired.
    *       FORM reciever                                                 *
    *  -->  TASKNAME                                                      *
    form reciever using taskname.
      data: messtab type table of bdcmsgcoll.
      receive results from function 'ABAP4_CALL_TRANSACTION'
           tables
              mess_tab              = messtab.
      session = 'X'.
      call method y_ref->trigger_event.
    endform.
    Regards,
    Rich Heilman

  • Miro user exit  does not hits

    Hi ALL,
       i have implenented   LMR1M001---- EXIT_SAPLMRMP_010 user  exit, but  while miro  it does not   hit expression:
    I  put break-point  in EXIT_SAPLMRMP_010- ZXM08U16.
    I have created project in following way.
    In tcode CMOD  create project  ZMIRO.
    In enhancement  assigment   create LMR1M001.
    In exit  EXIT_SAPLMRMP_010-ZXM08U16.
    I write code.
    and activated both project and include.
    and i  set debug mode active.
    But while running miro. it does not hit:
    In miro i  am doing following operation.
          select subsequent debit.
         In Basic data tab i insert
    date.
        In Detail tab i insert Un
    planned delevery cose
        Insert
    Purchase order no.  
    And press Enter.
        After Pressing
    enter, It exutue directly without  calling user exit.
    Please help me,
    Thanks,

    Hi,
    May be this exit is not called for your scenario or the condition to trigger that exit may not have met.
    Just activate your SQL Trace and then run MIRO. Just check in the tace log whether your exit is called. Else you may use another one.
    Regards,
    Renjith Michael.

  • Inbound idoc values when updated from user exit not saved

    I'm trying to process some user exits of an inbound idoc from WE19.
    The values get correctly populated to IDOC_DATA internal tables of IDOC_INPUT_ORDRSP function module in debug kode
    but when the new idoc is generated from WE19 , those segment values (populated by exit) are not shown/saved.
    The user exit is EXIT_SAPLEINM_007.
    Is it not possible to populate segment values of inbound idocs from using user exits. If yes , then during testing using WE19 , every time a new idoc is created it should display those values into the concerned segments. Please help.

    Hello,
    yes is possible it ...
    I think the problem is:
    or
    you have something wrong when to append the new line on internal table
    or
    the exit used is not correct: read the documentation on EXIT_SAPLEINM_0**

Maybe you are looking for

  • Why is it that when iam trying to play movie in my iPad with netflix, it kept on shutting off?

    What is it with Netflix and IPad that I have to open over and over again b/c it kept on shutting it off when trying to select movies from it's selection. It is sooo frustrating! That is the main reason why I purchased this IPad in the first place. Is

  • Where to copy a paper profile created with Colormunki in PSE 8 on a Mac

    Hello -  I am using PSE 8 on a Mac running Snow leopard, version 10.6.2 with the latest updates.  I have calibrated my monitor using Colormunki and profiled the Canon Photo Paper Plus for use on my Canon ip5300 printer.  So far, so good.  However, wh

  • Searching using google spits out random characters. Example below after searching the letter j.

    Hi, my google search has always worked perfectly but recently it is just giving a page of random characters. This happens both on the quick search icon and from google.com. Google is still working fine using Safari? e.g. ‹ÿÔ}k{Û6Òè÷ü †Þ:RCѤ.¶,…ÉIšK»

  • Unable to load performance pack

    Hi all, Can anyone solve this problem. I am starting weblogic server and it gives me message "Unable to load performance pack, using java i/o. It starts the server but it gives me above exception also. Thanks. Zahid.

  • MEMBERSET IN EVDRE

    Hello, I'm trying to generate a memberset for an evdre report. My syntax is : YEAR="2008" OR (YEAR="2009" AND PERIOD="JAN") This is just a simple example for the time dimension. This used to work. But now in SAP BPC 7 SP2 patch 1 this is not working