Problem with job RDDEXECL (STMS)

Hi Coleagues
The problems is that  job RDDEXECL(Execution of programs for post - import processing) is canceled during execution.
with the error:
*What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLPRGN_UTILITIES" had to be terminated because one
     of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    In program "SAPLSUPRN ", the following syntax error occurred
    in the Include "LSUPRNF3J " in line 117:
    "Different number of parameters in FORM and PERFORM (routine: AUTH_NEW_"
    "AUTH, number of formal parameters: 3, number of actual parameters: 2)."
    Author and last person to change the Include are:
    Author "SAP "
    Last changed by "SAP "*
I have  performed  the checking of syntax for programs involved and checked if occur some change in this programs  recently.
I not found nothing.
My sap is ECC 5.0 on Unix with oracle .
Could anyone let me know where is the issue please ?

Hi Deepika
The version of this report is the same in the all environments. In the others environments this report works without problems.
More details about error:
A Thu Jan  5 21:57:51 2012
A  *** ERROR => Syntax error in program SAPLSUPRN                               
A  *** ERROR => > Include LSUPRNF3J                                line 117
A  *** ERROR => > Different number of parameters in FORM and PERFORM (routine: AUTH_NEW_AUTH, numb
A  *** ERROR => > er of formal parameters: 3, number of actual parameters: 2).
tks
Edited by: Marcos A. Magalhães Jr on Jan 5, 2012 10:32 PM

