Job notification - Invoking a procedure

We are trying to get job notification email for success/fail. If it is failed we want to get the error details. The default mechanism is not allowing to get the error details.
1.I heared that by using job notifications/notification rules we could invoke a custom procedure. Oracle is giving a object from which we can get all details about the job.
Is it true?
2. Can we able to do this for job?
3. If yes, can we able to get full details in this object? like divided by zero error happend in the called procedure of the job.
Please let us help to find a way. Thanks for your help, I appreciate it.

hi
Your problem is that your O.S is windows. In my enviroment i have some JOBS that send me a email if the execution fail, but the mail is sender for the OS and not for GC. This is an example
I create a JOB of OS/COMAND in CG and is a single operation that execute:
/home/scripts/maitenance.sh
The script is executed each day at 1:00 AM
#maitenance.sh
#!/bin/ksh
# maitenance.sh
# enviroment variables
ORACLE_HOME=/oracle/product/10.2.0
ORACLE_SID=PROD
LOG=/home/oracle/log/maitenance.log
export ORACLE_HOME
export ORACLE_SID
#FIRST STEP
#DROP A SCHEMA
$ORACLE_HOME/bin/sqlplus "/ as sysdba" <<__EOF__>> $LOG
WHENEVER SQLERROR EXIT;
DROP USER MYSCHEMA CASCADE;
__EOF__
# Now i test the correct execution and send a mail if
# this have failed
res=$?
if [ $res -eq 0 ]
then
echo "EXECUTION OK" >> $LOG
# now send a mail when the log contents to mailadress
cat $LOG | /usr/bin/mail -s "EXECUTION_OK" [email protected]
else
echo "ERROR IN EXECUTION" >> $LOG
# now send a mail because the execution have failed with the log contents
cat $LOG | /usr/bin/mail -s "EXECUTION FAILED" [email protected]
fi
And for each step of the script i check the result and send a mail with the OK or with the ERROR.
The problem is that i dont know if this is possible in WINDOWS. You need a program that send mails and this must be runing in cmd.
A friend of my company, say me that exist a shell enviroment that his functionality is very similar to linux. His name is cigwin.
Other option more complex is to use the DBMS_ALERTpackage, but only for SQL SCRIPTS jobs
Regards

