How to insert or update comparing values  with two or more table

Hai All
I have three or four table in my database.
Table 1 Dailattend is the main table here i need to insert or update my data and the fieds are
Emplcode number,attdate date, intime date,intrin date ,introut date, outtime date are the fields
Table 2 acclempbarcode the fields are
emplcode number ,barcode number ....etc
so now my data is in text format and i have broke the date like this
0011221100112200100320100815
First 16 is barcode and next 8 is date and 4 is time and i have created a temp table and store the date and move to main table
My problem is the main table dailattend has no barcode so when i am going to insert or update i need to check whether the barcode is match with the emplcode in the main table
How can i write insert or update statement
The data is like this
00110022 is barcode,10-03-2010 is my date and 0815 is time so i need to insert into dailattend table so now i have emplcode in dailattend table so i need to compare the barcode belong the emplcode in the another table and i need to insert in the dailattend table
Pls give me some solution with example
Regards
Srikkanth.M

try somthing like this
create table t1
as
select '0011221100112200' barcode,to_date('100320100815','ddmmyyyyhh24mi') dt
from dual
  create table barcodetbl
  emplcode varchar2(2000)
  barcode varchar2(2000)
  datetime date
merge into barcodetbl bc
using( select  * from  t1) x
on
(bc.barcode = x.barcode)
when matched
then update
set datetime = x.dt
when not matched
then
insert (emplcode,barcode,datetime)
values(1,x.barcode,x.dt)
/didn't realize that barcode is not in the main table.
something along the lines
Table 1 Dailattend is the main table here i need to insert or update my data and the fieds are
Emplcode number,attdate date, intime date,intrin date ,introut date, outtime date are the fields
Table 2 acclempbarcode the fields are
emplcode number ,barcode number ....etc
merge into dailattend bc
using( select  * from  t1, acclempbarcode ac where t1.barcode = ac.barcode) x
on
(bc.emplcode = x.emplcode)
when matched
then update
set datetime = x.dt
when not matched
then
insert (emplcode,datetime)
values(1,x.dt)
/Alvinder
Edited by: alvinder on Mar 23, 2010 3:50 PM

