Procedure doesn't work

Hi
i have a block which consists of buttons
(query,edit,add,delete,next,previous,exit,save,cancel)
and i create a Procedure and write this code:
PROCEDURE TOOLBAR_BUTTON IS
action varchar2(50);
BEGIN
  if action = 'query' then
  EXECUTE_QUERY;
  elsif
  action = 'edit' then
  EDIT_FIELD;
  elsif
  action = 'add' then
  create_record;
  elsif
  action = 'delete' then
  delete_record;
  elsif
  action = 'next' then
  next_record;
  elsif
  action = 'previous' then
  previous_record;
  elsif
  action = 'exit' then
  exit_form;
  elsif
  action = 'save' then
  commit_form;
  clear_form;
  elsif
  action = 'cancel' then
  clear_form;
  end if;
END;
and i created WHEN-BUTTON-PRESSED  trigger on block level and wanna to calling the Procedure, so i write this
toolbar_button;
but when i run form the buttons doesn't work
so what should i do ? is there is any thing missing or wrong in coding or what?
i'll be grateful if any one could help me in this
Thanks

OR: give your buttons a logical name and do this:
sorry , i don't understand this  if u can give me more details or something like example , i'll be grateful
by the way when i'm searching i found this Procedure and i think it's like what i wanna do
but unfortunately i could't understand some parts in it and i could't handle
it to work in my form ,i'll paste it may be it well be useful
-- This is a generic button procedure. It reads the NAME of the button and
-- performs a DO_KEY(item_name).
-- Regarding QUERY-operation:
-- if there are buttons called EXECUTE_QUERY and CANCEL_QUERY, this function shows
-- them, when the ENTER_QUERY button is pressed and hides them, when EXECUTE_- or
-- CANCEL_QUERY ispressed. No error should be returned, if these buttons do not exist.
-- To make naming of the buttons easier, EXIT, QUIT and EXIT_FORM all perform exit_form,
-- even if the form is in ENTER-QUERY mode !!!!!!!
-- A CANCEL_QUERY button-name cancels a currently "open" query.
PROCEDURE button_proc IS
  action varchar(80);
  -- hide a button (for ENTER_-, EXECUTE_- or CANCEL_QUERY)
  PROCEDURE show_off(item_name VARCHAR2) IS
  BEGIN
    IF NOT Id_Null(Find_Item(item_name)) THEN
      Set_Item_Property(item_name, DISPLAYED,PROPERTY_FALSE);
    END IF;
  END;
  -- try to show a button (for the two query-states. If there is no button to show,
  -- return FALSE to the calling procedure.
  FUNCTION show_on(item_name VARCHAR2) RETURN BOOLEAN IS
  BEGIN
    IF NOT Id_Null(Find_Item(item_name)) THEN
      Set_Item_Property(item_name,DISPLAYED,PROPERTY_TRUE);
      Set_Item_Property(item_name,ENABLED,PROPERTY_TRUE);
      RETURN TRUE;
    ELSE
      RETURN FALSE;
    END IF;
  END;
BEGIN   
  action := Get_Item_Property(NAME_IN('SYSTEM.TRIGGER_ITEM'),ITEM_NAME);
  IF action = 'ENTER_QUERY' THEN
    -- only hide the ENTER_QUERY button, if there are EXECUTE_QUERY and (!!) CANCEL_QUERY
    -- buttons. Otherwise an existing EXECUTE_QUERY button will be shown.
    IF show_on('EXECUTE_QUERY') AND show_on('CANCEL_QUERY') THEN
      show_off('ENTER_QUERY');
    END IF;
  END IF;
  IF action IN ('EXIT_FORM', 'EXIT','QUIT') THEN
  :GLOBAL.REDA_UNIT:='';
  :GLOBAL.REDA_FILE:='';
    --action := 'EXIT_FORM';
    EXIT_FORM;
    IF NAME_IN('SYSTEM.MODE')='ENTER-QUERY' THEN
     -- Do_Key('EXIT_FORM');
     EXIT_FORM;
    END IF;
  END IF;
  IF action = 'CANCEL_QUERY' THEN
   -- action := 'EXIT_FORM';
   EXIT_FORM;
  END IF;
  Do_Key(action);
  IF NAME_IN('SYSTEM.MODE') != 'ENTER-QUERY' THEN
    IF show_on('ENTER_QUERY') THEN
      show_off('EXECUTE_QUERY');
      show_off('CANCEL_QUERY');
    END IF;
  END IF;
END;

Similar Messages

  • Database toolkit - stored procedure doesn't work in labview

    Hello,
    I have written simple procedure that works good when I run it from workbench but doesn't work from labview. I want to insert some data and get primary key of inserted id:
    CREATE DEFINER=`root`@`localhost` PROCEDURE `new_procedure`(
    IN emp_id_val int,
    IN project_id_val int,
    IN work_mode_val int)
    BEGIN
    insert into work_managment.sessions (emp_id,project_id,work_mode)
    values (11,1,1);
    SELECT LAST_INSERT_ID();
    END
    and why that doesn't work when I call it from labview?
    when i replace last inserted id with:
    select max(session_id) as session from work_managment.sessions;
    it works good in labview
    What could be the problem??

    It could be that there is something screwy with LV, but given that it uses standard interfaces for comm with the DBMS, I would not expect that. A much more realistic possibility is that the toolkit is mucking things up. (A fairly common occurrence.)
    Try bypassing the toolbox -- which you don't really need anyway -- an talk directly to the ActiveX or .net interface.
    Also, what DBMS? What drivers are you using?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • HT4859 The backup procedure doesn't work.  This is the second time I have been dissapointed in an Apple product!

    I follow the procedure according to the web site directions and it doesn't work.  Nothing is backed up.  When I go to the icloud web site and sign in, nothing is there.
    In addition, I got my son an iPad.  Because he is under 18 Apple will not let him sign up for an account on the App store (even though I could give him permission and monitor the activity). 
    I had to use my account information on the App store.  The result; account information is confused.  I have had to reset the passwords so many times.
    Where is tech support?  You can't talk to a live person on the phone because Apple will not publish tech support phone numbers.  This will be the LAST time I ever purchase and Apple product!

    Winston,
    You are correct in that each should have his own account.  But because my son is under 18, he cannot have his own account.  I would still be in charge of it and monitor it.  I was not going to lie and falsify his birthday.  So, Apple would not let me create a separate account for the App Store or iTunes for him.
    I am also having issues with iCloud and iTunes and synching my PC with the iPhone.  What a PITA!
    The words "user friendly" are not in Apple's vocabulary!
    This will be the last time I ever buy and Apple product!

  • Store procedure doesn't work

    I create a procedure in the schema, and I create a form manually with html whose action calls this procedure, such like this:
    <form action="!MYORACLE_DATA.IPORTAL_POLL.update_poll" method="post">
    When I click submit, such error comes out like this:
    ORA-06550: line 7, column 2:
    PLS-00201: identifier 'MYORACLE_DATA.IPORTAL_POLL' must be declared
    ORA-06550: line 7, column 2:
    PL/SQL: Statement ignored
    Actually, it was working before I tune the database. But I don't think it is the reason cause it doesn't work. Does anybody know solution, thanks in advance.
    null

    Hi,
    I tried creating 2 procedures :
    TEST1 as follows:
    create or replace procedure test1
    as
    begin
    htp.formOpen('portal30.test2');
    htp.formtext('ename');
    htp.formsubmit;
    htp.formclose;
    end;
    and another TEST2
    create or replace procedure TEST2(ename varchar)
    as
    begin
    htp.p('Hello '&#0124; &#0124;ename);
    end;
    I grant execute on both this to public and execute this it works fine.
    But if I include an '!' before portal30 as U have done "!MYORACLE_DATA.IPORTAL_POLL.update_poll" then it doesn't work.
    Please try removing the same .
    Hope this helps.
    Anu
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Xiaopeng Zhang ([email protected]):
    I create a procedure in the schema, and I create a form manually with html whose action calls this procedure, such like this:
    <form action=
    "!MYORACLE_DATA.IPORTAL_POLL.update_poll" method="post">
    When I click submit, such error comes out like this:
    ORA-06550: line 7, column 2:
    PLS-00201: identifier 'MYORACLE_DATA.IPORTAL_POLL' must be declared
    ORA-06550: line 7, column 2:
    PL/SQL: Statement ignored
    Actually, it was working before I tune the database. But I don't think it is the reason cause it doesn't work. Does anybody know solution, thanks in advance.<HR></BLOCKQUOTE>
    null

  • Satellite L650-12Q - Windows 7 recovery procedure doesn't work

    Hello,
    I have Windows 7 Home Premium edition (64 Bit) in my Toshiba Satellite laptop (L650-12Q) and after a fresh start the Windows stopped working. I have a recovery disk which didn't load (I ended up with the pointer in a blank screen) and the windows 7 installation disk wouldn't work either (same thing). Safe mode doesn't work either.
    This probably means that the partition has a problem am I right? - I have used Ubuntu Live CD which confirmed that c:\ cannot be mounted although d:\ can.
    The problem however, is two fold: a) I'm not sure whether aspects of my data are accessible or not (I can't check this) and b) I can't re-install Windows, as the Windows 7 installation process doesn't work.
    Any ideas please on what to do next? I would like to access the partition, have searched the internet (even tried with a Windows 98/XP boot disc) but didn't have any luck as the partition is written in a newer way, which isn't detected by them...
    Thank you in advance.

    > I have a recovery disk which didn't load (I ended up with the pointer in a blank screen)...
    Do you use it for the first time?
    Anyway, try to start recovery disc following these steps:
    -Start notebook model and when you see Toshiba welcome screen press F12 several times to enter Boot options
    -when the boot menu is shown put recovery disc into optical disc drive
    -in menu choose CD/DVD drive and press ENTER
    ODD should start reading recovery disc.
    What happen when you do this?

  • Master-Detail with 2 blocks based in stored procedure doesn't work.

    Hi. I'm Oscar and I'm new for here.
    I have a problem that i can't find the correct answer to solve it.
    Well. I've created a form with 2 blocks. Both of them have the Query Data Source Type Property to "Procedure", and both procedures on database returns one ref cursor of a record type each one.
    BLOCK BL_COMPETICIONES --> query data source: p_get_competiciones (p_Cursor is cursor of record (CODIGO NUMBER,
    NOMBRE VARCHAR2(50),
    SETCRICKETSN VARCHAR2(1),
    SET01SN VARCHAR2(1),
    FECHAINICIO DATE,
    FECHAFIN DATE).
    On triggers (on-lock, on-insert, on-delete and on-update) I have the call to the corresponding stored procedure to lock, insert, delete or update.
    Well, when i've only this block in form, the form works correctly.
    But when I added a second block (which is suppossed to be a detailed data from the first one), and after I've assigned the query procedure and created the relation between both blocks, then run the form and try to execute query on first block, returning records correctly, but then, when execution goes to the program unit "query_master_details", the sentence "execute query" doesn't do anything (and the cursor is in the detailed block), so detailed block continues to be without records.
    I don't know how to solve this. Someone can help me, please?. Thanks.
    Edited by: user5067020 on 09-abr-2009 16:38

    It could be that there is something screwy with LV, but given that it uses standard interfaces for comm with the DBMS, I would not expect that. A much more realistic possibility is that the toolkit is mucking things up. (A fairly common occurrence.)
    Try bypassing the toolbox -- which you don't really need anyway -- an talk directly to the ActiveX or .net interface.
    Also, what DBMS? What drivers are you using?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • HT5029 Procedure doesn't work...

    When I follow the procedure given by Apple, I do not have the "Location" scrolling menu in the "Get info" menu. So what can I do?...
    Here is the procedure:
    Reconfiguring existing subscribed calendars to push with iCloud
    To push a calendar you have already subscribed to in Calendar or iCal (on OS X Lion 10.7.2 and later and iOS 5 devices):
    Open Calendar or iCal.
    Click on the Calendars button in the top-left.
    Select the subscribed calendar.
    Select Get Info from the Calendar or iCal Edit menu.
    Change location from the default On My Mac to iCloud:
    Click OK.

    Interesting. Have you already tried the simple things like restarting your computer and deleting Calendar preferences?
    I can see the scrolling menu on my iMac and it's correctly set to sync my subscribed calendars to iCloud, but none of them do. All my personally created calendars do, but none of the subscribed ones such as national holidays. I also use BusyCal and on it's scroll menu, it doesn't even have "iCloud" on it. It only has my Apple email address.

  • Procedure doesn't work in a DBMS_SCHEDULER job

    I have a problem with an dbms_scheduler job.
    We have a procedure with a select and the follwing where clause
    and tb.geaendert_am >= systimestamp - interval '5' minute;
    The column tb.geaendert_am is a timestamp column and means changed_on.
    That procedure we call in a dbms_scheduler job, which runs every 5 minutes.
    What we want is to collect all rows which are new since last job run.
    Now happens following
    The job run and collect all rows, also row alter than 5 Minute.
    On every run the procedure collect all old and new rows.
    When we run the procedure manually, also the single select, we get the correct collection of all rows which are new since last job run.
    Have anyone a idea?
    I now the where clause is not perfect and we have some more inconsistency.
    (At the first run we don't get all rows which older than 5 minutes before systimestamp)
    In the moment we discuss if it make more since to mark the rows which we have collected.
    But that is not the question, the question is why a soure manually works well
    and when it runs in the Job we have a wrongness.
    Thanks in advanced.
    Regards
    Michael

    Hi Sven
    thanks for answering.
    I told you what is wrong ;-)
    My select with the where "systimestamp - interval '5' minute" clause runing well.Every time I get only new rows
    That select is implemented in a procedure. Starting the procedure from sqlplus or sqldeveloper, the select running well.I get only new rows.
    But when it would be started by dbms_scheduler we get everytime all rows, the old, also the new rows.
    When I start the Procedure shortly after the job or parallel to the job my select shows only the new rows which are not older than 5 Minutes
    Conclusion, when the procedure would be startet by the job we get to much rows.
    The difference is, one runs on the database server, one runs on an client.
    I have considered also to mark the data set with select for update. But I see following issues.
    1) The job is for an monitoring tool, that tool would be not discrete anymore.
    2) What happen in a case with an error, "for update of" lock only a new column which I add to mark the rows.
    Perhaps I get a impact in the application that it must not happen. The application is very time sensitive.
    3) What is with the transaction, my procedure must be anonymous.
    It is shure that we get no effect in application?
    Our java application communicate with a lot of other application, partly java aplication, partly Oracle BPEL applications.
    So our monitoring tool should not interrupt the sensitive chain.
    Regards,
    Michael
    Edited by: MichaelMerkel on 11.03.2011 02:15

  • EXECUTE IMMEDIATE within Procedure doesn't work!!

    Hi,
    I have a code in which the procedure is successfully created, but when I try to check if the table TEST_TABLE is created (ex, DESC TEST_TABLE) it generates an error:
    ORA-04043: object TEST_TABLE does not exist
    Which means that my EXECUTE IMMEDIATE didn't work within the procedure for some reason, while it works perfectly alone without the procedure!!
    Hope you help me with this..
    Here's the my code:
    CREATE OR REPLACE PROCEDURE TEST_IMM1
    AS
    BEGIN
    EXECUTE IMMEDIATE ' CREATE TABLE TEST_TABLE (ITEM_DESC VARCHAR2(10))';
    END;
    --Procedure created.
    DESC TEST_TABLE
    ERROR:
    ORA-04043: object TEST_TABLE does not exist

    user11921409 wrote:
    Thanks a lot Ahmed, yes it worked after executing the procedure and table is created. But that's only one part of the problem, in which after dynamically creating the table TEST_TABLE, I should be able to insert data to it such as:
    CREATE OR REPLACE PROCEDURE TEST_IMM1
    AS
    BEGIN
    EXECUTE IMMEDIATE ' CREATE TABLE TEST_TABLE (ITEM_DESC VARCHAR2(10))';
    END;
    --Procedure created.
    CREATE OR REPLACE PROCEDURE INSERT_TEST_TABLE
    AS
    BEGIN
    TEST_IMM1;
    INSERT INTO TEST_TABLE VALUES ('A');
    END;
    --Warning: Procedure created with compilation errors.
    PL/SQL: SQL Statement ignored
    PL/SQL: ORA-00942: table or view does not exist
    Can you tell me how to use INSERT with EXECUTE IMMEDIATE.
    Thanks :)Just as an FYI, this is really not a good methodology to program in Oracle. If you're doing this for purely learning purposes then it's less 'bad', but if you plan on programming as a career in Oracle, this isn't the method you'd want to adopt (i'll not say there is NEVER a case for something like this, but it's a small percentage of the typical use cases).
    You would do better to create a global temporary table if you need a table to muck around with in a session, or create a permanent table (likely not via procedures) and have it persist in the schema of your choice.
    Utilizing execute immediate for insert statements, especially without BIND VARIABLES, will create a sad day for your database.

  • Jython procedure doesn't work on defined context

    Hi all.
    I have procedure with few steps. Most of them have Oracle technology, but one is jython script. When I start this procedure I can set different context, but I want that step to execute on exact context. I defined context in "Command on target" tab, but it still uses context which is setted when procedure starts.

    Hi all.
    I have procedure with few steps. Most of them have Oracle technology, but one is jython script. When I start this procedure I can set different context, but I want that step to execute on exact context. I defined context in "Command on target" tab, but it still uses context which is setted when procedure starts.

  • Flashing procedure doesn't work

    My system working rock well with bios v3.2 i'd just tried updating new release (v 3.31T) in order to see (as this version is aiming to support future Deneb/Phenom II) whether my overclock would be better... and how big my surprise was to see that i haven't been able to flash my bios with this new beta release !! 
    I'm however very used updating bios files as Ami as Award (but this is the 1st time i try updating beta file) by the usb-key way but when trying to do it (three times) the Afudos utility just tells me: "cannot open reading file" is it just because there's one "T" after the .331 bin file ? Or maybe because the bin file has got 3 numbers plus one letter ? I don't understand cause when updating from v3.1 to v3.2 i haden't any problem at all...

    Thanks for your advise  as i said in the last post i will update as soon as a new authentic bios will be released by Msi team i hope in february or march 2009... this update i hope will permit me to improve the overclocking of my 9650 

  • SQL Procedure doesn't work with "current of cursor" Oracle 11g

    hi all
    i have written a procedure which should update every row for a given column on a given table.
    here is the code:
    CREATE OR REPLACE PROCEDURE "xxx"."loop_update_autowert_x"
    startwert number,
    column_name VARCHAR2,
    table_name varchar2
    AS
    stmt varchar2(2000);
    stmt2 varchar2(2000);
    zaehler number;
    sum_gesamt number;
    TYPE obj_ref_type IS REF CURSOR;
    obj_cur obj_ref_type;
    begin
    stmt2:='select rownum , rowid from ' || table_name || ' for update';
    OPEN obj_cur FOR stmt2;
    dbms_output.enable(1000000);
    dbms_output.put_line ('Startwert ist: ' ||startwert);
    dbms_output.put_line ('Column Name ist: ' ||column_name);
    dbms_output.put_line ('Table Name ist: ' ||table_name);
    loop
    fetch obj_cur into zaehler , my_rowid;
    exit WHEN obj_cur%NOTFOUND;
    sum_gesamt:=zaehler + startwert;
    stmt:='update ' || table_name || ' set ' || column_name || ' = ' || sum_gesamt || ' WHERE current of obj_cur';
    dbms_output.put_line (stmt);
    execute immediate stmt;
    end loop;
    close obj_cur;
    end;
    the error i get is:
    Anmeldung bei der Datenbank Oracle Test2.
    ORA-03001: Funktion nicht implementiert
    ORA-06512: in "xxx.loop_update_autowert_x", Zeile 29
    ORA-06512: in Zeile 10
    Startwert ist: 5
    Column Name ist: a
    Table Name ist: T
    update T set a = 6 WHERE current of obj_cur
    Prozess beendet.
    Abmeldung von der Datenbank Oracle Test2.
    have anybody an idea what is wrong or is this construction with the clause "open cursor for statement" not possible with where current of cursor
    thx for helping
    best regards
    Hans-Peter

    Hello
    You're using rownum in your query so why not just use it in the update?
    CREATE OR REPLACE PROCEDURE "xxx"."loop_update_autowert_x" (
       startwert      NUMBER,
       column_name    VARCHAR2,
       table_name     VARCHAR2)
    AS
       stmt         VARCHAR2 (2000);
    BEGIN
       DBMS_OUTPUT.enable (1000000);
       DBMS_OUTPUT.put_line ('Startwert ist: ' || startwert);
       DBMS_OUTPUT.put_line ('Column Name ist: ' || column_name);
       DBMS_OUTPUT.put_line ('Table Name ist: ' || table_name);
          stmt :=
                'update '
             || table_name
             || ' set '
             || column_name
             || ' = ROWNUM + :startwert'
          DBMS_OUTPUT.put_line (stmt);
          EXECUTE IMMEDIATE stmt USING startwert;
    END;Wherever possible, I would suggest you try to avoid dynamic SQL as it hides dependencies and so can make maintenance more difficult.
    Also, it's not a great idea to splatter your code with DBMS_OUTPUT all over the place. It's better to wrap it in something so you have a bit of control over when it is used - something like log4plsql would be an example...
    HTH
    David

  • Row Fetch on View doesn't work / Custom procedure needed???

    Hello guys!
    Again I have a problem. It seems like once I finish one problem I stumble into another one. :-(
    Would is breaking my neck is the following problem.
    I have a view based on a query that joins 3 tables including one via a database-link. I would like and need to use that view as the source for the automatic row fetch! However, when creating the automatic-fetch-row process, the items on my page do not get populated. However, If I change the cource for the fetch-row-process to a view made of only a single table it works like a charm. Could it be that the automatic fetch-row procedure doesn't work with joined views and db-links at all??? If so, could you please give me an example of a PL/SQL procedure that will populate items on page reload and load!
    It's extremely urgent and I appreciate every input!
    Thanks guys! I hope you some ideas and hints!
    Regards,
    Sebastian

    Ah, ok - I probably read too much into your update (still thinking that it was related to the "view" issue in your first post :) ) - so an INSTEAD OF trigger won't be needed if this is just a single table!
    There are a few ways that adding an extra column into a tabular form would stop it being updated. Typically, this could be if the new column forms part of the "Primary key" for the data. If this is the case, you need to ensure that the processes recognise this. It can also be that you have set the item to DISABLED or READONLY - these items are not submitted with the page, so even if you set the item's value somehow, that will never get back into the record (there are ways to take off the DISABLED or READONLY attributes immediately prior to the submit, if need be). That could also happen if you have set the item to be a Standard Report Column - this is just displayed text, so doesn't form part of the submitted data. You can get around that by having a hidden column with the actual data in there as well - if you have ever created a tabular form using the simple EMP table example, you'll see EMPNO and EMPNO_DISPLAY - both contain EMPNO but only the basic EMPNO hidden item is submitted. Another, perhaps rare, possibility is if you have used the APEX_ITEM package to create any of the output and have used an index number that has been automatically assigned to another column - for example, if you have APEX_ITEM.TEXT(1, ....), which gives each item a name value of "f01", then this is most likely going to double up with the index for the hidden primary key item (which is usually first in the list). If this is the case, just change the index of your APEX_ITEM item to some high number (anything up to 50).
    Finally, you say "INV_PT_ID_SUB is also bound to an item PTIDS" - what is PTIDS? The MRU processes need to understand what column to update and relies on the settings for primary keys and the column names in the SQL query.
    The MRU's only know about their own settings - the workspace, tablename and primary keys etc. They contain no details of individual columns as such, so adding in extra columns shouldn't be a problem. In fact, I've added/deleted so many columns from tabular forms, that I'd be really annoyed if I had to start from scratch every time!!
    Andy

  • Job doesn't work - but procedure does

    Hi all,
    I found some curious - for me.
    I added a job for a procedure. The procedure contains 3 execute immediate with create table statements. The tables will be created on the current database, where the procedure runs. But the third statement select the datas from my table from another database (normal: select * from mytable ; 3.: select * from mytable@SERVER3). The 2 servers have a connection.
    And now the curious:
    If I start then procedure everything runs without errors or warnings. All tables will be created.
    If I start the job manually (I use TOAD for Oracel: Execute this job immediately) it also runs fine.
    But if the job starts automatically, the two select runs normaly, but the third doesn't. It must be in connection with the other database. Until now no admin here could help me or could say me how to solve the problem.
    Now I hope that someone in these forum knows the problem and could help me.
    Regards
    Juergen

    Hi,
    I can't create a dblink - insufficient privileges. But our Admin created on. But it didn't worked. I mean, we had the same problems as before.
    But I have a problem with the scheduler - which should solve the problem also. The folowing doesn't work:
    declare
    begin
    dbms_scheduler.create_job (
    job_name => 'tj_new_job',
    job_type => 'PLSQL-BLOCK',
    job_action => 'name_of_procedure',
    start_date => sysdate,
    repeat_interval => 'freq=dailiy;byhour=4');
    end;
    The problem is, nothing will happen. Is there anybody who knows, what I did wrong?
    Thank you.

  • HT2534 Hello, The procedure above doesn't work. Regardless the options I choose, it doesn't allow to proceed without a credit card number. The option not to select a credit card is not there. Can you please help?

    Hello, The procedure above doesn't work. Regardless the options I choose, it doesn't allow to proceed without a credit card number. The option not to select a credit card is not there. Can you please help?

    Read the steps in the support article from which you came carefully as the order in which you follow them is  critical. Note that you can do this only when creating a new Apple ID. You cannot use an existing ID.
    If you are certain you're following the steps exactly as given and are creating a new Apple ID and still have problems, go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store.
    Regards.

Maybe you are looking for