Similar Messages

  • F150 and problem with job deleted

    Hi all,
    I have a problem with F150: we have made a dunning session,
    but the batch job was manually stopped and than deleted.
    Now I don't know how to delete the dunning run (all delete
    option are unabled), and if we execute another session the customer
    are blocked by this dunning run.
    Someone know how to delete it?
    Thanks in advance
    Alessio

    Hi,
    Can u check whether Dunning Notices - Delete Dunning run disabled?
    If no dunning notice has been printed - try to restart the session thru SM35.
    Regards,
    Sridevi
    <i>Assign points, if useful</i>

  • Problem with job scheduling

    When I execute that job :
    VARIABLE nojob NUMBER;
    begin
    DBMS_JOB.SUBMIT(:nojob,'my_proc();', sysdate, 'sysdate + 15/24');
    end;
    the job is submitting successfully, but it can't run automatically. If I force it :
    begin
    DBMS_JOB.RUN(:nojob);
    end;
    I've the following error :
    ERROR at line 1:
    ORA-12011: execution of 1 Jobs failed
    ORA-06512: at "SYS.DBMS_IJOB", line 394
    ORA-06512: at "SYS.DBMS_JOB", line 267
    ORA-06512: at line 2
    Have you already seen that problem !
    And do you know how resolve it?
    Thanks.
    null

    Same Problem persists. I removed ':' from my code and tried again, No progress. Here is my code and error message again when I try to run the job manually by dbms_job.run(jobno).
    DECLARE
    jobno number;
    BEGIN
    DBMS_JOB.SUBMIT(jobno,
    'dbms_utility.analyze_schema(''JHTMW_TU_KAMAL'',''COMPUTE'');',
    SYSDATE, 'NEXT_DAY(TRUNC(SYSDATE), ''WEDNESDAY'') + 13/24');
    COMMIT;
    END;
    The error code is
    SQL> exec dbms_job.run(21);
    BEGIN dbms_job.run(21); END;
    ERROR at line 1:
    ORA-12011: execution of 1 jobs failed
    ORA-06512: at "SYS.DBMS_IJOB", line 394
    ORA-06512: at "SYS.DBMS_JOB", line 276
    ORA-06512: at line 1
    Michael
    My job processes are on. I have a value 2 set for job_queue_processes and the value 10 is set for job_queue_interval in my init.ora file.
    null

  • Problem with job sceduling

    Hi experts,
    i have schedule a job, but it could not executed because the system was down.
    like i schedule my job at 1:00 PM, but system is shutdown at that time, so the job could not executed,
    so i want to execute the same job again on some event like at system start etc.
    how can i do this, please suggest
    regards,

    I believe that the link below will solve your problem ..
    http://help.sap.com/saphelp_nw70/helpdata/en/c4/3a7f87505211d189550000e829fbbd/frameset.htm
    For further reference you can use the book
    *Job scheduling for SAP by Sap press ... *
    Really good book ..
    If your issue is that you want the job to happen if not at the scheduled time then at startup you can simply schedule the job twice both at the particular time as well as on Startup ..
    Hope this helps ..
    Regards
    Manthan

  • Problems with jobs

    Hello, I never have had used jobs in oracle, I need create a job for my procedure, but now i have current problem:
    DECLARE
      X NUMBER;
    BEGIN
      SYS.DBMS_JOB.SUBMIT
      ( job       => X
       ,what      => 'BIS.PRC_FIN_ATUCREDNOTURNA(SYSDATE);'
       ,next_date => to_date('01/08/2011 10:27:20','dd/mm/yyyy hh24:mi:ss')
       ,interval  => 'SYSDATE+30/1440 '
       ,no_parse  => FALSE
      SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    COMMIT;
    END;
    Result: 09:57:53 Info: Job #1 could not be executed.  ORA-12011: a execute  job failed
    ORA-06512: em "SYS.DBMS_IJOB", line 406
    ORA-06512: em "SYS.DBMS_JOB", line 275
    ORA-06512: em line 1how you see, the job failed, I need execute the procedure 30 minutes in 30 minutes, what is the problem?
    how create a schedule? it is necessary?
    Thanks!
    Edited by: BluShadow on 01-Aug-2011 14:13
    added {noformat}{noformat} tags.  Please read {message:id=9360002} to learn to do this yourself.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    What's your database version?
    If it's 10g or above you should be using the newer DBMS_SCHEDULER package.
    First guess from me...
    Add, BEGIN and END to your "what" line...
       ,what      => 'BEGIN BIS.PRC_FIN_ATUCREDNOTURNA(SYSDATE); END;'

  • Problem with Job.

    Hi, i submited the stored procedure:
    {color:#000000}*create or replace*
    procedure run_export
    as
    * hand NUMBER;*
    BEGIN
    * hand := Dbms_DataPump.Open(operation =&gt; 'EXPORT',*
    * job_mode =&gt; 'FULL',*
    * job_name =&gt; 'FULLEXPJOBXE',*
    * version =&gt; 'COMPATIBLE');*
    * Dbms_DataPump.Add_File(handle =&gt; hand,*
    * filename =&gt; 'expdp_plsql.log',*
    * directory =&gt; 'DMPDIR',*
    * filetype =&gt; 3);*
    * Dbms_DataPump.Add_File(handle =&gt; hand,*
    * filename =&gt; 'expdp_plsql.dmp',*
    * directory =&gt; 'DMPDIR',*
    * filetype =&gt; 1);*
    * -- Dbms_DataPump.Set_Parameter(handle =&gt; hand,*
    * -- name =&gt; 'ESTIMATE',*
    * -- value =&gt; 'STATISTICS');*
    * /* Dbms_DataPump.DATA_FILTER(HANDLE =&gt;HAND,*
    * Dbms_DataPump.Start_Job(hand);*
    END;{color}
    BEGIN
    * DBMS_SCHEDULER.CREATE_JOB (*
    * job_name =&gt; 'FULLEXPJOBXE',*
    * job_type =&gt; 'EXECUTABLE',*
    * job_action =&gt; 'unilit.run_export',*
    * repeat_interval =&gt; 'FREQ=DAILY',*
    * enabled =&gt; TRUE*
    END;
    I submited the following sentence:
    SELECT FROM dba_scheduler_jobs WHERE job_name = 'FULLEXPJOBXE';*
    SELECT FROM dba_scheduler_job_log WHERE job_name = 'FULLEXPJOBXE';*
    ..the sentence 2 indicate job status_ FAILED.
    Help me please.
    Roberto.

    Perhaps you can try this ->
    BEGIN
       sys.DBMS_SCHEDULER.create_job (
          job_name          => 'MYSCHEMUSER.FULLEXPJOBEX',
          job_type          => 'PLSQL_BLOCK',
          job_action        => 'DECLARE
                                  hand   NUMBER;
                                BEGIN
                                  hand :=
                                      DBMS_DATAPUMP.Open (operation   => ''EXPORT'',
                                                          job_mode    => ''FULL'',
                                                          job_name    => ''FULLEXPJOBXE'',
                                                          version     => ''COMPATIBLE'');
                                  DBMS_DATAPUMP.Add_File (handle      => hand,
                                                          filename    => ''expdp_plsql.log'',
                                                          directory   => ''DMPDIR'',
                                                          filetype    => 3);
                                  DBMS_DATAPUMP.Add_File (handle      => hand,
                                                          filename    => ''expdp_plsql.dmp'',
                                                          directory   => ''DMPDIR'',
                                                          filetype    => 1);
                                  DBMS_DATAPUMP.Start_Job (hand);
                              END;',
          repeat_interval   => 'FREQ=DAILY;BYHOUR=7;BYMINUTE=0;BYSECOND=0',
          start_date        => SYSTIMESTAMP AT TIME ZONE 'US/Eastern',
          job_class         => 'DEFAULT_JOB_CLASS',
          comments          => 'Full Export Job',
          auto_drop         => FALSE,
          enabled           => FALSE
       sys.DBMS_SCHEDULER.set_attribute (name        => 'MYSCHEMAUSER.FULLEXPJOBEX',
                                         attribute   => 'restartable',
                                         VALUE       => TRUE);
       sys.DBMS_SCHEDULER.enable ('MYSCHEMAUSER.FULLEXPJOBEX');
    END;N.B.: Not Tested...
    Regards.
    Satyaki De.

  • Problems with Job Scheduling  Monitoring

    <Orignial text erased>
    Solicitation not tolerated on SDN. I deleted the other posts from him, but I didn't want to loose the good responses in this thread. Mark Finnern.
    Message was edited by: Mark Finnern

    I guess you didnt see the weblog.
    Yes, it was for you although I should probably have added a
    Check out the weblogs from 24th Sept.  Lutz wrote one titled "All points go to Ibai" - I thought you might have read it.
    /people/lutz.morrien3/blog/2004/09/24/all-points-go-to-ibai
    John.

  • STMS problem with transport import

    Hello all
    I had a problem with transports in STMS.
    Log history of imported transport didn't show any error and simophore is green.
    But in target system data element wasn't presented.
    When i import this transport again - it's all ok.
    It happened twice. And i didn't find any solutions yet.((
    Did anyone have the same problem???

    Start import LIMUMETH/NPQ/CL_RESERVATION           SPLIT_RESERV ...
    0 entries from SMODILOG (CLAS/NPQ/CL_RESERVATION                     METH/NPQ/CL_RESERVATION           SPLIT_RESERVATION
    0 entries from SMODISRC (CVCLAS/NPQ/CL_RESERVATION                     METH/NPQ/CL_RESERVATION           SPLIT_RESERVATION
    0 entries from SMODISRC (CUCLAS/NPQ/CL_RESERVATION                     METH/NPQ/CL_RESERVATION           SPLIT_RESERVATION
    0 entries from SMODISRC (PRCLAS/NPQ/CL_RESERVATION                     METH/NPQ/CL_RESERVATION           SPLIT_RESERVATION
    0 entries from SMODISRC (SVCLAS/NPQ/CL_RESERVATION                     METH/NPQ/CL_RESERVATION           SPLIT_RESERVATION
    0 entries from SMODISRC (CICLAS/NPQ/CL_RESERVATION                     METH/NPQ/CL_RESERVATION           SPLIT_RESERVATION
    method SPLIT_RESERVATION                                             include /NPQ/CL_RESERVATION===========CM01Z      will be impor
    REPOS /NPQ/CL_RESERVATION===========CM01M      A replaced.
    End of import LIMUMETH/NPQ/CL_RESERVATION           SPLIT_RESERV
    E071-LOCKFLAGs 000016 - 000016 updated ('2', 1 entries).
    E071C entries 000016 - 000016 deleted (1 entries).
    report /NPQ/CL_RESERVATION===========CM01M      (L) synchronized.
    report /NPQ/CL_RESERVATION===========CP         (L) synchronized.
    169836 5330910
    LIMUTABD/NPQ/LOCATION_HIERARCHY_QRY was not imported in this step
    LIMUTABD/NPQ/RESERV_ROOM_SERVICE_STR was not imported in this step
    LIMUTABD/NPQ/RES_SERVICE was not imported in this step
    LIMUTABD/NPQ/RES_SERVICE_DETAILS was not imported in this step
    Start import LIMUWAPP/NPQ/FM                       SERVICE/CREA ...
    Start import LIMUWAPP/NPQ/FM                       SERVICE/CREA ...
    Start import LIMUWAPP/NPQ/FM                       SERVICE/GETS ...
    Start import LIMUWAPP/NPQ/FM_NEW_DESIGN            SERVICE/CREA ...
    Start import LIMUWAPP/NPQ/FM_NEW_DESIGN            SERVICE/GETS ...
    0 entries from SMODILOG (WAPA/NPQ/FM_NEW_DESIGN                      WAPP/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCATIO
    0 entries from SMODISRC (CVWAPA/NPQ/FM_NEW_DESIGN                      WAPP/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCAT
    0 entries from SMODISRC (CUWAPA/NPQ/FM_NEW_DESIGN                      WAPP/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCAT
    0 entries from SMODISRC (PRWAPA/NPQ/FM_NEW_DESIGN                      WAPP/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCAT
    0 entries from SMODISRC (SVWAPA/NPQ/FM_NEW_DESIGN                      WAPP/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCAT
    0 entries from SMODISRC (CIWAPA/NPQ/FM_NEW_DESIGN                      WAPP/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCAT
    0 d /   0 i /   2 u /   1 =  33% ucf O2PAGCON
    3 entries for O2PAGCON imported (TR/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY
    0 d /   0 i /   1 u /   0 =   0% ucf O2PAGDIR
    1 entry for O2PAGDIR imported (/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY
    0 d /   0 i /   0 u /   4 = 100% ucf O2PAGDIRT
    4 entries for O2PAGDIRT imported (/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY
    0 d /   0 i /   0 u /   1 = 100% ucf O2PAGEVH
    1 entry for O2PAGEVH imported (/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY
    0 entries from O2PAGPAR (/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY                                  %) d
    0 entries from O2PAGPAR (/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY                                  %) d
    0 entries from O2PAGPART (/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY                                  %)
    0 entries from O2PAGPART (/NPQ/FM_NEW_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY                                  %)
    0 entries from SOTR_USE (LIMUWAPP/NPQ/FM#_NEW#_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY
    0 entries from SOTR_USE (LIMUWAPP/NPQ/FM#_NEW#_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY
    0 entries from SOTR_USEU (LIMUWAPP/NPQ/FM#_NEW#_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY
    0 entries from SOTR_USEU (LIMUWAPP/NPQ/FM#_NEW#_DESIGN            SERVICE/GETSRVPOINTLOCATIONHIERARCHY
    End of import LIMUWAPP/NPQ/FM_NEW_DESIGN            SERVICE/GETS
    R3TRDTEL/NPQ/DELIVERY_POINT was not imported in this step
    R3TRDTEL/NPQ/SRV_POINT was not imported in this step
    E071-LOCKFLAGs 000021 - 000025 updated ('2', 5 entries).
    E071C entries 000021 - 000025 deleted (5 entries).
    DEVK902177           touched.
    table O2PAGDIR (R) synchronized.
    1 tables in P-buffer synchronized.
    2 tables in R-buffer synchronized.
    42832 5373742
    158359 bytes read.
    Transport overhead 15.3 %.
    Data compressed to 5.3 %.
    Duration: 14 sec (11311 bytes/sec).
    1 0
    Summary:
    15 REPOS imported.
    Totally 15 Objects imported.
    Totally 1551 tabentries imported.
    5373742 bytes modified in database.
    [dev trc     ,00000]  Thu Mar 03 18:26:16 2011                                             13410099  13.410099
    [dev trc     ,00000]  Disconnecting from ALL connections:                                       21  13.410120
    [dev trc     ,00000]  Disconnecting from connection 0 ...                                       33  13.410153
    [dev trc     ,00000]  Now I'm disconnected from SAP DB                                        4897  13.415050
    [dev trc     ,00000]  Disconnected from connection 0                                            63  13.415113
    [dev trc     ,00000]  statistics db_con_commit (com_total=17, com_tx=17)                        26  13.415139
    [dev trc     ,00000]  statistics db_con_rollback (roll_total=0, roll_tx=0)                      25  13.415164
    Disconnected from database.
    End of Transport (0000).
    date&time: 03.03.2011 - 18:26:16
    Main import
    End date and time : 20110303182616
         |   Ended with return code:  ===> 0 <===

  • Problem creating job steps variants

    Hi Gurus!
    I have a problem with job steps creation.
    In my program I need to copy the exist job with some condition accords to job steps variants.
    But when I create the new job and it steps and variants in SM37, I can not see the variants names, only number.
    For example in template that I am copying it looks like that:
    No. Program name/command      Prog. type  Spool list   Parameters              User Lang.
    1              RMCVNEUA                  ABAP                        BW_TEMPLATE       aaa     EN
    But in job that I create it is:
    Program name/command      Prog. type   Spool list   Parameters               User  Lang.
    RMCVNEUA                          ABAP                           &0000000000271     ddd     EN
    How can I create steps with variant names instead of numbers/indexes?   BW_TEMPLATE instead of &0000000000271.
    My code:
    CALL FUNCTION 'JOB_OPEN'
        EXPORTING
          jobname          = lv_jobname
          sdlstrtdt        = lv_date
          sdlstrttm        = lv_time
        IMPORTING
          jobcount         = lv_jobcount
        EXCEPTIONS
          cant_create_job  = 1
          invalid_job_data = 2
          jobname_missing  = 3
          OTHERS           = 4.
    SUBMIT (ps_tbtcp-progname) VIA JOB pv_jobname NUMBER pv_jobcount
                                     USING SELECTION-SET ls_cat-variant
                                     AND RETURN.
    CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount                          = lv_jobcount
          jobname                           = lv_jobname
         direct_start                      = lv_imm_run
       EXCEPTIONS
         cant_start_immediate              = 1
         invalid_startdate                 = 2
         jobname_missing                   = 3
         job_close_failed                  = 4
         job_nosteps                       = 5
         job_notex                         = 6
         lock_failed                       = 7
         invalid_target                    = 8
         OTHERS                            = 9
    Edited by: Dani_K on Oct 27, 2010 4:35 PM

    No any suggestions?

  • Job RDDEXECL terminated with error.

    Hi!
    I am facing with hanging SPAM error in phase IMPORT_PROPER (patch of SAPKB70013 - SAPKB70016).
    The SPAM patch terminates after a few sec. in DDIC activation action.
    I have looked into log file and founded folllowing:
    The job RDDEXECL terminated with error.
    The reason seems to be sysntax error in program "CL_PROXY_SERVICE=======CP".
    Futhermore I could detect that table SI_WD_FIRST_MAIN_SCREEN cannot be activated.
    Can some one help me to solve this problem?
    Of great interest was the following:
    rescedule possibilities of job RDDEEXECL in order to contibue patch
    start of SPAM or tp-commando by ignoring this error
    Any helpful information will be very appreciated!
    Holger

    What do you mean with reimport?
    I tried for almost 100 times to restart the import.

  • Error in transport, job RDDEXECL cancelled, ended with return code: 12

    Hi all,
    When I am trying to import a request in a BW system from development to quality , it is giving below error:
    Program Terminated (job:RDDEXCEL no:11315700) messg no:TR012
    Please do needful
    Thanks and Regards,
    srinivas.m

    Hi Gurus,
    I have the same error "Error in transport, job RDDEXECL cancelled, ended with return code: 12" (Programa cancelado (job RDDEXECL, nº 09292900)).
    I have checked all the steps that are in the "Note 1101187 - The OLAP tunnel" and they are implemented.
    Find below the information about my BW system:
    SAP_ABA     700     0024     SAPKA70024     Componente multiaplicaciones
    SAP_BASIS     700     0024     SAPKB70024     Sistema Base SAP
    PI_BASIS     2005_1_700     0024     SAPKIPYJ7O     PI_BASIS 2005_1_700
    ST-PI     2008_1_700     0004     SAPKITLRD4     SAP Solution Tools Plug-In
    SAP_BW     700     0026     SAPKW70026     SAP NetWeaver BI 7.0
    BI_CONT     703     0016     SAPKIBIIQ6     Business Intelligence Content
    ST-A/PI     01N_700BCO     0000          -     Servicetools for other App./Netweaver 04
    I am trying to transport "Business Content (Statistics)", if this information can help you.
    What can i do to solve the problem? I am finding some clue and i dont find anything. It will be much appreciated any idea to solve the problem.
    Thanks in advance and kind Regards,
    Manuel
    Edited by: Manuel Guijarro on Oct 11, 2011 3:46 PM

  • Error in transport, ended with return code:  12,  job RDDEXECL cancelled

    Hi Friends,
    When I am trying to import a request in a BW preproduction system, it is giving below error: However, the transport is imoprted successfully in Quality.
    ===================================
    Program terminated (job: RDDEXECL, no.: 09222300)
       See job log
    Execution of programs after import (XPRA)
    End date and time : 20080509092238
    Ended with return code:  ===> 12 <===
    Job log:
    Date        Time      Message
    09.05.2008  09:22:23  Job started
    09.05.2008  09:22:23  Step 001 started (program RDDEXECL, variant , user ID DDIC)
    09.05.2008  09:22:23  All DB buffers of application server unix0001 were synchronized
    09.05.2008  09:22:25  ABAP/4 processor: UNCAUGHT_EXCEPTION
    09.05.2008  09:22:25  Job cancelled
    =======================================
    Kindly advice.
    Thanks & regards,
    Kunal Patel.

    Hello,
    I ran a search for this error and found the following notes:
    SAP Note 966234 - 70SP10: DTP transport and content error
    SAP Note - 1074388 SAPBINews NetWeaver 7.0 BI Support Package 16
    Check if they are relevant for your system.
    Regards,
    Siddhesh

  • Transport of Transformation failed with RC= 12 and job: RDDEXECL cancelled in Target sytem

    Gurus,
    When i am importing the workbench request from dev to qty.
    I am getting error : Program terminated (job: RDDEXECL, no.: 22321300).
    Transformation contains only Endroutine.
    Job log:
    Job started
    Step 001 started (program RDDEXECL, variant , user ID DDIC)
    All DB buffers of application server xxxxxx were synchronized
    The internal session was terminated with the runtime error UNCAUGHT_EXCEPTION (see ST2
    Job cancelled.
    When i see the dump it is througing errror at the method of following class.
    CL_RSO_TLOGO_PERSISTENCY-CHECK_INITIALIZED
    Could you please help. Thanks in advance.
    Ashok

    Hi Ashok,
    In QA use program "RSTRAN_ROUT_RSFO_CHECK" to check and remove any inconsistencies for the transformations. After that again transport those transformations in new TR and import in QA.
    Also you have to search "Transport of Transformation failed with RC= 12 and job: RDDEXECL canceled in Target system" by Dinesh Tiwari.
    Check the reply of Fun Sébastien in http://scn.sap.com/message/13795238#13795238.

  • Problem with the AF of my new 18-135mm EFS IS STM lens

    Hello,
    The lens came with the EOS Rebel T5i bundle.
    The auto focus is working incorrectly, focusing closer than the detected area. This is happening when I use the viewfinder. When a picture is taken using the “direct view” (LCD display) it focus correctly.
     I didn’t use the camera a lot since I bought it, now looking the first pictures I see that this problem is happening since I bought it.
    I changed the zoom lens with another Canon camera and then my new Rebel T5i works fine and the same problem happens with the other camera, therefore I’m sure that the problem is in the lens and not in the camera body.
    The out of focus is more noticeable when I'm taking pictures in 18mm position to an object farther than 2 meters but it is happening in any zoom position. It is clear when I compare the same picture taken with the viewfinder with one taken with the LCD Display.
    I updated the body firmware and the problem continues.
    Is it possible to update the lens firmaware? I couldn’t find them in the canon webpage.
    I will go into an important trip next week, therefore I will not have time to send the camera to repair.
    Any idea?
    Thanks!

    You may want to rent a lens for your trip and get this lens to service.
    You'll want to be sure it really is a problem with the lens (it sounds like it is from your description).  Test the lens against a "flat" target (such as a wall).  You can hang something on the wall with high-contrast (newspaper works great) and put the camera on a tripod.  The idea is that (a) the camera is definitely not moving, (b) the focus target is definitely not moving, and (c) the target is flat and there are no distracting objects in the field of view so it's not possible for the focus system to decide to lock focus on anything OTHER than your intended target.
    Next... deliberately turn the focus ring to put the camera out of focus (so that the camera HAS to move the focus).  This is mildly tricky with an STM lens since there's no mechanical link from the focus ring to the lens -- it's electronic.  The lens only accepts focus input when focus is active (e.g. half-press the shutter button, etc. to wake it up.)  I run focus all the way in and test several times, then run focus all the way out and test several times (that way it has to move focus in both directions.)
    If the lens is consistently focusing closer, then it will need service.  
    Tim Campbell
    5D II, 5D III, 60Da

  • Problem with Crystal Report Job Server Destinations

    I am using Crystal Reports XI Server and I am having problems with scheduling.  I believe that the problem is that I have not enabled any destinations under the Crystal Reports Job Server.  The following is an observation list:
    -Enabled and set up all destinations for other servers, such as the Destination Server.
    -Have been able to use Infoview to directly email, inbox, and file save reports in different formats (I believe the Destination Server controls this, right?)
    -All servers are enabled in the Central Configuration Manager
    -Have been able to go into the Crystal Reports Job Server within the CMC, but I DO NOT FIND ANY destinations to enable (why is this?)
    -Have not been able to schedule an instance of any report (neither email, nor inbox, nor file, ...nothing)
    Could somebody please help me with this?  Is this a limitation to the Crystal Reports XI Server vs the Enterprise edition?  Is there something else I am missing?  I have never been able to successfully schedule a report.

    Thank you for the input, but I have not yet solved my problem.  Please allow me to provide some additional information which may give more hints:
    I have Crystal Reports XI Server R2 installed as 5 named user license (version that comes with developer)
    The following servers are enabled in CMC (which is all of them)
    -Input.DomainNameSQL
    -DomainNameSQL.cacheserver
    -DomainNameSQL.cms
    -DomainNameSQL.destinationjobserver (has all destinations enabled)
    -DomainNameSQL.eventserver
    -DomainNameSQL.ListofValuesJobServer (no destination tab)
    -DomainNameSQL.pageserver
    -DomainNameSQL.programjobserver (has all destinations enabled)
    -DomainNameSQL.RAS
    -DomainNameSQL.reportjobserver (has destinations tab, but there are no destination entries to enable! Object type is: CrystalEnterprise.Report and detail: IDL:omg.org/CORBA/UserException:1.0
    . Details: %2.'
    These are the ONLY two event IDs that appear after I schedule the report instance.  No other events occur.
    Are there any other logs that I can check?  How do I look up what event ID 45387 and 45385 are?
    Thanks!

Maybe you are looking for

  • Not able to change font

    Hi , We need to print some text data in printer. As we print a report, with numbers, and columns, we need font widht to be constant for all the charecters for producing properly aligned reports. [ like in courier or monospace fonts]. In the code belo

  • Text messaging Lumia 820

    Hi, I recently used my phone with global roaming. While overseas i cracked my screen.... DOH. Got it replaced (non genuine).... But now i recieve text messages in the home page preview but they dont appear in my inbox. I send messages and other peopl

  • Very Poor Support Service in UK

    I had to contact Support Services in the UK last Sunday, and I hope that no other Playbook user in the UK had to go through what I did. I have 3 faults on my Playbook, Dead Pixels, No GPS and Faulty Charging, I contacted Support and in a nutshell the

  • Change number of pulses daqmx

    Hi, I'm trying to control a servo-motor using labview, an E-series device and an omron driver. The driver will rotate the motor a certain number of degrees, proportional to the number of pulses sent by the card. I am able to successfully change the p

  • Local net users - usernames case sensitive

    I am facing an annoying issue with our WLC's 5508.We have configured some local accounts - local net users and we found out that usernames are case sensitive.For example when i setup an account with username:TEST and the then try to login with userna