Similar Messages

  • Working with two or more tables in Numbers

    Working with two or more tables in Numbers
    It is possible to write numbers or names in Table 1 B-2, B-3, B-4, B-5, B-6 etc. and automatically copy in Table 2 only B-2, B-4, B-9, B23 etc.
    What do I need to do???
    Thanks for the help

    The table on the left is named "Source" and on the right "Destination":
    In the table "Destination" on the right:
    B2=Source :: B2
    select B2 and fill down

  • How to insert or update multiple values into a records of diff fields

    Hai All
    I have to insert or update or multiple values into a single records of diff fields from one to another table.
    Table1 has 3 fields
    Barcode bardate bartime
    0011 01-02-10 0815
    0022 01-02-10 0820
    0011 01-02-10 1130
    0022 01-02-10 1145
    0011 01-02-10 1230
    0022 01-02-10 1235
    0011 01-02-10 1645
    0022 01-02-10 1650
    these are the times that comes in at 0815 and goes break at 1130 and comes in at 1230 and goes home at 1645
    from these table i have to insert into another table called table2
    and the fields are barcode, date,timein intrin,introut,tiomout
    And the output want to like this
    barcode timein intrin introut timeout date
    0011 0815 1130 1230 1645 01-02-10
    0022 0820 1145 1235 1650 01-02-10
    If any give some good answer it will be help full..
    Thanks & Regards
    Srikkanth.M

    SQL> with table1 as (
      2  select '0011' Barcode,'01-02-10' bardate,'0815' bartime from dual union
      3  select '0022','01-02-10','0820' from dual union
      4  select '0011','01-02-10','1130' from dual union
      5  select '0022','01-02-10','1145' from dual union
      6  select '0011','01-02-10','1230' from dual union
      7  select '0022','01-02-10','1235' from dual union
      8  select '0011','01-02-10','1645' from dual union
      9  select '0022','01-02-10','1650' from dual
    10  )
    11  select barcode, bardate,
    12         max(decode(rn,1,bartime,null)) timein,
    13         max(decode(rn,2,bartime,null)) intrin,
    14         max(decode(rn,3,bartime,null)) introut,
    15         max(decode(rn,4,bartime,null)) timeout from (
    16                          select barcode, bardate, bartime,
    17                                 row_number() over (partition by barcode, bardate
    18                                                    order by bartime) rn
    19                            from table1)
    20  group by barcode, bardate;
    BARC BARDATE  TIME INTR INTR TIME
    0011 01-02-10 0815 1130 1230 1645
    0022 01-02-10 0820 1145 1235 1650Max
    http://oracleitalia.wordpress.com

  • How to call PL/SQL stored procedure with TWO or more arguments from URL?

    Hi all,
    does anybody know, how to call stored procedure with more than one argument?
    How to do this with one argument is known -
    <img src="#OWNER#.retreive_img_data?i_id=#IMG_ID#" width="70" height="80" alt="No Picture">
    But if I need to call procedure with two formal parameters? And need to pass through URL, for example, two page item values?

    Just separate with an "&". Using your previous example, I'll add i_name and i_type:
    <img src="#OWNER#.retreive_img_data?i_id=#IMG_ID#&i_name=somename&i_type=jpg" width="70" height="80" alt="No Picture" />
    Tyler

  • How two or more table used in smartforms

    Sir,
    Like to know how can i perform calculation in smartfrom if the fields is numeric and use two table, and also know about it is useful to use inner join or any other method in smartform for working with two or more tables simultaneously.
    plz, expalin with example

    hi
    you can use more than one table in smartform for that first you mention all the tables in the form interfaces and you have to mention the variables that you want to caliculate in the global definitions.
    For caliculation right click on ant text and in that we have flow logic option in that we can select which type of code you want to write and you have to create those inbetween two text fields where the values are there and the other one is where you want to display the result.
    in that code in input parameters we have to mention the variables which you want to use for caliculation and in output parameters mention the variables in which you want to store the result. And then we have to write the logic what ever we want.
    I hope this information will help you
    regards,
    Sreelatha Gullapalli

  • Seperate my midi keyboard with two or more software instruments

    How can I seperate my midi keyboard with two or more software instruments?

    Sorry I was not clear in my story. I do understand the concept of MIDI transferring info and not actual sound. The problem is, I record a string pad from my keyboard onto GB (with a USB connection) but then I open a new track to record along with it using an electric piano sound (also from my keyboard, not from GB's internal sound). But when I record the new E. Piano part onto the song, it automatically converts the original string pad part that has been recorded into an E. Piano sound.
    My question is this. Is GB not able to recognize two separate sounds or does it apply the same MIDI message to all software tracks? I find it odd that it would not let you record two or more different sounds onto the same song.

  • How can I get the element value with namespace?

    I tried to get a element value in xml has namespace but i can't.
    I removed the namespace, i can get a element value.
    How can i get a element value with namespace?
    --1. Error ----------- xml ------------------------------
    <?xml version="1.0" encoding="UTF-8"?>
    *<TaxInvoice xmlns="urn:kr:or:kec:standard:Tax:ReusableAggregateBusinessInformation:1:0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:kr:or:kec:standard:Tax:ReusableAggregateBusinessInformation:1:0 http://www.kec.or.kr/standard/Tax/TaxInvoiceSchemaModule_1.0.xsd">*
    <ExchangedDocument>
    <IssueDateTime>20110810133213</IssueDateTime>
    <ReferencedDocument>
    <ID>318701-0002</ID>
    </ReferencedDocument>
    </ExchangedDocument>
    <TaxInvoiceDocument>
    <IssueID>201106294100</IssueID>
    <TypeCode>0101</TypeCode>
    <IssueDateTime>20110810</IssueDateTime>
    <PurposeCode>02</PurposeCode>
    </TaxInvoiceDocument>
    <TaxInvoiceTradeLineItem>
    <SequenceNumeric>1</SequenceNumeric>
    <InvoiceAmount>200000000</InvoiceAmount>
    <TotalTax>
    <CalculatedAmount>20000000</CalculatedAmount>
    </TotalTax>
    </TaxInvoiceTradeLineItem>
    </TaxInvoice>
    --2. sucess ----------- xml ---------remove namespace---------------------
    <?xml version="1.0" encoding="UTF-8"?>
    <TaxInvoice>
    <ExchangedDocument>
    <IssueDateTime>20110810133213</IssueDateTime>
    <ReferencedDocument>
    <ID>318701-0002</ID>
    </ReferencedDocument>
    </ExchangedDocument>
    <TaxInvoiceDocument>
    <IssueID>201106294100</IssueID>
    <TypeCode>0101</TypeCode>
    <IssueDateTime>20110810</IssueDateTime>
    <PurposeCode>02</PurposeCode>
    </TaxInvoiceDocument>
    <TaxInvoiceTradeLineItem>
    <SequenceNumeric>1</SequenceNumeric>
    <InvoiceAmount>200000000</InvoiceAmount>
    <TotalTax>
    <CalculatedAmount>20000000</CalculatedAmount>
    </TotalTax>
    </TaxInvoiceTradeLineItem>
    </TaxInvoice>
    ---------- program ------------
    procedure insert_table
    l_clob clob,
    wellformed out boolean,
    error out varchar2
    is
    l_parser dbms_xmlparser.Parser;
    xmldoc xmldom.domdocument;
    l_doc dbms_xmldom.DOMDocument;
    l_nl dbms_xmldom.DOMNodeList;
    l_n dbms_xmldom.DOMNode;
    l_root DBMS_XMLDOM.domelement;
    l_node DBMS_XMLDOM.domnode;
    l_node2 DBMS_XMLDOM.domnode;
    l_text DBMS_XMLDOM.DOMTEXT;
    buf VARCHAR2(30000);
    xmlparseerror exception;
    TYPE tab_type is Table of xml_upload%ROWTYPE;
    t_tab tab_type := tab_type();
    pragma exception_init(xmlparseerror, -20100);
    l_node_name varchar2(300);
    begin
    l_parser := dbms_xmlparser.newParser;
    l_doc := DBMS_XMLDOM.newdomdocument;
    dbms_xmlparser.parseClob(l_parser, l_clob);
    l_doc := dbms_xmlparser.getDocument(l_parser);
    l_n := dbms_xmldom.makeNode(l_doc);
    l_nl := dbms_xslprocessor.selectNodes(l_n, '/TaxInvoice/TaxInvoiceDocument');
    FOR cur_tax In 0..dbms_xmldom.getLength(l_nl) - 1 LOOP
    l_n := dbms_xmldom.item(l_nl, cur_tax);
    t_tab.extend;
    t_tab(t_tab.last).ed_id := '5000000';
    dbms_xslprocessor.valueOf(l_n, 'IssueID/text()', t_tab(t_tab.last).tid_issue_id);
    dbms_xslprocessor.valueOf(l_n, 'TypeCode/text()', t_tab(t_tab.last).tid_type_code);
    END LOOP;
    FORALL i IN t_tab.first .. t_tab.last
    INSERT INTO xml_upload VALUES t_tab(i);
    COMMIT;
    dbms_xmldom.freeDocument(l_doc);
    wellformed := true;
    exception
    when xmlparseerror then
    --xmlparser.freeparser(l_parser);
    wellformed := false;
    error := sqlerrm;
    end insert_table;

    l_nl := dbms_xslprocessor.selectNodes(l_n, '/TaxInvoice/TaxInvoiceDocument');try to change as follow
    l_nl := dbms_xslprocessor.selectnodes(l_n,'/TaxInvoice/TaxInvoiceDocument','xmlns="urn:kr:or:kec:standard:Tax:ReusableAggregateBusinessInformation:1:0"');Edited by: AlexAnd on Aug 17, 2011 12:36 AM

  • HT1338 i have apps to be updated but when i try to update them a message pops out saying "You have updates for other accounts, please sigh in with the other id". Can some one help me how can i still update the same with the new apple id ive created.

    i have apps to be updated but when i try to update them a message pops out saying "You have updates for other accounts, please sigh in with the other id". Can some one help me how can i still update the same with the new apple id ive created. As i dont have the access to the earlier id anymore.

    You cannot. The apps are assigned to that Apple ID and there is nothing you can do to change that. You could choose to download them again with the new Apple ID, any paid apps will need to be purchased again.
    Hope that helps.

  • How to read and update the value of property file

    Hi,
    I am not able read the values from property file.
    Please tell me how to read and update the values from property file using Properties class
    This is my property file : - Config.properties its located in D:\newfolder
    Values
    SMTP = localhost
    Now i need to change the value of the SMTP
    New value :
    SMTP =10.60.1.9
    Pls Help me
    Thanks
    Merlin Rosina,

    Post a small (<1 page) example program that forum members can copy and run that demonstrates your problem.

  • HT1311 How can I get updates for apps with new Apple ID

    How can I get updates for apps with new Apple ID. I have apps that I got for free, and some that I have purchased. I had to create a new Apple ID because I don't have a credit card now.

    Apps will always be tied to the ID in which they were purchased or downloaded under. You can not change this unless you buy or download the free  app using the new ID.

  • How to Insert record in IT0014 along with cost Assignment details - FM Pls.

    Hi,
    I want to insert record in info type 0014 along with Cost Assigment details.
    I used FM - HR_INFOTYPE_OPERATION and RP_PLANT_DATA_UPDATE_TABLES.
    It works fine, but if I go and check PA20 after execution of program, ICON (Cost Assignment details) is not showing up on screen PA20. But If I check cost assignment tables (ASSOB & ASSHR) the record is present.
    Please let me know how to insert record in IT0014 along with Cost Assignment details.
    Thanks in Advance,
    Krishna

    Hi,
    I want to insert record in info type 0014 along with Cost Assigment details.
    I used FM - HR_INFOTYPE_OPERATION and RP_PLANT_DATA_UPDATE_TABLES.
    It works fine, but if I go and check PA20 after execution of program, ICON (Cost Assignment details) is not showing up on screen PA20. But If I check cost assignment tables (ASSOB & ASSHR) the record is present.
    Please let me know how to insert record in IT0014 along with Cost Assignment details.
    Thanks in Advance,
    Krishna

  • Need to compare values in two columns of one table against values in two columns in another table

    Hi, as the title reads, I'm looking for an approach that will allow me to compare values in two columns of one table against values in two columns in another table.
    Say, for instance, here are my tables:
    Table1:
    Server,Login
    ABCDEF,JOHN
    ABCDEF,JANE
    FEDCBA,SEAN
    FEDCBA,SHAWN
    Table2:
    Server,Login
    ABCDEF,JOHN
    ABCDEF,JANE
    FEDCBA,SHAWN
    In comparing the two tables, I'd like my query to report the rows in table1 NOT found in table2. In this case, it'll be the 3rd row of table one:
    Server,Login
    FEDCBA,SEAN
    Thanks.

    create table Table1([Server] varchar(50), Login varchar(50))
    Insert into Table1 values ('ABCDEF','JOHN'),('ABCDEF','JANE'),('FEDCBA','SEAN'),('FEDCBA','SHAWN')
    create table Table2([Server] varchar(50), Login varchar(50))
    Insert into Table2 values ('ABCDEF','JOHN'),('ABCDEF','JANE'), ('FEDCBA','SHAWN')
    select [Server] ,Login from Table1
    Except
    select [Server] ,Login from Table2
    select [Server] ,Login from Table1 t1
    where not exists(Select 1 from Table2 where t1.[Server] = t1.[Server] AND Login=t1.Login)
    drop table Table1,Table2

  • How can I limit a double value to two decimal place?

    How can I limit a double value to two decimal place?
    Java keeps on adding zero's to a simple double subtraction:
    1497 - 179.64 = 1317.3600000000001The answer must have been simply: 1317.36

    If the trouble is with output ...
    If the trouble is with value accuracy ...The trouble is with OPs understanding of and/or expectations of IEEE 754 floating point numbers. o_O
    [And it's probably a view (output) issue.]
    how can i actually use numberformat to cut those
    unwanted decimal places?Read the API - Puce already provided the link.

  • How to disable autoplay in windows media player, normally play FLAC and watch AVI with two or more audio streams

    0x1) is there a way to disable annoying autoplay feature in windows media player: when i play music in "now playing" mode and insert a disc which contains some video WMP stops playing music and asks me to play that disc or starts playing without any questions (e.g. when i insert DVD). in addition when WMP asks before playing it proposes three options: resume playing, go to library and play previous list. choosing "resume playing" you'll not resume the music just played, you'll start playing inserted disc. if you choose "play previous list", it also won't continue the playlist i was just playing, rather a playlist or track before the one i was just playing! very strange behaviour, isn't it?
    note that this happends only in "now playing" mode, when library is active everything works fine.
    please don't tell to go to control panel and change autoplay settings: it takes no effect. it works when WMP is not started or if WMP is not in "now playing" mode, otherwise WMP ignores that settings and demonstrates his "very intellectual"automatic playing.
    0x2) when playing FLAC files windows media player doesn't show progress indicator, it always is positioned at the beginning (or at the place where you've positioned it). if i select multiple FLAC files and click "play with windows media player" it will play only the last file from the selected list.
    0x3) when playing AVI files with two or more audio tracks WMP plays only one of them and gives no opportunity to change autio track. in wmp of vista it plays all the audio tracks at the same time (!).
    If there is no solution for these problems, please tell me where i can send a feedback about my complaints?

    i use K-Lite 5.2 full codec pack. in the k-lite codec tweak tool report i see madFLAC.ax installed. i'll try the Xiph.org filters.
    K-Lite Codec Tweak Tool | Log file | Generated at 2009-10-30 08:04:48
    #####  DirectShow Filters (32-bit)  #####
    Description:  ffdshow Video Decoder
    File name:    c:\program files (x86)\k-lite codec pack\ffdshow\ffdshow.ax
    CLSID:        {04FE9017-F873-410E-871E-AB91661A4EF7}
    Merit:        FF800001
    Description:  Nero Subpicture Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nesubpicture.ax
    CLSID:        {06CBC9D1-92B8-41FA-B4A7-D841A0C13422}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  CoreVorbis Audio Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\corevorbis.ax
    CLSID:        {0835DC4B-AA01-48C3-A42D-FD62C530A3E1}
    Merit:        00800000 = MERIT_PREFERRED
    Description:  ffdshow Audio Decoder
    File name:    c:\program files (x86)\k-lite codec pack\ffdshow\ffdshow.ax
    CLSID:        {0F40E1E5-4F79-4988-B1A9-CC98794E6B55}
    Merit:        3FFFFFFF
    Description:  MPC - Mpeg Source (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\mpegsplitter.ax
    CLSID:        {1365BE7A-C86A-473C-9A41-C0A6E82C9FA3}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MONOGRAM AMR Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {24FA7933-FE18-46A9-914A-C2AA0DBACE93}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Resize
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neresize.ax
    CLSID:        {30002E0C-C574-481E-A5DE-90AE54A79E10}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - MP4 Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {3CCC052E-BDEE-408A-BEA7-90914EF2964B}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero QuickTime(tm) Video Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neqtdec.ax
    CLSID:        {470157A6-BFEA-4DF8-A8A7-12CE5EF33AE7}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - FLV Splitter (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\flvsplitter.ax
    CLSID:        {47E792CF-0BBE-4F7A-859C-194B0768650A}
    Merit:        00600000 = MERIT_NORMAL
    Description:  WavPack Audio Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\wavpackdsdecoder.ax
    CLSID:        {4B420C26-B393-48B3-8A84-BC60827689E8}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero MP4 Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nemp4splitter.ax
    CLSID:        {4DA9D034-1B99-4104-BAA8-6A42E5348FEE}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MONOGRAM AMR Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {50DDA33E-C529-4343-9689-338ADC793BB5}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MONOGRAM Musepack Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmmpcdec.ax
    CLSID:        {555C4774-101E-49D7-8EEC-B9B87F8E1905}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Haali Media Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\haali\splitter.ax
    CLSID:        {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}
    Merit:        00800001 = MERIT_PREFERRED + 1
    Description:  Haali Media Splitter (AR)
    File name:    c:\program files (x86)\k-lite codec pack\filters\haali\splitter.ax
    CLSID:        {564FD788-86C9-4444-971E-CC4A243DA150}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  Nero ES Video Reader
    File name:    c:\program files (x86)\common files\ahead\dsfilter\ndparser.ax
    CLSID:        {5CB78A55-01B8-431E-96DE-6227D2E0C312}
    Merit:        00600000 = MERIT_NORMAL
    Description:  DV Source Filter
    File name:    c:\program files (x86)\nero\nero 7\nero vision\nvdv.dll
    CLSID:        {5F999665-C66E-46B7-9446-7864278C06C8}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - MP4 Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {61F47056-E400-43D3-AF1E-AB7DFFD4C4AD}
    Merit:        00600000 = MERIT_NORMAL
    Description:  File Source (Monkey Audio)
    File name:    c:\program files (x86)\k-lite codec pack\filters\monkeysource.ax
    CLSID:        {66EA14E6-E2B3-433D-923E-EE401CADBBD9}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  Nero PresentationGraphics Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nebdgraphic.ax
    CLSID:        {68936D7B-59D8-4724-9493-17A225E03F91}
    Merit:        00600000 = MERIT_NORMAL
    Description:  madFlac Decoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\madflac.ax
    CLSID:        {6B257121-CBB6-46B3-ABFA-B14DFA98C4A6}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero InteractiveGraphics Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nebdgraphic.ax
    CLSID:        {6F23E3FF-4234-4F1B-BC16-50D8A45235CA}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Vcd Navigator
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nevcd.ax
    CLSID:        {7855449D-FC96-44D7-BA7C-3C3D86330EC4}
    Merit:        00600000 = MERIT_NORMAL
    Description:  DirectVobSub (auto-loading version)
    File name:    c:\program files (x86)\k-lite codec pack\filters\vsfilter.dll
    CLSID:        {9852A670-F845-491B-9BE6-EBD841B8A613}
    Merit:        00800002 = MERIT_PREFERRED + 2
    Description:  MONOGRAM AMR Encoder
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {99735894-CAF4-488B-8275-B8CB1998216E}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nesplitter.ax
    CLSID:        {A336CD3B-599C-4F70-A34D-E88EDE4B64C3}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MONOGRAM AMR Mux
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmamr.ax
    CLSID:        {AAA4AACD-FD95-4240-9C45-9EB98E5DAC52}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero File Source / Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nefsource.ax
    CLSID:        {ABA51A41-B929-4419-8660-D33BBFA7C5AD}
    Merit:        00600000 = MERIT_NORMAL
    Description:  DC-Bass Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\dcbasssource.ax
    CLSID:        {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  VP7 Decompressor
    File name:    c:\program files (x86)\k-lite codec pack\filters\vp7dec.ax
    CLSID:        {C204438D-6E1A-4309-B09C-0C0F749863AF}
    Merit:        00800000 = MERIT_PREFERRED
    Description:  MONOGRAM Musepack Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mmmpcdmx.ax
    CLSID:        {C3E2E983-0198-4F73-9E5C-8365BB4C4131}
    Merit:        00600000 = MERIT_NORMAL
    Description:  madFlac Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\madflac.ax
    CLSID:        {C52908F0-1C06-4C0D-A4CD-3D10EA51C757}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MPC - FLV Source (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\flvsplitter.ax
    CLSID:        {C9ECE7B3-1D8E-41F5-9F24-B255DF16C087}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero Thumbnail Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nebdthumbnail.ax
    CLSID:        {CCFB194D-9CEA-4457-9B84-554B7D4853C6}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MPC - MPEG4 Video Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {D3D9D58B-45B5-48AB-B199-B8C40560AEC7}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero QuickTime(tm) Audio Decoder
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neqtdec.ax
    CLSID:        {D6D8A64E-F9F7-4685-9757-7338077234D8}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  WavPack Audio Splitter
    File name:    c:\program files (x86)\k-lite codec pack\filters\wavpackdssplitter.ax
    CLSID:        {D8CF6A42-3E09-4922-A452-21DFF10BEEBA}
    Merit:        00600000 = MERIT_NORMAL
    Description:  Nero File Source (Async.)
    File name:    c:\program files (x86)\common files\ahead\dsfilter\nefilesourceasync.ax
    CLSID:        {DA5E4EC4-61AB-458B-B836-B8744B6BD3A7}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  Nero Ogg Splitter
    File name:    c:\program files (x86)\common files\ahead\dsfilter\neoggsplitter.ax
    CLSID:        {DB4D8EF5-C2ED-4835-95A1-871C2327018A}
    Merit:        00400000 = MERIT_UNLIKELY
    Description:  MPC - Mpeg Splitter (Gabest)
    File name:    c:\program files (x86)\k-lite codec pack\filters\mpegsplitter.ax
    CLSID:        {DC257063-045F-4BE2-BD5B-E12279C464F0}
    Merit:        00400001 = MERIT_UNLIKELY + 1
    Description:  Nero Digital Parser
    File name:    c:\program files (x86)\common files\ahead\dsfilter\ndparser.ax
    CLSID:        {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}
    Merit:        00600000 = MERIT_NORMAL
    Description:  MPC - MPEG4 Video Source
    File name:    c:\program files (x86)\k-lite codec pack\filters\mp4splitter.ax
    CLSID:        {E2B98EEA-EE55-4E9B-A8C1-6E5288DF785A}
    Merit:        00600000 = MERIT_NORMAL
    Description:  AC3File
    File name:    c:\program files (x86)\k-lite codec pack\filters\ac3file.ax
    CLSID:        {F7380D4C-DE45-4F03-9209-15EBA8552463}
    Merit:        00600000 = MERIT_NORMAL
    (A total of 169 filters, 44 shown, 125 hidden)
    #####  ICM Class Manager (32-bit)  #####
    Description:  ffdshow video encoder
    File name:    c:\program files (x86)\k-lite codec pack\ffdshow\ffdshow.ax
    CLSID:        {4DB2B5D9-4556-4340-B189-AD20110D953F} (ffdshow video encoder)
    Merit:        00100000 = MERIT_SW_COMPRESSOR
    (A total of 3 filters, 1 shown, 2 hidden)
    #####  Default source filters (32-bit)  #####
    .264    {5CB78A55-01B8-431E-96DE-6227D2E0C312}  Nero ES Video Reader
    .3g2    {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .3gp    {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .aac    {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}  DC-Bass Source
    .ac3    {F7380D4C-DE45-4F03-9209-15EBA8552463}  AC3File
    .alac   {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}  DC-Bass Source
    .ape    {66EA14E6-E2B3-433D-923E-EE401CADBBD9}  File Source (Monkey Audio)
    .apl    {66EA14E6-E2B3-433D-923E-EE401CADBBD9}  File Source (Monkey Audio)
    .bmp    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .bsf    {5CB78A55-01B8-431E-96DE-6227D2E0C312}  Nero ES Video Reader
    .dib    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .dts    {F7380D4C-DE45-4F03-9209-15EBA8552463}  AC3File
    .dv     {5F999665-C66E-46B7-9446-7864278C06C8}  DV Source Filter
    .dvr-ms {C9F5FE02-F851-4eb5-99EE-AD602AF1E619}  StreamBufferSource
    .dvr-ne {8BD32EBA-D7D7-4AB7-914E-C4E551113869}   Nero Stream Buffer Source
    .flac   {C52908F0-1C06-4C0D-A4CD-3D10EA51C757}  madFlac Source
    .flv    {C9ECE7B3-1D8E-41F5-9F24-B255DF16C087}  MPC - FLV Source (Gabest)
    .gif    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .h264   {5CB78A55-01B8-431E-96DE-6227D2E0C312}  Nero ES Video Reader
    .jfif   {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .jpe    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .jpeg   {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .jpg    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .m3u    {e436ebb5-524f-11ce-9f53-0020af0ba770}  File Source (Async.)
    .m4a    {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .mka    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mks    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mkv    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mp3    {E436EBB5-524F-11CE-9F53-0020AF0BA770}  File Source (Async.)
    .mp4    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .mpls   {1365BE7A-C86A-473C-9A41-C0A6E82C9FA3}  MPC - Mpeg Source (Gabest)
    .nd     {E206E4DE-A7EE-4A62-B3E9-4FBC8FE84C73}  Nero Digital Parser
    .nvavi  {51393094-F0E2-4E34-87A5-25EBC68629EB}  Multi File Reader
    .oga    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .ogg    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .ogm    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .ogv    {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D}  Haali Media Splitter
    .spdif  {F7380D4C-DE45-4F03-9209-15EBA8552463}  AC3File
    .tga    {7DF62B50-6843-11D2-9EEB-006008039E37}  Generate Still Video
    .tta    {ABE7B1D9-4B3E-4ACD-A0D1-92611D3A4492}  DC-Bass Source
    .wtv    {C9F5FE02-F851-4eb5-99EE-AD602AF1E619}  StreamBufferSource
    .wv     {E436EBB5-524F-11CE-9F53-0020AF0BA770}  File Source (Async.)
    .wvc    {E436EBB5-524F-11CE-9F53-0020AF0BA770}  File Source (Async.)

  • How to insert a button on the column header of a table in webdynpro java

    Hi
    Can anyone tell me how to insert a button on the column header of a table in webdynpro java?
    regards
    sunit

    Hi sunit,
    Instead of adding button in the column header , in the column
    add a fixed top cell.
        right click on the column
        Insert FixedTopCell
        Right click on the fixedTopCell
        insert Editor.
       select button.
    then button will be only in the top most row.
    Hope it will satisfy ur requirement
    Regards
    Smitha

Maybe you are looking for