Output and group records into several column format problem

Hi all

I'm banging my head on the wall with this one. I have a query that displays the result in the form of two columns, it works fine.

I have a problem when I try to use "group"for the field DSC1 doesn't show duplicates."  He transforms the output in column 2, column 3 and column 4 spots white all along.

Someone knows how can I get it to display 2 columns of output and does not show in double DSC1 fields? The following are examples of what is happening:


1 example of what he does without group (note to Apple is twice, which is not):

Apples apples

Orange peaches

banannas grapes

What I need to do (only show each DSC1 once and continue with the format of two columns) :

oranges apples

Fisheries banannas

grapes

Here is the code I use:

< cfquery name = "getProduct" datasource = "mydb" >
SELECT * from ecitm
WHERE DSC1 <>' '
order by DSC1

< / cfquery >

<! - start the 2-column output table - >

< table border = "0" width = "90%" border = "0" align = "center" cellpadding = "5" cellspacing = "5" >

< cfset newrow = false

< b >
< cfoutput query = "getProduct" group = "DSC1" >

< cfif newrow EQ "true" >
< b >
< / cfif >
< td >
#DSC1 #.
< cfif DSC2 NEQ "" > "".
< br >
#DSC2 #.
< / cfif >

< br >
< a href = "DetailsList.cfm? ID = #getProduct.ID # & litm = #getProduct.LITM #" > VIEW < /a > DETAILS
< table >

< cfif getProduct.currentRow MOD 2 EQ 0 >
< /tr >
< cfset newrow = true >
< cfelse >
< cfset newrow = false >
< / cfif >


< / cfoutput >
< /tr >
< /table >

The currentRow always property will count the number or records in the record setting loop, if you their output or not.

Since you are not the output values for each record in the Recordset, you must count the itterations yourself.

Put a meter of itteration before the loop.

Update the counter at the top of the loop.

OR on newer versions of CF

Reset the counter in the true clause of the block, where you also define new line. >

Then use the variable in the iit instead the currentRow property to determine the number of items have been posted.

**** OR ****

You could do a simple SQL command does not get duplicates first and then use a loop of simple without any of the grouping and additional logic that you do.



SELECT DISTINCT *
     FROM ecitm
     WHERE DSC1 <> ' '
     ORDER BY DSC1




     #DSC1#
     

    


Tags: ColdFusion

