About the return code of the tpcall

if i run the client one time ,then it's right,
but if run again and again,
the server should return 'TPSUCESS' or 'TPFAIL'
BUT,iSucess got by client will be 64(run the client sencond),128(third),192(fourth)
i did not know what happend to this
client:
long reclen=1024;
FBFR32* inputbuf=NULL;
int iSuccess;
inputbuf = (FBFR32*)tpalloc("FML32",NULL,reclen);
int count=0;(or some other value,like 5,6..)
for (int i=0;i<count;i++)
     iSuccess=-1;
     userlog("tperrno==%d,desr==%s",tperrno,tpstrerror(tperrno));
     iSuccess = tpcall("shlr",(char*)inputbuf,0L,(char**)&inputbuf,&reclen,0L);
     userlog("tperrno==%d,desr==%s",tperrno,tpstrerror(tperrno));
     userlog("return==%d",iSucess);
tpfree((char*)inputbuf);
server:
void shlr(TPSVCINFO *rqst)
int ret=dealfun(rqst);
FBFR32 * sendbuf=(FBFR32*)tpalloc( "FML32", NULL, 1024);
if (ret==1)
tpreturn(TPSUCCESS,0,(char*)sendbuf,0L,0);
else
tpreturn(TPFAIL, 0,(char*)sendbuf,0L,0);     
}

guorke,
I suggest you add userlog to the server to see the tpreturn situation and compare with tpcall's return code. iSucess is -1 means something wrong, other values such as 64, 128... means the tpcall's execution scucessfully and they are code related with internal handler index.
Wayne

