Data struct in rsa7

Hi guys,
I came across an issue while loading data from the r/3 system to BI.The Infopackage which carries the data to the bi is fetching 0 recs...while the RSA7 queue is having data for the current selection.
Can any one of tell me what could be the reason behind this?
And how can we tackle this issue in a minimal time?
Looking for your prompt response.
Regards,
Ani

Also check the server name in front of the datasource name.
it might be possible that there is some other BW server that extracts the data from the same R/3.

Similar Messages

  • Data Load in RSA7

    Dear All,
    Currently i am working on CRM Transactional datasource. I have done full Upload and enabled the delta.
    0CRM_SRV_PROCESS_H
    0CRM_SRV_PROCESS_I
    0CRM_SRV_CONFIRM_H
    0CRM_SRV_CONFIRM_I
    In CRM Side they are posting the Service Orders and it is reflecting immediately in delta queue. I just want to restrict the data flow to RSA7 in CRM Side. I just want to flow the data till yesterday in RSA7.
    Can you please help me how to achieve this in CRM datasources.
    Thanks,
    Jelina.

    Hello,
    Could you tell us why you want to restrict that?
    Generally BW pulls delta from CRM once per day so you would never see data of several days earlier. Say if you restrict that, and if one day BW fails to pull delta, then data of that day could not go to BW.
    Regards,
    Frank

  • Mail to RFC -- Data Structed in Inbound Queue  -- Help needed !

    Hi Friends ,
                           I am doing Mail to RFC Asyn Scenario . Mail mails are come into the mail box . XI is trying to read the mail and send to R3.
                            It was working fine suddenly , Many mails read succesfully and data send to RFC , But it is structed in   ( SMQ2 ) inbound Queue ( <b>Message Scheduled on Outbound side</b> )
                  For long time it is showing like this . No data is accepted  by RFC. I have checked the Adpater confi for rfc it is fine .  I have given Max connection as 50 also .
              Please help me to solve this issue !
    Regards.,
    V.Rangarajan

    Hi,
    Have the Queues being registered in the R/3..?
    If not....
    1.Go to SXMB_ADM(R/3)
    2. Go to Manage Queues and then
    3. Register All Queues.
    <a href="/people/sap.user72/blog/2005/11/29/xi-how-to-re-process-failed-xi-messages-automatically Failed Messages</a>
    Regards
    San
    <a href="Remember to set the thread to solved when you have received a solution to set the thread to solved when you have received a solution</a>
    Where There is a <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/weblogs?blog=/weblogs/topic/16">blog</a> there is a Way.

  • How to deal with variable length data struct in C/JNI

    I have another JNI related question. How do you handle variable length
    data structures in Java and pointer to a pointer?
    Basically, I have a backend in C which has records but we don't know
    how many. The API looks like
    typedef struct rec_list_s {
    int rec_list_cnt;
    rec_list_data_t rec_list_data[1];
    } rec_list_t;
    int rec_list_show(void handle, rec_list_t *list_ptr);
    /* Code snippet for rec_list_show */
    int rec_list_show(void handle, rec_list_t *list_ptr)
    rec_list_t *ptr;
    sz = sizeof (rec_list_t) +
    ((record_count - 1) * sizeof (rec_list_data_t));
    ptr = malloc(sz);
    /* fill the data */
    *list_ptr = ptr;
    return (0);
    So I need to wrap rec_list_show() in JNI call so I can have Java call
    it. How do i pass a pointer to a pointer from Java? I tried in the
    native C code for JNI to return the pointer to pointer as a result
    and store in a member in the Java class rec_list_t and then I pass
    that to JNI call for rec_list_show. The C backend code was fine
    since it got the pointer to pointer but Java become unhappy when
    the object it was referencing changed memory location (I suspect
    the garbage collection becomes unhappy).
    So what would be a good way to deal with this kind of code?
    Thanks,
    Sunay
    Edited by: st9 on Aug 30, 2010 5:47 PM

    I did not imply that you don't know C but you are implying that I don't understand C. Perhaps
    google Sunay Tripathi and click I am feeling lucky so that we don't get into teaching C
    discussions :) On the other hand, I am definitely looking for someone to teach me Java
    otherwise I wouldn't be asking.
    Anyway, let me explain again. The sample function rec_list_show() runs on the backend. It
    is a different process with a different VM space. It of course knows the size of the array
    and what to fill in. As a caller to that API (which is a separate process), I don't know
    what that size is but I need to get the size and corresponding data in one shot because
    the backend locks the table when its providing me the info to make sure its synchronous.
    Now I (the Java process) needs to get that count and data in one shot. Since the C library
    underneath me (wrapped around my JNI interface) has private IPC mechanism to copy
    the contiguous memory from the backend into my memory space, all I need is to provide
    a pointer to a pointer which gets filled in by backend and is available to my process. So
    my equivalent C frontend just passes a pointer to a pointer and casts the return value in
    rec_list_t. The rec_list_cnt tells it how many members it got. The first member is part of
    the struct itself but then following members are right after.
    Another way to help you understand this is with this code snippet from front end C program
    rec_list_t     *ptr, *save_ptr;
    rec_list_data_t *data_ptr;
    int          cnt;
    save_ptr = ptr = malloc(sizeof(rec_list_t));
    rec_list_show(handle, &ptr);
    assert(save_ptr != ptr);
    cnt = ptr->rec_list_cnt;
    for (i = 0; i < cnt; i++) {
         data_ptr = &ptr->rec_list_data;
    Notice the assert(). Also notice the for loop. How do I expect to walk more that one
    member when rec_list_data is a fixed size array of one member?typedef struct rec_list_s {
         int               rec_list_cnt;
         rec_list_data_t          rec_list_data[1];
    } rec_list_t;
    Anyway, I do understand that Java will not allow me to get a reference to a long and
    how Java memory management works. But the JNI native implementation is C
    and I was wondering if people have managed to do some tricks there between C
    and Java.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to get the array of Complex when call a webserivce method it's return an array of user define data struct?

    When call a webservice opreation, it returns an array of complex type, sure, the calling is successed,  but i don't know how to get the return values,
    I have tried use Pendingcall.response & Pendingcall.getOutPutValues() in Pendingcall.onResult event function...
    Waiting....

    Flash Lite doesn't fully support webservices, so you will find it difficult to use the full api set.
    I suggest that you use SWX (swxformat.org) or simply HTTP requests for transactions.
    We have a tutorial on use with ColdFusion here:
    http://vimeo.com/6829083
    Mark

  • How can i check all the data in LUW's of RSA7

    Hi All,
    Iam trying to see the contents of LUW's for my data source in RSA7, but it keeps on giving me only data from data packet 7, even if i changed different numbers in
    in option  "  choose"  and different options in " extraction parameters"
    its only displaying data when i select update mode as " repetition" no records when i select "delta"  
    i can imagine thats bcoz my last delta was failed. is that right??
    How can i select data from different packagaes( as it shows in BW)???
    any help pls.
    Regards
    Robyn.

    Thanks guys
    Actually i was trying to figure out the error data coming from my datasource failing my data load. the error is
    <b>" Value '60306XZED ' from field ANZVERTR is not convertible into the DDIC  
    data type DEC in data record 1 . The field content could not be          
    transferred into the typed transfer structure."                           </b>
    that field ANZVERTR has type DEC & length 6 is assigned to infoobject 0UCCNTRCNT of data element /BI0/OIUCCNTRCNT ( DEC & length 17)that has type Number, data type DEC (Counter or Amount field with comma and sign.
    I guess this assignement is correct but i cudnt able to understand how this valus "60306XZED" is coming to this field. at the first place ANZVERTR  has length only 6 then how come it bring this value from R/3.
    I cudnt able to figure out is this error from R/3 or BW.
    Pls anybody help.
    Regards
    Robyn.

  • Data source issue in RSA7???? urgent plz

    hi experts,
    unfortunately i have deleted my data source from RSA7, i want to extract new records and push to BI. but its deleted. what is the procedure to make my data source available... my update method is QUEUED DELTA..
    plz provide me the solution....
    regards
    vadlamudi

    Reference: SDN FAQ's--> RSA7
    Question 9:
    What is the purpose of the function 'Delete Data and Meta Data in a Queue' in RSA7? What exactly is deleted?
    Answer:
    You should act with extreme caution when you use the delete function in the delta queue. It is comparable to deleting an InitDelta in the BW System and should preferably be executed there. Not only do you delete all data of this DataSource for the affected BW System, but you also lose all the information concerning the delta initialization. Then you can only request new deltas after another delta initialization.
    When you delete the data, this confirms the LUWs kept in the qRFC queue for the corresponding target system. Physical deletion only takes place in the qRFC outbound queue if there are no more references to the LUWs.
    The delete function is intended for example, for cases where the BW System, from which the delta initialization was originally executed, no longer exists or can no longer be accessed.

  • Delta DATA SOURCE not at all visible in RSA7

    hi ,i have installed ecc6 and bi on two different servers ,and the connection is also established ,but coming to ecc,i have activated the data source which is generic data source,and i have initiated delta and generic delta is successfully created but the problem is the data source is not showing in RSA7,i have tried in so many ways like i have tried for logistic data also but,RSA7 not showing any data sources,from my side i am able to initiate delta successfully ,,but RSA7 IN ecc not working,no data source is listed in RSA7,,,please help me ,any settings i need to do in RSA7 to visible data source in RSA7.,,,,,please help me
    Moderator message: not directly related to ABAP development.
    Edited by: Thomas Zloch on Nov 22, 2011 10:16 AM

    try running an ethernet cable from your Mac to the AX. this should enable AU to see it.
    once configured, you can disconnect the ethernet cable.
    JGG

  • Delta drain in R/3 for FI data sources

    Hi Experts,
    As part of EHP4 upgrade on the R/3 side we need to drain the delta queue in R/3.
    We took the downtime in R/3 and
    I triggered the delta infopackages for 0fi_gl_4, 0fi_gl_6, 0fi_aa_12, 0fi_ar_4 for 5 iterations.
    Please clarify the following doubts:
    1. For all the iterations I got the same number of records.
    Can anyone please clarify why it fetched same no of records each time .
    2. Against these data sources in RSA7, the count is not becoming '0'. As I remember it is showing 2 or 3 even after each iteration.
    Please explain why these data sources are not showing '0' even after a couple of iteratioins.
    Note: Postings are blocked at this time.
    Need ur inputs here.
    Regards,
    Naveen V.

    Hi,
    Regarding 1, I think in system settings are done for FI datasources where it will fetch data from system time 2:00 am for each delta. This way same records are fetched again and again for whole day. You can confirm this by looking at your data in PSA.
    http://help.sap.com/saphelp_nw04/helpdata/en/41/4b73415fb9157de10000000a155106/content.htm
    Regarding 2, Im afraid RSA7 baffles me too. I have read that for some datasources it isnt records but LUWs that are shown. In any case if postings are stopped, then it shouldnt have created LUWs.
    Edited by: Parth Kulkarni on May 3, 2011 11:47 AM

  • Help required in data loads

    Hi all,
    We have actually installed some patch in R/3 system. so now we are testing BW3.5 system  whether the full and delta loads are working or not.
    Full loads are not having any problem but few delta loads are having problems . what we did is -
    1) Re- initialize the delta loads .
    2) Put/ change  some records in R/3 system
    3) Schedule delta loads in BW .
    But 0 records are coming in BW  though in R/3 the records are present.
    Kindly help.

    Hi
    You mentioned that no recorde are moved to BW.
    1)  Did you  check in R/3 side weather the data is in RSA7 or not?.
    2)  If not check in SM13 (V3) and lBWQ(Qued Delta).Activate the data source.
    3)  Replicate the datasource in BW and
    4)  Run the Program RS_TRANSTRU_ACTIVATE_ALL in SE38.
    5)  Perform data Loading.
    You can get data in this way.
    I think this will help you.
    Regards,
    Siva

  • Data storage io techniques for ordinary desktop applications needed

    hello everyone.
    i'm writing an offline tool for a mmo game (eve online) which is planned to be a useful help in analyzing economics in that game for maximizing the player's efficiency in making money.
    i intend to implement algorithms who need a set of pre-defined values of specific object types, e.g. ores, minerals and spaceships. so it's logical that i must add these values stored in some file.
    my first idea was to implement some script files for storing these values. this solution would make the tool read these files in and generate objects from the scripts on each start-up of the application.
    unfortunately it's possible that the number of object values will exceed to an amount too big for a quick and user-friendly start of the tool and too small for a full-fledged database. so the basic problem/question is: how can i avoid an annoying start-up time caused by reading in large files and generating objects all the time?
    probably some of you might point to the ObjectInputStream which might be a lot faster for creating objects from file data. Of course, this makes sense since these objects never change. but this solution would have 3 main contras:
    a) if i had to change values of a pre-defined object, a script file would make changes much easier than a object file.
    b) in my opinion, it's not really the oop way to store 20-50 objects in different object files, although they are instances of the same class. it's much more "elegant" just to store the pure values and let a method read in the values and generate a bunch of instances of a class.
    c) the user would not be able to change the values on his own. a simple script language would give the user more freedom in customizing the application for his needs, e.g. a new game patch changes the values of special minera types.
    oh, if you try to guess the data structs that organize the objects in runtime: i tend to use simple lists or search trees.
    so, does anyone know a good alternative way for providing a semi-large amount of pre-defined object values to an offline desktop application?
    thx.

    I don't think the amount of data could possibly be so much that load time would be an issue. If you are talking about the amount of work you need to do to build classes for all the different types of data, you could instead save the data as XML files, and then use a technology like JAXB to automatically build the classes for you. These classes know how to read and write the data based on some XML Schema.

  • Structures and Data

    hello, i have a question. i think i know the answer already just want to make sure with you gurus. someone told me that structures don ot contain data. but i have seen code where people enhance structures that are on LBWE screen. so if they append structure where is the data kept? like i know there are underlying tables like vbap, vbak etc. ok. so the data comes from those tables in structure if i had to append the structures? then what happens? does it then go to setup table? or where does it go and what triggers the data to come into structures from those tables?  please help. thanks.  e.g. structure like MC02_0SGR etc.
    I did some search and found some stuff.so when user hits save button ok it saves the data in database table and also that record will be sent to LBWQ in logistics appalication case. ok. so if i append some structure and do some enhancement on it. let's say i add a field called quantity in it ok, and i do some coding. i bring the record in internal table and say something like MC02_0SGR-Quantity - Internal table-Quantity if some condition meet. ok so then. next time when user saves a record it will go straight to lets say vbak table and the same record will also go to lbwq. am i correct? at the time when user saved the record it didnot have that quantity field calculated because it has not gone through my code yet. right? i am just trying to understand the flow. i don't know if there is any documentation on this or not. can someone help me please? i am confused. thanks guys.
    Edited by: Vik1900 on Jun 13, 2009 2:28 PM

    Hi,
    If you enhance the DS in ECC..
    Eg: I enhanced XYZ- Structure and added ZQty field, and it will fetch the data from ABC Table using some code in CMOD, when users enter the data through some TCODE in ECC, the data wil store in base tables from there using Code we are fetching and extracting into BW. You can see the data in LBWQ/RSA7 in ECC, which contains the data for all fields which are there in Data Source.
    If you want to load data to BW, using setup tables, you must take some down time in ECC and load tha data..
    Steps:
    1. Take down Time in ECC
    2. Delete setup tables in ECC.
    3. Clear RSA7 in ECC, by running V3 job 2/3 times and loading deltas in BW.
    4. Check whethee it is cleared or not in SMQ1 and RSA7.
    5. Fill the setup tables.
    6. Load Init data in  BW.
    7. Set V3 job in ECC and Load deltas in BW.
    Thanks
    Reddy

  • HTTP post data from the Oracle database to another web server

    Hi ,
    I have searched the forum and the net on this. And yes I have followed the links
    http://awads.net/wp/2005/11/30/http-post-from-inside-oracle/
    http://manib.wordpress.com/2007/12/03/utl_http/
    and Eddie Awad's Blog on the same topic. I was successful in calling the servlet but I keep getting errors.
    I am using Oracle 10 g and My servlet is part of a ADF BC JSF application.
    My requirement is that I have blob table in another DB and our Oracle Forms application based on another DB has to view the documents . Viewing blobs over dblinks is not possible. So Option 1 is to call a procedure passing the doc_blob_id parameter and call the web server passing the parameters.
    The errors I am getting is:
    First the parameters passed returned null. and
    2. Since my servlet directly downloads the document on the response outputStream, gives this error.
    'com.evermind.server.http.HttpIOException: An established connection was aborted by the software in your host machine'
    Any help please. I am running out of time.
    Thanks

    user10264958 wrote:
    My requirement is that I have blob table in another DB and our Oracle Forms application based on another DB has to view the documents . Viewing blobs over dblinks is not possible. Incorrect. You can use remote LOBs via a database link. However, you cannot use a local LOB variable (called a LOB <i>locator</i>) to reference a remote LOB. A LOB variable/locator is a pointer - that pointer cannot reference a LOB that resides on a remote server. So simply do not use a LOB variable locally as it cannot reference a remote LOB.
    Instead provide a remote interface that can deal with that LOB remotely, dereference that pointer on the remote system, and pass the actual contents being pointed at, to the local database.
    The following demonstrates the basic approach. How one designs and implements the actual remote interface, need to be decided taking existing requirements into consideration. I simply used a very basic wrapper function.
    SQL> --// we create a database link to our own database as it is easier for demonstration purposes
    SQL> create database link remote_db connect to scott identified by tiger using
      2  '(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1521))(CONNECT_DATA=(SID=dev)(SERVER=dedicated)))';
    Database link created.
    SQL> --// we create a table with a CLOB that we will access via this db link
    SQL> create table xml_files( file_id number, xml_file clob );
    Table created.
    SQL> insert into xml_files values( 1, '<root><text>What do you want, universe?</text></root>' );
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> --// a local select against the table works fine
    SQL> select x.*, length(xml_file) as "SIZE" from xml_files x;
       FILE_ID XML_FILE                                                                                SIZE
             1 <root><text>What do you want, universe?</text></root>                                    53
    SQL> --// a remote select against the table fails as we cannot use remote pointers/locators
    SQL> select * from xml_files@remote_db x;
    ERROR:
    ORA-22992: cannot use LOB locators selected from remote tables
    no rows selected
    SQL> //-- we create an interface on the remote db to deal with the pointer for us
    SQL> create or replace function ReturnXMLFile( fileID number, offset integer, amount integer ) return varchar2 is
      2          buffer  varchar2(32767);
      3  begin
      4          select
      5                  DBMS_LOB.SubStr( x.xml_file, amount, offset )
      6                          into
      7                  buffer
      8          from    xml_files x
      9          where   x.file_id = fileID;
    10 
    11          return( buffer );
    12  end;
    13  /
    Function created.
    SQL> --// we now can access the contents of the remote LOB (only in 4000 char chunks using this example)
    SQL> select
      2          file_id,
      3          ReturnXMLFile@remote_db( x.file_id, 1, 4000 ) as "Chunk_1"
      4  from       xml_files@remote_db x;
       FILE_ID Chunk_1
             1 <root><text>What do you want, universe?</text></root>
    SQL> --// we can also copy the entire remote LOB across into a local LOB and use the local one
    SQL> declare
      2          c               clob;
      3          pos             integer;
      4          iterations      integer;
      5          buf             varchar2(20);   --// small buffer for demonstration purposes only
      6  begin
      7          DBMS_LOB.CreateTemporary( c, true );
      8 
      9          pos := 1;
    10          iterations := 1;
    11          loop
    12                  buf := ReturnXMLFile@remote_db( 1, pos, 20 );
    13                  exit when buf is null;
    14                  pos := pos + length(buf);
    15                  iterations := iterations + 1;
    16                  DBMS_LOB.WriteAppend( c, length(buf), buf );
    17          end loop;
    18 
    19          DBMS_OUTPUT.put_line( 'Copied '||length(c)||' byte(s) from remote LOB' );
    20          DBMS_OUTPUT.put_line( 'Read Iterations: '||iterations );
    21          DBMS_OUTPUT.put_line( 'LOB contents (1-4000):'|| DBMS_LOB.SubStr(c,4000,1) );
    22 
    23          DBMS_LOB.FreeTemporary( c );
    24  end;
    25  /
    Copied 53 byte(s) from remote LOB
    Read Iterations: 4
    LOB contents (1-4000):<root><text>What do you want, universe?</text></root>
    PL/SQL procedure successfully completed.
    SQL> The concern is the size of the LOB. It does not always make sense to access the entire LOB in the database. What if that LOB is a 100GB in size? Irrespective of how you do it, selecting that LOB column from that table will require a 100GB of data to be transferred from the database to your client.
    So you need to decide WHY you want the LOB on the client (which will be the local PL/SQL code in case of dealing with a LOB on a remote database)? Do you need the entire LOB? Do you need a specific piece from it? Do you need the database to first parse that LOB into a more structured data struct and then pass specific information from that struct to you? Etc.
    The bottom line however is that you can use remote LOBs. Simply that you cannot use a local pointer variable to point and dereference a remote LOB.

  • Setup Procedure in Data Extraction from R3

    Dear All,
    Can anyone please let me know the Setup Procedure in Data (Delta) Extraction in BW (checking data sources in RSA7 etc.). I was not able to find proper documents/ PDF on this.
    Thanks in advance
    Regards,
    DTD

    Hi,
    Refer;
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90fddfcd-a956-2d10-19be-8f7bdd699a05?QuickLink=index&overridelayout=true&48232482841492
    Regards,
    Sunil

  • OBDC Data Source Error - Data source name not found and no default driver specified

    Hello,
    I get this error whenever I try to use the "Modify Microsoft Access Database" tab to update my
    Access 2000 database after a conversion:
    Unable to connect to target database.
    java.sql.SQLException: [Microsoft] [ODBC Driver Manager]
    Data source name not found and no default driver specified
    Now, the weird thing is that when I log in as Administrator and go to the "Control Panel" there is
    no "ODBC Data Sources" option to chose from. So I went to the "Microsoft ODBC Administrator"
    from the "Configuration and Migration Tools" tab instead. I tried configuring "omwb_msaccess"
    under the "User DSN" tab with both the name of my Access file, and the "small.mdb" file that was
    in the omb directory. No go for either one. Whatever I try I still get the same pop-up box.
    Question:
    (1) What should I be putting for the "ODBC Data Source" when I try to Migrate my Access Database?
    (2) Any other idea/configuration issue I might be missing that could do this? The process works up
    to the Access Update point, and I configured the repository correctly.
    Thanks
    Aaron - [email protected]

    Nope, I'd already tried both of those things. I checked again, but no go.
    I think the problem may be that I'm not entering the right value in the
    "ODBC Data Source" field on the Migration Workbench "Modify Microsoft
    Access Database" form - the same one where you enter a "Username" and
    "Password" for the conversion. What should I be entering here? What is
    the standard filename?
    The log files aren't very informative to me. Here is the odbcconf.log:
    ==============
    ODBCConf called with arguments: '/S /Lv odbcconf.log /F C:\WINNT\System32\mdaccore.rsp'
    Data Struct:
         Reboot First : 0
         Use Response File : 1
         Response File : 'C:\WINNT\System32\mdaccore.rsp'
         Erase Response File: 0
         Silent : 1
         Continue on Error : 0
         Log Mode : 2
         Log File : 'odbcconf.log'
         Actions:
              8, '(null)', '(null)', ''
              6, 'MS Code Page Translator|Translator=MSCPXL32.dll||', '(null)', '"MS Code Page Translator|Translator=MSCPXL32.dll||"'
              5, 'Microsoft ODBC for Oracle|Driver=msorcl32.dll|Setup=msorcl32.dll||', '(null)', '"Microsoft ODBC for Oracle|Driver=msorcl32.dll|Setup=msorcl32.dll||"'
              1, 'Microsoft ODBC for Oracle', 'CPTimeout=60', '"Microsoft ODBC for Oracle" "CPTimeout=60"'
              17, 'simpdata.tlb', '(null)', '"simpdata.tlb"'
    EXECUTING ACTIONS
    Executing Action: INSTALLDRVRMGR
              arg1: '(null)'
              arg2: '(null)'
              args: ''
    Install Driver Manager succeeded
              Return HR: 0x0
    Executing Action: INSTALLTRANSLATOR
              arg1: 'MS Code Page Translator|Translator=MSCPXL32.dll||'
              arg2: '(null)'
              args: '"MS Code Page Translator|Translator=MSCPXL32.dll||"'
    INSTALLTRANSLATOR SQLInstallTranslatorEx succeeded
              Return HR: 0x0
    Executing Action: INSTALLDRIVER
              arg1: 'Microsoft ODBC for Oracle|Driver=msorcl32.dll|Setup=msorcl32.dll||'
              arg2: '(null)'
              args: '"Microsoft ODBC for Oracle|Driver=msorcl32.dll|Setup=msorcl32.dll||"'
    INSTALLDRIVER SQLInstallDriverEx succeeded
              Return HR: 0x0
    Executing Action: CONFIGDRIVER
              arg1: 'Microsoft ODBC for Oracle'
              arg2: 'CPTimeout=60'
              args: '"Microsoft ODBC for Oracle" "CPTimeout=60"'
    CONFIGDRIVER SQLConfigDriver succeeded
              Return HR: 0x0
    Executing Action: REGTYPELIB
              arg1: 'simpdata.tlb'
              arg2: '(null)'
              args: '"simpdata.tlb"'
              Return HR: 0x0
    ===========
    Here is a snippet from the error.log:
    ==========
    ** Oracle Migration Workbench
    ** Release 9.2.0.1.0 Production
    ** ( Build 20020308 )
    ** ORACLE_HOME: c:\
    ** user language: en
    ** user region: US
    ** user timezone: PST
    ** file encoding: Cp1252
    ** java version: 1.1.8.16
    ** java vendor: Oracle Corporation
    ** o.s. arch: x86
    ** o.s. name: Windows NT
    ** o.s. version: 5.0
    ** Classpath:
    c:\\Omwb\olite\Oljdk11.jar;c:\\Omwb\olite\Olite40.jar;C:\Program Files\Oracle\jre\1.1.8\lib\rt.jar;C:\Program Files\Oracle\jre\1.1.8\lib\i18n.jar;c:\\Omwb\jlib;c:\\Omwb\jlib\Omwb.jar;c:\\Omwb\jlib\oembase-9_2_0.jar;c:\\Omwb\plugins\SQLServer6.jar;c:\\Omwb\plugins\SQLServer7.jar;c:\\Omwb\plugins\SQLServer2K.jar;c:\\Omwb\plugins\Sybase11.jar;c:\\Omwb\plugins\Sybase12.jar;c:\\Omwb\plugins\MSAccess.jar;c:\\Omwb\plugins\MySQL.jar;c:\\Omwb\drivers\mm.mysql.jdbc-1.2a;c:\\Omwb\plugins\Informix7.jar;c:\\Omwb\drivers\ifxjdbc.jar;c:\\Omwb\plugins\db2400v4r5.jar;c:\\Omwb\drivers\jt400.jar;c:\\lib\xmlparserv2.jar;c:\\rdbms\jlib\xsu111.jar;c:\\jdbc\lib\classes111.zip;c:\\lib\vbjorb.jar;c:\\jlib\netcfg.jar;c:\\jlib\ewt3.jar;c:\\jlib\ewtcompat-3_3_15.jar;c:\\jlib\share.jar;c:\\jlib\help3.jar;c:\\jlib\oracle_ice5.jar;c:\\jlib\kodiak.jar
    ** Started : Tue Jul 23 12:13:42 PDT 2002
    ** Workbench Repository : Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.0.0 - Production
    ** The following plugins are installed:
    ** Microsoft Access Release 9.2.0.1.0 Production
    ** Active Plugin : MSAccess
    ** Shutdown : Tue Jul 23 12:14:59 PDT 2002
    I appreciate any assistance you could render me.
    Thanks - Aaron

