Need help converting multipe rows in a single row

I want to convert multiple rows into a single row. Oracle version is 10.2
SQL> with abc
  2  as
  3  (select 1 a, 2 b, 3 c from dual union
  4  select 4, 5, 6 from dual)
  5  select * from abc;
         A          B          C
         1          2          3
         4          5          6I want the output as
A      B       C
1,4   2,5    3,6Thanks,
Gangadhar
Edited by: GR on Feb 6, 2012 9:35 PM

GR wrote:
I want to convert multiple rows into a single row. Oracle version is 10.2
SQL> with abc
2  as
3  (select 1 a, 2 b, 3 c from dual union
4  select 4, 5, 6 from dual)
5  select * from abc;
A          B          C
1          2          3
4          5          6I want the output as
A      B       C
1,4   2,5    3,6
You haven't specified if there's a particular order to the data, so I've assumed one...
SQL> ed
Wrote file afiedt.buf
  1  with t as (select 1 a, 2 b, 3 c from dual union
  2             select 4, 5, 6 from dual)
  3  --
  4  -- end of test data
  5  --
  6  select trim(',' from sys_connect_by_path(a,',')) as a
  7        ,trim(',' from sys_connect_by_path(b,',')) as b
  8        ,trim(',' from sys_connect_by_path(c,',')) as c
  9  from (select a,b,c,row_number() over (order by a) as rn from t)
10  where connect_by_isleaf = 1
11  connect by rn = prior rn+1
12* start with rn = 1
SQL> /
A          B          C
1,4        2,5        3,6
SQL>