Similar Messages

  • About vercmp return code

    Hi.
    Sorry if my question is too newbie
    Consider these three examples:
    1.
    $ vercmp "1.5" "1.5-1"
    0
    $ echo $?
    0
    2.
    $ vercmp "1.5-2" "1.5-1"
    1
    $ echo $?
    1
    3.
    $ vercmp "1.5-1" "1.5-2"
    -1
    $ echo $?
    255
    Is this expected? (I mean the program exit status).
    P.S.
    This question came up while I was trying to figure out why I cannot build kernel26zen (git-stable) after pacman upgrading.
    In PKGBUILD there are lines
    msg "Testing if current kernel version is supported by this PKGBUILD..."
    vercmp "2.6.30" "$(make kernelversion)" > /dev/null
    if [ $? -eq 1 ]; then
    error "Failed"
    return 1
    fi
    and 'makepkg' stops after 'vercmp'. Could 'vercmp' return other exit codes in past (before 3.4 version of pacman)?
    System:
    Archlinux x86_64,
    $ LANG=C pacman --version
    .--. Pacman v3.4.0 - libalpm v5.0.0
    / _.-' .-. .-. .-. Copyright (C) 2006-2010 Pacman Development Team
    \ '-. '-' '-' '-' Copyright (C) 2002-2006 Judd Vinet
    This program may be freely redistributed under
    the terms of the GNU General Public License.

    falconindy wrote:The return value of main is unsigned; therefore, -1 and 255 are equivalent when compared in terms of an 8 bit unsigned binary number.
    Well, up to now I didn't pay much attention what (signed vs unsigned) main should return.
    Whether or not this is intended.. not sure..
    looks like the intent of the PKGBUILD is not to build anything newer than 2.6.30.
    This is another problem. I mentioned it here because I faced with it only when I upgraded pacman and 'makepkg' stops at these lines.
    So I thought that the 'vercmp' in PKGBUILD was to check if version of building kernel is newer than 2.6.30 and continue if it is true.
    This thought was based on my previous experience with kernel26zen building for kernel version > 2.6.30.
    Now 'makepkg' is interrupted on the 'vercmp' (I don't see 'Failed').
    If everything is OK with 'vercmp' then something other was changed that cause 'makepkg' to be interrupted.
    Thank you for information.

  • Java.exe return codes - windows

    I have a java application being run from a batch file on WindowsNT4sp6a using Sun's j2se 1.3.0 (build 1.3.0-C) with Java Hotspot (TM) Client VM (build 1.3.0-C, mixed mode) and during the course of running the app (confirmed that it happens at different places in the app by observing logs), the VM simply dies with no exceptions thrown that my java app can catch.
    But, using MS batch environment variable ERRORLEVEL, I observe that the java.exe is returning 3 as the return code. I also have observed that java.exe returns 0 normally.
    Can anyone clue me into where I can find info about what return code 3 is?
    Also, are there any VM log/tracing mechanisms I can turn on to help debug this problem?

    Thank you for your reply.
    But, this is why this is so weird ... I am the programmer (well, maintenace programmer), and the java program is not using System.exit(), therefore, the java.exe should return 0 (zero) when the end of the main() is reached (right?).
    But, it doesn't, it returns 3 ....
    Well, I know the end of the main() is not being reached (because the program is not completing its' task). Plus, all the code is wrapped in try { ... } catch(Exception e) { e.printStackTrace(); } ... and no exceptions!
    Then, I wrapped all that in try { ... } catch(Error err) { System.out.println("caught an error!"); } ... but no dice, whatever is happening, it is out of the control of my java program.
    What could this mean, I am assuming (and correct me if I am wrong) that if I don't call System.exit(3), then it must be the jvm itself returning that code (3) .... and probably due to an internal error ... and I would assume the internal error is in some manner being caused by my code, but if I had a list of possible return codes for this specific jvm implementation and their meanings, then I would have an idea of what to look for in the code.
    I was just hoping someone could point me in the right direction on this forum quickly, but I guess I will have to earn my pay and figure it out the old fashioned way ... work!.
    Just to add:
    My current game plan is to check all the JDBC code, it looks as if not all the Statement and Connection objects are being closed properly before new ones are created (don't ask). It uses the sun.jdbc.odbc.JdbcOdbcDriver and I have heard it can be buggy if you don't properly close those things.

  • How to generate the return code automatically through EP

    Hello all,
               I have created a transaction Iview and i am calling transaction SE16 to which i am passing application parameter as the table name which i want to see.Now i am getting the SE16 screen with the table name successfully passed on to the input field. But i want the Iview to process this screen also so that i dont have to press enter to see the next screen. i want this iview to process the SE16 screen directly and show me the next screen. I dont know how can i pass the return code parameter which will directly execute the table name entered in SE16 screen.suppose my table name is "ABC" and i have set the application parameter as DATABROWSE-TABLENAME=ABC&~okcode=ANZE where ANZE is the sy-ucomm value.Plz reply at the earliest.
    Thanks and regards,
    Alpa Desai.

    Madden wrote:
    I do think OOP can only complement procedural programming,Wrong. They don't have to have anything to do with each other.
    but I just wish for my app to exit the same way whether I return or not an exit code.
    I mean we are talking about the implementation, or the system, here.
    Simply let it end and the "return code" will be 0.
    But ... is there a way for a Java application to execute another Java application ? The analog for CreateProcess, but in the Java world ?Start a thread and call the main method of the class that kicks it off with the necessary arguements is one way.
    When an Java app executes another Java app will a new VM be created ?Runtime.getRuntime().exec() and call java ...... Which will, obviously, start a new VM.
    Is ther an internal way, for this that will work inside the same VM ?See the thread situation above.
    How will the parent get the exit code from the child ?If called with Runtime simply call System.exit and then (from the original program) evaluate the return code (see the Runtime and Process classes).
    If called in a thread, without using Runtime.exec any where, then you use a return at the end of the main method, but, if you are looking for a "return code" from an entire application, you're probably looking at Runtime.exec anyway. Otherwise, you are better of writing it so that it can be used in a real OOP manner (i.e. you don't have to call the main method of another application at all, you simply start instantiating and using the classes involved), in which case, a "return code" from the "application" is meaningless.
    >
    Timothy Madden,
    RomaniaEdited by: masijade. on Nov 19, 2007 10:18 AM

  • Getting the return code of an exec-called program

    I'm trying to simply call an .EXE (Win32 console-) application from LabView 5, which works fine with EXEC. The problem is, that I cannot query the return code of the program afterwards. (The error output is always 0, no matter what the program has returned.) Anyone knows a nice short solution to that? Thanks!

    Hi Ritter,
    Somehow I think I may be missing something.
    (after looking around)
    What version of LV are you using?
    I am guessing 5.1 or earlier.
    LV 6 EXEC has standard output available.
    If you are using LV 5.1.1 or so, I can only recomend the the re-directed solution.
    If file system is issue how about using a complete file spec starting with "c:"? Do you expect to be running on a machine that does not have a c drive?
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • About the character-code of the csv file

    Hi All
    The csv file is made by using the Write_File action.
    Is it possible to make it by character-code "ANSI"?
    Any assistance would be appreciated.
    Thanks,
    hikeda

    guorke,
    I suggest you add userlog to the server to see the tpreturn situation and compare with tpcall's return code. iSucess is -1 means something wrong, other values such as 64, 128... means the tpcall's execution scucessfully and they are code related with internal handler index.
    Wayne

  • About the bar code report in printer server

    Hi:
    I have a question about the bar code report in printer server, i can do the bar code report in my local computer ,
    but it can't be work when put it into the printer server ,
    It would be get the error message :
    REP-110: can't open the file 'null'.
    REP-1070: it have a error when it open or sqve the document.
    REP-0110: can't open the file 'null'.
    I had study the document orbr_barcode.pdf before,
    and I do something below:
    1. copy a new oraclebarcode.jar into my computer.
    2. change the regedit HKEY_LOCAL_MACHINE\SOFTWARE\ORACLEHOME1\REPORTS_CLASSPATH,
    add a new path that the oraclebarcode.jar was.
    3. import java class
    oracle.apps.barcode.util.BarCodeConstant
    oracle.apps.barcode.BarCodeMaker
    4. new PACKAGE globals IS
    bcobj ora_java.jobject;
    barcode_to_use varchar(256);
    tempdir varchar(100);
    directory_sep varchar(2);
    END;
    5.modify function BeforeReport return boolean is
    begin
    globals.barcode_to_use := BarCodeConstants.BAR_CODE_39;
    globals.bcobj := barcodemaker.new();
    return (TRUE);
    end;
    6. new Formula in the DataModel, and set to image,
    function CF_barCodeFormula return VARCHAR2 is
    myfilename varchar2(500);
    result varchar2(500);
    barcodeData VarChar2(500) := :ast_no;
    begin
    myFileName := srw.create_temporary_filename;
    barcodemaker.setBarWidthInch(globals.bcobj,0.005);
    barcodemaker.setBaseCodeData(globals.bcobj,barcodeData);
    barcodemaker.setBarCodeType(globals.bcobj,globals.barcode_to_use);
    myFileName := barcodeData;
    barcodemaker.setFullPath(globals.bcobj, myFileName);
    barcodemaker.renderBarCode(globals.bcobj);
    return(myfilename);
    end;
    It's success when I build a bar code report in local computer,
    but I copy the oraclebarcode.jar into printer server and chage the HKEY_LOCAL_MACHINE\SOFTWARE\ORACLEHOME1\REPORTS_CLASSPATH, but it get the error message ...
    Please help me , I try it so many times and it still fail,
    your sincerely ,
    Hsiu-Chen, Yeh

    Dear Ph.
    sorry ...
    I can understand your command : the engine element in the server config file.
    can you Please explain this command more detail to me, Please.
    I deeply appreciated your kindness.
    Hsiu-chen, Yeh

  • Why have the patch return codes changed?

    When patching sparc Solaris 10, have the patch return code 2's now become code 1's? Why the change? Is there documentation somewhere about this? What other ones have changed?

    Code 1 could indicate a number of different things besides patch allready installed which there is a code allready for. I do not really have the time to search through all the logs to verify this. I believe this is a problem that needs addressed.

  • When I tried to log into my itunes account, I was asked to update my credit card information. When I confirmed my credit card info, I got a response about my security code not being accurate -which is not the case-it is 100% accurate. How do I fix?

    I keep getting a message about my security code not being accurate. I tried 3 different cards & have the same issue. Is this a systems issue? I need to get my apps installed on my new iPhone 4. I am unable to download without confirming my credit card info- My security codes are 100% accurate.Anyone else having this issue? What is the fix for this?

    Ohemod,
    There are 120+ countries that have iTunes Stores, but that leaves many that do not.  You can consult this document:  iTunes Store: Which types of items can I buy in my country?
    Opening in a new country requires a tremendous amount of legal, commercial and financial investment, but I am sure Apple would be interested in knowing where there is unmet demand.  If you wish to make suggestions to Apple, you can use the iTunes Feedback page.

  • How can we know the return code of BDC Program ?

    Hi All,
    Please tell me : How can we know the return code of BDC Program when being exceuted in Session or in Transaction mode.
    In my program, we are uploading data from Excel sheet to SAP via BDC
    The records that are not updated we want to create a log file.
    Now to know whether a record is updated ot not, wat syst field shloud be used?
    Its urgent....
    <b>Reward Point will be there ....</b>
    Thanks,
    Harish

    Hi harish,
    try the logic in this code ...
    i had attached input file in the end.
    TYPES: begin of errmess,
            msgnr type t100-msgnr,
            text type t100-text,
           end of errmess.
    TABLES : t100.
    DATA: BEGIN OF DD_VA01,
           AUART TYPE VBAK-AUART,
           KUNNR TYPE RV45A-KUNNR,
           BSTKD TYPE VBKD-BSTKD,
           MABNR TYPE RV45A-MABNR,
           KWMENG(2) type C,
           KBETR(2) type C,
          END OF DD_VA01.
    DATA:IT_VA01     Like TABLE OF DD_VA01,
         WA_VA01     Like LINE  OF IT_VA01,
         WA_VA01_F   Like LINE  OF IT_VA01,
         IT_BDCDATA  TYPE TABLE OF BDCDATA,
         WA_BDCDATA  Like Line  OF IT_BDCDATA,
         W_FNAME     TYPE STRING,
         messtab like bdcmsgcoll occurs 0 with header line,
         it_errmess type table of errmess,
         wa_errmess like line of it_errmess,
         err_message type string.
    data: zf1 type i,
          zc1 type c value '2',
          fn(20) type c.
    Main Code ************************************************************
    PERFORM get_input using 'C:\Documents and Settings\ic881592\Desktop\Daran_bdc_VA01-e.txt'.
    SORT IT_VA01 BY AUART KUNNR BSTKD.
    LOOP AT IT_VA01 INTO WA_VA01.
      if WA_VA01_F-AUART <> WA_VA01-AUART OR
         WA_VA01_F-KUNNR <> WA_VA01-KUNNR OR
         WA_VA01_F-BSTKD <> WA_VA01-BSTKD.
           PERFORM set_header_flag.
           PERFORM create_bdc_header_data.
      endif.
      PERFORM create_bdc_item_data.
    ENDLOOP.
    PERFORM call_transaction.
    PERFORM errorlog.
    Procedures ***********************************************************
    form get_input using w_fname.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME            = W_FNAME
          HAS_FIELD_SEPARATOR = '#'
        TABLES
          DATA_TAB            = IT_VA01.
    endform.
    form call_transaction.
        PERFORM bdc_field       using 'BDC_OKCODE' '/11'.
        CALL TRANSACTION 'VA01' USING IT_BDCDATA MODE 'A' messages into messtab.
        refresh it_bdcdata.
    endform.
    FORM set_header_flag.
           WA_VA01_F-AUART = WA_VA01-AUART.
           WA_VA01_F-KUNNR = WA_VA01-KUNNR.
           WA_VA01_F-BSTKD = WA_VA01-BSTKD.
           if zf1 = 1.
               PERFORM call_transaction.
           endif.
           zf1 = 1.
    endform.   "set_header_flag.
    form create_bdc_header_data.
         perform bdc_dynpro      using 'SAPMV45A' '0101'.
         perform bdc_field       using 'VBAK-AUART' WA_VA01-AUART.
         perform bdc_field       using 'BDC_OKCODE' '/00'.
         perform bdc_dynpro      using 'SAPMV45A' '4001'.
         perform bdc_field       using 'KUAGV-KUNNR' WA_VA01-KUNNR.
         perform bdc_field       using 'VBKD-BSTKD' WA_VA01-BSTKD.
         perform bdc_field       using 'BDC_OKCODE' '/00'.
         perform bdc_dynpro      using 'SAPMSSY0' '0120'.
         perform bdc_field       using 'BDC_CURSOR' '04/06'.
         perform bdc_field       using 'BDC_OKCODE' '=CHOO'.
         perform bdc_dynpro      using 'SAPMV45A' '4001'.
         PERFORM bdc_field       USING 'BDC_OKCODE' '=POAN'.
    endform. "create_bdcdata
    FORM create_bdc_item_data.
         CONCATENATE 'RV45A-KWMENG(' zc1 ')' INTO FN.
         perform bdc_field       using 'BDC_CURSOR' FN.
         perform bdc_field       using FN WA_VA01-KWMENG.
         CONCATENATE 'KOMV-KBETR(' zc1 ')' INTO FN.
         perform bdc_field       using FN WA_VA01-KBETR.
         CONCATENATE 'RV45A-MABNR(' zc1 ')' INTO FN.
         perform bdc_field       using FN WA_VA01-MABNR.
         perform bdc_dynpro      using 'SAPMV45A' '4001'.
         PERFORM bdc_field       USING 'BDC_OKCODE' '=POAN'.
    ENDFORM.
    form errorlog.
      LOOP AT MESSTAB .
        if MESSTAB-MSGNR = '311' or MESSTAB-MSGTYP = 'E'.
            SELECT SINGLE msgnr text FROM T100
                            into wa_errmess
                            WHERE SPRSL = MESSTAB-MSGSPRA
                              AND ARBGB = MESSTAB-MSGID
                              AND MSGNR = MESSTAB-MSGNR.
            IF SY-SUBRC = 0.
              err_message = wa_errmess-TEXT.
              IF err_message CS '&1'.
                REPLACE '&1' WITH MESSTAB-MSGV1 INTO err_message.
                REPLACE '&2' WITH MESSTAB-MSGV2 INTO err_message.
                REPLACE '&3' WITH MESSTAB-MSGV3 INTO err_message.
                REPLACE '&4' WITH MESSTAB-MSGV4 INTO err_message.
              ELSE.
                REPLACE '&' WITH MESSTAB-MSGV1 INTO err_message.
                REPLACE '&' WITH MESSTAB-MSGV2 INTO err_message.
                REPLACE '&' WITH MESSTAB-MSGV3 INTO err_message.
                REPLACE '&' WITH MESSTAB-MSGV4 INTO err_message.
              ENDIF.
              CONDENSE err_message.
              WRITE: / MESSTAB-MSGTYP, err_message .
            ELSE.
              WRITE: / MESSTAB.
            ENDIF.
        endif.
      ENDLOOP.
    endform. "errorlog
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      WA_BDCDATA-PROGRAM  = PROGRAM.
      WA_BDCDATA-DYNPRO   = DYNPRO.
      WA_BDCDATA-DYNBEGIN = 'X'.
      APPEND WA_BDCDATA TO IT_BDCDATA.
      CLEAR  WA_BDCDATA.
    ENDFORM.
    FORM BDC_FIELD USING FNAM FVAL.
      WA_BDCDATA-FNAM = FNAM.
      WA_BDCDATA-FVAL = FVAL.
      APPEND WA_BDCDATA TO IT_BDCDATA.
      CLEAR  WA_BDCDATA.
    ENDFORM.
    input file :
    OR     2148     0001235     R-1162     8     17
    OR     2148     0001235     R-1161     2     30
    OR     2148     0001235     100-400     6     25
    OR     2148     0001235     R-1162     4     12
    OR     2148     0001236     R-1162     3     12
    OR     2148     0001236     R-1161     2     30
    OR     2148     0001236     100-400     1     25
    OR     2148     0001236     R-1162     7     12
    OR     2148     0001236     R-1161     8     30
    OR     2148     0001236     100-400     10     25
    OR     2148     0001235     R-1161     5     30
    OR     2148     0001235     100-400     2     25
    OR     2148     0001235     R-11621     3     12
    OR     2148     0001235     R-1161     2     30
    OR     2148     0001235     100-400     1     25
    OR     2148     0001235     R-1162     7     12
    OR     2148     0001235     R-1161     8     30
    OR     2148     0001235     100-400     10     25
    OR     2148     0001236     R-1162     8     17
    OR     2148     0001236     R-1161     2     30
    OR     2148     0001236     100-400     6     25
    OR     2148     0001236     R-1162     4     12
    OR     2148     0001236     R-1161     5     30
    OR     2148     0001236     100-400     2     25

  • 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

  • The problem with the return code of JOptionPane

    I debug the follow code, when I press button No, return code is 0, but OpenXLSFile(ResultXSLName); executed, why?
    the result is whether I press YES or NO, the if condition will be true
    how to compare the return code?
              int open = JOptionPane.showConfirmDialog(null, "Do you want Open the result File \"" + ResultXSLName + "\" ?", "Confirm", JOptionPane.YES_NO_OPTION);
              if (JOptionPane.YES_OPTION == open);
                   OpenXLSFile(ResultXSLName);
              }Edited by: Kevin.Tong on Feb 26, 2008 7:26 PM

    the result is whether I press YES or NO, the if condition will be truethis line will execute
    OpenXLSFile(ResultXSLName);regardless of the condition being true or false,
    because the if statement terminates at the semi-colon
    if (JOptionPane.YES_OPTION == open);<------------------

  • N unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    some one can help me please
    i have no idea what i must to do.
    an unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    The Exception Handler gave all the info that you need. No need to print the whole stack trace.
    The exception handler says
    Exception Details: java.lang.IllegalArgumentException
    TABLE1.NAME
    Look in the session bean (assuming that is where your underlying rowset is). Look in the _init() method for statements similar to the following:
    personRowSet.setCommand("SELECT * FROM TRAVEL.PERSON");
    personRowSet.setTableName("PERSON");
    What do you have?

  • 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 <===

  • Publishing issue: return code 120 was returned from the server.

    Hi
    I'm working on an issue when attempting to publish a crystal report using the sap toolbar. When I try to publish I am seeing the following error
    An error occurred while saving and/or publishing. The return code 120 was returned from the server.
    Does anyone know what this return code means or where I can look it up?
    Thanks
    Daniel

    Hi Alexander,
    Looks like you are encountering the same issue as us. The issue seems to be just being able to save the report to bw.
    We are on sp2 fix pack 2.3 but experienced this behavior on sp2 as well
    We tried a few tests against the server with sp2 installed
    Client machine 1 # older version (just base install)
    Configuration
    Bobj client 12.1.0.882
    crystal reports 2008 sp 1 12.1.0.892
    sap ik 12.1.0.890
    Behavior
    -open a report in bw and preview in crystal - ok
    -open a report preview and save report in bw using same name - ok
    -create a folder under sap bw role using save as dialog box that comes up when selecting save as on the sap toolbar - ok
    -open a report preview and save report under different name - ok
    - create a new report and save ok
    Client machine 2 # same version as server with sp2 installed
    Configuration 2 bobj 3.1 sp2 fix pack 2.3
    Bobj client 12.2.3.467
    crystal reports 2008 sp 1 12.2.3.467
    sap ik 12.2.3.467
    Behavior
    -open a report in bw and preview in crystal - ok
    -open a report preview and save report in bw using same name - ok
    -create a folder under sap bw role using save as dialog box that comes up when selecting save as on the sap toolbar - ok
    -open a report preview and save report under different name I get the 120 error
    - create a new report and save I get the 120 error
    We ran rfc traces, authorization traces and found nothing.
    Our support ticket is with the SAP BW team now and we are waiting to work with them. I will update the thread as we find more information.
    Thanks,
    Daniel

Maybe you are looking for

  • Pearl with gps and wi-fi

    hiya, does anyone know a way to get both gps and wi-fi in a pearl?  gps or wifi addon/card to supplement the missing feature in one of the current pearls? just wait and see if they ever do it?  thanx, bradt

  • Power point wavy, limited screen , blacked out on sides, only in power point

    I have trouble withpower point being wazy and limited on both sides of screen are blacked out, only pwer point does this, cant get it to stop, any advice on why this happens to only power point?

  • Why does my printer cut off the top of copies?cc=​us

    My printer cuts off the top of copies.  Is there some way to adjust the printing size at the top?

  • XI Interfaces

    How to look at interface and determine the source and target system? I mean, where do you look for such info in XI? Is it in Integration Directory or in Integration Builder? What objects do I need to look at and what information to note? Thanks for h

  • Missing reporting point backflushes...

    Hi, Can anybody tell, How to carry out the missing reporting point backflushes? As i am backflushing the header material but the system give me the error message that ''GR quantity > RP quantities: Temporary reqmts inconsistency possible'' When i am