Similar Messages

  • Add Email Job Notification via SQL Developer

    Hello,
    I'm a novice in the Oracle Scheduler space and I have what is likely a novice question.  However, I'm thoroughly turned around after searching and would gladly welcome some help.
    I'm using SQLdeveloper to utilize Oracle Scheduler within my schema.
    A procedure has been successfully created.  The job which executes the procedure is also successfully configured.
    Next I'd like to configure email notification for certain events.
    I've found a number of posts regarding the ADD_JOB_EMAIL_NOTIFICATION procedure.
    I.e., http://docs.oracle.com/cd/E11882_01/appdev.112/e25788/d_sched.htm#ARPLS72277
    However, I'm having trouble identifying how to get started implementing this within SQL Developer.
    Can someone please help with how the ADD_JOB_EMAIL_NOTIFICATION can be implemented within SQL developer?
    Another point I want to mention: in a previous prototype, I found a wizard to configure the email notification.  I'm not seeing that now.  Is there a wizard with SQL Developer in which this information can be configured? 
    Extremely grateful for any help you can provide.
    Thanks - Fritz

    Thank you for your response.
    I'm entering that block into a SQL worksheet and it has now been accepted.  I was mis-interpreting an error message which was thrown in my earlier attempts.  Looks like the name of my job was problematic.  I've renamed that and the add job email notification block is now being completed.
    Thanks much for your help.
    Also I've tried using the get_scheduler_attribute to see if an email server is already configured.  However, I'm not using this correctly either.  Only these attributes can be viewed through get scheduler attribute.
    Scheduler Attribute
    Description
    default_timezone
    Default time zone used by the Scheduler for repeat intervals and windows
    log_history
    Retention period in days for job and window logs
    max_job_slave_processes
    Maximum number of job slave processes that the Scheduler can start. May be NULL.
    current_open_window
    Name of the currently open window
    event_expiry_time
    Time in seconds before an event generated by the Scheduler and enqueued onto the Scheduler event queue expires. May be NULL.
    Any suggestions of how to view which notifications are configured for a job?
    Thanks again! Fritz

  • Invoke a procedure from a MQ adapter

    I plan to invoke a procedure (request/reply paradigm) from a MQ adapter. The MQ adapter configured in client mode will receive a message from a remote MQ Queue Manager. On reception of a message, it will invoke the procedure. A DB adapter will implement the procedure (stored procedure). The reply will be resent to MQ Series. In MQ Series (now called Websphere MQ) terminology the MQ Message Correlation ID of the reply message must contain the Message ID of the request (quite logic in all MOM implementations). So far I couldn't find in the Oracle documentation if this is handled by the MQ adapter automatically. I didn't find either a way to retrieve the Message ID from the MQ message nor how to force the Correlation ID.
    Did someone already looked at implementing a request/reply with a MQ adapter?
    Claude

    Claude,
    The support for invoke and implement messages, such as Procedure calls, is enabled by the native support for request and reply messages in MQ Series, including its message correlation capability. It is only available when the MQ Series adapter operates in D3L mode.
    In order to take advantage of this capability, a few extra steps need to be performed during configuration, including modifying the D3L files and defining correlation fields in iStudio.
    Pl check the following link for more details: http://iasdocs.us.oracle.com/iasdl/90402integration/integrate.904/b10411/runtime.htm#1009211
    Should you have further questions, pl update this forum thread with more info. Thanks.
    - Latha

  • XSQL: how to invoke stored procedure from XSQL

    Any one has example on how to invoke stored procedure within XSQL with associated *.xsl? What the syntax looks like? Thanks.

    If you want to simply invoke a stored procedure, use:
    <xsql:dml>
    begin
    proc(args);
    end;
    </xsql:dml>
    If you want to return XML that your stored procedure "prints" to the OWA page buffer, then use:
    <xsql:include-owa>
    If you want to invoke a stored function that returns a REF CURSOR function, then use <xsql:ref-cursor-function>
    null

  • Siebel analytics(Invoking Stored Procedure)

    Hi all,
    I am using Siebel Analytics(7.8.2) and am a new bee to this.
    I have invoked stored procedure from Siebel Administration but is it possible to do the same from Siebel web analytics?. I have a report where on clicking on a link/button i want to invoke a stored procedure.
    Thanks in advance
    Dhrubo...

    Hi,
    create java impl class of application module by going to java tab
    and refer following code
        public Connection getCurrentConnection() {
            Statement st = null;
            try {
                st = getDBTransaction().createStatement(0);
                return st.getConnection();
            } catch (SQLException s) {
                s.printStackTrace();
                return null;
            } finally {
                if (st != null)
                    try {
                        st.close();
                    } catch (SQLException s2) {
    public void callP(){
    Connection conn = getCurrentConnection();
                 CallableStatement cs = null;
                String stmt = "xx.xx(?,?,?,?,?,?,?)";  // ? depends on number of parametrers of procedure
                try {
                    cs = conn.prepareCall("begin " + stmt + "; end;");
                    cs.setObject("parameterName", "some Value");
                    cs.execute();
                } catch (SQLException e) {
                   throw new JboException(e);
                } finally {
                    if (cs != null) {
                        try {
                            cs.close();
                        } catch (SQLException e) {
    calling oracle stored procedure in java
    Hope this helps
    Edited by: Santosh Vaza on Apr 25, 2012 12:07 PM

  • SQL Agent Job Notification - Database Mail problem

    Hi
    I'm a little stumped. Have setup database mail on SQL Server 2008 (SP1 x64) and its working fine except when its supposed to send out a SQL Agent job notification.
    I've enabled database mail on SQL Agent and have specified a profile, but when it tries to send an email on agent job completion it errors with "NOTE: Failed to notify '<operator>' via email."
    Can anybody help?
    Thanks

     Hi Webdawg, 
      As suggested above, try these steps.
     1. Try  test email first, this can be by done (right click on database mail under mangement folder). prior to that you should already have a profile configured to send the emails and make sure you got the right SMTP server and  do not block
    port 25.
    2.If test is succeeds, enable mail option under sql server agent properties and select 'database mail' and corresponding profile.Add the reciepents email to the operators under sql server agent(check the enabled option here). Restart the SQL sever
    here.
    3. Create your sql job and in the notifcations section you should see email option and should have the operator email you configured above.
    Try it out. let us know. Hope it helps.
    If the test succeeds and still you did not get the email from sql job, check the database mail log and check whether it is being queued. let us know. 
    Please mark as 'Answer', if the solution solves your problem.

  • Invoking a procedure/method via a string

    I know this is probably a long shot, but I will ask anyway...
    What I would like to do is invoke a procedure/method in a class/package which is not the current one by building a string which makes up the call and the parameters and then running it somehow. PLUS, I would like to receive a return value or object from the call....
    eg.
    String command = "getname(id)";
    retval = dummy.execute(command);
    I have looked at RMI, but it does not seem to go this far...
    suggestions would be much appreciated...

    I know this is probably a long shot, but I will ask
    anyway...
    [snip]
    I have looked at RMI, but it does not seem to go this
    far...
    suggestions would be much appreciated...What you are looking for is not RMI, but Reflection.
    Specifically, you will be performing roughly the steps, as explained by calling the String.indexOf(String) method...// import java.lang.reflect.*;
    // Identify the object being called
    Object methodOwner = "This is a test";
    // Identify the class containing the method definition
    Class methodClass = String.class;
    // Identify the method parameters
    Class[] paramTypes = new Class[] { String.class };
    // Find the method *1
    Method method = methodClass.getMethod("indexOf", paramTypes);
    // Create the argument list
    Object[] params = new Object[] { "test" };
    // Invoke the method *2
    Object result = method.invoke(methodOwner, params);
    System.out.println(result); // Prints the Integer with value 10Note that exceptions may be thrown at marks *1 and *2, of which the InvocationTargetException at *2 will probably of most interest, meaning that an exception ocurred in the method being invoked - the exception that was thrown can be found by the getTargetException() method on the InvocationTargetException.
    Hope this helps,
    -Troy

  • Invoking a procedure in the package

    Hi All,
    I am planning to invoke three procedures into one package...
    the main problem is the procedures are like procedures with in the procedures
    so while iam invoking do i need to specify the main procedure (or) all the procedures in the package specification?
    oracle version: 10g

    Are you saying that you have a stucture like this?
    PROCEDURE p (p_var IN NUMBER) IS
       < variable declarations >
       PROCEDURE inside_p (p_var2 IN NUMBER) IS
          < inside_p variables >
       BEGIN
          < inside_p body >
       END inside_p;
    BEGIN
       < do_stuff >
       inside_p(42);
       < do more stuff >
    END p;If so, then you only need to declare p in your package spec, in fact you cannot declate inside_p in your spec since it is only "known" within the scope of p. That is, you cannot even call it from another procedure in the package, let alone form outside.
    However, if you have a structure more like:
    PROCEDURE inside_p (p_var2 IN NUMBER) IS
       < inside_p variables >
    BEGIN
       < inside_p body >
    END inside_p;
    PROCEDURE p (p_var IN NUMBER) IS
       < variable declarations >
    BEGIN
       < do_stuff >
       inside_p(42);
       < do more stuff >
    END p;Then you can declare inside_p in the package spec, but do not neccessarily have to. If you want to be able to call inside_p on it's own form outside the package then it needs to be in the package spec. If you just want it to be available to procedures within the package then you do not need to declare it in the space.
    John

  • SQL Server Job Notifications Disabled

    Hi All,
    This morning I noticed that my production job notifications are not configured, I used to get the alerts using the same operator before and now suddenly I see all jobs have no notifications set. Is dropping and recreating Jobs remove all Notifications? Also
    when I check the operator properties it says Never e-mailed. Where can I see this history if some body did it manually? I have job alerts in my inbox received last week.
    Swapna

    Hello,
    No need to worry, everything is fine here.
    If a principal is disabled, then it has a red arrow pointing down in the icon, like my "sa" account below. Here you have a red pin icon and this means you can't modify it. Since SQL Server 2014 we can create user defined server role (below "MyUserDefinedServerRole"),
    which wasn't possible in SQL Server 2012 and lower version. As you can see in the screenshot below, user defined roles don't have a red pin and can be modified, while predefined server roles do have a pin:
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Job notification

    We have Enterprise Manager Database (not Grid) Control. I would like to implement job notification. Is there a way to do this?
    Specifically, I have a job that generates a log file. When the job terminates I would like to have the log file emailed to me. It appears that Grid Control lets you set notifications based on changes in job status. Is there any way to do this with Database Control?

    I am not sure if there is a way using Database Control, but you can using PL/SQL. I have a job the sends an email only if there is an error. My exception handler sends me the oracle error in an email. I got the sample code from the OTN downloads page for PL/SQL. It can handle attachments but I have not tried that yet. I plan on implementing some of my cron jobs into the scheduler after we finish the migration to 10gR2. Currently the cron job emails reports and a log but they are embedded within the email, but an attachment might be better for some.
    bj
    http://www.oracle.com/technology/sample_code/tech/pl_sql/index.html
    Send email from the database using the UTL_SMTP package
    http://www.oracle.com/technology/sample_code/tech/pl_sql/htdocs/Utl_Smtp_Sample.html

  • EPrint job notification email

    How do I stop automatic emails confirming ePrint has received the job notification and is printing?

    There is another possible solution... If you go to ePrintCenter and click on ePrint Settings... if "Everyone" is selected under "Allowed Senders," then there's no way to turn off notifications. However, if you select "Allowed Senders Only," then you have the option to select whether each e-mail address receives notifications. Of course, this is only realistic if you wish to restrict who can use ePrint with your printer. I agree that a better solution would be to allow users to turn off ALL e-mail notifications...
    I am an HP employee.

  • To invoke tax procedure from SRM

    Hi Guru's
    We are using SRM ECS and our backend is connected to TAXWARE. Can you please let me know how to invoke TAX Procedure/Pricing Procedure in backend from SRM. If you can list the BAPI's, FM, RFC's that would be helpful.
    Thanks in advance
    Deepu.

    closed

  • Cannot Send Email Notification Using Stored Procedure.

    Hi Friends,
    I tried to execute this job scheduler...
    begin
    dbms_scheduler.create_job(
    job_name => 'ILMS_JOB_SCHEDULE'
    ,job_type => 'PLSQL_BLOCK'
    ,job_action => 'begin ilms.check_reminder(); end; '
    ,start_date => SYSTIMESTAMP
    ,repeat_interval => 'FREQ=DAILY'
    ,enabled => TRUE
         ,end_date => NULL
    ,comments => 'Ilms job schedule for notification.');
    end;
    However, since the effect is too long I rescheduled the frequency to be every one minute in this set attribute...
    BEGIN
    DBMS_SCHEDULER.SET_ATTRIBUTE(
              name => 'ILMS_JOB_SCHEDULE'
              ,attribute => 'repeat_interval'
              ,value => 'FREQ=MINUTELY;INTERVAL=1'
    DBMS_SCHEDULER.DISABLE('ILMS_JOB_SCHEDULE');
    DBMS_SCHEDULER.ENABLE('ILMS_JOB_SCHEDULE');
    END;
    Check Reminder is the stored procedure invoked by job scheduler to check values in database columns before sending email notification to the respective recipients' email address and also the format of the email notification to be sent to the recipients...
    CREATE OR REPLACE PROCEDURE check_reminder AS
    NO number;
    CURSOR emp_cur is
    select * from pergerakan_ks where TASK_FLAG=7 and TASK_STATUS='InProgress';
    emp_rec emp_cur%rowtype;
    email_to varchar2(200);
    default_email varchar2(200);
    mesg varchar2(4000);
    no_kes varchar2(100);
    subj varchar2(4000);
    kpi number;
    crlf VARCHAR2( 2 ):= CHR( 13 ) || CHR( 10 );
    BEGIN
    default_email:='@abc.com.my';
    FOR emp_rec in emp_cur
    LOOP
    if emp_rec.PKS_TKH_TERIMA is null then
    dbms_output.put_line('count day ' || round(sysdate - to_date(emp_rec.pks_tkh_hantar)) || crlf || crlf);
    if round(sysdate - to_date(emp_rec.pks_tkh_hantar)) >3 then
    email_to:=emp_rec.pks_penghantar_id||default_email;
    select b.KS_BIL_NO into no_kes from kertas_siasatan b where b.KS_ID = emp_rec.pks_ks_id;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    dbms_output.put_line('update old pergerakan pks_id : '||emp_rec.pks_id);
    update pergerakan_ks set task_status='Done' where pks_id=emp_rec.pks_id;
    dbms_output.put_line('insert new pergerakan ks : ');
    insert into pergerakan_ks(pks_id,pks_ks_id,pks_km_id,pks_penghantar_id,pks_tkh_hantar,
    pks_penerima_id,pks_tkh_terima,task_name,task_owner,task_status,task_flag,fb_id)
    values(pks_id_seq.nextval,emp_rec.pks_ks_id,emp_rec.pks_km_id,
    emp_rec.pks_penghantar_id,sysdate,
    null,
    null,emp_rec.task_name,
    emp_rec.pks_penghantar_id,
    'InProgress',6,emp_rec.fb_id);
    commit;
    e_mail_message(email_to,email_to,subj,mesg);
    end if;
    end if;
    if emp_rec.PKS_TKH_TERIMA is not null then
    dbms_output.put_line('emp_rec.pks_km_id ' || emp_rec.pks_km_id || crlf);
    select c.KM_KPI into kpi from keluar_masuk_ks c where c.KM_ID = emp_rec.pks_km_id;
    no := round(sysdate - to_date(emp_rec.pks_tkh_terima))-kpi;
    dbms_output.put_line('count day - kpi' || no || crlf);
    dbms_output.put_line('kpi ' || kpi || crlf);
    if no = 1 then
    email_to:=emp_rec.pks_penghantar_id||default_email;
    select b.KS_BIL_NO into no_kes from kertas_siasatan b where b.KS_ID = emp_rec.pks_ks_id;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    email_to:=emp_rec.task_owner||default_email;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    e_mail_message(email_to,email_to,subj,mesg);
    e_mail_message(email_to,email_to,subj,mesg);
    end if;
    if no = 3 then
    select b.KS_BIL_NO into no_kes from kertas_siasatan b where b.KS_ID = emp_rec.pks_ks_id;
    email_to:=emp_rec.task_owner||default_email;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    e_mail_message(email_to,email_to,subj,mesg);
    end if;
    end if;
    END LOOP;
    END;
    E_mail_message is the stored procedure invoked by the check_reminder to tell scheduler information of the connection and the email address of the recipients...
    CREATE OR REPLACE procedure
    e_mail_message
    from_name in varchar2,
    to_name in varchar2,
    subject in varchar2,
    message in varchar2
    is
    l_mailhost VARCHAR2(64);
    l_from VARCHAR2(64);
    l_to VARCHAR2(64);
    crlf VARCHAR2( 2 ):= CHR( 13 ) || CHR( 10 );
    l_mail_conn UTL_SMTP.connection;
    mesg VARCHAR2( 4000 );
    BEGIN
    select a.SERVER into l_mailhost from email_setting a where a.SERVER is not null;
    select a.USERNAME into l_from from email_setting a where a.SERVER is not null;
    --UTL_SMTP.open_data(l_mail_conn);
    mesg:= 'Date: ' || TO_CHAR( SYSDATE, 'dd Mon yy hh24:mi:ss' ) || crlf ||
    'From: <'||l_from||'>' || crlf ||
    'Subject: ' ||subject|| crlf ||
    'To: '||to_name || crlf || '' || crlf ;
    mesg:=mesg||message;
    l_mail_conn := UTL_SMTP.open_connection(l_mailhost, 25);
    UTL_SMTP.helo(l_mail_conn, l_mailhost);
    UTL_SMTP.mail(l_mail_conn, l_from);
    UTL_SMTP.rcpt(l_mail_conn, to_name);
    UTL_SMTP.data(l_mail_conn, mesg);
    UTL_SMTP.quit(l_mail_conn);
    END;
    I tried to execute to execute the e_mail_message procedure but received this error. Also, no notification sent to the email address...
    ORA-29279: SMTP permanent error: 501 5.1.3 Invalid address
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 241
    ORA-06512: at "ILMS.E_MAIL_MESSAGE", line 33
    ORA-06512: at line 13
    Please help so that I can receive the email notification into my email...thanks in advance for your time..

    user13281540 wrote:
    ORA-29279: SMTP permanent error: 501 5.1.3 Invalid address
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 241
    ORA-06512: at "ILMS.E_MAIL_MESSAGE", line 33
    ORA-06512: at line 13This is not an Oracle error - this is the mail server saying "+hey, I don't like that e-mail address you are supplying, I'm not accepting it!+".
    If you look at RFC821 (Request For Comments memo 821 describes the SMTP specifications), you'll see that the sender and recipient needs to be supplied in the format +<[email protected]>+, e.g. +<[email protected]>+.
    I have found that not all SMTP servers are equal in this regard. Some may insist on the brackets around the address, some may not.
    You need to confirm the format of the addresses you use in the "+MAIL FROM+" and "+RCPT TO+" commands.. and ensure that these formats are accepted by your SMTP server - and if not, change your code to use an acceptable format.
    The easiest way to do this is using telnet - and interacting directly and manually with the server. SMTP is a clear text protocol and easy to use manually. Try it. It is the best way to test SMTP interaction and validate the approach and SMTP commands and arguments used by your code.

  • How to control job created inside a procedure

    Scenario:+*
    I have a package which has 14 procedures which are interdependent and hence running in sequence. The entire process will take around 1.5 hrs to complete. So inorder to bring down time consumed to complete this process i have identified few procedures among this 14 which can be run in parallel. That lead to me to use DBMS_SCHEDULER and had successfully splitted these procedures and now these procedures are execute some in parallel then some in sequence, the starting of one depending on the ending of other with the help of programs, chains and chain rules.
    To achieve this i have a job at the end of my package, to execute the chain, for which the auto_drop attribute is set to TRUE as i dont want the job to be in the database sitting idle. Here job is created on the fly.
    Issue:_*
    As soon as the controll reaches DBMS_SCHEDULER.ENABLE ('job'), my chain starts running in the backend and the API gives the output procedure is completed.
    Here actually the procedure is not completed as the job is still running in the backend. But the java code which calls the procedure is receiving the message that procedure is completed.
    Question:*
    How can i stop the API sending the message "Procedure succesfully completed" before completing the job.
    Please advice

    DBMS_SCHEDULER package use to execute Procedure, Executable blocks etc..without manual intervention on specific timings. As soon as you submits the job it will reply you "Procedure successfully completed" that means successfully accepted.
    It does not know how many times that job needs to be executed in future. After completion of job how it will return successful message ( to which session?).
    You need to check the status of the job using various data dictionaries available in oracle to know the status of your job.
    In java code you interpret that, whenever you get such message that mean job submitted not completed.

  • Background job not invoking in CC.

    hi,
    I am facing a problem in running background job in CC. Actually its invoking a wrong url and when i am checking in application deployed url is different.
    We are at CC SP9.
    Url invoked is "is http://hostname:51700/webdynpro/dispatcher/virsa/ccappcomp/BgJobStart?daemonId=/usr/sap/FAP/DVEBMGS17/j2ee/cluster/server1/.&threadId=4&daemonType=WS
    As per deployment
    Url should be "http://chmsxp41.eame.syngenta.org:51700/webdynpro/dispatcher/sap.com/grc~ccappcomp/BgJobStart"
    Please suggest.
    Thanks & Regards,
    Pravin

    Please check SAP Note 999785.
    Somewhere between SP04 and SP06 the URL changed, and you need to re-configure that on database level (change "virsa/ccappcomp" to "sap.com/grc~ccappcomp").
    Frank.

Maybe you are looking for

  • Huge difference in speed from same the same exchan...

    Hey, I recently got Infitiy up to 38mb and I'm estimated 21mb-29mb and get around 23mb, I would have paid more to get up to 76mb but was told that the speed isn't posible in my area. A friend then went out and got his Fibre (With TalkTalk) and is get

  • My CS2 templates are printing out in reverse.

    My CS2 Templates are printing out in reverse. All other programs are printing normally. Can anyone advise to clear this problem. Many thanks

  • Can't set ipv6 static address

    As the topic states, I can not setup a static IP to save my life. I've enabled ipv6, I have a hostname6.ce1 I put the hostname (madrid-ipv6) in the hostname6.ce1 file but it will not stay set. I've tried the addif command, and it creates a logical in

  • Uix page event fired everytime

    Is there a way within a uix page definition to cause an event in the handler section to fire everytime the page is accessed, no matter how control gets passed to it? Thanks, Steve

  • Com.hyperion.planning.olap.Essbase.exception 101960

    Received the following error message when trying to refresh database action for planning application.  Searched for this error message, but was not able to find any info. Dave