Return Code to UNIX from Procedure Package

I've found examples where a 1-byte RC can be picked up by a UNIX shell script (in $?) but they involve a PL/SQL block and bind variable in the script itself. It appears I cannot use a bind variable in a Package because the compile fails (PLS-00049: bad bind variable). UNIX does find a RC value when I use RAISE_APPLICATION_ERROR( (-20000-744) - v_rc_255, 'Abnormal Termination.' ); where v_rc_255 is a PLS_INTEGER with value 255, but the value is not 255! Sometimes it is zero, other times 7.
Is there a practical way I can signal "Abnormal Termination" from any PL/SQL Package's Procedures/Functions to UNIX so I can send my shell script down the appropriate path?

I believe that the only way to do what you propose is to use bind variables in your script. This is not necessarily a problem, however. Note that in UNIX, you must insure that the return value is between 0 and 255 (since there is only 1 byte of storage for return variables).
Consider the following simple example:
create a simple test procedure (or package, or function) which can raise a user-defined error:
SQL> create or replace procedure test(inval IN number) is
2 begin
3 if inval = 0 then return;
4 else raise_application_error(-20102,'My error');
5 end if;
6 end test;
7 /
Note that RAISE_APPLICATION_ERROR must return a value between -20000 and -20999
In your shell script, create a bind variable and wrap your call to the procedure in a PL/SQL block with an exception handler. For example, I have created a shell script called mytest.sh:
#!/bin/ksh
sqlplus -s <<-EOF
scott/tiger
var retvar number;
begin
test($1);
:retvar := 0;
exception
when others then
:retvar := ABS(sqlcode) - 20000;
end;
exit :retvar
EOF
retval=$?
echo retval=$retval
From a UNIX shell prompt, execute the script with an argument of 0; a value of 0 is returned (normal completion)
Execute the script with any other value and a value of 102 is returned (note that we had to perform a calculation on sqlcode to insure that the value was between 0 and 255).
Hopefully this makes sense.