Similar Messages

  • Need help converting from 4.0 to 2011

    hello,
    Need help converting files from 4.0 to 2011.
    thank you
    Solved!
    Go to Solution.
    Attachments:
    noise source.vi ‏73 KB
    8673D.vi ‏30 KB
    8970 FREQ.vi ‏26 KB

    attached as 8.2, which you can open
    missing some subVIs - not sure if you already have them
    Attachments:
    8673D.vi ‏13 KB
    8970 FREQ.vi ‏11 KB
    noise source.vi ‏24 KB

  • Need help converting a PDF to excel

    Need help converting a PDF to excel, the icon to convert dissappeared suggestions?

    Open the file in Acrobat, use File --> Save As... --> Microsoft Word.
    Mylenium

  • Multiple rows in a single row.

    I want to know how can I store the values of multiple rowe in a single row.for an example..
    machine name    manchine no  frequency   month
    Lathe                  MOO1          yearly         jan
    Lathe                  MOO1          halfyearly   feb
    Lathe                  MOO1         weekly       march and so on
    I want this in a single row..
    like                        jan       feb             march
    Lathe       M001   yearly     halfyearly   weekly.
    and in a single row I want this as per the month specified .
    In my report I have 12 months distribution for each machine.

    Taruna,
    Just make sure understand the scenario correctly. Would you like to store the row in DB like this:
    Lathe MOO1 yearly jan,feb,mar
    then you expect to show in the report like this:
    Lathe MOO1 yearly jan
    Lathe MOO1 yearly feb
    Lathe MOO1 yearly mar
    Yes, you can do it this way, but somehow break the 1st principle of DB schema design - Atomic
    Of course, you need to convert jan,feb,mar into list and display for each row.
    string monthStr = "jan,feb,mar";
    string [] months = monthStr.Split(",");
    Kind Regards
    -Yatsea

  • Mutiple Rows from a Single Row using SQL

    How can i get Multiple rows from a single row using sql ?
    Example : one row contains the complete address separated by delimiter say comma (,) as address1,address2,city,state,zip,country
    I want to split this row and get the output in multiple rows as address1 address2 city state zip country using sql query.
    Thanks,

    Hi,
    The solution above assumes that the |-delimited entries always contain at least one character. If you have a string like
    1 Elm Street|||Sioux City|IA||it will think 'Siuox City' is address2.
    If you have empty entries, like that, then you need something a little more complicated:
    INSERT INTO table2
    (       address1
    ,     address2
    ,     address3
    ,     city
    ,     state
    ,     postal
    ,     country
    SELECT     SUBSTR (REGEXP_SUBSTR ('|' || txt, '\|[^|]*', 1, 1), 2)     -- address1
    ,     SUBSTR (REGEXP_SUBSTR ('|' || txt, '\|[^|]*', 1, 2), 2)     -- address2
    ,     SUBSTR (REGEXP_SUBSTR ('|' || txt, '\|[^|]*', 1, 3), 2)     -- address3
    ,     SUBSTR (REGEXP_SUBSTR ('|' || txt, '\|[^|]*', 1, 4), 2)     -- city
    ,     SUBSTR (REGEXP_SUBSTR ('|' || txt, '\|[^|]*', 1, 5), 2)     -- state
    ,     SUBSTR (REGEXP_SUBSTR ('|' || txt, '\|[^|]*', 1, 6), 2)     -- postal
    ,     SUBSTR (REGEXP_SUBSTR ('|' || txt, '\|[^|]*', 1, 7), 2)     -- country
    FROM     table1
    ;

  • Merging two rows into a single row

    Hi ,
    I wish to merge few columns of tow rows into a single row.
    if i use union it gives two rows as o/p.
    What is the exact sql statement for that?
    Thanks

    Hi Sridhar,
    This is my code for merging and i used union.
    Suggest me good solution.
    CREATE OR REPLACE VIEW INSPECTINT.INSPECT_LOC_TRACKING_RPT_VIEW AS
    SELECT
    VEN_COMPANY_NAME VEN_COMPANY_NAME,
    VEN_COMPANY_NAME_2 VEN_COMPANY_NAME_2,
    VEN_CONTACT_FIRST_NAME VEN_CONTACT_FIRST_NAME,
    VEN_CONTACT_MIDDLE_NAME VEN_CONTACT_MIDDLE_NAME,
    VEN_CONTACT_LAST_NAME VEN_CONTACT_LAST_NAME,
    VEN_ADDRESS_LINE_1 VEN_ADDRESS_LINE_1,
    VEN_ADDRESS_LINE_2 VEN_ADDRESS_LINE_2,
    VEN_CITY VEN_CITY,
    VEN_CNT_COUNTY_CODE VEN_CNT_COUNTY_CODE,
    VEN_STC_STATE_CODE VEN_STC_STATE_CODE,
    VEN_ZIP_CODE VEN_ZIP_CODE,
    VEN_PHONE_NO_1 VEN_PHONE_NO_1,
    VEN_PHONE_EXTN_1 VEN_PHONE_EXTN_1,
    VEN_PHONE_NO_2 VEN_PHONE_NO_2,
    VEN_PHONE_EXTN_2 VEN_PHONE_EXTN_2,
    VEN_FAX_NO_1 VEN_FAX_NO_1,
    VEN_VENDOR_NO VEN_VENDOR_NO,
    VEN_APV_AP_VENDOR_ID VEN_APV_AP_VENDOR_ID,
    VEN_EMAIL_ADDRESS VEN_EMAIL_ADDRESS,
    --all these should be null
    to_number(NULL) PHY_LCN_PARAMETER_ID,
    to_char(NULL) PHY_LCN_CURRENT_ADDRESS_IND,
    to_char(NULL) PHY_LCN_STATUS_CODE,
    to_char(NULL) PHY_LCN_LTY_LOCATION_TYPE,
    to_char(NULL) PHY_LCN_ADT_ADDRESS_TYPE,
    to_char(NULL) PHY_LCN_HOUSE_NO,
    to_char(NULL) PHY_LCN_ADDRESS_LINE_1,
    to_char(NULL) PHY_LCN_ADDRESS_LINE_2,
    to_char(NULL) PHY_LCN_CITY,
    to_char(NULL) PHY_LCN_STC_STATE_CODE,
    to_char(NULL) PHY_LCN_ZIP_CODE,
    to_char(NULL) PHY_LCN_CNT_COUNTY_CODE,
    to_date(NULL) PHY_END_DATE,
    to_number(NULL) PHY_LCN_VEN_VENDOR_ID_GTA,
    to_char(NULL) PHY_LCN_SUB_LOCATION_GTA,
    to_char(NULL) PHY_LCN_DIRECTION_GTA,
    ---all these should be null
    to_char(NULL) LOW_LCN_PARAMETER_ID,
    to_char(NULL) LOW_LCN_CURRENT_ADDRESS_IND,
    to_char(NULL) LOW_LCN_STATUS_CODE,
    to_char(NULL) LOW_LCN_LTY_LOCATION_TYPE,
    to_char(NULL) LOW_LCN_ADT_ADDRESS_TYPE,
    to_char(NULL) LOW_LCN_HOUSE_NO,
    to_char(NULL) LOW_LCN_ADDRESS_LINE_1,
    to_char(NULL) LOW_LCN_ADDRESS_LINE_2,
    to_char(NULL) LOW_LCN_CITY,
    to_char(NULL) LOW_LCN_STC_STATE_CODE,
    to_char(NULL) LOW_LCN_ZIP_CODE,
    to_char(NULL) LOW_LCN_CNT_COUNTY_CODE,
    to_char(NULL) LOW_LCN_LANDLORD,
    to_number(NULL) LOW_LCN_LANDLORD_PHONE,
    to_date(NULL) LOW_END_DATE,
    to_char(NULL) LOW_LCN_SUB_LOCATION_GTA,
    to_char(NULL) LOW_LCN_DIRECTION_GTA
    FROM LOCATIONS LOC , VENDORS VEN
    WHERE LOC.LCN_VEN_VENDOR_ID_GTA IS NOT NULL
    AND LOC.LCN_VEN_VENDOR_ID_GTA = VEN_VENDOR_ID
    AND LOC.LCN_LTY_LOCATION_TYPE ='AS'
    UNION ALL
    SELECT
    to_char(NULL) VEN_COMPANY_NAME,
    to_char(NULL) VEN_COMPANY_NAME_2,
    to_char(NULL) VEN_CONTACT_FIRST_NAME,
    to_char(NULL) VEN_CONTACT_MIDDLE_NAME,
    to_char(NULL) VEN_CONTACT_LAST_NAME,
    to_char(NULL) VEN_ADDRESS_LINE_1,
    to_char(NULL) VEN_ADDRESS_LINE_2,
    to_char(NULL) VEN_CITY,
    to_char(NULL) VEN_CNT_COUNTY_CODE,
    to_char(NULL) VEN_STC_STATE_CODE,
    to_char(NULL) VEN_ZIP_CODE,
    to_number(NULL) VEN_PHONE_NO_1,
    to_number(NULL) VEN_PHONE_EXTN_1,
    to_number(NULL) VEN_PHONE_NO_2,
    to_number(NULL) VEN_PHONE_EXTN_2,
    to_number(NULL) VEN_FAX_NO_1,
    to_char(NULL) VEN_VENDOR_NO,
    to_char(NULL) VEN_APV_AP_VENDOR_ID,
    to_char(NULL) VEN_EMAIL_ADDRESS,
    decode(lcn_adt_address_type,'P',to_number(LCN_PARAMETER_ID),to_number(NULL)) PHY_LCN_PARAMETER_ID,
    decode(lcn_adt_address_type,'P',LCN_CURRENT_ADDRESS_IND,to_char(NULL)) PHY_LCN_CURRENT_ADDRESS_IND,
    decode(lcn_adt_address_type,'P',LCN_STATUS_CODE,to_char(NULL)) PHY_LCN_STATUS_CODE,
    decode(lcn_adt_address_type,'P',LCN_STATUS_CODE,to_char(NULL)) PHY_LCN_LTY_LOCATION_TYPE,
    decode(lcn_adt_address_type,'P',LCN_ADT_ADDRESS_TYPE,to_char(NULL)) PHY_LCN_ADT_ADDRESS_TYPE,
    decode(lcn_adt_address_type,'P',LCN_HOUSE_NO,to_char(NULL)) PHY_LCN_HOUSE_NO,
    decode(lcn_adt_address_type,'P',LCN_ADDRESS_LINE_1,to_char(NULL)) PHY_LCN_ADDRESS_LINE_1,
    decode(lcn_adt_address_type,'P',LCN_ADDRESS_LINE_2,to_char(NULL)) PHY_LCN_ADDRESS_LINE_2,
    decode(lcn_adt_address_type,'P',LCN_CITY,to_char(NULL)) PHY_LCN_CITY,
    decode(lcn_adt_address_type,'P',LCN_STC_STATE_CODE,to_char(NULL)) PHY_LCN_STC_STATE_CODE,
    decode(lcn_adt_address_type,'P',LCN_ZIP_CODE,to_char(NULL)) PHY_LCN_ZIP_CODE,
    decode(lcn_adt_address_type,'P',LCN_CNT_COUNTY_CODE,to_char(NULL)) PHY_LCN_CNT_COUNTY_CODE,
    decode(lcn_adt_address_type,'P',END_DATE,to_char(NULL)) PHY_END_DATE,
    decode(lcn_adt_address_type,'P',LCN_VEN_VENDOR_ID_GTA,to_char(NULL)) PHY_LCN_VEN_VENDOR_ID_GTA,
    decode(lcn_adt_address_type,'P',LCN_SUB_LOCATION_GTA,to_char(NULL)) PHY_LCN_SUB_LOCATION_GTA,
    decode(lcn_adt_address_type,'P',LCN_DIRECTION_GTA,to_char(NULL)) PHY_LCN_DIRECTION_GTA,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_PARAMETER_ID,to_char(NULL)) LOW_LCN_PARAMETER_ID,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_CURRENT_ADDRESS_IND,to_char(NULL)) LOW_LCN_CURRENT_ADDRESS_IND,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_STATUS_CODE,to_char(NULL)) LOW_LCN_STATUS_CODE,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_LTY_LOCATION_TYPE,to_char(NULL)) LOW_LCN_LTY_LOCATION_TYPE,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_ADT_ADDRESS_TYPE,to_char(NULL)) LOW_LCN_ADT_ADDRESS_TYPE,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_HOUSE_NO,to_char(NULL)) LOW_LCN_HOUSE_NO,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_ADDRESS_LINE_1,to_char(NULL)) LOW_LCN_ADDRESS_LINE_1,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_ADDRESS_LINE_2,to_char(NULL)) LOW_LCN_ADDRESS_LINE_2,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_CITY,to_char(NULL)) LOW_LCN_CITY,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_STC_STATE_CODE,to_char(NULL)) LOW_LCN_STC_STATE_CODE,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_ZIP_CODE,to_char(NULL)) LOW_LCN_ZIP_CODE,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_CNT_COUNTY_CODE,to_char(NULL)) LOW_LCN_CNT_COUNTY_CODE,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_LANDLORD,to_char(NULL)) LOW_LCN_LANDLORD,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_LANDLORD_PHONE,to_char(NULL)) LOW_LCN_LANDLORD_PHONE,
    decode(LCN_ADT_ADDRESS_TYPE,'D',END_DATE,to_char(NULL)) LOW_END_DATE,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_SUB_LOCATION_GTA,to_char(NULL)) LOW_LCN_SUB_LOCATION_GTA,
    decode(LCN_ADT_ADDRESS_TYPE,'D',LCN_DIRECTION_GTA,to_char(NULL)) LOW_LCN_DIRECTION_GTA
    FROM LOCATIONS LOC
    WHERE (LCN_LTY_LOCATION_TYPE ='AS' OR LCN_ADT_ADDRESS_TYPE='D')
    AND LCN_CURRENT_ADDRESS_IND ='Y'
    thanks

  • I am a beginner at Final Cut Pro. Need help converting MPEG-2 to use.

    I am a beginner at Final Cut Pro. I have mpeg-2 video footage that I am trying to import the footage into Final cut, but can't. I understand I need to convert the file format. I am unfamiliar with how to go about the converding file formats and the codec what is the best way to go about converting the file format so I can edit it on Final cut pro?

    Where did the files originate? (How were they created?)
    Some formats can be brought in with the help of plug-ins.
    MPEG Streamclip can usually convert them to Quick Time.
    Russ

  • I need help converting a PDF to a word file. I purchased Acrobat for this purpose?

    I need help using this download. I purchased Acrobat because I need to convert a PDF file to a word file. Can you give me instruction on how to do this.
    Thank you,

    Open the file in Acrobat, use File --> Save As... --> Microsoft Word.
    Mylenium

  • Need help converting quicktime movies into Flash files

    I need to convert a QT, PhotoJPEG compressed, movie file into a .flv format. I have AE 6.5 Standard and it keeps quitting on exporting a SWV file which would could probably get me by with my client. But, again, it errors out saying something like a JPG is busy, or a file is busy.
    I have FlipforMac,a purchased version. But I'm not sure if converting it into a .wmv and then a Flash file is the best route or is even possible.
    Any suggestions or ideas of software that I could purchase??
    ~reicko

    i don't think you have read up on the use of flash video
    (FLV). there's nothing you need that you do
    not already have (except maybe quicktime pro or some other
    video editing program). the FLV exporter
    comes FREE with flash 8. You should be able to open your
    quicktime movie in QT PRO and export to FLV
    format - then use any of the flash playback components for
    FLV files - best bet is to read the help
    docs on this subject and go to the devnet section of
    adobe.com where there are several in-depth
    articles about implementing flash video into your site.
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    rhian wrote:
    > Hi,
    > Thanks for your reply. I am using Flash 8. I've been
    looking into streaming
    > and it's very expensive with quicktime movies, however
    I've found a company
    > that will stream flash movies much more cheaply which is
    why I want to convert
    > it to a flash movie.
    >
    > Sorry are you say that Quicktime Pro allows you convert
    files into flash
    > formats?
    > Rhian
    >

  • Need to modify css for interactive report Single Row view

    I've tried to go through and find the code for the Single Row View css in the interactive reports, but have been unsuccessful so far. I would like to change it so the Grouping headers are larger than the column names that are grouped under them. Does anyone know what style I would need to override in order to accomodate that?
    Thanks!

    Hi,
    In the page's HTML Header, add in something like:
    <style type="text/css">
    .worksheet .worksheet_detail th.group, .worksheet_detail th.group {font-size:18px;}
    </style>
    If you use FireFox, I would recommend getting the FireBug add-in - this allows you to examine the contents of the page and shows the style class names used.
    Andy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Need Help Converting Video

    Hello - I have a couple of separate questions that I need help with.  I know basic FCP.  I have FCP7.  I recently shot a wedding with 2 different cameras.  Both are HiDef Cameras.  1 Camera is a Prosumer Camera where the files were taking off the camera and imported by Final Cut.  The second is a new, home camcorder which saved the files into a hard drive in MPEG 4 format.
    I need to marry the two.  I can import the all the files (from both cameras) directly into the timeline.  But the ones from the camcorder (the mpeg4s) seem to have that "hitchy" feel to them when I play them back.  Also, both types of files (even the ones that were directly imported into Final Cut from the Prosumer Camera) have the "render" lines when they are in the timeline, so I constantly have to render which takes forever. 
    The files that were imported directly into FCP from the ProSumer camera were imported on a different computer with a different version of FCP, so when I drag them into my timeline it tells me that they were from a different version and asks me if I want to update for my version.  If I click YES then it stretches the files from 16:9 to 4:3.  If I say NO then it keeps the 16:9 aspect ratio, but adds yet another layer of render I need to do.
    Normally I do simple, Standard Def edits where I import things into the timeline via FCP7 with firewire from a deck and edit directly from there, then firewire back to the deck.  Simple - no rendering, etc.  My questions are as follows:
    1 - Do I need to reset my timeline settings because I am now working with HiDef?  Or does FCP automatically know that it is HD and it doesnt matter how I drag it into the timeline?
    2 - Do I need to convert the MPEG 4 files to quicktime format, or does it not make a difference
    3 - When I export, what settings would I use to keep it in HiDef.  I am only going to make DVDs with it.
    4 - Is there a way to do it so that I do not have to render constantly while editing
    5 - To view, I am firewiring out to a deck which is then going into a Standard Def monitor.  Is that the reason the footage appears "hitchy"?
    Any help is greatly appreciated.  If you have any help, please drop me a note at [email protected]
    Thanks

    YOu need to learn how to use FCP.  Sorry, no offense needed, and I know it sounds harsh. But from reading that I can tell you have no idea about how to properly import tapeless media into FCP...and don't know what formats FCP works with...nor know what formats the cameras record.  This is all basic stuff you need to know before you edit.  Editing isn't only creative, but lately highly technical as well...you need to know what your software is capable of doing, and how to get the footage into it properly. 
    You cannot do what you did...directly drag from the cameras into FCP.  No...it needs to be imported, typically with LOG AND TRANSFER...and converted from the shooting format, which typically isn't natively editable in FCP (want native, use Adobe Premiere...).  It needs to be converted to ProRes.  And yes, the file sizes of ProRes are a LOT bigger than the camera originals.  4-5 times larger.  That's how FCP works.
    Here's a quick tutorial to get you started.  But then I suggest getting to know the editing system better.
    http://library.creativecow.net/ross_shane/tapeless-workflow_fcp-7/1

  • Converting multi-row data to single row

    My source table has one or more records with the same id. My destination table only has one record for each id. I wish to combine the records from my source table to my destination table. I think the following query will show what I'm trying to do:
    update TARGET_TABLE
    set (A)
    =
    (select (case
    when sum(A*FUEL_TYPE_ID) > 2 then 4
    else sum(A*FUEL_TYPE_ID)
    end)
    from SOURCE_TABLE
    group by additive_id)
    where additive_id = NEW_TABLE.additive_idSince I'm currently limited to Apex SQL Commands, the error information is minimalist:
    ORA-01427: single-row subquery returns more than one row
    How should I be doing this?

    Hi tharpa,
    Are u able to relate to this.
    create table emp2 as select * from emp;
      update emp2
      set sal=(
                  select sum(sal)
                   from emp
                   group by deptno)
    where   empno=7839
    -------correct one would be-------
       update emp2 e2
       set sal=(
                 select sum(sal)
                  from emp e1
                  where e1.deptno=e2.deptno
                  group by deptno)
        where   empno=7839
         Hope it helps
    CKLP
    Edited by: CKLP on Apr 11, 2011 5:17 AM

  • Need Help Converting AVI Home Movies to Mpeg without audio and Video Delay.

    I have lots of home movies of my new baby i want to take with me while in Navy training and need help. I have tried 7 movie conversion software programs and it have cost me a lot, but none of them work. Any suggestions please? I leave soon and would like to know as soon as possible please. Thank you so much
    Converting AVI to MPEG on Windows XP OS

    YOu need to learn how to use FCP.  Sorry, no offense needed, and I know it sounds harsh. But from reading that I can tell you have no idea about how to properly import tapeless media into FCP...and don't know what formats FCP works with...nor know what formats the cameras record.  This is all basic stuff you need to know before you edit.  Editing isn't only creative, but lately highly technical as well...you need to know what your software is capable of doing, and how to get the footage into it properly. 
    You cannot do what you did...directly drag from the cameras into FCP.  No...it needs to be imported, typically with LOG AND TRANSFER...and converted from the shooting format, which typically isn't natively editable in FCP (want native, use Adobe Premiere...).  It needs to be converted to ProRes.  And yes, the file sizes of ProRes are a LOT bigger than the camera originals.  4-5 times larger.  That's how FCP works.
    Here's a quick tutorial to get you started.  But then I suggest getting to know the editing system better.
    http://library.creativecow.net/ross_shane/tapeless-workflow_fcp-7/1

  • Need Multiple rows in a single Row in ALV

    Hi Experts,
    Here is the example which i want to implement. Please suggest the best.
    This is what I have now in ALV.
    ID            Name         ActionType                    ActionDt
    1             aaa            Joining                            01.02.2011
    1             aaa            Seperation                      05.05.2011
    2             bbb            Joining                            01.04.2011         
    2             bbb            Seperation                      25.05.2011
    This is what I need.
    ID      Name         ActionDt              ActionType(Join)           ActionDt             ActionType(Seperation)
    1       aaa            01.02.2011          Joining                          05.05.2011              Seperation
    2       bbb            01.04.2011          Joining                          25.05.2011              Seperation  
    Thanks in Advance,
    Dinesh
    Moderator message : Spec dumping is not allowed, search for available information or show the work you have already done. Thread locked.
    Edited by: Vinod Kumar on Aug 19, 2011 2:06 PM

    Hi,
    Here are the steps how you can do it.
    1. Create a table.
    2. In the Library palette, click the Standard category and drag the Table object into a cell in the main table.
    Note: If you selected Donu2019t Show This Again in the Insert Table dialog box, when you select the Table object from the Library palette, LiveCycle Designer automatically inserts a table with the same number of columns and rows that you inserted the last time you used the Insert Table dialog box.
    3. In the Insert Table dialog box, enter the number of columns and rows. You can enter a maximum of 20 columns and 50 rows. You can add more columns and rows after the table is created by using the Insert commands on the Table menu.
    4. To add a header row, select Include Header Row In Table.
    5. To add a footer row, select the Include Footer Row In Table.
    6. Click OK.
    Regards
    Runal

  • Need help converting photo jpg to a video file.

    So I have a 6 minute animation that was sent to me as a series of photo-jpgs. I need to convert them to a video file rather than a huge sequence of stills so I can add some transitions. The images are 1920 by 1080. I don't want to compress them at all until the final render. What sequence settings should I use and how should I export? I know there a billion and two different ways to do this but for some reason I keep screwing it up.
    Jon

    As long as the images are sequentially numbered, 001, 002 etc,
    1. open up QT Pro and import as a still image sequence and save is as an animation codec.
    2. create a sequence using the animation codec as the basis, import all the images and drop them into the timeline.
    Recognize that the animation codec requires a huge bit of horsepower and disk throughput to edit in real time.
    x

