URGENT : dbms_job

Hello every body.
I work with oracle 8i server 8.1.7 .
I created procedures and job . Here are the codes :
create or replace procedure importer_remise_transac(p_fichier varchar2)
is
v_file UTL_FILE.FILE_TYPE;
v_buff long;
v_affect varchar2(25);
v_long_fichier number;
v_fichier_char char(1);
v_position_last_bar number;
nb_bar number := 0;
v_path varchar2(2000);
v_fichier varchar2(255);
v_id_terminal number;
v_num_serie number;
v_id_commercant number;
procedure p_affect(p_data varchar2)
is
type tab_ty is varray(10) of varchar2(16);
v_tab tab_ty := tab_ty(null,null);
v_data varchar2(16);
v_long number;
k number := 1;
begin
select length(p_data) into v_long from dual;
for i in 1..v_long loop
if substr(p_data,i,1) = ';' then
v_tab(k) := v_data;
v_data := '';
k := k + 1;
else
v_data := v_data||substr(p_data,i,1);
end if;
end loop;
v_tab(k) := v_data;
select id_terminal into v_id_terminal from terminal where num_terminal = (v_tab(10)||v_tab(4));
select num_serie into v_num_serie from carte where num_carte=v_tab(5) and id_emetteur=(select id_emetteur from emetteur where num_emetteur=substr(v_tab(10),1,3));
select id_commercant into v_id_commercant from commercant where num_commercant=v_tab(10);
insert into transaction(ID_TRANSACTION,
TYPE_TRANSACTION,
NUM_TRANSACTION,
DATE_TRANSACTION,
ID_TERMINAL,
NUM_SERIE,
HEURE_TRANSACTION,
MONTANT_TRANSACTION,
ID_COMMERCANT)
values(seq_transaction.nextval,
v_tab(1),
v_tab(2),
to_date(v_tab(3),'DDMMRR'),
v_id_terminal,
v_num_serie,
v_tab(8),
v_tab(9),
v_id_commercant);
commit;
end;
begin
select length(p_fichier) into v_long_fichier from dual;
for i in 1..v_long_fichier loop
select substr(p_fichier,-i,1) into v_fichier_char from dual;
if v_fichier_char = '\' and nb_bar = 0 then
v_position_last_bar := v_long_fichier-i+1;
nb_bar := 1;
end if;
end loop;
select substr(p_fichier,1,v_position_last_bar) into v_path from dual;
select substr(p_fichier,v_position_last_bar+1) into v_fichier from dual;
v_file := UTL_FILE.FOPEN (v_path,v_fichier,'r',20000);
loop
UTL_FILE.GET_LINE(v_file,v_buff);
p_affect(v_buff);
end loop;
exception
when others then
utl_file.fclose(v_file);
end;
create public synonym importer_remise_transac for appli_backdb.importer_remise_transac
grant execute on importer_remise_transac to public
create or replace procedure lance_job_remise_galana
is
v_date varchar2(10);
v_path varchar2(100);
begin
select to_char(sysdate,'DD_MM_RRRR') into v_date from dual;
select 'E:\Remise_galana\'||v_date||'_Remise.txt' into v_path from dual;
importer_remise_transac(v_path);
end;
create public synonym lance_job_remise_galana for appli_backdb.lance_job_remise_galana
grant execute on lance_job_remise_galana to public
SQL>var x number
SQL>execute dbms_job.submit(:x,'lance_job_remise_galana;',sysdate,'sysdate+1/288')
SQL>commit;
The content of the file text 01_08_2003_Remise.txt is :
DT;000000193215500001;110703;002;1000033;10;000727;14:42;0000000000200000;1000000
DT;000000193215500004;110703;002;1000274;50;000000;15:26;0000000000232400;1000000
DT;000000193215500006;110703;002;1000039;12;394580;15:49;0000000000025000;1000000
DT;000000193215500008;110703;002;1000368;11;009252;15:54;0000000000150000;1000000
DT;000000193215500010;110703;002;0000015;14;000000;16:57;0000000000225000;1000000
DT;000000193215500012;110703;002;1000042;12;570649;17:13;0000000001020000;1000000
DT;000000193215500014;110703;002;1000113;12;005803;19:01;0000000000103800;1000000
DT;000000193215500018;110703;002;1000113;12;003556;19:03;0000000000269880;1000000
DT;000000193215500021;110703;002;1000115;10;132475;19:20;0000000000035000;1000000
DT;000000193215500023;110703;002;1000037;12;108930;19:24;0000000000050000;1000000
DT;000000193215500025;110703;002;1000113;12;007016;20:02;0000000001342480;1000000
The problem is that it seams that the job does not do its work : after 6 minutes , I select the table transaction and there is no row in it.
What is the solution ?
Thank you very much.