Similar Questions

  • divide a column value and insert it into several columns

    Hello
    am new to plsql.
    I want to divide a characters in a column and insert into multiple columns

    I tried the function substr used the symbol ',' vary its place dynamically, so I can't apply the substr function.


    for example: before split
    col1:
    col2:
    COL3:
    COL4:
    colu5: adsdf, fgrty, erfth, oiunth, okujt



    after separation

    col1: adsd
    col2: fgrty
    COL3: erfth
    COL4: oiunth
    col5: adsdf, fgrty, erfth, oiunth, okujt



    can someone help me

    Thank you

    Published by: 800324 on December 23, 2010 08:28

    Published by: 800324 on December 23, 2010 08:36

    What:

    SQL> create table t
      2  (col1 varchar2(30)
      3  ,col2 varchar2(30)
      4  ,col3 varchar2(30)
      5  ,col4 varchar2(30)
      6  ,col5 varchar2(30)
      7  );
    
    Table created.
    
    SQL> insert into t (col5) values ('adsdf,fgrty,erfth,oiunth,okujt');
    
    1 row created.
    
    SQL> insert into t (col5) values ('x,y');
    
    1 row created.
    
    SQL> insert into t (col5) values ('a,b,c,d');
    
    1 row created.
    
    SQL> select * from t;
    
    COL1                           COL2                           COL3                           COL4                           COL5
    ------------------------------ ------------------------------ ------------------------------ ------------------------------ ------------------------------
                                                                                                                                adsdf,fgrty,erfth,oiunth,okujt
                                                                                                                                x,y
                                                                                                                                a,b,c,d
    
    3 rows selected.
    
    SQL>
    SQL> merge into t a
      2  using ( with t1 as ( select col5||',' col5
      3                       from   t
      4                     )
      5          select substr(col5, 1, instr(col5, ',', 1, 1)-1) col1
      6          ,      substr(col5, instr(col5, ',', 1, 1)+1, instr(col5, ',', 1, 2)- instr(col5, ',', 1, 1)-1) col2
      7          ,      substr(col5, instr(col5, ',', 1, 2)+1, instr(col5, ',', 1, 3)- instr(col5, ',', 1, 2)-1) col3
      8          ,      substr(col5, instr(col5, ',', 1, 3)+1, instr(col5, ',', 1, 4)- instr(col5, ',', 1, 3)-1) col4
      9          ,      rtrim(col5, ',') col5
     10          from   t1
     11        ) b
     12  on ( a.col5 = b.col5 )
     13  when matched then update set a.col1 = b.col1
     14                             , a.col2 = b.col2
     15                             , a.col3 = b.col3
     16                             , a.col4 = b.col4
     17  when not matched then insert (a.col1) values (null);
    
    3 rows merged.
    
    SQL> select * from t;
    
    COL1                           COL2                           COL3                           COL4                           COL5
    ------------------------------ ------------------------------ ------------------------------ ------------------------------ ------------------------------
    adsdf                          fgrty                          erfth                          oiunth                         adsdf,fgrty,erfth,oiunth,okujt
    x                              y                                                                                            x,y
    a                              b                              c                              d                              a,b,c,d
    
    3 rows selected.
    
    SQL> 
    

    Assuming you're on 9i...

  • Divide the line into several columns

    Hi all

    I have a question where I want to divide the line into multiple columns based on the delimiter ' |'.

    Staging of Table structure: People_STG, I have people in it.

    Create table People_STG(col1 varchar2(4000));


    Insert into People_STG(Emp_id|) User name | FirstName. LastName. JobTitle | hire_date | Location_id)


    SELECT REGEXP_SUBSTR ( COL1, '[^,|]+', 1, 1) EMP_ID,
           REGEXP_SUBSTR ( COL1, '[^|]+', 1, 2) USERNAME,
           REGEXP_SUBSTR ( COL1, '[^,|]+', 1, 3) FIRSTNAME,
           REGEXP_SUBSTR ( COL1, '[^,|]+', 1, 4) LASTNAME,
           REGEXP_SUBSTR ( COL1, '[^,|]+', 1, 5) JOBTITLE,
           REGEXP_SUBSTR ( COL1, '[^,|]+', 1, 6) HIRE_DATE,
           REGEXP_SUBSTR ( COL1, '[^,|]+', 1, 7) LOCATION_ID
    FROM PEOPLE_STG
    WHERE length(regexp_replace(COL1, '[^|]', '')) = 14;
    

    But I am facing a problem here, as in some lines, function is null, but when I run the above query, it is not recognizing the empty element and inserting Hire_date values of function and location_id in Hire_date where function is null.

    for example: 1 | akash51 | Akaksh | C | 22/11/14 | 15

    Here the function is null, so when I run top to divide query it will insert 11/22/14 in the function column and 15 in Hire_Date.

    Please need help on this one.

    Oracle Version: 11.2 g

    Thanks in advance,

    Akash.

    There are different techniques to cope with this.  Is a simple...

    SQL > ed
    A written file afiedt.buf

    1 with t as (select 1 | akash51 |) Akaksh | C | 22/11/14 | 15' as col1 of union double all the
    2 Select 2 | akash52 | Akaksh | C | Jobs jobs | 23/11/14 | 15' of the double
    3            )
    4  --
    5. end of test data
    6  --
    7 select trim (REGEXP_SUBSTR (COL1, ' [^, |] +', 1, 1)) EMP_ID,.
    8 toppings (REGEXP_SUBSTR (COL1, ' [^, |] +', 1, 2)) USERNAME,.
    9 garnish (REGEXP_SUBSTR (COL1, ' [^, |] +' 1, 3)) FIRSTNAME,
    10 pads (REGEXP_SUBSTR (COL1, ' [^, |] +' 1, 4)) LASTNAME,.
    11 garnish (REGEXP_SUBSTR (COL1, ' [^, |] +' 1, 5)) JOBTITLE,.
    12 pads (REGEXP_SUBSTR (COL1, ' [^, |] +', 1, 6)) HIRE_DATE,.
    13 garnish (REGEXP_SUBSTR (COL1, ' [^, |] +' 1, 7)) location_id
    14 * from (select replace (col1, ' |)) ',' | as col1 of t)
    SQL > /.

    EMP_ID USERNAME FIRSTNAME LASTNAME, JOBTITLE HIRE_DATE LOCATION_I
    ---------- ---------- ---------- ---------- ---------- ---------- ----------
    1 akash51 Akaksh C 22/11/14 15
    2 akash52 Akaksh C Job 23/11/14 15

  • divide a line into several columns

    Hi all

    I have a csv file with the information that looks like

    Dispatch_id/vendor_id

    --------------------------------

    1234/111

    1234/333

    1234\222

    1 234 111

    1234 111

    "1234/111.

    1234/111

    I want the output to be

    Vendor_id Dispatch_id

    --------------------------------------------

    1234 111

    333 1234

    222 1234

    1234 111

    1234 111

    1234 111

    1234 111

    I tried to use REGEXP_SUBSTR like this:

    SELECT REGEXP_SUBSTR('1234/111','[^/]+') DISPATCH_ID,

    VENDOR_ID REGEXP_SUBSTR('1234/111','[^/]+',1,2)

    BY DOUBLE D

    and I got the output

    Vendor_id Dispatch_id

    --------------------------------------------

    1234 111

    What is good!

    But my problem is that I have different delimiters in each line (example: ' \ ',' ',' ', "',)

    How can I mention all these delimiters in query REGEXP_SUBSTR?

    Or

    Is there another way I can write a simple query?

    Please help me!

    1058268 wrote:

    Hi all

    I have a csv file with the information that looks like

    Dispatch_id/vendor_id

    --------------------------------

    1234/111

    1234/333

    1234\222

    1 234 111

    1234 111

    "1234/111.

    1234/111

    I want the output to be

    Vendor_id Dispatch_id

    --------------------------------------------

    1234 111

    333 1234

    222 1234

    1234 111

    1234 111

    1234 111

    1234 111

    I tried to use REGEXP_SUBSTR like this:

    SELECT REGEXP_SUBSTR('1234/111','[^/]+') DISPATCH_ID,

    VENDOR_ID REGEXP_SUBSTR('1234/111','[^/]+',1,2)

    BY DOUBLE D

    and I got the output

    Vendor_id Dispatch_id

    --------------------------------------------

    1234 111

    What is good!

    But my problem is that I have different delimiters in each line (example: ' \ ',' ',' ', "',)

    How can I mention all these delimiters in query REGEXP_SUBSTR?

    ...

    Sure.

    "[^ /]" refers to all characters except ' / ' "

    ' [^ /------"]': the set of all characters except" / ', ' \' "' (single quote) or" "(space).  So, if you can list all the possible delimiters, just put them all inside square brackets, like this:

    SELECT REGEXP_SUBSTR (combined_id, "[^ / \"]' 1, 1 ") AS dispatch_id - omit the last 2 arguments, if you want

    , REGEXP_SUBSTR (combined_id, "[^ / \"]', 1, 2 ") AS vendor_id

    FROM table_x;

    If you would care to post CREATE TABLE and INSERT instructions for some examples of data, then I could test it.

    If it's easier to display the characters which may not be delimiters, then lose the ^ right after ' ['.]  For example

    "[0123456789]" which is equivalent to

    '[0-9]' and is also equivalent to

    "[[: digit:]]"

  • SQL to group records and apply logic to pick up a record of each group

    Hi friends,

    I am looking for a query group records on some columns in a table and then each group I want to take just a single folder according to certain rules.

    Could have given arranged at will to make my point more clear for you. Here you go:
    CREATE TABLE AD_LIST
    (
      FILE_NAME             VARCHAR2(50 BYTE),
      ACTIVITY_START        DATE,
      ACTIVITY_END          DATE,
      DIVISION              VARCHAR2(50 BYTE),
      ITEM_CODE             VARCHAR2(50 BYTE),
      MULT                  NUMBER,
      RETAIL                NUMBER,
      AD_PAGE               VARCHAR2(1 BYTE),
      FORECAST              NUMBER,
      MEMO                  VARCHAR2(50 BYTE)
      );
    
    INSERT INTO AD_LIST VALUES ('FILE_1','01-APR-2010','15-APR-2010','B',1111,5,10,'A',10,'This must be in my result');
    INSERT INTO AD_LIST VALUES ('FILE_1','01-APR-2010','15-APR-2010','B',1111,1,1,'B',15,'Must not be in my result');
    INSERT INTO AD_LIST VALUES ('FILE_1','01-APR-2010','15-APR-2010','B',1111,6,15,'C',11,'Must not be in my result');
    
    INSERT INTO AD_LIST VALUES ('FILE_1','16-APR-2010','30-APR-2010','N',1111,4,20,'D',40,'Must not be in my result');
    INSERT INTO AD_LIST VALUES ('FILE_1','16-APR-2010','30-APR-2010','N',1111,5,15,'E',30,'Must not be in my result');
    INSERT INTO AD_LIST VALUES ('FILE_1','16-APR-2010','30-APR-2010','N',1111,1,2,'F',20,'This must be in my result');
    
    CREATE TABLE PAGE_RANK
    (
      AD_PAGE VARCHAR2(1 BYTE),
      RANK NUMBER
    );
    
    INSERT INTO PAGE_RANK VALUES ('A',1);
    INSERT INTO PAGE_RANK VALUES ('B',2);
    INSERT INTO PAGE_RANK VALUES ('C',3);
    INSERT INTO PAGE_RANK VALUES ('D',4);
    INSERT INTO PAGE_RANK VALUES ('E',5);
    INSERT INTO PAGE_RANK VALUES ('F',6);
    COMMIT;
    
    SELECT * FROM AD_LIST
    
    FILE     ACTIVITY     ACTIVITY          ITEM               AD
    NAME     START          END          DIV     CODE     MULT     RETAIL     PAGE     FORECAST     MEMO
    -----     --------     ---------     ---     ----     ----     -----     ----     ------     -----------------------     
    FILE_1     4/1/2010     4/15/2010     B     1111     5     10     A     10     This must be in my result
    FILE_1     4/1/2010     4/15/2010     B     1111     1     1     B     15     Must not be in my result
    FILE_1     4/1/2010     4/15/2010     B     1111     6     15     C     11     Must not be in my result
    FILE_1     4/16/2010     4/30/2010     N     1111     4     20     D     40     Must not be in my result
    FILE_1     4/16/2010     4/30/2010     N     1111     5     15     E     30     Must not be in my result
    FILE_1     4/16/2010     4/30/2010     N     1111     1     2     F     20     This must be in my result
    Now, the AD_LIST table I want to group records based on FILE_NAME, ACTIVITY_START, ACTIVITY_END, DIVISION, ITEM_CODE.
    So, in my example here, we have 2 grouped recordset based on the specified columns.

    Also, we have a table, PAGE_RANK, who has a rank corresponding to each issue of ad_page. 1. This is a rank higher than 2. This is why page ad 'A' takes precedence over 'B '. The same for all the other pages of ads.

    Now, we need to choose an announcement of each ad group in determining page ad rank higher within the Group and the value of mult and retail should be replaced by the value that has min(retail/mult). So, using the above data we will have with the full-page ad = 'A' and ad = page had ' as final results since they have the highest grade of advertising page in their group.
    The value of values mult and details of ad_page 'A' = min (10/5, 1/1, 15/6) = 1,1(mult,retail).
    The value of values mult and detail of ad_page would be ' = min (20/4, 15/5, 2/1) = 1,2(mult,retail).

    Finally I have this query below
    SELECT a.file_name,
           a.activity_start,
           a.activity_end,
           a.division,
           a.item_code,
           FIRST_VALUE (a.mult) OVER (PARTITION BY a.file_name, a.activity_start, a.activity_end, a.division, a.item_code ORDER BY (a.retail /
                                                                                                                                    a.mult))
                                                                                                        mult,
           FIRST_VALUE (a.retail) OVER (PARTITION BY a.file_name, a.activity_start, a.activity_end, a.division, a.item_code ORDER BY (a.retail /
                                                                                                                                      a.mult))
                                                                                                      retail,
           FIRST_VALUE (a.ad_page) OVER (PARTITION BY a.file_name, a.activity_start, a.activity_end, a.division, a.item_code ORDER BY (b.RANK))
                                                                                                     ad_page,
           a.forecast,
           a.memo                                                                                                 
      FROM ad_list a, page_rank b
     WHERE a.ad_page = b.ad_page
    This query is giving me all the records, but with the values of what I wanted in the columns Ad_Page, Mult, and retail.
    How can I take only one of each group.

    I get this
    FILE     ACTIVITY     ACTIVITY          ITEM               AD
    NAME     START          END          DIV     CODE     MULT     RETAIL     PAGE     FORECAST     MEMO
    -----     --------     ---------     ---     ----     ----     -----     ----     ------     -----------------------     
    FILE_1     4/1/2010     4/15/2010     B     1111     1     1     A     15     Must not be in my result
    FILE_1     4/1/2010     4/15/2010     B     1111     1     1     A     10     This must be in my result
    FILE_1     4/1/2010     4/15/2010     B     1111     1     1     A     11     Must not be in my result
    FILE_1     4/16/2010     4/30/2010     N     1111     1     2     D     20     This must be in my result
    FILE_1     4/16/2010     4/30/2010     N     1111     1     2     D     30     Must not be in my result
    FILE_1     4/16/2010     4/30/2010     N     1111     1     2     D     40     Must not be in my result
    But I want this
    FILE     ACTIVITY     ACTIVITY          ITEM               AD
    NAME     START          END          DIV     CODE     MULT     RETAIL     PAGE     FORECAST     MEMO
    -----     --------     ---------     ---     ----     ----     -----     ----     ------     -----------------------     
    
    FILE_1     4/1/2010     4/15/2010     B     1111     1     1     A     10     This must be in my result
    FILE_1     4/16/2010     4/30/2010     N     1111     1     2     D     20     This must be in my result
    I have to run this query for thousands of such combination of group.
    Hope someone can shed some light on this query.

    Thanks in advance,
    Raj.

    Hello

    This is called a Query Top - N .

    How do you determine which line of each group you want to display?
    If this is the line with forecasts as low, then:

    WITH   got_r_num     AS
    (
    SELECT a.file_name,
           a.activity_start,
           a.activity_end,
           a.division,
           a.item_code,
           FIRST_VALUE (a.mult) OVER (PARTITION BY a.file_name, a.activity_start, a.activity_end, a.division, a.item_code ORDER BY (a.retail /
                                                                                                                                    a.mult))
                                                                                                        mult,
           FIRST_VALUE (a.retail) OVER (PARTITION BY a.file_name, a.activity_start, a.activity_end, a.division, a.item_code ORDER BY (a.retail /
                                                                                                                                      a.mult))
                                                                                                      retail,
           FIRST_VALUE (a.ad_page) OVER (PARTITION BY a.file_name, a.activity_start, a.activity_end, a.division, a.item_code ORDER BY (b.RNK))
                                                                                                     ad_page,
           a.forecast,
           a.memo,
           ROW_NUMBER () OVER ( PARTITION BY  a.file_name
                                   ,                  a.activity_start
                       ,            a.activity_end
                       ,            a.division
                       ,            a.item_code
                       ORDER BY       a.forecast
                     )      AS r_num
      FROM ad_list a, page_rank b
     WHERE a.ad_page = b.ad_page
    )
    SELECT file_name,
           activity_start,
           activity_end,
           division,
           item_code,
           forecast,
           mult,
           retail,
           ad_page,
           memo
    FROM   got_r_num
    WHERE  r_num     = 1
    ;
    

    If it is something else, then change the ORDER BY clause in the ROW_NUMBER function.

  • How to load several columns of data into Essbase

    Hello!

    I need to download a flat in Essbase data file, but this file contains data for each month in a separate column (Jan, Feb and March), it has several columns of data in the source file, while the DATA reversed Essbase data store is a fact with a column of the data table. So I'm stuck on the way in this case to map more than one column of data in the source file to column 1 of the target data.

    Thank you very much!

    When yo reversed your essbase data model in the RKM there will be an option called SEVERAL COLUMNS of DATA (no default value), this must be set to yes. Then, there are 2 other options that need to be addressed DATA_COLUMN_DIMENSION which is the name of the dimension that you load multiple values to in your case period. Then in the next option DATA_COLUMN_MEMBERS specify you a comma list of members separated... column data required i.e. Jan, Feb, Mar etc. Now when you reverse the model, you will have several column data members

  • I tried to download a pdf and convert them into excel, but the data in excellent is always to the image format.  How can I get the pdf data into the columns and rows?

    I tried to download a pdf and convert them into excel, but the data in excellent is always to the image format.  How can I get the pdf data into the columns and rows so that I can do the calculations?

    If you start the https://forums.adobe.com/welcome Forums Index

    You will be able to select a forum for the specific Adobe products you use

    Click on the symbol "arrow down" on the right (where it is said to see all our products and Services) to open the drop-down list and scroll

  • I want to copy a picture of the paint and paste it into an email. System always told me that it records to the Clipboard.

    original title: Clipboard

    I want to copy a picture of the paint and paste it into an email.  System always told me that it records to the Clipboard.  Where can I get this Clipboard so that I can paste the photo?   Thank you.

    Hello

    CTRL + C copies to the Clipboard.

    CTRL + V paste it from the Clipboard.

    These FREE utilities will help in the use of the Clipboard.

    InsideClipBoard - free - whenever you have something to copy to the Clipboard to paste in another
    application, the copied data is saved in several formats. The main application of Windows Clipboard
    only display the basic Clipboard, like text and bitmaps formats, but only displays the list of all formats
    which are stored in the Clipboard. InsideClipboard is a small utility that displays the binary content of all
    formats that are currently stored in the Clipboard and allow to save the content of specific format
    in a binary file.
    http://www.NirSoft.NET/utils/inside_clipboard.html

    Another useful utility free allowing you to clear the Clipboard.

    ClipBoard Viewer - free - look inside your Windows Clipboard. See what your favorite
    ask, in four different (TXT, BMP, WMF and DIB) data format. This handy tool can also
    Clears the Clipboard. New version 2.0: now go to the Windows system tray! http://www.KarenWare.com/PowerTools/ptclpvue.asp

    I hope this helps and happy holidays!

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • Data trimming and split it into columns for csv

    Hello

    I'm pretty new to CF but usually work with php. I help with a site to create an export csv of records. I am able to export csv without problem. This file is provided to a third party who asked for this format.

    I need to take a field that contains the data:

    EDUDIRECT or

    EDUINDIRECT

    and others

    and strip the first three characters and place it in a single column and take the rest and place it in another column. Is there a CF function or a command that will allow me to do this?

    We will always remove the first 3 and the rest goes elsewhere.

    Col1 Col2

    ONLINE EDU

    Thanks for your help.

    Most databases have string like left(), right(), and substring() functions. (The correct syntax is database dependent of course). So, you could either divide the values in your database query or use the string of CF functions. CF, you can use a combination of these functions:

    Left() to enter the first 3 characters

    Right() and LEN() to catch those remaining (or possibly the MID function as well)

    http://help.Adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6a 3a.html

    Post edited by: == cfSearching == -.

  • How to make a record that I downloaded on my computer and to make into smaller files so that I'd be able to send them an existing voice mail? From now on, the file is large to send

    How to make a record that I downloaded on my computer and to make into smaller files so that I'd be able to send them an existing voice mail? From now on, the file is large to send.

    Hi kristieann,

    ·         What version of the operating system is installed on the computer?

    You can search for any third-party application, using your favorite search engine to split the recording file.

    Note: Using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

  • I have video saved in my phone as .3GPP and unable to pay in my PC. How to convert it into a common format so that I can share it with my friends

    I veod .3gpp format how to convert it into an appropriate format

    Hi Das,

    Thank you for using Microsoft answers Forums!

    Can I play this type of file in Windows Media Player?

    The .3GPP is a type of media file that is not supported by the player, unless you acquire additional software:

    3GPP multimedia. Ringtone/video files with .3gp file name extensions are usually present on Windows Mobile devices. You can download DirectShow on Internet filters that allow you to play the ringtone file in the drive. Remember, however, that some filters can introduce instability with your computer or programs in general. Ensure that the filters are a reliable supplier of software before downloading.

    You can use your favorite search engine and download DirectShow filters for your computer. You can also search the internet for some third-party software using your favorite search engine to convert the GP 3 or 3 GP player file to a wmp file and install it.

    NOTE: The use of third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

    Hope this information was useful.
    Let me know if it worked.
    All the best!

    Thank you and best regards,
    R uma - Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How I've spread my video into several parts and save each file under different names?

    How I've spread my video into several parts and save each file under different names?

    You are going to need a video editing package to do this, you can not cut just to the top of the video into segments at the file level.

    With an editor, you can then crop the video into segments

  • I just looked at problems with importing files from nikon D810 in LR 5.7 it pop a window saying it can't read the files to work on an imac 27 "yosemite on my mac pro running after several times he finally managed to read files and import them into LR

    I just looked at problems with importing files from nikon D810 in LR 5.7 it pop a window saying it can't read the files to work on an imac 27 "yosemite on my mac pro running after several times he finally managed to read files and import them into LR, I never had this problem before there was a sort of update that could from cause?

    What is the destination folder that the date be underneath?  In the top right it says users who suggests, you try to put the photos on top of your username instead of under your username.  Maybe that's the problem.  So change your folder in the drop-down list at the bottom right of what it should be rather than users, and if you're going to show us the destination of your photos at least scroll through the list of folders down right so that we can see which is the white highlight.

    Here is how mine looks like if I want to put my photos imported under my subfolder users - Steve - photos by date:

  • How to insert new records into master and detail forms.

    Hello

    I cannot have values are inserted in the main view and details at the same time. Scenarios is I a Dept Table (view object-VO1) and employee Table (View Object-VO2) both related to a foreign key, according to HR in Oracle DB XE default schema.

    Now, I want to insert the new record into a table Dept (VO1) and the EMP (VO2) by a new say on page (page 2). There is a button on page 1 with button INSERT. I can only drag "CreateInsert" operation on this button for VO1 and VO2. So only text box for records Dept are allow to insert data, but not the Emp records. Is there a way I can insert data into the tables at the sametime?

    Thank you
    MB

    Hi MuradRabbani,

    You can call programmatically two createInsert operations,

    Add to your pageDef two CreateInsert operations.
    Create a button tha will be master (VO1) insert method call and then call insert for details (VO2) method

    Here is an example of code to call the operations:

    DCBindingContainer dcb = ADFUtils.getDCBindingContainer (); you need the ADFUtils.java and JSFUtils.java classes. You can find them in the sample applications in your JDeveloper.

    OperationBinding oper = dcb.getOperationBinding("CreateInsertVO1");

    Oper.Execute ();

    -NOTE: at this point, you must set the values that compine the ViewLink on the master in the order detail will know where to link the new record there are many ways to do it.
    As solution try to overrdi the method to create on the in the your master vo (VO1) ViewRowImpl
    for example
    @Override
    protected void create (AttributeList attributeList) {}
    front
    attributeList.setAttribute ("NameOfAttribute", valueHere);
    Super.Create (AttributeList);
    }

    ------------------

    After that, you must call the operation for your VO2 detail

    for example

    DCBindingContainer dcb = ADFUtils.getDCBindingContainer ();

    OperationBinding oper = dcb.getOperationBinding("CreateInsertVO2");

    Oper.Execute ();

    The detail record will now automatically have the values of your master.

    Kind regards
    Dimitris.

  • I am running XP and try to delete several RECORDS

    I'm on XP and try to delete several FILES but holding down the Ctrl key and highlighting the first and the last does not seem to work.  Any other ideas?

    To remove all the: select one and Ctrl + A will highlight all. -Delete.
     

    To delete a section: highlight the first one you want to remove. Scroll to last and click while holding down the SHIFT key. -Delete.
     

    To delete several messages that alternate: hold down the CTRL key while you click each message in order to highlight. -Delete.
     

     

Maybe you are looking for

  • MacBook disconnects me after minimize iTunes while the mini Player is open.

    Hi all. I had some problems with iTunes on my late 2011 macbook pro. The iTunes miniplayer is open, minimize the window iTunes disconnects the user. I'm confused as to why. This means that I need to the full iTunes window open during the miniplayer i

  • Battery down for 10 min on Tecra 9000

    My battery will lose its charge after 10 minutes, but if I close the lid of my laptop, it stays 4 hours is a problem with my battery or my laptop please help

  • update system not always finding 4.4 updated for 10 + HD

    Checking everyday for several HD tablets 10 + original delivered 4.3 Android The US release is delayed for this material?

  • BlackBerry Smartphones can not log in blackberry world

    My wife was using the BlackBerry (9780); I now use. I have a BB user account, but when I enter the user name and password, it says Enter the user name associated with this smartphone. » How to remove the name of my wife from the phone and mine associ

  • ISE 802.1 x, LDAP and OSX 10.8.2

    We are in the slow process of establishing ISE to 802. 1 x for all our users. Our Windows are working very well so far with the AD, but or the Mac guys use their own LDAP server. I have properly configured the LDAP in ISE and I am able to authenticat