Similar Messages

  • AFPPRN received a return code of failure from the OSD routine FDUPRN

    Hi all,
    Operting system : Solaris 9
    Oracle application: 11.5.10
    i would like to ask query related to buffer area of pinter on solaris server.
    we are trying to print cheques using oracle application on network printer.
    some times it is printing the cheques with out any problem but sometimes it throws and error message in concurrent request log file.
    ****************** L O G F I L E C O N T E N T S ***************
    Printing output file.
    Request ID : 849798
    Number of copies : 1
    Printer : radch1
    Pasta: Error: Error reading input file for type checking.
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. An error occurred while AOL tried to spawn the print process
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. An error occurred while AOL tried to spawn the print process.
    Action: Review your concurrent request log file for more detailed information.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 20-AUG-2009 11:49:18
    ****************** L O G F I L E C O N T E N T S ***************
    my question is
    1) Do we need to delete any temporary files from server related to printer.
    Regards

    Hi,
    What is the status of those concurrent requests (Completed with Warning or with Error)?
    1) Do we need to delete any temporary files from server related to printer.Usually, you do not need to delete any files manually, temp files will be created by the application, and there should no issues with the files permissions (unless you have some other instance running on the same node with different applmgr user). However, you can safely clean (.t and .tmp) files as per the following documents.
    Note: 435437.1 - Most Common Solutions to FRM-41839 and .tmp Files Not Being Deleted
    Note: 145487.1 - Files Types .t and .temp and .tmp, are Saving Under /var/tmp
    Note: 162232.1 - Why Does Oracle Forms Create .TMP Files Which Fill Up The Filesystem e.g. /tmp ?
    I would also suggest you search Metalink for APP-FND-00500 and you will get many hits, go through the documents and see if it helps.
    Regards,
    Hussein

  • APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN

    Hi All,
    i have configured a printer in R12.1.3, when i am trying to print its giving below error...
    please help..
    lp: The printer or class was not found.
    Pasta: Error: Print failed. Command=lp -c -dHP_P4014N /apps/local/inst/apps/UAT_server/appltmp/pasta9331_0.tmp
    Pasta: Error: Check printCommand/ntPrintCommand in pasta.cfg
    Pasta: Error: Preprocess or Print command failed!!!
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 1
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. Program exited with status 1.
    Action: Review your concurrent request log file for more detailed information.
    Thanks
    RB

    And found this Exception also... in the diagnostic output.
    EXCEPTION - One or more versions were missing. caught in 'FNDPastaDiag.retrieveSupportFiles'
    java.lang.IllegalArgumentException: One or more versions were missing.
    at oracle.apps.jtf.regress.qatool.base.TextUtility.compareVersions(TextUtility.java:650)
    at oracle.apps.fnd.diagnose.FNDPastaDiag.retrieveSupportFiles(FNDPastaDiag.java:1486)
    at oracle.apps.fnd.diagnose.FNDPastaDiag.runSupportTest(FNDPastaDiag.java:556)
    at oracle.apps.jtf.regress.qatool.base.DiagBase.runTest(DiagBase.java:373)
    at oracle.apps.fnd.oam.diagnostics.exec.LegacyJavaTestExecution.runTest(LegacyJavaTestExecution.java:147)
    at oracle.apps.fnd.oam.diagnostics.exec.LegacyJavaTestExecution.execute(LegacyJavaTestExecution.java:83)
    at oracle.apps.fnd.oam.diagnostics.exec.WorkerThread.run(WorkerThread.java:49)
    at java.lang.Thread.run(Thread.java:619)
    ACTION - Please log an iTAR (Service Request) for product "Support Diagnostics Project" (ID=1332) to notify support about this issue
    Thx
    RB

  • How return parameter ref Cursor from procedure using dynamic SQL?

    I sorry, but i very need help.
    I using Oracle 8.0.6
    I need to return parameter of type ref Cursor from procedure.
    create or replace package PlanExp is
    type cursortype is ref cursor;
    procedure ShowPlan (cursorparam out
    cursortype.............);
    end PlanExp;
    create or replace package body PlanExp is
    procedure ShowPlan (cursorparam out cursortype,
    .............) Is
    sql_str varchar2(1000);
    sql_str_select varchar2(100);
    sql_str_from varchar2(100);
    sql_str_where varchar2(500);
    Return_Code integer;
    Num_Rows integer;
    cur_id_sel integer;
    tSum_Plan DBMS_SQL.NUMBER_TABLE;
    tSum_Plan_Ch DBMS_SQL.NUMBER_TABLE;
    tSum_Plan_Day DBMS_SQL.NUMBER_TABLE;
    begin
    /* calculating string variables ........... /*
    sql_str := 'select ' || sql_str_select ||
    'from ' || sql_str_from ||
    'where ' || sql_str_where ||
    'group by ' || sql_str_select;
    cur_id_sel := dbms_sql.open_cursor;
    dbms_sql.parse(cur_id_sel, sql_str, dbms_sql.native);
    dbms_sql.define_array(cur_id_sel, 1, tSum_Plan, 20, 1);
    dbms_sql.define_array(cur_id_sel, 2, tSum_Plan_Ch, 20, 1);
    dbms_sql.define_array(cur_id_sel, 3, tSum_Plan_Day, 20, 1);
    Return_Code := dbms_sql.execute(cur_id_sel);
    delete from TEMP_SHOWPLAN;
    Loop
    Num_Rows := dbms_sql.Fetch_Rows(cur_id_sel);
    dbms_sql.column_value(cur_id_sel, 1, tSum_Plan);
    dbms_sql.column_value(cur_id_sel, 2, tSum_Plan_Ch);
    dbms_sql.column_value(cur_id_sel, 3, tSum_Plan_Day);
    if Num_Rows = 0 then
    exit;
    end if;
    Exit When Num_Rows < 20;
    End Loop;
    dbms_sql.close_cursor(cur_id_sel);
    end;
    end PlanExp;
    How return cursor (cursorparam) from 3 dbms_sql.column_value-s ?

    I am using Oracle 8.1.7, so I don't know if this will work in
    8.0.6 or not:
    SQL> CREATE TABLE test
      2    (col1                    NUMBER,
      3     col2                    NUMBER,
      4     col3                    NUMBER)
      5  /
    Table created.
    SQL> INSERT INTO test
      2  VALUES (1,1,1)
      3  /
    1 row created.
    SQL> INSERT INTO test
      2  VALUES (2,2,2)
      3  /
    1 row created.
    SQL> INSERT INTO test
      2  VALUES (3,3,3)
      3  /
    1 row created.
    SQL> CREATE TABLE temp_showplan
      2    (tSum_Plan               NUMBER,
      3     tSum_Plan_Ch            NUMBER,
      4     tSum_Plan_Day           NUMBER)
      5  /
    Table created.
    SQL> EDIT planexp
    CREATE OR REPLACE PACKAGE PlanExp
    IS
      TYPE CursorType IS REF CURSOR;
      PROCEDURE ShowPlan
        (cursorparam    IN OUT CursorType,
         sql_str_select IN     VARCHAR2,
         sql_str_from   IN     VARCHAR2,
         sql_str_where  IN     VARCHAR2);
    END PlanExp;
    CREATE OR REPLACE PACKAGE BODY PlanExp
    IS
      PROCEDURE ShowPlan
        (cursorparam    IN OUT CursorType,
         sql_str_select IN     VARCHAR2,
         sql_str_from   IN     VARCHAR2,
         sql_str_where  IN     VARCHAR2)
      IS
        sql_str                VARCHAR2 (1000);
        cur_id_sel             INTEGER;
        return_code            INTEGER;
      BEGIN
        DELETE FROM temp_showplan;
        sql_str := 'INSERT INTO   temp_showplan '
               || ' SELECT '   || sql_str_select
               || ' FROM '     || sql_str_from
               || ' WHERE '    || sql_str_where;
        cur_id_sel := DBMS_SQL.OPEN_CURSOR;
        DBMS_SQL.PARSE (cur_id_sel, sql_str, DBMS_SQL.NATIVE);
        return_code := DBMS_SQL.EXECUTE (cur_id_sel);
        DBMS_SQL.CLOSE_CURSOR (cur_id_sel);
        OPEN cursorparam FOR SELECT * FROM temp_showplan;
      END ShowPlan;
    END PlanExp;
    SQL> START planexp
    Package created.
    Package body created.
    SQL> VARIABLE g_ref REFCURSOR
    SQL> EXEC PlanExp.ShowPlan (:g_ref, 'col1, col2,
    col3', 'test', ' 1 = 1 ')
    PL/SQL procedure successfully completed.
    SQL> PRINT g_ref
    TSUM_PLAN TSUM_PLAN_CH TSUM_PLAN_DAY
             1            1             1
             2            2             2
             3            3             3

  • Sqlloader return code for unix..

    Hi sir,
    i need to know the sqlloader load successfully or not,
    i have check this link http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14215/ldr_params.htm#i1005781
    but this not help me much because,when its has error like unique constraint or its not full fill when clause then its returning '2' which is EX_WARN for unix,i only want thoose which have error like unique constraint ,how i know there is error
    please help me

    Try out this shell script..
    #! /usr/bin/sh
    sqlldr / control=/home/temp/prod.ctl log=/home/temp/prod.log BAD=/home/temp/prod.bad DISCARD=/home/temp/prod.dsc SILENT=HEADER DIRECT=TRUE PARALLEL=TRUE
    RC2=${?}
    if [ ${RC2} -ne 0 ]
    then
      echo " \n \
        Return code = ${RC2}, sql loader failed for the table $TABLE_NAME \n \n \
        Data file   : /home/temp/prod.dat       \n \
        Control file: /home/temp/prod.ctl       \n \
        Log file    : /home/temp/prod.log       \n \
        Bad file    : /home/temp/prod.bad       \n \
        Discard file: /home/temp/prod.dsc "
    else
      echo " \n \
        File loaded successfully            \n \
        Data file   : /home/temp/prod.dat   \n \
        Control file: /home/temp/prod.ctl   \n \
        Log file    : /home/temp/prod.log"
    fiLet me know if this is what you expect.
    Good luck!!!
    Bhagat
    null

  • Receiving return code of zero from tperrordetail()

    Hello,
    We have tuxedo services calling webservices via SALT - which have run successfully for years. We are looking into our logs recently and we are seeing intermitant errors which we are trying to analyze. The error text we receive is:
    "TPESYSTEM - internal system error"
    Upon examining the returned buffer, it is empty.
    Trying to get more info, we have used tperrordetail() but this is giving a return code of zero.
    What would be the next step we should take to narrow this down?  Our OPS people are not seeing anything unusual on the network.
    Thank you.
    Faith Rolfsen

    Unintended posting made on the Japanese site. moving my question to the English Site.

  • Return parameter of cursor_type from a package.

    When running or debugging a database package, it appears that a return parameter of cursor_type can not be handled in that SQL Developer will not display the contents of the cursor. We have a large number of packages that contain cursors as output parameters. Currently we use PL/SQL developer which displays the contents of a cursor at the click of a button. This is a great advantage to us as it saves having to write code just for testing purposes.
    We are trying to migrate all users to SQL Developer - Is it possible to display the contents of output parameter cursors in SQL Developer ?

    As you discovered for yourself, ref cursors aren't supported yet.
    Several users are asking for the same, so I'd say chances are big they'll get to that soon. To put more weight on this feature, vote for it on the SQL Developer Exchange.
    K.

  • Why do I get a return code of 4 from DS_GetDataValue( ) in CVI?

    Using polling DSTP string variable to receive data transferred from localhost DSTP server, the server returns error code 4 not 0.  Using DS_GetLibraryErrorString( ) to query the server on error number 4, the error message returned is "The operation completed successfully."
    Since no error is usually returned as 0, I am a little surprised to see errorcode 4 being used to tell me that no error occurred.

    Hi mpencke,
    The DSTP uses the HRESULT information to determine its error codes, and you can find all of the documentation on those error codes in cvi\toolslib\datasock\dataskt.h and cvi\sdk\include\winerror.h. An actual Success code appears to be 0, while an error code of 4 appears to be the code for too many files being open. It could be other numbers are coming into place, or maybe a question of timing. Maybe we could take a look at the snippet of code in question and where it is located within your project, and what is going on we could look further into the issue.
    Regards,
    James W.
    Applications Engineer
    National Instruments

  • How to get return code or parameters from PL/SQL in my shell script ?

    My shell script must check the result of PL/SQL's running, and decide what to do in the next step.

    I think you put the problem the wrong way.
    You should try to do as much as possible through your SQL scripts, and, if you need to make OS calls, you may do that using host(command_string).
    If you need to transfer parameters from other programs to your FORMS (PL/SQL), then you have to see user_exit.
    Some other means would be to have your PL/SQL write to certain OS files that the shell script may read, but that doesn't seem like good practice to me.

  • OCS Package ALL, tp step "6", return code 0012

    Hello everybody,
       i have been trying to upload the patch SAPKB70019, it generate the error
         The following details help you to analyze the problem:
          -   Error in phase: IMPORT_PROPER
          -   Reason for error: TP_STEP_FAILURE
          -   Return code: 0012
          -   Error message: OCS Package ALL, tp step "6", return code 0012
    After the error generate, i again try to upload the same, now it is continue executing in MAIN IMPORT from last 2 Hr.
    so please suggest me How to solve the same.
    I have check all the Logs but it not seem to error message.
    Thanks
    Ganesh

    Hello guys,  Hi Pravin
    I´m faccing with the same problem... I try to import the last level of SPAM but it stuck at more than one hour in phase Main Import.
    When I check the Slog file it show this:
    WARNING:
    SAPQASsapmnt     rans     mpSAPKKD70036.QAS is already in use (330), I'm waiting 3 sec (20091102172802). My name: pid 5544 on SAPQAS (APServiceQAS)
    STOP  imp all              QAS   7006 20091102172825              SAP_BASIS    SAPQAS 20091102171132     
    ERROR: RFC function TRINT_PROGRESS_INDICATOR returned 18
    START imp all              QAS        20091102173924              SAP_BASIS    SAPQAS 20091102173924     
    INFO: event SAP_IMPORT_START triggered successfully
    INFO  TBATG CONVERSION OF  QAS N      not needed                  SAP_BASIS    SAPQAS 20091102173924     
    START MOVE NAMETABS        QAS 6      20091102173925              SAP_BASIS    SAPQAS 20091102173924     
    START tp_getprots          QAS P      20091102173925              SAP_BASIS    SAPQAS 20091102173924     
    STOP  tp_getprots          QAS P      20091102173928              SAP_BASIS    SAPQAS 20091102173924     
    STOP  MOVE NAMETABS        QAS 6      20091102173928              SAP_BASIS    SAPQAS 20091102173924     
    START MAIN IMPORT          QAS I      20091102173928              SAP_BASIS    SAPQAS 20091102173924
    In past I already delete the SAPKKD70036. in directory and kill the TP process in Task manager (like it said in note 12746).
    And after that I restarted the importing of SPAM... and still show me the same error it stuck in that process it show in status bar the information "MAIN IMPORT"
    (By the way when I stopped the transaction I saw that this was in the phase IMPORT_PROPER !!)
    What I have to do for solve this error and finish this simple import... spam importe!... I don´t get it!!
    Help me please,
    Thank you
    João Dimas - Portugal

  • Error message: OCS Package SAPK-603DDINEAAPPL, tp step A, return code 0008

    Hi Experts,
    I got an issue upgrading ECC 6.0 to EHP 4
    Error in phase: DDIC_ACTIVATION
    Reason for error: TP_STEP_FAILURE
    Return code: 0008
    Error message: OCS Package SAPK-603DDINEAAPPL,
    tp step A, return
    code 0008
    This is the message log  from SAINT of the SP:
    Field SGTXT in table FILA_POINF is specified twice. Please check
    Field ZUONR in table FILA_POINF is specified twice. Please check
    Regards.

    Dear Jorge,
    How did you resolve this issue?
    I encounter same error during EHP4 ECC IDES upgrade in phase SHADOW_IMPORT_INC
    I repeated the step, currently still running.
    Best Regards,
    Jacco Raymakers

  • Printer not-accepting APP-FND-00500: AFPPRN received a return code of failu

    Hi Gurus,
    skgtag: not-accepting APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 1.
    This is my error. My same request output is printing to other printers. But it is not printing in particular printer.
    My printer is shared is windows 2000 system and we have installed Unix files & printer sharing windows feature.
    while executing below command from soloris command line
    lp -d skctag -n 1 sona
    skgtag: timed out error is coming please give advice in this.

    Hi Hussein,
    Now concurrent is completed normally without any warnings.
    Server OS Level
    Now it is not showing any error but printout not coming in printer.
    lp -d skctag -n 1 /rman_backup/PROD_rmanfullbkp.sh
    request id is skctag-60 (1 file(s))
    But printout not coming ....
    Concurrent Log file for your reference.
    Executing request completion options...
    ------------- 1) PRINT   -------------
    Printing output file.
    Request ID : 50089046      
    Number of copies : 1      
    Printer : skctag
    Finished executing request completion options.
    Concurrent request completed successfully
    Current system time is 07-JAN-2013 11:14:08
    ---------------------------------------------------------------------------

  • XPRA_EXECUTION. TP_STEP_FAILURE, Return code: 0012

    Hi,
    I'm implementing support packages on a production system.
    By running SAP_APPL (SAPKH60408), the spam goes brocken.
    It returns the following error message :
    The import was stopped, since an error occurred during the phase      
    XPRA_EXECUTION, which the Support Package Manager is unable to resolve
    without your input.                                                                               
    After you have corrected the cause of the error, continue with the    
    import by choosing Support Package -> Import queue from the initial   
    screen of the Support Package Manager.                                                                               
    The following details help you to analyze the problem:                                                                               
    -   Error in phase: XPRA_EXECUTION                                                                               
    -   Reason for error: TP_STEP_FAILURE                                                                               
    -   Return code: 0012                                                                               
    -   Error message: OCS Package SAPKH60408, tp step "R", return code
             0012                                                          
    Could you please help to resolve this issue.
    Regards
    Latif

    Hi
    I had tried as per your suggestion but we are unable to rectify the issue can u please suggest what else we can do
    The error while applying support package
    SP   SAPKH60501
    Phase :XPRA_EXECUTION
    The Background Job is failing
    Job Name: RDDEXECL
    Job started
    Step 001 started (program RDDEXECL, variant , user ID DDIC)
    All DB buffers of application server ..... were synchronize
    Internal session terminated with a runtime error (see ST22)
    Job cancelled
    Dump Details
    In ST22 Dump error
    SYNTAX_ERROR
    CL_GLE_ECS_BRF_ADAPTER========CP
    AC-INT
    Line 17:
    Formal parameter "IV_ALL_REQUESTS" does not exist."
    Regards
    Harsha Teja

  • IMPORT_PROPER return code is 16

    hi gurus, i am installing support pack for ecc 5 and the patch level is sapkb64012 i applyed continues 10,11, 12 and when i am applying 12 it's given dump no users can logon  like syntax error , the tp return code is 16
    this is error information please give me any hints The import was stopped, since an error occurred during the phase
    IMPORT_PROPER, which the Support Package Manager is unable to resolve
    without your input.
    After you have corrected the cause of the error, continue with the
    import by choosing Support Package -> Import queue from the initial
    screen of the Support Package Manager.
    The following details help you to analyze the problem:
        -   Error in phase: IMPORT_PROPER
        -   Reason for error: TP_STEP_FAILURE
        -   Return code: 0016
        -   Error message: OCS Package SAPKB64012, tp step "I", return code
            0016
    Notes on phase IMPORT_PROPER
    In this phase repository objects and table entries are imported. This
    phase can terminate due to the following reasons:
    o   TP_INTERFACE_FAILURE: The tp interface could not be called.
    o   TP_FAILURE: The program tp could not be executed. For more
        information on this, see the SLOG or ALOG log file.
    o   TP_STEP_FAILURE: A tp step could not be executed. To find the cause
        of the error, see the appropriate log, such as the import log.
        If the cancelation message contains a tp step 6, N or S, the step in
        question is independent of the transport request. You can find these
        logs under the node Import steps not specific to transport request
        in the log overview.
        Alternatively, you can find these logs in the following files in the
        log directory of your transport directory (usually:
            /usr/sap/trans/log):
          -   tp Step 6: P<YY><MM><DD>.<SID>
          -   tp Step N: N<YY><MM><DD>.<SID>
          -   tp Step S: DS<YY><MM><DD>.<SID>
          You can display these files using the report RSPUTPRT or by calling
          transaction AL11.
      A prerequisite of the Support Package Manager is that the Change and
      Transport System (CTS) is configured correctly. For more detailed
      information, read the online documentation available from Help -> SAP
      Library -> mySAP Technology Components -> SAP Web Application Server ->
    Change and Transport System .
    A list of the most important SAP Notes for Online Correction Support
    (OCS) is available in SAP Note 97620, which is updated regularly
    cheers

    Read what you have posted:
    Alternatively, you can find these logs in the following files in the
    log directory of your transport directory (usually:
    /usr/sap/trans/log):
    - tp Step 6: P<YY><MM><DD>.<SID>
    - tp Step N: N<YY><MM><DD>.<SID>
    - tp Step S: DS<YY><MM><DD>.<SID>
    Sort the files by date and check the latest one.
    Markus

  • The import was stopped - return code 0013

    Dea all,
    I have a problem. I'm updating SPAM from level 7.00/0029 to level 7.00/0037.
    The following details help you to analyze the problem:
    The import was stopped, since an error occurred during the phase
    IMPORT_PROPER, which the Support Package Manager is unable to resolve
    without your input.
    After you have corrected the cause of the error, continue with the
    import by choosing Support Package -> Import queue from the initial
    screen of the Support Package Manager.
    The following details help you to analyze the problem:
        -   Error in phase: IMPORT_PROPER
        -   Reason for error: TP_STEP_FAILURE
        -   Return code: 0013
        -   Error message: OCS Package SAPKD70037, tp step "I", return code
            0013
    Please help me.
    thanks a lot.

    Yes I tried but it does not work.
    Main import
    Transport request   : SAPKD70037
    System              : GT6
    tp path             : tp
    Version and release: 372.04.78 700
    R3trans version 6.14 (release 700 - 10.02.10 - 13:32:00).
    unicode enabled version
    ===============================================
    date&time   : 26.02.2010 - 17:42:19
    control file: /usr/sap/trans/tmp/SAPKKD70037.GT6
    > #pid 7512 on ensv15wz (gt6adm)
    > import
    > buffersync=yes
    > file='/usr/sap/trans/data/RD70037.SAP'
    > continuation='/usr/sap/trans/data/RD70037_#.SAP'
    > client cascade yes
    > watchparallelprocesses yes
    >
    > excluding 'R3TRDDDD','R3TRDOMA','R3TRDTEL','R3TRENQU','R3TRMACO','R3TRMCID','R3TRMCOB','R3TRSHLP','R3TRSQLT','R3TRTABL','R3TRTTYP
    R3trans was called as follows: R3trans -w /usr/sap/trans/tmp/SAPID70037.GT6 /usr/sap/trans/tmp/SAPKKD70037.GT6
    Connected to DBMS = ORACLE     dbs_ora_tnsname = 'GT6'     SYSTEM = 'GT6'.
    0 0
      trace at level 1 opened for a given file pointer
    ================== STEP 1 =====================
    date&time        : 26.02.2010 - 17:42:19
    function         : IMPORT
    data file        : /usr/sap/trans/data/RD70037.SAP
    Continuation     : /usr/sap/trans/data/RD70037_#.SAP
    buffersync       : YES
    clients          : cascade
    repeatimport     : NO
    repeatclimport   : NO
    c.s.i.           : NO
    watchparallelprocesses: YES
    autorepeat       : -1 (automatic)
    l.s.m.           : VECTOR
    charsetadapt     : YES
    def. charset     : WEUROPEAN
    commit           : 100000
    table cache      : dynamic
    EXCLUDING        : 'R3TRVIEW','R3TRUENO','R3TRTTYP','R3TRTABL','R3TRSQLT','R3TRSHLP','R3TRMCOB','R3TRMCID','R3TRMACO','R3TRENQU','R
    clients which are protected against client cascade: 066
    client cascade to: 000, 001, 010, 065, 100, 200, 300, 900, 910
    Character set on this machine : 2 byte unicode little endian.
    Character set on the data file: 2 byte unicode big endian.
    Data file is compressed with algorithm 'L'.
    Export was executed on 17.11.2009 at 16:48:17 by k7badm
    700
      with R3trans version: 20.04.09 - 13:27:00
    Source System = Solaris on SPARCV9 CPU on DBMS = DB6     DB2DBDFT = 'K7B'     SYSTEM = 'K7B'.
    language vector during export: DE
    language vector during export: DE (ISO-DEEN)
    lsm during export: VECTOR
    trfunction = D (patch transport)
    switching to selective language import
    language 'F' is installed, but no entries for this language were exported ('DE')
    language 'I' is installed, but no entries for this language were exported ('DE')
    language 'S' is installed, but no entries for this language were exported ('DE')
    the following languages will be imported: DEFIS
    Used Commandfile SAPKD70037           (SAPUSER/623)
    Target client in E070C updated (   )
      0 entries for E070 imported (SAPKD70037).
      0 entries for E071 imported (SAPKD70037          *).
    Start import R3TRCLASCL_OCS_ENVIRONMENT ...
      1 entry for TADIR updated  (R3TRCLASCL_OCS_ENVIRONMENT                      ).
    STOP R3trans received signal 11 from operating system.
    Main import
    End date and time : 20100226174219
    Ended with return code:  ===> 13 <===

Maybe you are looking for

  • Hard Drive detects imminent failure

    Please can anyone help. i have a compaq 6735s lap top which is about  months ols. Today when i switch on I have a black screen with the following message: 1720-SMART hard drive detects imminent failure. What should i do now

  • Error in ALE service status 29

    EXPERTS. i have configurged all the ale settings. 1)logical systems   SALE sender  - 800 client receiver-810 client 2) SM59 R/3 connections    Receiver  , here i checked the remote login , it is working , i mean i am able to login to 810 client 3)WE2

  • Applets embedded in JSP

    Hi, Another newbie question here sorry. I have the following directory structure in my web app: root_dir root_dir/JSP_dir1/JSP_sub_dir1/main.jsp root_dir/WEB-INF/lib main.jsp has an embedded apple - the markup looks like this: <applet   code="com.som

  • DRM Import, Action Script

    Hi All, I am new to Hyperion DRM 11.1.2, I am confused about concepts such as metadata and data still not able to understand difference between them. What I understand is all Versions hold is set of independent hierarchies which have nodes and their

  • Comparison in the option tag

    hi, <uix:option selected=""               textBinding="uix.current['.']" valueBinding="uix.current['.']"  />In the code above I would set a value selected after the values are returned to the form. If i write selected ="uix.current['.'] eq something"