What is the status of the job in ALL_JOBS?
Does this program run if you call it from SQL*Plus. It has no exception handling, so if anything goes wrong it will crash and burn and you'll never know why.
If the program does run as a one off then you need to look at the JOB side of things, but on the face of it there is nothing amiss there.
Cheers, APC

Similar Messages

  • Dbms_Job problem...........urgent

    I have scheduled a job, which should get fired after every 10 sec. Code as follows:
    SQL> begin
    2 dbms_job.submit(:jobno,
    3 'my_pgm;',
    4 SYSDATE + 10/86400,
    5 'SYSDATE + (10/86400)',
    6 FALSE);
    7 COMMIT;
    8 end;
    9 /
    PL/SQL procedure successfully completed.
    Problem here is : It does not get fired automatically after ever 10 sec. But if I execute explicitly i.e.
    Execute Dbms_job.run(21); -- 21 is Job no for above scheduled job.
    This was it works fine.
    Additional info :
    select last_date,last_sec ,NEXT_DATE,next_sec ,failures,broken from user_jobs
    where job = 21;
    Output is :
    LAST_DATE LAST_SEC NEXT_DATE NEXT_SEC FAILURES B
    04-MAR-2002 11:59:27 04-MAR-2002 11:59:37 0 N
    Can anybody help me? Why it is not getting fired automatically? What should be done more?

    An SNP process can run one job at a time with a maximum of ten SNP processes
    running simultaneously. The INIT.ORA initialization file contains three
    parameters that control the behavior of the SNP processes:
    Parameters
    JOB_QUEUE_PROCESSES
    How many processes to start.
    If set to zero, no jobs are executed.
    Default is 0. Range is 0..10.
    JOB_QUEUE_INTERVAL
    How long an interval the process will sleep before checking for a new job.
    Default is 60 sec. Range is 1..3600 sec.
    JOB_QUEUE_KEEP_CONNECTIONS
    Controls whether an SNP process closes any remote database connections. Default is False. Range is True/False.

  • Triggers problem - please help - urgent !!

    To all experts, please help me with this problem - need answer
    urgently. Thanks in advance.
    Using Oracle 8 Rel 8.0.6
    I have 2 tables (table Y, table Z).
    In the 'after insert upd del on each row trigger' (lets call it
    AIUD trigger)on table Y, based on certain criteria, I insert a
    record in table Z.
    New requirement is that whenever a record is inserted in table Z
    (fyi, inserting any record in table Z is possible only when
    records are inserted in table Y as mentioned earlier thro the
    AIUD trigger - i.e. there is no frontend way to insert records
    in table Z), if certain (new) criteria is satisfied, I should
    insert 1 record in both, table Y and table Z.
    I tried to create meet the new requirement by adding code to
    existing AIUD trigger but ran into mutating tables error. So I
    dropped this idea.
    I have now created 'after insert on each row trigger' (lets call
    it NEW_TRIGGER) on table Z to meet the new requirement but have
    these 2 problems :
    1) the trigger always compiles with errors
    2) if I still go ahead and insert a record in table Y, I get the
    foll error msgs :
    ORA 4098 - NEW_TRIGGER is inv
    ORA 6512 at line xxx on AIUD
    ORA 4088 error during execution of trigger AIUD
    What is the best way to work on this requirement or what am I
    doing wrong ?
    Thanks again,
    AG.

    Your restatement of the problem merely confirms what the previous
    posting said. You cannot write a trigger on table Y that inserts
    a record into table Y: that's the mutating trigger problem
    (there's oodles of postings on the subject, not to mention
    online Oracle docs). You could write a trigger on table Z that
    inserts into table Y - but you need to be able to see the value
    I3 which (presumeable) you can't.
    One solution is to use code the trigger on table Y to submit a
    call to DBMS_JOB which initiates a procedure that inserts a
    record into table Y.
    You must remember that the new record in table Y must never
    include the value I3, otherwise you'll end up w/ an infinite
    loop.
    rgds, APC

  • Logical command in ABAP.....Urgent

    Hi,
      i am pretty new using ABAP program so i neeed help urgently. i am trying to move a file on the application server from one directory to the other and i was using the open dataset function to do that. but the file i am trying to move is pretty big and because i am using internal table to store, it is causing problems with the space.
      i have consulted the basis guys and they have managed to create a logical file for copying from one directory to the other on the application server. to help you furthter. i am enclosing the mail sent to me.
    I have created a logical command which should copy the file from one location to the other but you need to pass it the source dir and file name and the destination dir and file name.
    The logical command is ZCOPY and uses cmd /c copy
    Copies one or more files to another location.
    COPY [/V] [/N] [/Y | /-Y] [/Z] [/A | /B ] source [/A | /B]
         [+ source [/A | /B] [+ ...]] [destination [/A | /B]]
      source       Specifies the file or files to be copied.
      /A           Indicates an ASCII text file.
      /B           Indicates a binary file.
      destination  Specifies the directory and/or filename for the new file(s).
      /V           Verifies that new files are written correctly.
      /N           Uses short filename, if available, when copying a file with a
                   non-8dot3 name.
      /Y           Suppresses prompting to confirm you want to overwrite an
                   existing destination file.
      /-Y          Causes prompting to confirm you want to overwrite an
                   existing destination file.
      /Z           Copies networked files in restartable mode.
    The switch /Y may be preset in the COPYCMD environment variable.
    This may be overridden with /-Y on the command line.  Default is
    to prompt on overwrites unless COPY command is being executed from
    within a batch script.
    the problem now is i have no idea about how to use the logical command. can any one help me.
    Thank you,
    Ravi.

    If memory is not an issue, then there should be no reason why this should not work.
    report zrich_0001.
    parameters: d1 type localfile default '/usr/sap/TST/SYS/Data1.txt',
                d2 type localfile default '/usr/sap/TST/SYS/Data2.txt'.
    data: itab type table of string with header line.
    start-of-selection.
    * Read old file
      open dataset d1 for input in text mode.
      if sy-subrc = 0.
        do.
          read dataset d1 into itab.
          if sy-subrc <> 0.
            exit.
          endif.
          append itab.
        enddo.
      endif.
      close dataset d1.
    * Write to new file
      open dataset d2 for output in text mode.
      loop at itab.
        transfer itab to d2.
      endloop.
      close dataset d2.
    * Delete the old file
      delete dataset d1.
    Regards,
    Rich Heilman

  • Confirmation of balance - urgent

    Hi,
    We are using print program SAPF130K and SAPF130D for vendor and customer respectively.
    My query is can we bring even the cleared items alongwith the open items in the same print program???
    Now we have line items of open line items only?? As per our exploration into the program... we get only open items..
    Also we are using SAP10 and SAP11 as the correspondence type.Kindly advise as to correspondence type should be changed so that it can print both the open and cleared items?
    Please reply ASAP as it is very urgent.
    Thanks in advance.
    Regards
    Karpagam

    Hi,
    Use T.Code F.42 FOR Vendor Balances
    and F.23 For Customer Balances
    Hope this will help u
    Regards,
    Sarfaraz

  • FUNCTION IS NOT WORKING WHEN RUN IN SRW.RUN_REPORT, URGENT

    Hi,
    I have a report. it has got 1 Query and 2 groups.
    Q1
    |
    |
    __G1__
    |F1 |
    |F2 |
    |F3 |
    |
    |
    |
    __G2__
    |Items|
    |Sales|
    | Qty|
    |Store|
    |Func4|
    |Func5|
    |Func6|
    The Query looks like above. Now In the report I have a 3 User parameters . For Each record in G2 the functions Func4,Func5 and Func6 adds the value to the user parameters at the report level.
    Now the Func1,Func2,Func3 takes the value of last 4 record for each item at each G1 Level and devides it by 4 and prints . As an example given below
    ITEMS-----SALES-------QTY-----------STORE
    10001-----10000-------200-------------100
    10001-----20000-------500-------------200
    10001-----15000-------350-------------175
    10001-----45000-------650-------------225
    10001-----50000-------700-------------300
    AVERAGE==>32500-------550-------------225 ==> Calculated by F1,F2,F3
    20001-----70000-------900-------------400
    20001-----30000-------600-------------350
    20001-----20000-------500-------------300
    20001-----25000-------450-------------275
    20001-----35000-------550-------------225
    20001-----65000-------800-------------400
    AVERAGE==>36250-------650-------------300 ==> Avg of last 4 records
    This report takes an parameter which is part of the Where condition of the Query Q1. If I run this report from the report builder and provide the value for the parameter then the report runs fine printing the exact values. If I run the report from another report(which I have to do, due to circumstances) using SRW.Run_Report and pass the parameter in the same command. The the function FUNC4, FUNC5, FUNC6 does not do the addition, as a result the Func1,Func2,Func3 returns 0. I dont know why this is happenning .
    This is very very URGENT, My project manager is on my head to finish it ASAP. Please help.
    Thanks
    Feroz

    Hi Toby and Danny,
    Thanks for the quick reply. I dont think I am having an interdependancy of the functions. Here is an sample what two functions do at each level
    Func6 =========> This function at group level G2
    begin
    -- To initialize the user parameter for each new item.
         If :CNT = 1 Then
              :Wk4_Pos_Qty := 0;
         End If;          
    -- to add the qty value to the user parameter for last 4 records. Uchange is the no of records for each item     
    If :CNT >= :UCHANGE - 3 Then
         :Wk4_Pos_Qty := :Wk4_Pos_Qty + :Qty;
    End If;     
    return 0;
    end;
    Func3 ======> this function at group level G1
    Begin
    -- if no of records are less than 4 then devide by the no of records or devide by 4.
         If :UChange < 4 Then
                   return((:Wk4_Pos_Qty + :Qty) / :UChange);
         Else
                   return((:Wk4_Pos_Qty + :Qty)/ 4);     
         End If;     
    end;
    Here Wk4_Pos_Qty is the User parameter created to hold the calue for the Um of last 4 records Qty.
    I tried to modify the Func3 so that it looks like this
    Func3
    begin
    srw.reference(:Wk4_Pos_Qty);
         If :UChange < 4 Then
                   return((:Wk4_Pos_Qty + :Qty) / :UChange);
         Else
                   return((:Wk4_Pos_Qty + :Qty)/ 4);     
         End If;     
    end;
    But it does not effect anything. I mean its the same. The Wk4_Pos_Qty returns 0 and Func3 returns 0.
    Any Suggestions .
    Thanks
    Feroz

  • How can I get a list of IP's that have got access to my account I have a court summons and the information could only have been gathered from my Icloud account. Apple cant or wont help me. Urgent please have to go to court tomorrow.

    Need some urgent help please.
    I have a court summons for some information that has been taken from my Icloud account.
    I believe my ex employer has hired someone to hack into my account. They have had my laptop inspected by a forensic company. Orginally they did not know what the five emails I sent myself were about. Now they do. I believe they have hacked my Icloud account. I have asked Apple to help but they are refusing is there any way I can find out please feel free to email me [email protected] Thanks have to go to court tomorrow morning.

    It sounds like you really might want to consider seeking legal advice for this matter.

  • Please help me to run this CMP BEAN, I need help urgently, I am running out of time :(

    Hi,
    I am facing this problem, Please help me, I am attaching the source files
    also along with the mail. This is a small CMP EJB application, I am using
    IAS SP2 on NT server with Oracle 8. I highly appreciate if someone can send
    me the working copy of the same. I need these urgent. I am porting all my
    beans from bea weblogic to Iplanet. Please help me dudes.
    Err.........
    [06/Sep/2001 13:41:29:7] error: EBFP-marshal_internal: internal exception
    caught
    in kcp skeleton, exception = java.lang.NoSuchMethodError
    [06/Sep/2001 13:41:29:7] error: Exception Stack Trace:
    java.lang.NoSuchMethodError
    at
    com.se.sales.customer.ejb_kcp_skel_CompanyHome.create__com_se_sales_c
    ustomer_Company__java_lang_Integer__indir_wstr__215617959(ejb_kcp_skel_Compa
    nyHo
    me.java:205)
    at com.kivasoft.ebfp.FPRequest.invokenative(Native Method)
    at com.kivasoft.ebfp.FPRequest.invoke(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:297)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Caught an exception.
    java.rmi.RemoteException: SystemException: exid=UNKNOWN
    at com.kivasoft.eb.EBExceptionUtility.idToSystem(Unknown Source)
    at com.kivasoft.ebfp.FPUtility.replyToException(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:324)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Thanks in advance
    Shravan
    [Attachment iplanet_app.jar, see below]
    [Attachment iplanet_src.jar, see below]

    One reason that I sometimes get 'NoSuchMethodError' is when I make a change to a
    java class that is imported into another java class. When I go to run the
    importing class, it will throw a 'NoSuchMethodError' on any methods that I've
    changed in the imported class. The solution is to recompile the importing class
    with the changed classes in the classpath.
    shravan wrote:
    Hi,
    I am facing this problem, Please help me, I am attaching the source files
    also along with the mail. This is a small CMP EJB application, I am using
    IAS SP2 on NT server with Oracle 8. I highly appreciate if someone can send
    me the working copy of the same. I need these urgent. I am porting all my
    beans from bea weblogic to Iplanet. Please help me dudes.
    Err.........
    [06/Sep/2001 13:41:29:7] error: EBFP-marshal_internal: internal exception
    caught
    in kcp skeleton, exception = java.lang.NoSuchMethodError
    [06/Sep/2001 13:41:29:7] error: Exception Stack Trace:
    java.lang.NoSuchMethodError
    at
    com.se.sales.customer.ejb_kcp_skel_CompanyHome.create__com_se_sales_c
    ustomer_Company__java_lang_Integer__indir_wstr__215617959(ejb_kcp_skel_Compa
    nyHo
    me.java:205)
    at com.kivasoft.ebfp.FPRequest.invokenative(Native Method)
    at com.kivasoft.ebfp.FPRequest.invoke(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:297)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Caught an exception.
    java.rmi.RemoteException: SystemException: exid=UNKNOWN
    at com.kivasoft.eb.EBExceptionUtility.idToSystem(Unknown Source)
    at com.kivasoft.ebfp.FPUtility.replyToException(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:324)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Thanks in advance
    Shravan
    Name: iplanet_app.jar
    iplanet_app.jar Type: Java Archive (application/java-archive)
    Encoding: x-uuencode
    Name: iplanet_src.jar
    iplanet_src.jar Type: Java Archive (application/java-archive)
    Encoding: x-uuencode

  • Error while opening a module. plz help me, very urgent.

    when i try to open a module, the following error message appears on my screen.
              " no j2ee component found in d:\krisp\programs\servlets".
              i've installed bea in c: drive and my servlet program is in d: drive.
              plz help me, it's very urgent.

    Can you provide some more information? What were you doing when this happened?
              Can you post the entire error message?
              -- Rob
              WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • Urgent: need help in creation of a simple PCUI application

    Hi Experts,
        I am new to this PCUI. i need the help of urs.
    My requirement is
    >>>>To create a simple PCUI application.This contains a Search and Result list.
    >>>>Then i have to find the BSP coding or the HTML coding for the the PCUI
      application.
    >>>Can anyone please tell me the detailed steps for creating a simple PCUI application that displays the search and a result list???
    >>>Then how can i find the BSP coding or script(such as HTML,XML..) coding used for the  application.
    Pls help me , its urgent.... If anyone have any kind of useful documents pls mail me in my id <b>[email protected]</b>
    Thanks & Regards
    Sudhansu

    Hi Experts,
    I am new to this PCUI. i need the help of urs.
    My requirement is
    To create a simple PCUI application.This contains a Search and Result list.
    Then i have to find the BSP coding or the HTML coding for the the PCUI
    application.
    Can anyone please tell me the detailed steps for creating a simple PCUI application that displays the search and a result list???
    Then how can i find the BSP coding or script(such as HTML,XML..) coding used for the application.
    Pls help me , its urgent.... If anyone have any kind of useful documents pls mail me in my id [email protected]
    Thanks & Regards
    Preethika

  • Urgent OSX data recovery question

    Hello,
    I am in urgent need of assistance with recovering some data. Long story short I have a XServe that had two 40gb ADMs in it. I successfully backed up each disk to DMG files, then upgraded the ADMs to contain 500gb modules. I then blew out the megaraid config and set the new drives up as mirrors. I am finding now however that one of the DMGs that wasn't supposed to contain anything critical actually did, and when I try to open it I get an error that "no mountable file systems" are in it.
    To top things off, earlier today the original drive was readable, but I wanted to try and boot back to it to see how the server was set up before. I popped it back into its ADM, and via the Install CD in Terminal I ran "megaraid -create auto" to try and make it boot to it again. The problem is that not only did that not work, but since then the drive cannot be read via any means.
    Essentially, I have a drive that thinks it isnt even partitioned any more and a DMG file that won't open, and it is critical that I get some data from it. Does anyone know how I could possibly repair one of the two? The files I need are under the Library folder in a very specific location.

    You'll get a cogent answer posting to the OS X Server forum at http://discussions.apple.com/category.jspa?categoryID=96

  • Error in Installation of SAP R/3 4.7 - Urgent Help Pls !!!

    Hi All,
    I have a problem while installing SAP R/3 4.7. The Central instance has been successfully installed. Error occurred while installing the database instance. I am using SAPDB as the database. The error I get is the following:
    **INFO 2008-03-01 14:15:57**
    **Processing of host operation t_HostInfo_SHARED succeeded.**
    **INFO 2008-03-01 14:16:07**
    **The 'saploc' share exists at directory 'E:\usr\sap'. Choosing drive E: as SAP System drive.**
    **INFO[E] 2008-03-01 14:16:56**
    **Account group="ORA_GOK_DBA" does not exist. <#1>**
    **INFO[E] 2008-03-01 14:17:05**
    **Account group="ORA_GOK_OPER" does not exist. <#1>**
    **INFO[E] 2008-03-01 14:17:23**
    **Account group="SAPSRV\dbgokctl" does not exist. <#1>**
    **INFO 2008-03-01 14:19:23**
    **Copying file C:/SAP Dumps/Core Release SR1 Export_CD1_51019634/DB/ADA/DBSIZE.XML to: DBSIZE.XML.**
    **INFO 2008-03-01 14:19:23**
    **Creating file C:\SAPinst SAPDB SAPINST\DBSIZE.XML.**
    **INFO 2008-03-01 14:19:23**
    **Copying file system node C:\SAP Dumps\Core Release SR1 Export_CD1_51019634/DB/ADA/DBSIZE.XML with type NODE to DBSIZE.XML succeeded.**
    **INFO 2008-03-01 14:19:23**
    **Processing of all file system node operations of table tADA_Files succeeded.**
    **WARNING 2008-03-01 14:19:24**
    **Error 2 (The system cannot find the file specified.) in execution of a 'RegOpenKeyEx' function, line (274), with parameter (SOFTWARE\SAP\SAP DBTech).**
    **ERROR 2008-03-01 14:19:24**
    **MDB-07003  Exception occurred during Actor Call (Action READ_PROFILE_INFO).**
    **ERROR 2008-03-01 14:19:24**
    **MDB-07000  Execute Action READ_PROFILE_INFO failed.**
    **ERROR 2008-03-01 14:20:47**
    **MSC-01003  ESyException: ESAPinstException: error text undefined**
    **ERROR 2008-03-01 14:20:47**
    **FJS-00012  Error when executing script.**
    **ERROR 2008-03-01 14:20:47**
    **FCO-00011  The step fillR3loadPackageTable with step key SAPSYSTEM|ind|ind|ind|ind|ind|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseLoad|ind|ind|ind|ind|ind|0|fillR3loadPackageTable executed with status ERROR.**
    **ERROR 2008-03-01 14:20:47**
    **FSL-02015  Node C:\SAP\DATA does not exist.**
    Kindly let me know the solution to correct the error. Its urgent pls !!!
    Regards,
    Rose.

    Hello,
    The problem is caused due to the spaces in your directories
    C:\SAP Dumps\Core Release SR1 Export_CD1_51019634/DB/ADA/DBSIZE.XML
    Replace the spaces with underscores and restart the installation from from scratch.
    Cheers
    Bert

  • Hr abap urgent

    hello experts,
    I have a requirement in the project .There is a programme which creates new hire sap account in sap r/3 manully in production server .Currently this programme SKIPS INFOTYPE 105 Subtype 0001.The requirement is mentioned below.we are not using logical database pnp. can ane 1 kindly help me regarding this . I am new to hr module.waiting for a response  at your ealieast convinience.as this is very urgent .
    When a future new hire is already created in PRD manually by UAS, currently program ZAHR270D skips adding the infotype 105 subtype 0001.  Modify program so if a future new hire's SAP account already exists in PRD, then: 1). search through each subtype in SU01 and complete any missing data, and 2). create the infotype 105 subtype 0001.
    regards
    Prasun Rudra

    Hi Prasun,
    I think you can go through the existing program ZAHR270D and modify it by checking for the condition(if a future new hire's SAP account already exists),and then use FM HR_INFOTYPE_OPERATION for updating IT0105 Subtype 1.
    Try it and see if helpful.
    Reward if helpful.

  • Tree in WD ABAP - urgent

    HI Experts,
    I am working on WD for ABAP.
    I am using a tree to display some data. Node1 points to Root and subnode1 point to node1.
    node1-->root
    subnode1--> node1
    When we expand node1, it shows  ">"  (arrow)  for child nodes.
    and if we further expand chld node(sunbnode1) we can see  "."  (Dot)
    As per my requirement IF the node1 does not have any value for subnode1 than node1 should not show  ">" , istead of that it should how "." for that child node.
    could anyone plz tell me ....
    1)how can I solve this.
    2)How to use recursive node. I have never used recursive nodes.
    PLease reply ASAP. Its very urgent.
    for helpfull answers full points would be rewarded.
    Regards,
    Vishal.

    Hi,
    When you work on Tree, you should remember 4 important attributes.
    expanded, parent row key, row_key and is_leaf.
    To add children to parent we will have to maintain the relationship between row_key of PARENT and parent_row_key of CHILD.
    if row_key = 1, then parent_row_key shoud be eqaul to row_key of parent, so that the corresponding childs will get added to parent.
    if u put is_leaf = 'X'., then it means that they bcome childs(no longer exapndable ".")
    and when u expand a parent, then expand = 'X'.
    Provide Reward points.
    Rewards,

  • Urgent: is threre any term called "quick forms" in ABAP

    hello experts,
                       Is there any term called "quick forms" in ABAP. if yes please give me details regarding it.
    its very urgent.
                                                                    thnaks in advance,

    Don't think there is anything by that name in abap namespace. Have heard of Interactive forms, smartforms, and abap quickviewer
    http://www.sap-basis-abap.com/sapqu004.htm

Maybe you are looking for

  • Reports 6i and Spatial?

    Can we use spatial functions in queries with Reports 6i or does it still use 8.0.5 SQL? Thanks Dave

  • How many episodes can you have?

    Is there a limit to how many episodes you can have in a single feed? Suppose you podcast a weekly show, happily adding new items for each episode you create. Suppose, too, that you don't want to get rid of old episodes just in case you get a new subs

  • Mailbox quota and Blackberry issue

    Hello all, I am not sure if this is the appropriate place to post this but I think it's either Post office or SOAP issue. I have a Blackberry User that ran out of space 1 week ago and cleaned up her mailbox. She is able to send emails out of her mail

  • Sending mail to approver in BRF Workflow

    Dear all, We use a BRF Workflwo for the approval process in SRM 7.0. Could you please indicate me how we have to configure the system  for sending a mail to the approver, when he has to confirm the Shopping-Cart? The approving - part is in place and

  • Desktop wants to come to the front of current application.

    Something strange has been happening with my Mac Dual 1GHz PowerPc G4 running OS X 10.4.11 recently. While I am working in any application, every few minutes, my desktop will come to the front of my application. It's almost as if I've clicked on the