Maybe you are looking for

  • How Do I Filter a Report Using a Multi Select List Box and Specifying Date Between Begin Date and End Date

    Hope someone can help.  I have tried to find the best way to do this and can't seem to make sense of anything.  I'm using an Access 2013 Database and I have a report that is based on a query.  I've created a Report Criteria Form.  I need the user to

  • Configuring Oracle EAServer 10g 10.1.2.0.2 with Eclipse

    Hi , Am working on a JAVA/J2EE/Struts application using Eclipse 3.1 and am using Oracle Enterprise Manager 10g Application Server 10.1.2.0.2 for deploying the application. Currently am building my application to an ear file and then deploying it manu

  • ADOBE CS5.5 EXTENSIONS MANAGER

    Hi, I am trying to add a recently purchased extension to my dreamweaver using the Adobe Extension Manager CS5.5.  Whenever I click on the icon I am provided with the following advice: ADOBE EXTENSION MANAGER CS5.5.exe - System Error: The program can'

  • E6 Belle: what's the "1" in the toolbar signify?

    Hi upgraded my E6 to belle. BUt i can't work out what the number "1" on the toolbar is for? It's next to the key (lock) icon on the toolbar? I don't have any messages or anything (factory reset) thanks Solved! Go to Solution.

  • Business Groups in OSSWA

    Hi every one, We have two Business Group and there are people into two Business, Can I log in with a user in two BG in application Self Service?, When I asign a person for the user, the information for SSHR is correct, but the approvals for iProcurem