Connection Wizard - SAP Tables, Cluster or Functions

Hi Guys!,
I have Crystal Report 2008 and SAP Integration KIT installed on my machine.
If I try to build a new Report and choose the the available connection SAP Tables, Cluster or Function and go to the next step in the Wizard it doesn´t show me the registerted entries of my SAP LogonPad.
Anyone an idea?
Thx!
Serdal
Edited by: Serdal Oeztuerk on Jul 16, 2008 2:20 PM

Hi jim ji,
thanks for your support but it still not work. I have set the system variable
SAPLOGON_INI_FILE with the value ..\saplogon.ini
And I also installed crystal 2008 and the integration kit in sequence....
I have installed the SAPGUI version 7.10 - could be this the reaseon?
Info: I have no problem with the sap integration kit. the problem is
in the wizard where i can choose the available connection for sap for
example the connection "SAP Tables, Cluster or Functions"
thx!
Serdal

Similar Messages

  • Unable to connect to "SAP Table, Cluster, or Function" in Crystal reports.

    I cannot connect to "SAP Table, Cluster, or Function" in Crystal reports. The system gives such an error: Database Conection Error: Functional module "/CRYSTAL/GET_OSQL_OBJECT_LIST" not found.
    Did anyone get this error? What can't be wrong with my system?

    Hi Sergey,
    you must import some transports in your SAP R/3 system before you can access its tables. Have a look at the documentation of the int.KIT for SAP.
    The transports are normally to be found in the install directory of your server installation of the BOBJ int.KIT for SAP. In the documentation is easy to identify those which must be imported depending on the system's type and version.
    Regards,
    Stratos

  • Using Standard SAP Tables in SAP Tables, clusters or functions connections

    Hi Gurus,
    I am trying to use Standard SAP table like MARA, MAKT.. etc. in my crystal designer. When i make a new connection using SAP tables, Cluster or Functions, these tables are not listed.
    Any configuration i have to maintain to list those standard table.?
    With Regards,
    Balachander.S

    Due to performance reasons there is  a limitation regarding the number of the dispplayed table names. Once you are in the connection/table browser select a table and invoke the context menu by pressing the right mouse button. Select Options and in the options panel you can use wildcards in order to limit the results to the desired range (eg. use MA% to get a list of tables starting with MA). After you close the options panel press F5 and expand the connection entry again.
    Regards,
    Stratos

  • CR 2008 在使用sap的table,cluster,functions是报错

    软件环境:CR 2008,BusinessObjects_SAP_Integration_Kit_XI3_win32_x86,sapecc6.0 BW7.0 客户端
    当我打开CR后进入data expert,数据源选择sap table,cluster,functions后,登陆进入sap系统,当我点击其中任意一个u2018+u2019时,报错
    u2018database connector error:'function module''/CRYSTAL/GET_FUNCAREA_CATALOG''not found'u2019
    点击报错对话框'ok',另一报错框弹出
    u2018database connector error:u2018RFC_INVALID_HANDLE'u2019
    点击ok后报错消失。
    不知道是我的CR装的有问题还是BusinessObjects_SAP_Integration有问题?
    另外:我用我在用菜单栏上的u2019SAPu2018下的其它功能都没有问题,我可以用BW的query来做报表。
    再有:能帮我解决一个菜鸟问题吗:怎样把我本机的图片传到这里,如果是用insert link的话,URL应该怎么编写?
    万分感谢!

    Sunny Zhang说的一点都没错,但感觉这个地方对于非basis人员太难以理解了(也可能是我太笨)。
    说白一点,就是在对应的SAP系统中使用STMS将Integration安装包中的\Transports\unicode_compatible\cofiles下的那一堆文件移送到SAP系统中,当然与先要把文件复制到SAP服务器的trans\cofiles和trans\data目录下。如果没有服务器的权限,可以使用sxda_tools进行复制,al11进行查看。
    这个操作感觉对于basis来说很简单了,也是经常作的,不过我当时真地琢磨得很久才搞明白-_-
    明白之后再看就很好理解了。其实就是给SAP系统增加一些CR相关的程序和包等等。
    但我试图移送到BW系统中的时候,却失败了,不理解。

  • Update sap table using a function module call by php code

    Hello,
    I m trying to update the table VBAP using a function module ZZ_SET_DISTANCE  call by a php code.
    But I have this problem:
    the saprfc seems to work well but when I look to the table VBAP the fields have not been update.
    I tried the function module in debug mode and it work good. The fields are update.
    I also handle the saprfc call function and the return SAPRFC_OK
    This are the function module ZZ_SET_DISTANCE, and the php code
    //PHP CODE
    $fce = saprfc_function_discover($sap,"ZZ_SET_DISTANCE");
                  if (! $fce ) {echo "Echec d'ouverture du module fonction "; exit;}
                   saprfc_import ($fce,"COMMANDE", '0000001998');
                   saprfc_table_init($fce,"TBLE_CMDE");
                        $val=array();
                        $val['NUM_POST']='000030';
                        $val['HN_EXP']='';
                        $val['ST_EXP']='';
                        $val['PC_EXP']='';
                        $val['CI_EXP']='';
                        $val['CO_EXP']='';
                        $val['HN_REC']='';
                        $val['ST_REC']='';
                        $val['PC_REC']='';
                        $val['CI_REC']='';
                        $val['CO_REC']='';
                        $val['DIST']='popo';
                        saprfc_table_append ($fce,"TBLE_CMDE", $val);
                 $rfc_rc = saprfc_call_and_receive ($fce);
                 echo "\n".$rfc_rc;
                 if ($rfc_rc != SAPRFC_OK) { if ($sap == SAPRFC_EXCEPTION ) echo ("Exception raised: ".saprfc_exception($fce)); else echo (saprfc_error($fce)); }else{echo '/execution de la function ;}
                 saprfc_function_free($fce);
    //FUNCTION MODULE ZZ_SET_DISTANCE
    FUNCTION ZZ_SET_DISTANCE.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(COMMANDE) TYPE  VBELN
    *"  TABLES
    *"      TBLE_CMDE STRUCTURE  ZADD_COM_LOXAN
    DATA : NUMC TYPE VBELN.
    NUMC = COMMANDE .
    WHILE STRLEN( NUMC ) < 10 .
      CONCATENATE '0' NUMC INTO NUMC .
    ENDWHILE .
    DATA tble_addrcomm LIKE LINE OF TBLE_CMDE .
    LOOP AT  TBLE_CMDE INTO  tble_addrcomm.
      DATA : NUMP TYPE POSNR.
      NUMP = tble_addrcomm-NUM_POST.
      WHILE STRLEN( NUMP ) < 6 .
      CONCATENATE '0' NUMP INTO NUMP .
      ENDWHILE .
      UPDATE VBAP SET ARKTX = tble_addrcomm-DIST
      WHERE VBELN EQ COMMANDE
      AND POSNR EQ NUMP.
    ENDLOOP.
    ENDFUNCTION.
    Is anybody can help me?
    thank.

    Marie, create a Blog please, about more details for dummies....
    1) how to connect to sap system?
    2) you run the php code where? in a webserver or where?
    3) wich is the url for run the FM: ZZ_SET_DISTANCE
    4) you placed some dlls files on the web server?
    please is interesting this...
    Thanks

  • Problem to connect SAP tables with Crystal report 2011

    Hi,
    I am new in Crystal report,
    I Install CR 2011 in my PC now when I make a new connection under path FIle->New->Blank Report I choose SAP Table,Cluster or Function
    here I give Clint,User and Password and try to connect then following msg will display 
    Logon Failed.
    Details: You do not have necessary rights to design report against the SAP system . Please check with your System Administrator.

    Hi,
    Step 1:After Clicking SAP BW Query, you need to goto SAP tab from the context menu and click on
    Step 2: Create New Report from a Query
    Step 3: Click on OLAP tab, Here you can select your Cube and select SAP Business Information Warehouse
    Step 4: Go back to SAP tab and click on Start BW Query Designer(this allows selection of the cube from the Query designer Interface)
    You will understand automatically about further steps once you are able to follow the above steps............
    Regards,
    Suman

  • Getting Logon Failed error connecting to SAP R/3 with Crystal

    I have Crystal Reports 2008 and also the SAP Integration Kit installed on my desktop.  I've imported the transports into my DEV and QAS systems and am trying to connect directly to R/3 from Crystal using the SAP Table, Cluster or Function choice.
    I receive the error:
    Logon failed.  Details: You do not have the necessary rights to design reports against the SAP system.  Please check with your system administrator. 
    I'm using a logon that has full rights within SAP.  It recognizes my password because when I try a password that I know is wrong I get a different error message: Logon failed. Detail: Name or password is incorrect.  I receive the same error in PRD even though I have not imported the transports into that client.
    I have Crystal Server but am not trying to use that at the moment.  Just Crystal Reports as a standalone product.  If I've left something out please let me know.
    Thank you,
    Kevin Scheeler

    Hi Kevin,
    take a look at the Installation Guide for the SAP Integration Kit which includes a detailed list of authorizations per use case in the appendix
    the documentation is available on help.sap.com
    Ingo Hilgefort

  • To upload a data into SAP Table with the help of RFC function in BODS

    Hi,
    Please provide me step-by-step solution to upload data into any SAP table with the help of RFC function in Data Services.
    I have created RFC function that upload data into SAP table. RFC Function contains one table that has same structure as my database table.
    In the data services how can i filled the table of RFC function, i am using this function in query transform of data services but it gives me error.
    I am also follow link http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsDataServicesTipsand+Tricks
    but it did not help me.
    Thanks,
    Abhishek

    Hi Abhishek,
    Did you import the function module in the SAP datastore first? When you open the SAP datastore, the function should be listed in the 'functions' section. If not, import it. Make sure your function is remote executable.
    Once the function is there, you can use it in a transformation. In 'Schema Out' right-click on 'Query' (top level) and choose 'New Function Call'. You can then select a datastore and a function in the datastore. The wizard will show you which output parameters are available. I believe you have to add at least one and can select as many as you like.
    After confirming your selection the function and the output parameters appear in Schema Out. You can then right-click on the function and choose 'Modify function call'. A popup will appear where you can specify the input parameters.
    I hope this helps.
    Jan.

  • Error while connecting to ECC tables from Crystal

    Hello,
    I am trying to create a crystal report on the SAP ECC tables directly, when I try to create a new connection from u201CSAP Table, Cluster, or Functionu201D option in crystal reports 2008 I get this error" Logon Failed. Details: you don't have necessary rights to design reports against the SAP system. please contact your administrator"
    Now my question is where are my rights missing, is it on BO side or SAP side, I see that I have access to SAP tables when I try to logon through the SAP logon pad it works, I could see the tables.
    Please let me know your thoughts.
    Thanks

    Hi,
    part of the ABAP Transports from the SAP Integration Kit are also specific authorization objects. Take a look at the Installation guide for the SAP Integration Kit in the appendix.
    Ingo

  • Crsytal Report Connection to SAP :Error invalid Request

    Dear All
    We have SAP EHP7.
    We have Crystal Report 2013 installed.
    We tried to connect to SAP tables through new connection, it gives me the following Error.
    Subsequently we tried to import the transport requests (as suggested).  But it gives invaid Request error.
    Kindly, help me where to find the correct transport requests.
    Regards,
    Venkat

    are you connecting through odbc?  if so check to see if you are using windows authentifiction or sql.
    make sure the user you are trying to pass has read access to the database

  • Reading data from a Table Cluster sans SAP code

    I need to read data at the database level from a cluster table.  That is to say, I want to decompress the VARDATA column that is in
    the database table and interpreet it with my own code.
    I've read all the SAP help documents on the subject, and I have created a test Table Cluster (the physical object) and associated test Cluster Tables (the logical tables) with the Table Cluster, but the data is compressed at the at the database level and incomprehensible.
    I realize one can use ABAP and OPEN SQL to read the table, because that goes through the SAP database interface.  I could
    also call a BAPI from an external program, but I don't want to do that.
    I need to read the data directly from the database without going through the SAP database interface or calling any SAP code.  I
    am willing to write the required code in another language, I just need to know how the data is compressed in the cluster, so I can
    decompress it.
    1. Does anyone know how to decode the information stored in a table cluster  WITHOUT using SAP code? 
    2. If no one knows how to do (1), does anyone know what compression algorithm SAP uses when storing data in the table cluster?
    3. Is there a specification or layout that explains exactly how the VARDATA column in a table cluster is structured, so that once I
    decompress it, I can figure out what data belonged to which table and column?
    If you even have a guess as to the compression algorithm or layout of VARDATA, I would be interested to hear it.
    Thank You,
    Larry Smith

    Hi All,
    The question is still open, waiting for points to be awarded.  Fidel's answer didn't really help.  I already know that I currently can't read the cluster, that's why I posted the question. 
    I would think SAP uses a known compression algorithm for the clusters, so the most important thing is finding out what the algorithm is, and finding out if SAP does anything weird to the compression headers.
    Someone has to know out there!
    Thank You,
    Larry Smith

  • How to add  functionality in  SAP tables

    Hi All,
    i created one  enchancement to ME31K screen,
    i added one button to contract header  page when user click on this button it will tak me to my functionlity.
    and in my screens i added one more button that will tak me to contract header  page.( i used that stmt 'Leave program').
    but in second cycle if the user click on button it is showing me the following error.
    This function not defined
    Message no. 06006
    Diagnosis
    There is no entry for this function in Table 168F (system table). An error involving the screen control has probably occurred.
    Procedure
    Contact your system administrator.
    Am i need to add this functionalty to any  sap table.
    plz guide me on this.
    Thanks & Regards,
    Murthy Sannidhi

    Hi,
    The function exits used for screen enhancement of ME31K screens would have an export parameter E_UCOMM. Which needs to be mapped to a function code maintained in T168F table. Ideally 'KOPF' function needs to be passed onto E_UCOMM within the function exit.
    i.e. E_UCOMM = 'KOPF'.
    This shall solve the issue.
    Thanks & Regards,
    Kiran Kumar Somaroutu

  • Is there any Function module to find out no. of printers connected to SAP .

    I would like to know Is there  any FM exist in SAP to findout the no. of Printers connected to SAP sytem.And FM to know the status of the printer .

    Hi,
    in table TSP03 check field PASTATUS. It contains a hex value.
    Here is the explanation:
    02 -> printer is disabled
    04 -> printer not active
    08 -> printer is active
    10 -> printer is faulty
    Table TSP03C contains additionally field PADISABLED, which means printer disabled.
    Hope that helps -sorry that I don't know a FM for you!
    Regards
    Nicola

  • CR connection to SAP BI Query failed - error message

    Sorry, this forum is better for my question:
    Hallo,
    i get an error message by trying to login to SAP BI (over sap bi query toolbar)
    COM-Ausnahme in CExtToolbar::GetRemoteFileCookie() abgefangen. HR=0x90000001
    COM-Ausnahme in CExtToolbar::InitOpenSaveDialog() abgefangen. HR=0x90000001
    COM-Ausnahme in CExtToolbar::InitializeGlobalData() abgefangen. HR=0x03c9afe7
    Login faild with normal connection-wizard, too.
    I have no problems with Bex Analyzer or other BO-tools on this system.
    I can access with CR to queries of another SAP BW-System.
    Has anybody an idea?
    CR Version 12.2.3.467
    SAP Integration SP2 & Patch 02
    TIA
    Stefan

    CrystalReports-TraceFile:
    ========================================================================================================
    Trace file opened at , SAP-REL 710,0,0 RFC-VER U 3 880476 MT-SL
    resize I/O buffer to 16000 bytes
    >>>>   OPEN  
    UUID: ab_drvstate create uuid {C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
    0
            { }_{ }_0-
            __0
    >>>> <unknown>    : EXT  <ac: 2> L 192.168.168.11 >>> 50579148 (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
    >TS> Fri Jan 08 12:05:43 2010
            { }_{ }_0-
            __0
    >>> RfcOpenEx ...
    Got following connect_param string:
       CLIENT=800 LANG=DE CODEPAGE=1100 ASHOST=192.168.168.11 SYSNR=00 USER=shergert PASSWD=******* TRACE=1
    Send RFCHEADER: 01/LIT/IEEE/SPACE/1100
    Send UNICODE-RFCHEADER: cp:1100/ce:IGNORE/et:5/cs:2/rc:0x00000023
    UUID: send_rfcuuid {C045FCDE-7D4C-F1F8-9568-00164191FA4E}
    DT ERROR> ab_dtrfcSendInfo (rc: 1        { }_{ }_0-
    1
    >>> Logon check: calling RFCPING
    >>> RfcCall ...
    *> RfcCall
      FUNCTION RFCPING
            handle = 1
            parameter   = <NULL>
            tables      = <NULL>
    UUID:  RfcCallNew send the uuid to the partner {C045FCDE-7D4C-F1F8-9568-00164191FA4E}
    >>>> <unknown>    : EXT  <ac: 3> L 192.168.168.11 >>> WRITE (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
            __1
    000000 | D9C6C3F0 F0F0F0F0 F0F0F0E3 01010008 |ÙÆÃððððððððã....|
    000010 | 01010101 01010000 01010103 00040000 |................|
    000020 | 060B0103 0106000B 01010000 01050200 |................|
    000030 | 00002301 06000700 1E310039 0032002E |..#......1.9.2..|
    000040 | 00310036 0038002E 00310037 0038002E |.1.6.8...1.7.8..|
    000050 | 00320034 00200000 07001800 5A310039 |.2.4. ......Z1.9|
    000060 | 0032002E 00310036 0038002E 00310037 |.2...1.6.8...1.7|
    000070 | 0038002E 00320034 00200020 00200020 |.8...2.4. . . . |
    000080 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    000090 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    0000a0 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    0000b0 | 00200020 00200000 18001100 02450000 |. . . .......E..|
    0000c0 | 11001200 08370031 00300020 00001200 |.....7.1.0. ....|
    0000d0 | 13000837 00310030 00200000 13000800 |...7.1.0. ......|
    0000e0 | 40690077 006E0062 00320038 00200020 |@i.w.n.b.2.8. . |
    0000f0 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    000100 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    000110 | 00200020 00200020 00200020 00200020 |. . . . . . . . |
    000120 | 00000800 0601003C 0075006E 006B006E |.......<.u.n.k.n|
    000130 | 006F0077 006E003E 00000000 00000000 |.o.w.n.>........|
    000140 | 00000000 00000000 00000000 00000000 |................|
    000150 | 00000000 00000000 00000000 00000000 |................|
    000160 | 00000000 00000000 00000000 00000000 |................|
    000170 | 00000000 00000000 00000000 00000000 |................|
    000180 | 00000000 00000000 00000000 00000000 |................|
    000190 | 00000000 00000000 00000000 00000000 |................|
    0001a0 | 00000000 00000000 00000000 00000000 |................|
    0001b0 | 00000000 00000000 00000000 00000000 |................|
    0001c0 | 00000000 00000000 00000000 00000000 |................|
    0001d0 | 00000000 00000000 00000000 00000000 |................|
    0001e0 | 00000000 00000000 00000000 00000000 |................|
    0001f0 | 00000000 00000000 00000000 00000000 |................|
    000200 | 00000000 00000000 00000000 00000000 |................|
    000210 | 00000000 00000000 00000000 00000000 |................|
    000220 | 00000000 00000000 06051400 10DEFC45 |.............ÞüE|
    000230 | C04C7DF8 F1956800 164191FA 4E051401 |ÀL}øñ.h..A.úN...|
    000240 | 30000A44 0075006D 006D0079 00013001 |0..D.u.m.m.y..0.|
    000250 | 11001053 00480045 00520047 00450052 |...S.H.E.R.G.E.R|
    000260 | 00540001 11011700 10369D4D 071EB1B2 |.T.......6.M..±²|
    000270 | 4FB3B81A 7E5E6C37 16011701 14000638 |O³¸.~^l7.......8|
    000280 | 00300030 00011401 15000244 00011505 |.0.0.......D....|
    000290 | 01000101 05010136 002500FF 02540D12 |.......6.%.ÿ.T..|
    0002a0 | 00020000 00300D12 006C15C0 45FCDE7D |.....0...l.ÀEüÞ}|
    0002b0 | 4CF1F895 68001641 91FA4E00 00000101 |Lñø.h..A.úN.....|
    0002c0 | 36050200 00050200 0B000637 00310030 |6..........7.1.0|
    0002d0 | 00000B01 02000E52 00460043 00500049 |.......R.F.C.P.I|
    0002e0 | 004E0047 00010205 140010DE FC45C04C |.N.G.......ÞüEÀL|
    0002f0 | 7DF8F195 68001641 91FA4E05 14FFFF00 |}øñ.h..A.úN..ÿÿ.|
    000300 | 00FFFF00 00000000 00000000 00000000 |.ÿÿ.............|
    >>>> <unknown>    : EXT  <ac: 4> L 192.168.168.11 >>> FLUSH(WRITE) (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
            __1
    <* RfcCall : returns 0:RFC_OK
    >>> RfcListen ...
    >>>>   FLUSH(WRITE) (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
    1
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>> RfcListen ...
    >>>> Listen/WaitForRequest (counter = 27)
    >>>> <unknown>    : EXT  <ac: 6> L 192.168.168.11 >>> LISTEN (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
            __1
    000000 | 01010008 01010101 01010000 01010103 |................|
    000010 | 00040000 020B0103 0106000B 04010003 |................|
    000020 | 01030200 00002301 06001600 04313130 |......#......110|
    000030 | 30001600 07000F31 39322E31 36382E31 |0......192.168.1|
    000040 | 36382E31 31200007 0018002D 3139322E |68.11 .....-192.|
    000050 | 3136382E 3136382E 31312020 20202020 |168.168.11      |
    000060 | 20202020 20202020 20202020 20202020 |                |
    000070 | 20202020 20202020 20001800 11000133 |         ......3|
    000080 | 00110012 00043730 31200012 00130004 |......701 ......|
    000090 | 37303120 00130008 00206977 73617031 |701 ..... iwsap1|
    0000a0 | 5F495731 5F303020 20202020 20202020 |_IW1_00         |
    0000b0 | 20202020 20202020 20200008 00060080 |          ......|
    0000c0 | 3C007500 6E006B00 6E006F00 77006E00 |<.u.n.k.n.o.w.n.|
    0000d0 | 3E000000 00000000 00000000 00000000 |>...............|
    0000e0 | 00000000 00000000 00000000 00000000 |................|
    0000f0 | 00000000 00000000 00000000 00000000 |................|
    000100 | 00000000 00000000 00000000 00000000 |................|
    000110 | 00000000 00000000 00000000 00000000 |................|
    000120 | 00000000 00000000 00000000 00000000 |................|
    000130 | 00000000 00000000 00000000 00000000 |................|
    000140 | 00060130 00085341 504D5353 59310130 |...0..SAPMSSY1.0|
    000150 | 05140010 DEFC45C0 4C7DF8F1 95680016 |....ÞüEÀL}øñ.h..|
    000160 | 4191FA4E 05140500 00000500 04150002 |A.úN............|
    000170 | 30300415 04160001 58041604 17000333 |00......X......3|
    000180 | 34310417 04110017 43414C4C 5F46554E |41......CALL_FUN|
    000190 | 4354494F 4E5F4E4F 545F464F 554E4404 |CTION_NOT_FOUND.|
    0001a0 | 11040300 1743414C 4C5F4655 4E435449 |.....CALL_FUNCTI|
    0001b0 | 4F4E5F4E 4F545F46 4F554E44 04030402 |ON_NOT_FOUND....|
    0001c0 | 002D4465 72204675 6E6B7469 6F6E7362 |.-Der Funktionsb|
    0001d0 | 61757374 65696E20 22522220 69737420 |austein "R" ist |
    0001e0 | 6E696368 7420766F 7268616E 64656E04 |nicht vorhanden.|
    0001f0 | 02FFFF00 00FFFF00 00000000 00000000 |.ÿÿ..ÿÿ.........|
    <* RfcListen : returns 0:RFC_OK
    >>> RfcReceive ...
    Received RFCHEADER : 01/LIT/IEEE/SPACE/1100
    Received UNICODE-RFCHEADER : cp:4103/ce:IGNORE/et:3/cs:2/rc:0x00000023
    UUID: ab_rfccheck_uuid compare uuid's {C045FCDE-7D4C-F1F8-9568-00164191FA4E}
    Error in program 'Dummy': ======> 敄⁲畆歮楴湯扳畡瑳楥刢u2022獩⁴楮档⁴潶桲湡敤
    >>>> <unknown>    : EXT  <ac: 7> L 192.168.168.11 >>> FREE abrfcio.c 3440 (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
            __1
    >>>>   CLOSE abrfcio.c 3144 (50579148)
      -{C045FCDE-7D4C-F1F8-9568-00164191FA4E}
            { }_{ }_0-
    __1
    ==== Delta 0   0 LOG DROPPED
    Trace file opened at , SAP-REL 710,0,0 RFC-VER U 3 880476 MT-SL
    *> RfcReceive
            handle = 1
            parameter   =
    Error in program 'Dummy': <* RfcReceive : returns 3:RFC_SYS_EXCEPTION
    <<< RfcOpenEx failed
    <<<<<
    Edited by: StefanHGT on Jan 8, 2010 1:59 PM

  • Getting An Error while connecting to SAP :InComplete logon data

    Hi
    I trying to get the tables of SAP using Sapproxy class ,but enable to get the table from SAP Table..
    and also using SAP Connector 2.0.1 to connect the .net ,I got the SAP function and I write the code for it but enable to get the data in from the SAP
    I am binding the data to the data grid
    it is displaying the error like:
    SAP.Connector.RfcLogonException: Incomplete logon data.
    How to fix the problem ? suggestion please
    Thanks

    1.check your hibernate.cfg.xml file and make sure you use "xwiki/xwiki" as the username and password.
    2.make sure you have create "xwiki" tablespace in your oracle db.
    B.R
    Han

Maybe you are looking for