Re-populating values in data block after commit

I have a form with 2 tabs. The user can create an event in first tab and then associate/disassociate the event to data_points in the second tab (associate_event data block).
Say, I create an event, and query the records affected by the event in second tab, 5 records are retrieved. I press the associate_to_event push button and hit Save. All the 5 records get associated to the event, but as the associate_event data block is based off a view with instead-of triggers, I do not get any message saying 'these many rows were affected'.
I am OK with not getting the message, but atleast I should re-populate the values in that block so that the user can see that the changes were made.
So I created a key-commit trigger on the associate_event data block. The code in that trigger is as follows:
do_key(commit_form);
repopulate_values;
But my form is just sitting there (taking long to fiinish and hence timing out). Is there any other way of doing this?
(Also on another note, if I repopulate the associate_event datablock, the status of that block will be changed (as I am proceduraly assigning values to the block ) and then when user wants to exit the form, it will agaiin ask for 'Do you want to save the changed you made?' How do I avoid it?? Do I create a global variable and assign it some value say 1 when called from the key-commit trigger and check somewhere ?? if the value is '1' then dont pop-up that message )
Thanks in advance.

Thank you Magoo.
I am now able to re-populate the values. (The way my form was sitting there, made me that it was going in an infinite loop, but I could not point out what was causing that. Thanks!)
But my data-block associate_event retreives multiple records, therefore
"set_record_property ( :system.cursor_record, 'associate_event', status, query_status ); --> no ask for commit after repopulate_values ... "
does not work. And if I select Yes from the pop-up, I am getting the following error 'ORA-00933: SQL command not properly ended'. I checked the error and some how the update statement is incomplete. (This error does not/did not occur earlier when I just retrieve data. Remember, its coming from a view and the datablock is getting populated proceduraly, therefore everytime I wish to go out of the form, even after a retrieve , I get the message. (Which is fine with the customer.) So I dont get the 'ORA-00933: SQL command not properly ended' , when I press yes !! (But it tries to a insert and not an update at that time and I have a instead of update/insert trigger on the view).)
How do I get rid of the pop up, after the commit. I could not find any similar set_block_property :(.
Or should I suppress the pop-up in key_commit, or do another commit-form after repopulating data??

Similar Messages

  • Sequence value incrementing by one after commit

    I am using the following code to insert a sequence number into a form field in a data block pre-insert trigger. When I commit the record the trigger fires again and increments the sequence again. So the record I get in the database has a primary key value of 1 more than what was on the form. Any help would be appreciated.
    Joe Merkel
    BEGIN
         SELECT DAD_ID_SEQUENCE.NEXTVAL INTO :DAD_ROSCO_INFO.DAD_ID
         FROM SYS.DUAL;
         EXCEPTION
         WHEN OTHERS THEN
         MESSAGE('Unable to assign DAD ID');
         RAISE FORM_TRIGGER_FAILURE;
         :DAD_RO_NOTES.DAD_ID := :DAD_ROSCO_INFO.DAD_ID;
         :DAD_FR_NOTES.DAD_ID := :DAD_ROSCO_INFO.DAD_ID;
         END;

    I was just talking to a colleague that suggested that. Thanks for your response. I will look into it.

  • What will happen to the data block after data offloading?

    HI All,
    Since offloading can filter out the necessary information such as unnecessary columns and rows before they are passed to the database, I want to know what will happen to the data block? Will some new blocks be built at this time,which only contains the useful information?
    Best regards,
    Leon

    Andy Klock wrote:
    The statement seems to imply that Exadata has the ability to strip out columns from a block, but a block is a block is a block. Offloading is remarkable at filtering out data in the storage layer that ultimately is not needed but if you only need one row in a block that has 100 rows in it, you still get the whole block (and all 100 rows) to be processed by Oracle. The columns portion of the statement is when HCC is used for a table allowing only the blocks containing the column data required for the query, and thus if a block has 1000 column values in it, it will pass all 1000 column values to the instance to be processed.These assertions are incorrect.
    Blocks sent to the database grid as a result of a Smart Scan contain only the necessary columns and rows for the db grid to do its processing (after filter restrictions and projection restrictions are applied). These Smart Scan blocks are created at run time by the storage server so they have no bearing on the blocks that reside physically on disk which is why they can not be reused by other queries via the SGA and are read directly into the PGA space.
    Regards,
    Greg Rahn | blog | twitter | linkedin

  • What does redo log buffer holds, changed value or data block?

    Hello Everyone,
    i am new to database side and have one query as i know redo log buffer contain change information , my doubt is does it store the value only or the changed data block? because if we can see data buffer cache size is more as it holds data block and redo log buffer size is less .

    The Redo Log buffer contains OpCodes that represent the SQL commands, the "address" (file,block,row) where the change is to be made and the nature of the change.
    It does NOT contain the data block.
    (the one exception is when you run a User Managed Backup with ALTER DATABASE BEGIN BACKUP or ALTER TABLESPACE BEGIN BACKUP : The first time a block is modified when in BEGIN BACKUP mode, the whole block is written to the redo stream).
    The log buffer can be and is deliberately smaller than the blocks buffer cache. Entries in the redo log buffer are quickly written to disk (at commits, when it is 1/3rd or 1MB full, every 3seconds, before DBWR writes a modified data block).
    Hemant K Chitale

  • SQL*Loader . A column value in data file contains comma(,)

    Hi Friends,
    I am getting an issue while loading a csv file to database.
    A column in datafile contains a comma .. how to load such data?
    For ex, a record in data file is :
    453,1,452,N,5/18/2006,1,"FOREIGN, NON US$ CORPORATE",,,310
    Here "FOREIGN, NON US$ CORPORATE" is a column and contains a , in the value.
    I have specified optionally enclosed with " also.. but still not working
    Here is my control file:
    options (errors=100)
    load data
    infile 'TAX_LOT_DIM_1.csv'
    badfile 'TAX_LOT_DIM_1.bad'
    replace
    into table TAX_LOT_DIM
    fields terminated by ',' optionally enclosed by '"'
    trailing nullcols
    TAX_LOT_DIM_ID ,
    TAX_LOT_NBR ,
    TAX_LOT_ODS_ID ,
    RESTRICTION_IND ,
    LAST_UPDATE_DTM ,
    TRAN_LOT_NBR integer,
    MGR_GRP_CD optionally enclosed by '"' ,
    RESTRICTION_AMT "TO_NUMBER(:RESTRICTION_AMT,'99999999999999999999.999999999999')" ,
    RESTRICTION_INFO ,
    SRC_MGR_GRP_CD
    Problem is with MGR_GRP_CD column in ctrl file.
    Please reply asap.
    Regards,
    Kishore

    Thanks for the response.
    Actually my ctrl file is like this with some conversion functions:
    replace
    into table TAX_LOT_DIM
    fields terminated by ',' optionally enclosed by '"'
    trailing nullcols
    TAX_LOT_DIM_ID "TO_NUMBER(:TAX_LOT_DIM_ID ,'999999999999999.99999999')",
    TAX_LOT_NBR ,
    TAX_LOT_ODS_ID "to_number(:TAX_LOT_ODS_ID ,'999999999999999.999999')",
    RESTRICTION_IND ,
    LAST_UPDATE_DTM "to_date(:LAST_UPDATE_DTM ,'mm/dd/yyyy')",
    TRAN_LOT_NBR integer, --"TO_NUMBER(:TRAN_LOT_NBR,'999999999999999.99999999999999999')",
    MGR_GRP_CD char optionally enclosed by '"' ,
    RESTRICTION_AMT "TO_NUMBER(:RESTRICTION_AMT,'99999999999999999999.999999999999')" ,
    RESTRICTION_INFO ,
    SRC_MGR_GRP_CD
    For char columns , even i dont give any datatype, i think it will work.
    And pblm is not with this hopefully.
    Thanks,
    Kishore

  • Requery form data block is empty after updating notification attributes

    Hello,
    we build a form to approve/reject open WF notifications.
    The form data block is based on wf_notifications,
    wf_local_user_roles, wf_notification_attributes and wf_comments and some additional PSB tables.
    We use the following API's to perform the update:
    wf_notification.SetAttrText( nid => l_notification_id
    , aname => 'RESULT'
    , avalue => l_result);
    wf_notification.respond(nid => l_notification_id
    ,responder => name_in('FORM_GLOBALS.USER_NAME')
    ,respond_comment => name_in('FORM_GLOBALS.REDEN_AFWIJZING') );
    First the query shows 3 notifications and after updating one notification as shown above a requery is performed on the datablock and no records are shown anymore.
    If I remove the code wf_notification.SetAttrText then the 2 remaining notifications are shown.
    It looks like the wf_notification.SetAttrText is conflicting with my view.
    This is my view:
         SELECT distinct 'B'||pbr.budget_revision_id mutatienummer
    , pbr.budget_revision_id
    , xp.dienst
    , pbr.justification mutatiereden
    , pbr.requestor aanvrager_id
    , nvl(fu_req.DESCRIPTION, fu_req.USER_NAME) aanvrager
    , pbr.CREATION_DATE aanvraag_datum
    , wlur.USER_ORIG_SYSTEM_ID user_id
    , wlur.user_name user_name
    , wn.notification_id notification_id
    , wn.subject subject
    , wn.message_type wf_item_type
    , pbr.ATTRIBUTE2 transactiesoort
    , pbr.ATTRIBUTE4 categorie
    , pbr.ATTRIBUTE5 raadsvoorstel
    , SUBSTR(pbr.attribute1, 4) begrotingsstuk
    , SUBSTR(pbr.attribute3, 4) status
    , SUBSTR(pbr.attribute6, 4) dienstgroep
    , SUBSTR(pbr.attribute7, 4) concerngroep
    , decode(SUBSTR(pbr.attribute3, 4),'Bij D.C.',null,nvl(fu_from.DESCRIPTION, fu_from.USER_NAME)) Fiatteur_bij_DC
    , decode(nvl(pbr.attribute9,'X'),nvl(pbr.attribute10,'Z'),'J','N') initiele_structuur_wijz
    , decode(pbr.ATTRIBUTE2,'Structuurwijziging','J','N') structuurwijziging
         , pbr.budget_group_id budget_group_id
         , xrb.bedrijf aangevraagd_door_dienst
         , wn.begin_date datum_melding
         , pbr.attribute8 te_wijzigen_kst_dr_prod
         , pbr.attribute9 oude_structuur
         , pbr.attribute10 nieuwe_structuur
         , pbr.attribute11 ingangsjaar_struct_wijz
         , to_date(fnd_date.canonical_to_date(pbr.attribute12)) ingangsdatum_struct_wijz
         , pbr.attribute13 looptijd_mutatie
    from wf_notifications wn
    , wf_local_user_roles wlur
    , wf_notification_attributes wna
    , psb_budget_revisions pbr
    , fnd_user fu_req
    , fnd_user fu_from
    , wf_comments wc
    , psb_budget_revision_lines pbl
    , psb_budget_revision_accounts pbra
    , gl_code_combinations gcc
    , xxpsb_parameters_vw xp
    , psb_budget_group_resp bgr
         , xxpsb_respons_bedrijf_vw xrb
    where wn.message_type = 'PSBBR'
    and wn.message_name = 'NOTIFY_APPROVERS_OF_SUBMISSION'
    and wn.status = 'OPEN'
    and wlur.role_name = wn.recipient_role
    and wna.notification_id = wn.notification_id
    and wna.NAME = 'BUDGET_REVISION_ID'
    and pbr.BUDGET_REVISION_ID = to_number(wna.number_value)
    and wlur.USER_NAME = fnd_profile.value('USERNAME')
    and fu_req.user_id = pbr.requestor
    and fu_from.user_name(+) = wc.from_user
    and wc.notification_id(+) = wn.notification_id
    and pbr.budget_revision_id = pbl.budget_revision_id
    and pbl.budget_revision_acct_line_id = pbra.budget_revision_acct_line_id
    and pbra.code_combination_id = gcc.code_combination_id
    and gcc.segment1 like xp.code||'%'
    and bgr.budget_group_id = pbr.budget_group_id
    and bgr.responsibility_id(+) = xrb.responsibility_id
    and bgr.responsibility_type = 'R'

    Hi Mat,
    the attribute is only set for those notifications which are selected in the form.
    l_notification_id is filled with the notification_id of the selected record.
    This is the piece of code within the process loop:
    l_notification_id := name_in('WERKLIJST.NOTIFICATION_ID');
    l_result := name_in('FORM_GLOBALS.NOTIFICATION_ACTION');
    wf_notification.SetAttrText( nid => l_notification_id
    , aname => 'RESULT'
    , avalue => l_result);
    wf_notification.respond(nid => l_notification_id
    ,responder => name_in('FORM_GLOBALS.USER_NAME')
    ,respond_comment => name_in('FORM_GLOBALS.REDEN_AFWIJZING')
    Regards
    Rinus

  • Data lock even after commit work and wait

    Hi Experts,
    Data is still locked even after commit work and wait step has run, which made me very confusing.
    The following are the details:
    These steps are in a FOP.
    Step1: Change Move-in Date of a move-in document in background after get the new move-date from user.
    Step2: Run BAPI_TRANSACTION_COMMIT and pass the wait parameter.
    Step3: Bring move-in document transaction to the user for other information changes.
               After the user confirms the changes and presses SAVE button, error message shows that the move-in document is still locked. But no other transaction is opened for the specified move-doc changing.
    Does any1 have any idea on this? How can I solve this issue?
    Thanks in advance and points will be rewarded.
    Vincent

    Hi,
    Normally every BAPI will work on Update task so that the data will be updated once the commit work is done. For the commit work, we will normally call the bapi function module - BAPI_TRANSACTION_COMMIT. It should work.
    In your case, just try the below option:
    Please call the bapi - BAPI_ACC_DOCUMENT_POST & BAPI_TRANSACTION_COMMIT in a seperate function module and call this function module in your program (just pass the import / export / table parameters accordingly).
    For the information, I had once a similar type of issue and it got solved once I did like the above.
    Regards,
    Selva K.

  • Data block information after deletion of data

    Hi , If I have deleted a row in a particular table then which meta data table in oracle will record that the no of bytes got deducted.
    I have checked in this table for perticular table before deletion and after deletion but there is no difference in number...DBA_SEGMENTS
    Edited by: 883279 on Jan 28, 2013 4:56 AM

    883279 wrote:
    Hi , If I have deleted a row in a particular table then which meta data table in oracle will record that the no of bytes got deducted.
    I have checked in this table for perticular table before deletion and after deletion but there is no difference in number...DBA_SEGMENTS
    Edited by: 883279 on Jan 28, 2013 4:56 AM When you delete a row in a table, oracle marks the block as free block and it does not actually frees the block. The subsequent insert statement uses this information and overwrites the block with new data.
    cehck this out, I have a table
    SQL> create table t
      2  as
      3  select *
      4    from all_objects;
    Table created.Now i run this
    SQL> set autotrace on
    SQL>
    SQL> select count(*) from t;
      COUNT(*)
        213321
    Statistics
             28  recursive calls
              0  db block gets
           2960  consistent gets
           2879  physical reads
              0  redo size
            517  bytes sent via SQL*Net to client
            488  bytes received via SQL*Net from client
              4  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL> select count(*) from t;
      COUNT(*)
        213321
    Statistics
              0  recursive calls
              0  db block gets
           2884  consistent gets
              0  physical reads
              0  redo size
            517  bytes sent via SQL*Net to client
            488  bytes received via SQL*Net from client
              4  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processedCheck the consistent gets in the second qyery its 2884.
    Now i delete all the rows from table
    SQL> delete from t;
    213321 rows deleted.Now i again run the query
    SQL> select count(*) from t;
      COUNT(*)
             0
    Statistics
              0  recursive calls
              0  db block gets
           2884  consistent gets
            306  physical reads
              0  redo size
            514  bytes sent via SQL*Net to client
            488  bytes received via SQL*Net from client
              4  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processedYou can see the consistent gets is same 2884, so oracle goes through all the data blocks even after
    we delete them.
    Now i truncate the table
    SQL> truncate table t;
    Table truncated.
    SQL> select count(*) from t;
      COUNT(*)
             0
    Statistics
              1  recursive calls
              1  db block gets
              6  consistent gets
              0  physical reads
             52  redo size
            514  bytes sent via SQL*Net to client
            488  bytes received via SQL*Net from client
              4  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processedNow the HWM is reset and the blocks are released.

  • How to find a value into a data block

    There is a way to find a value into a data block, like finding
    one into a record group
    null

    Rafael Moreno (guest) wrote:
    : There is a way to find a value into a data block, like finding
    : one into a record group
    Try something like this:
    -- has to be in a when-button-pressed or key trigger
    go_block('x_block');
    first_record;
    r_found:=false;
    loop
    if :x_block.search_field:=search_value then
    r_found:=true;
    exit;
    end if;
    down;
    end loop;
    if r_found=false then
    first_record;
    message('Value '

  • Data Modeler 3EA2 SDO_GEOMETRY stays in outgoing changes after commit

    I try to add changes to SVN repository, but I keep having Structured Type SDO_GEOMETRY in my outgoing changes even after commit. I don't use that datatype in my model. After the very first commit there were 0 outgoing changes left, but the next time I opened the model it appeared there (even before I made any changes to the model).

    Hi,
    can you navigate to this type in Pending Changes window and from context menu choose "Compare With / Last Synchronized (Local) - as text"
    This should show the changes to the type and would be helpful to investigate what the problem is.
    Please write the changed attributes of the file here.
    Thanks
    Ivaylo

  • Can we create a list item as a data block item?

    Hi,
    I have changed a text item to list item on the data block.
    This list item used to get populated when it was control block item, but after i changed it to data block item, it's not getting populated.
    My question is, can we create a list item(poplist) as a data block item?
    Any idea?
    Thanks in advance
    R.G

    Hi
    When you use ctl blocks data dose not fetch from Database. But in data blocks it get fetches when you execute query. So you have to make sure table column values are matching with the List Box values you have given.
    So please check table values.
    Nilaksha.

  • Inserting rows into a data block

    Hi, how do i insert 'n' rows into a data block and after that commit the changes into the data base.
    Thanks for any help.

    You can use something like this:
    Go_Block('my_block');
    first_record;
    LOOP
    .... insert values to the items
    next_record;
    END LOOP;
    - for commiting changes
    Do_Key('Commit_Form');
    I hope this will help you.
    Helena

  • Suspicious delay of HDD activity after commit

    I know that after commit Oracle LGWR process writes the data
    changies into the redo-log. And Oracle must return "Commited"
    only after above is done. But when I do Commit, I don't see the
    HDD LED blink. Only after 1-2 sec HDD LED blinks. Is it normal?
    What people have?
    null

    To answer the question of caching and syncing:
    Linux nearly caches all and does it on a high "level", means it
    is one of the reason for the good I/O-performance of linux.
    In order to make sure that data is directly written to the disks
    you can mount your disks with the option sync.
    An example: mount -o sync /dev/sdc1 /data_1
    Note, that the performance will decrease. The other possibility
    is a little tool called syncer, which is a daemon that causes
    linux to clear its cache every xy seconds (any value you like). I
    think (because I never used) it causes some overhead but is a
    good compromise to the sync-option.
    Deactivating caching in the kernel... I think this is not the
    best solution if you are not familiar with kernel programming.
    Also think of swapping and reads on the system-disk and so on.
    Dietmar
    p.s: I can't remember where I've found it, so I send it to your
    personal account, because I can't add any files here
    StE (guest) wrote:
    : Mark Malakanov (guest) wrote:
    : : I know that after commit Oracle LGWR process writes the data
    : : changies into the redo-log. And Oracle must return "Commited"
    : : only after above is done.
    : Not quite true. Information is constantly flushed from the
    : in-memory redo log buffer to disc while changes are taking
    place
    : to the database. When a transaction is committed the
    : current contents of the redo-log buffer are flushed to disc,
    : followed by a marker saying "SCN was committed" is written to
    : disc - the changes themselves have already been written out.
    : : But when I do Commit, I don't see the
    : : HDD LED blink. Only after 1-2 sec HDD LED blinks.
    : : Is it normal? What people have?
    : That's probably normal, but that doesn't make it a good thing.
    : The Linux buffer-cache does write-behind caching, so that dirty
    : buffers arn't written out to disc immediately. If there were a
    : failure the write of the commit or some of the preceeding redo
    : log blocks might not make it to disc.
    : I think you can tune the frequency with which bdflush wakes up
    : and writes to disc. Setting it to a low value if you're worried
    : about consistency over performance would be a good idea.
    : I don't know whether there's an open() flag to perform writes
    on
    : a file synchronously or not under Linux. It's possible to
    sync()
    : an open filehandle, I think, so perhaps Oracle does a sync on
    : the active redo log when it writes out the commit.
    : Anyone know anything less vague and hand-waving?
    : -michael
    null

  • Insert and update a data block which is based on view--urgent help required

    Hi experts,
    I created a view(A_VIEW) which is based on a union select. I have created a data block A_VIW_BLOCK which is based on this view. I need to insert/update one of the base tablesfor A_VIEW through this data block. I also need to be able to make a query through all the fields in the view.
    The questions are:
    1.Can it be done at all?
    2. What properties need to be set?
    3. If can't be done, what the best approach to achieve this?
    Thanks in advance!!
    Michael

    hi
    try something like this.
    CREATE TABLE demo_tab (
    person_id NUMBER(3),
    first_name VARCHAR2(20),
    last_name VARCHAR2(20));
    CREATE OR REPLACE VIEW upd_view AS
    SELECT * FROM demo_tab;
    INSERT INTO demo_tab
    (person_id, first_name, last_name)
    VALUES
    (1, 'Daniel', 'Morgan');
    INSERT INTO demo_tab
    (person_id, first_name, last_name)
    VALUES
    (2, 'Helen', 'Lofstrom');
    COMMIT;
    SELECT * FROM upd_view;
    UPDATE upd_view
    SET person_id = person_id * 10;
    SELECT * FROM upd_view;
    desc user_updatable_columns
    SELECT table_name, column_name, updatable, insertable, deletable
    FROM user_updatable_columns
    WHERE table_name IN (
       SELECT view_name
       FROM user_views);
    SQL> create table dummy (f1 number);
    Table created.
    SQL> create view dummy_v 
    2  as 
    3  select f1 from dummy 
    4  union all  
    5  select f1 from dummy;
    View created.
    SQL> create trigger dummy_v_it 
    2  instead of insert 
    3  on dummy_v 
    4  for each row 
    5  begin 
    6    insert into dummy values (:NEW.f1); 
    7  end; 
    8  /
    Trigger created.
    SQL> insert into dummy_v values (1);
    1 row created.
    SQL> select * from dummy_v;       
    F1
    1        
    1
    SQL> select *
      2  from user_updatable_columns
      3  where table_name = 'DUMMY_V';
    OWNER    TABLE_NAME   COLUMN_NAME  UPD INS DEL
    FORBESC  DUMMY_V      F1            NO  NO  NOforms settings.
    Enforce Primary Key - No
    Query Allowed - Yes
    Query datasource Name - V_TSFDETAIL
    Insert Allowed - Yes
    Update Allowed - Yes
    Delete Allowed - Yes
    Locking Mode - Automatic
    Key Mode - Automatic
    do not forget to create synonyms.
    hope this helps.
    sarah

  • Manipulating data from a ref cursor in the data block of a form

    I am using Oracle Forms 10g. I have a ref cursor which returns columns A, B, C, D, E where B, C, D, E are values. The "Query Data Source Name" attribute in the datablock contains "CCTR_Extract_pkg.cctr_refcur". The "Column Name" attribute of item A contains "A", item B contains "B", etc. All of these columns are displayed on the form and it all works perfectly.
    I have a new request, the users would like a 6th column displayed - column F - where it equals D - B.
    Is there any way of doing this in the form only or do I need to change the ref cursor to accomodate the new column and then the form?
    If it can be achieved in the Form (only) - then how do I reference the 2 columns?
    Thanks in anticipation
    Michael
    Edited by: user8897365 on 24-Aug-2011 10:32

    Is there any way of doing this in the form only or do I need to change the ref cursor to accomodate the new column and then the form? The REF_CURSOR is the data source of your block so you will have to modify the CCTR_Extract_pkg package and cctr_refcur REF_CURSOR.
    If it can be achieved in the Form (only) - then how do I reference the 2 columns?After you have modified your database package, I recommend you run the Data Block Wizard on your block and let Forms detect the 2 new columns. You can do this manually, but it is safer to let Forms do it for you. If you want to do it manually, open the Query Data Source Columns property and add your new columns.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

Maybe you are looking for

  • Need to select only words

    Hi, I have a simple question, i have a column with a lot of non-word entries. All i need to select from that column are entries which are valid english characters. I tried this but this does not work: select a from abctest where not (regexp_instr(a,

  • KALC -Not posting in transaction currency

    Currently when we run KALC the FI CO recon documents are posted in CO Area currency, is it possibel to configure so that the transaction of the FI CO recon postings is posted in the transaction currency of the CO document or the original FI document.

  • Problems exporting library from iPhoto

    Hi, I'm trying to export my iPhoto library but when i go to export to my external hard drive it gives me an error message and tells me it can't make volumes.... what do i do? I think there could be an error within my library. Any help is much appreci

  • How to install new themes for GDM?

    Hello guys, where can I find the related directory to extract new GDM themes for Gnome 2.26? Thanks

  • MIgration from physical servers to Oracle Solaris Containers

    We are in process of migrating our Oracle Databases from a physical SUN SPARC servers to Oracle Solaris Container. Do we need to any extra setting in the Oracle side or server side in a virtualized environment to run Oracle databases? Any comment wil