Maybe you are looking for

  • Dump During Creation of Material

    Hi, I faced this dump whenever  I tried to create a material in SD (MM01). In the error log, the function module: CRM_GET_TRANSFER_STRUCT is call, but when I check this function module using Txcode: SE37, this function module is not maintained ( mean

  • SOAP scenario "Do not use SOAP Envelope" check problems

    Hi Gurus! I'm again here. I've an scenario with SOAP Receiver, the WS do I need consume, looks like: POST /SumTotalws1/services/Authentication.asmx HTTP/1.1 Host: xxx.xxx.xxx.xxx Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction

  • Learning Java proxies - landscape question

    Hi guys, I could use a little help to learn Java Proxies, I'm just starting to get familiar with Java, I'm coming from the ABAP side. First and foremost what do I need from the system point view? We have an XI box and using file/FTP/IDoc adapters and

  • Web service proxy on security issue

    Using jdeveloper 11g R1(11.1.1.2.0)+fusion middleware em : 1.I protected a web service with wss policy of wss_user_name_token_service_policy then deployed to in independent WLS 10.3.2 2.Created a web service proxy with wss policy of wss_user_name_tok

  • Can I upgrade from Mountain Lion to Yosemite if I didn't upgrade to Mavericks?

    I didn't upgrade to Mavericks. Can I still upgrade to Yosemite from Mountain Lion? If not, where an I get a Mavericks? Thanks!