Need to query to get the Menu - to submenu and functions attached to a responsibility

Hello

I have this same need, but a higher level: application Menu, submenu, function, responsibility,


I appreciate any pointers people gave many discussions, but so far I have not found one that led to an answer.

Here's what I have implemented so far. I still need help with it.

Yes, I am new, any help is appreciated, thanks,
C


-MATRIX of RESPONSIBILITIES version 7
-need to check: these are all assets / Exclusions are excluded, if functions can be added?

SELECT DISTINCT fr.application_id "App ID",
"App name", fat.application_name
FRT.responsibility_name,
f.menu_id,
f.user_menu_name "main Menu."
FME.entry_sequence "Seq"
fMet.prompt "guest."
-"Function."
F2.user_menu_name "submenu."
FME2.entry_sequence "Seq Sub."
fmet2.prompt 'Sub Menu fast. "
-"Submenu function."
fmet2. Description "Sub description."
FME2.grant_flag,
ffft.function_id,
ffft.user_function_name "Function_Description"
DECODE (fme.sub_menu_id, NULL,
"FUNCTION."
DECODE (fme.function_id, NULL, "BOTH", "Submenu")
) TYPE-needs work

FROM fat apps.fnd_application_tl.
Apps.fnd_user fu,
Apps.fnd_user_resp_groups urg,
Apps.fnd_responsibility en,
Apps.fnd_responsibility_tl frt,
Apps.fnd_form_functions_tl ffft,

Apps.fnd_menus_vl f,
Apps.fnd_menus fm,
Apps.fnd_menu_entries fme,
Apps.fnd_menu_entries_tl fmet,

Apps.fnd_menus_vl f2,-note recursive table calls for the submenu record
Apps.fnd_menus fm2,
Apps.fnd_menu_entries wwf2,
Apps.fnd_menu_entries_tl fmet2

-the joints and the standard selection criteria
WHERE 1 = 1
AND fme.function_id = ffft.function_id (+)

AND fu.user_id = urg.user_id
AND urg.responsibility_id = fr.responsibility_id
AND urg.responsibility_application_id = fr.application_id
AND fr.application_id = fat.application_id
AND fr.responsibility_id = frt.responsibility_id
AND fr.application_id = frt.application_id

AND f.menu_id = fr.menu_id
AND fr.menu_id = fm.menu_id
AND fm.menu_id = fme.menu_id
AND fme.menu_id = fmet.menu_id
AND fme.entry_sequence = fmet.entry_sequence

call - recursive for get info menu SUP
AND f2.menu_id = fm2.menu_id
AND fm2.menu_id = fme.sub_menu_id
AND fm2.menu_id = fme2.menu_id
AND fme2.menu_id = fmet2.menu_id
AND fme2.entry_sequence = fmet2.entry_sequence

AND fmet.language = 'en '.
AND fmet2.language = 'en '.

-ESTABLISH CRITERIA SPECIFIC HERE
AND IN fr.application_id (8401, 140)-id App 8401 = PSB 140 = active
- AND fr.application_id = 140 and frt.responsibility_name = 'Active Fixed survey'
- AND f.user_menu_name = 'FA_MAIN. '
- AND fmt2.user_menu_name = "PSB_NAVIGATE_SUPERUSER" Add fnd_menus_tl

ORDER BY 1,2,3,4,5,6,7,8,9,10,11;

OK, this meets our audit requirements.

It shows what is current and has the right-hand columns showing what is finished or excluded.

-The matrix of the request, responsibility, Menu, guest, function, SubFunction, submenu
-which indicates the date of end of resposibility and exclusions

Select second.application_id "App ID"
, second.application_name "App name".
second.responsibility_id "RESP ID"
, second.responsibility_name 'responsibility '.
second.menu_id "Menu ID"
second.user_menu_name 'Name of main Menu'
, second.entry_sequence "Seq".
, second.prompt 'guest '.
, second.function_id "function ID".
, second.user_function_name 'function '.
second.func_descrip 'Function description'
, second.sub_menu_id 'the submenu ID.
, second.sub_menu_name 'the submenu name.
second.sub_seq "Sub Seq"
, second.sub_prompt 'SubPrompt '.
, second.sub_func_id 'ID SubFunction.
, second.sub_func "sub-function.
second.sub_func_descrip "Business line description"
, second.sub_sub_menu_id 'Sub-sous-menu ID ".
second.grant_flag "Grant Flag"
, second.resp_end_date "RESP-End Date.
, decode (exc.rule_type, 'F', (select "Ex F:' |")) exc.action_id
of fnc fnd_form_functions_vl
where fnc.function_id = exc.action_id
and second.function_id = exc.action_id
)
) Excluded_Function
, decode (exc.rule_type, 'F', (select "SF Ex: ' |")) exc.action_id
of fnc fnd_form_functions_vl
where fnc.function_id = exc.action_id
and second.sub_func_id = exc.action_id
)
) Excluded_Sub_Function
, decode (exc.rule_type, I ', (select "Ex M:' |")) exc.action_id
of fnc fnd_form_functions_vl
where fnc.function_id = exc.action_id
and second.menu_id = exc.action_id
)
) Excluded_Menu
, decode (exc.rule_type, I ', (select "Ex SM:" | ")) exc.action_id
of fnc fnd_form_functions_vl
where fnc.function_id = exc.action_id
and second.sub_menu_id = exc.action_id
)
) Excluded_Sub_Menu
, decode (exc.rule_type, I ', (select "Ex SSM: ' |")) exc.action_id
of fnc fnd_form_functions_vl
where fnc.function_id = exc.action_id
and second.sub_sub_menu_id = exc.action_id
)
) Excluded_Sub_Sub_Menu

Of
(select first.application_id
first.application_name
first.responsibility_id
first.responsibility_name
first.end_date as resp_end_date
first.menu_id
first.user_menu_name
first.entry_sequence
first.prompt
first.function_id
ffft.user_function_name
ffft.description as func_descrip
first.sub_menu_id
fmv2.user_menu_name as sub_menu_name
fme2.entry_sequence as sub_seq
fmet2.prompt as sub_prompt
fme2.function_id as sub_func_id
ffft2.user_function_name as sub_func
ffft2.description as sub_func_descrip
fme2.sub_menu_id as sub_sub_menu_id
first.grant_flag

Of
(
Select fat.application_id
fat.application_name
fr.responsibility_id
frt.responsibility_name
fr.end_date
fr.menu_id
fmv.user_menu_name
fme.entry_sequence
fmet.prompt
fme.sub_menu_id
fme.function_id
fme.grant_flag
                    
fat apps.fnd_application_tl
apps.fnd_responsibility en
apps.fnd_menus_vl JVM
apps.fnd_responsibility_tl frt
apps.fnd_menu_entries fme
apps.fnd_menu_entries_tl fmet

-the joints and constant selection
where fat.application_id = fr.application_id (+)
and fr.menu_id = fmv.menu_id (+)
and fr.responsibility_id = frt.responsibility_id (+)
and fr.menu_id = fme.menu_id (+)
and fme.menu_id = fmet.menu_id (+)
and fme.entry_sequence = fmet.entry_sequence (+)
and fmet.language = 'en '.

--------------------------------------
-Add the specific selection criteria-
--------------------------------------
- and fat.application_id = 8401 - for DEVL 19080 lines
- and fr.responsibility_id = 51856
fat.application_id = & AppID

order by 1,2,3,4,5,6,7,8,9,10,11,12

) firstly - for info in the main menu, the responsibility and the application
         
apps.fnd_menus_vl fmv2 - for the submenu record
apps.fnd_menu_entries wwf2
apps.fnd_menu_entries_tl fmet2

apps.fnd_form_functions_tl ffft - for service info
apps.fnd_form_functions_tl ffft2 - FYI SubFunction
           
-left outer joins keep of the original disks and add any information menu and void function
where first.function_id = ffft.function_id (+)
and first.sub_menu_id = fmv2.menu_id (+)
and first.sub_menu_id = fme2.menu_id (+)
and fme2.menu_id = fmet2.menu_id (+)
and fme2.entry_sequence = fmet2.entry_sequence (+)
and fme2.function_id = ffft2.function_id (+)

order of 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21

) second - adds Info menu and void function

Join external apps.fnd_resp_functions exc - of exclusions to the left
on (second.application_id = exc.application_id
and second.responsibility_id = exc.responsibility_id
and (second.function_id = exc.action_id
or second.sub_func_id = exc.action_id
or second.menu_id = exc.action_id
or second.sub_menu_id = exc.action_id
or second.sub_sub_menu_id = exc.action_id
)
)

order of 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21;

Tags: Oracle Applications

Similar Questions

  • When I right click on the desktop and get the menu drop down and go again, the 'Record' option is not available. How can I get that back?

    I tried to solve this problem with "Folder Options" in the control panel of Windows 7 but I did help and I "' reset all the original settings, which did not help either.

    I can't create new folders in any other folder either. Even the "New folder" option in the toolbar does not have what it is supposed to do, namely to create a new folder.

    You have installed chrome? It's looking like a recent update of chromium may be the cause. Here are two patches.

    How to remove and restore the default context Menu items 'New' in Windows 7 and Windows 8
    http://www.SevenForums.com/tutorials/28677-new-context-menu-remove-restore-default-menu-items.html

    If still no joy, see the 'response' by Linda Yan in this thread.
    http://social.technet.Microsoft.com/forums/en-us/w7itprogeneral/thread/97de8a2a-12f2-4381-A409-a78f4ae551cf/#99395761-56de-4a76-8C2A-eab498ad735a

    Tip: When you save the text in Notepad, the default file format is .txt. Replace all files.

  • SQL query to get the NULL records after the last matching flag

    I have a xx1 table with id and flag columns. So I want the data in this table, after the last flag matched. I want that data to id 7 in the rooms. Even if the id 2,3,5 are null flag 'Y' was at 6. ID so I need a query to get the data of the xx1 table after the last correspondence flag (from 7 to 9 id).

    SQL > create table xx1

    2 (identification number,

    3 flag varchar2 (10));

    Table created.

    SQL > insert into xx1 values (1, 'Y');

    1 line of creation.

    SQL > insert into values xx1 (2, null);

    1 line of creation.

    SQL > insert into values xx1 (3, null);

    1 line of creation.

    SQL > insert into xx1 values (4, 'Y');

    1 line of creation.

    SQL > insert into values xx1 (5, null);

    1 line of creation.

    SQL > insert into xx1 values (6, 'Y');

    1 line of creation.

    SQL > insert into values xx1 (7, null);

    1 line of creation.

    SQL > insert into values xx1 (8, null);

    1 line of creation.

    SQL > insert into values xx1 (9, null);

    1 line of creation.

    SQL > select * from xx1.

    FLAG OF THE ID

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

    1. IS

    2

    3

    4. IS

    5

    6. IS

    7

    8

    9

    9 selected lines.

    SQL >

    Hello

    user11164339 wrote:

    Hi Frank - when I run the query, I don't see the results data.

    I get

    FLAG OF THE ID

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

    7

    8

    9

    What you do differently?

  • In my office windows 8.1 settings I'll be able to get the menu and the Start button in windows 7

    I was informed that at the click of a button, I can get the old start button and menu on my desktop windows 8.1. Is it true in this, or I was quite a line by a seller?  Thanks for any help.

    You will need to download the classic interface:

    http://www.classicshell.NET/

  • IOM sql Query to get the status of the failed task

    Hello world

    We have an obligation as we need to get the status of a particular task (say Create User in OID - Completed\Rejected status resource) for the particular user. We are able to get the status of the provisioed of resources to the user but not the status of the special mission which is trigerred for the user.can someone put some light on it. We must have the SQL query to do this.

    Thanks in advance.

    Kind regards
    MKN

    Hello
    Use this query to get the status of the task, also check the cooments

    SELECT USR. USR_LOGIN, OSI. SCH_KEY, ANN. SCH_STATUS, STA. STA_BUCKET OF
    OSI, CHS, STA, MIL, TOS, PKG, OUEDRAOGO, USR, OBJ, OST
    WHERE OSI.MIL_KEY = MIL.MIL_KEY
    AND ANN. SCH_KEY = OSI. SCH_KEY
    AND STA. STA_STATUS = SCH. SCH_STATUS
    AND TOS. PKG_KEY = PKG. PKG_KEY
    AND MIL. TOS_KEY = TOS. TOS_KEY
    AND OUÉDRAOGO. USR_KEY = USR. USR_KEY
    AND OUÉDRAOGO. OST_KEY = OST. OST_KEY
    AND OST. OBJ_KEY = OBJ. OBJ_KEY
    AND OSI. ORC_KEY = OUEDRAOGO. ORC_KEY
    AND OBJ. OBJ_NAME = "User AD".
    AND OST. OST_STATUS = "Provisioning" - filter accordinglly
    AND STA. STA_BUCKET = 'pending' - filter accordinglly
    AND PKG. PKG_NAME = "AD User" - filter accordinglly
    AND MIL.MIL_NAME = 'System' - filter accordinglly Validation
    ;
    Thank you
    Kuldeep

  • How to write a simple select query to get the data of the table as an XML.

    How to write a simple select query to get the data of the table as an XML. In the query, I'm just adding items below which i need be there in the XML document
    select '<test_tag>'||EMP_NAME||'</test_tag>','<date>'||sysdate||'</date>' 
    from temp_table where id_num BETWEEN 1 AND 10;
    I have need to add the root tag as well in the beginning and the end of < root > < / root > this xml file. Please advice if this is possible with the select query
    without using XMLGEN, XMLQUERY or any other packages built and function?

    I need to URL escapes with the UTF-8 code points that we have already achieved using the utl_http package. Please help how to do that without using the utl_http package.

    What is wrong with him?

    At present, the only way I can think of to avoid a call to UTL_HTTP. SET_BODY_CHARSET is to write your own little wrapper.
    In this way, you can specify the Boolean parameter or omit it if you choose to use named parameters:

    SQL> create or replace function my_url_escape (url in varchar2)
      2  return varchar2
      3  deterministic
      4  is
      5  begin
      6   return utl_url.escape(url, false, 'AL32UTF8');
      7  end;
      8  /
    
    Function created
    
    SQL> select my_url_escape('http://some.uri.com/param?lang=fr&text=contrôle') from dual;
    
    MY_URL_ESCAPE('HTTP://SOME.URI
    --------------------------------------------------------------------------------
    http://some.uri.com/param?lang=fr&text=contr%C3%B4le
     
    
  • Need a query to return the first and last date for a rowset.

    Hello

    I have a query which can be simplified to the following data, if
    Assume that it is my dataset, with THE_VALUE of
    Sign (Anum) therefore,-1, 0 or 1.

    * (Sorry for crushed registration. "I can't understand this website's rich text formatting.) *

    THE_VALUE THE_DATE THE_MEMBER
    1 0 1 January 2007
    1 0 1 February 2007
    1 0 1 March 2007
    1. 1 April 1, 2007
    1 1 1 May 2007
    1 0 1 June 2007
    1. 1 July 1, 2007
    1. 1 August 1, 2007
    1 0 01 - sep - 2007
    2 0 1 January 2007
    2 1 February 1, 2007
    2 0 1 March 2007
    2. 1 April 1, 2007
    2 1 1 May 2007
    2 0 1 June 2007
    -2 1 1 July 2007
    2. 1 August 1, 2007
    2. 1 01-sep-2007
    3 0 1 January 2007
    3. 1 February 1, 2007
    3 0 1 March 2007
    3 0 1 April 2007
    3. 1 May 1, 2007
    3 0 1 June 2007
    3. 1 July 1, 2007
    3. 1 August 1, 2007
    3 0 01 - sep - 2007

    I need to get the lines with the THE_MEMBER, the values of the first and the last
    THE_DATE, where the value is - 1, and the date range is the last
    set of lines to the Member, with the same value of THE_VALUE.

    I tried the following to get the dates of first and last for a set
    consecutive months with the same value for the Member.

    SELECT the_member
    the_value
    the_date
    first_value (the_date)
    in the first_date (PARTITION the_member, ORDER BY the_member the_value, the_date)
    last_value (the_date)
    during the last_date (PARTITION the_member, ORDER BY the_member the_value, the_date)
    OF togola
    ORDER BY the_member
    the_date;

    At first, it seems to work, but then, when the return value
    an old value, FIRST_DATE will be the first of all the lines containing
    This value for the Member rather than the first of consecutive
    rows with this value for the Member. Apparently the partitioning
    occurs before the order.

    THE_MEMBER THE_VALUE THE_DATE FIRST DATE LAST DATE
    1 0 January 1, 2007 January 1, 2007 January 1, 2007
    1 0 1 February 2007 1 January 2007 1 February 2007
    1 0 1 March 2007 1 January 2007 March 1, 2007
    1. 1 April 1, 2007 April 1, 2007 April 1, 2007
    1. 1 May 1, 2007 April 1, 2007 may 1, 2007
    1-0 June 1, 2007 January 1, 2007 June 1, 2007
    1. 1 July 1, 2007 April 1, 2007 July 1, 2007
    1. 1 August 1, 2007 April 1, 2007 August 1, 2007
    1 0 01 - sep - 2007 1 January 2007 01-Sep-2007

    2 0 January 1, 2007 January 1, 2007 January 1, 2007
    2 1 1 February 2007 February 1, 2007 February 1, 2007
    2 0 1 March 2007 1 January 2007 March 1, 2007
    2. 1 April 1, 2007 February 1, 2007 April 1, 2007
    2 1 1 May 2007 February 1, 2007 may 1, 2007
    2-0 June 1, 2007 January 1, 2007 June 1, 2007
    -2 1 1 July 2007 February 1, 2007 July 1, 2007
    2. 1 August 1, 2007 February 1, 2007 August 1, 2007
    2. 1 01-sep-2007 1 February 2007 01-Sep-2007

    3 0 January 1, 2007 January 1, 2007 January 1, 2007
    3. 1 February 1, 2007 February 1, 2007 February 1, 2007
    3 0 1 March 2007 1 January 2007 March 1, 2007
    3 0 April 1, 2007 January 1, 2007 April 1, 2007
    3. 1 May 1, 2007 February 1, 2007 may 1, 2007
    3 0 June 1, 2007 January 1, 2007 June 1, 2007
    3. 1 July 1, 2007 February 1, 2007 July 1, 2007
    3. 1 August 1, 2007 February 1, 2007 August 1, 2007
    3 0 01 - sep - 2007 1 January 2007 01-Sep-2007

    That's what I need to get in the end.

    THE_MEMBER FIRST DAY DATE OF LAST
    July 2 1 2007-01 - Sep - 2007

    Any ideas would be really appreciated.

    Published by: user10700981 on December 17, 2008 13:57

    Hello

    We'll call the lines whose the_value =-1 'good' lines and lines with the_value! =-1 ranks of 'bad '.

    For each value of the_value, we need the first and last values of the_date where
    the last row in the group is good
    (b) the current line is good
    (c) there is a lot of lines from the current line to the end of the Group
    Condition (a) is just a special case of (c).
    Conditions (b) and (c) are similar: (b) if applied to the current line, (c) applies to all lines after him. They can easily be combined into a single test that counts the number of lines after the current line or bad.

    Which produces the results you requested of the sample data that you provided:

    WITH     count_bad     AS
    (
         SELECT     the_member
         ,     the_date
         ,     COUNT     ( CASE
                        WHEN  the_value != -1 -- assuming the_value is never NULL
                        THEN  1
                     END
                   ) OVER     ( PARTITION BY     the_member
                          ORDER BY     the_date     DESC
                        )     AS bad_cnt
         FROM     table_x
    )
    SELECT     the_member
    ,     MIN (the_date)     AS first_date
    ,     MAX (the_date)     AS last_date
    FROM     count_bad
    WHERE     bad_cnt     = 0
    GROUP BY     the_member
    ORDER BY     the_member;
    
  • I nned to know the procedure I use to get can Mac 2008 Desk top that will not start. I don't know how to connect two computers, my portable Mac Air 2013 on my desk, now I need to know how get the workstation files in order to appear on my mac air so I can

    Does anyone know how after I connect to my office 2008 Mac (which will not start.) to my computer laptop (2013 Mac Air). What are the steps that I need to know to get the Desktop files is displayed on my mac air so I can copy files to your laptop, especially my Itunes folder.

    Thanks Jerri

    If you can't get the iMac began and ongoing implementation, you will not be able to use the target disk Mode:

    https://support.Apple.com/en-us/HT201462

    Then the option is to take the iMac HARD drive, install it in an enclosed, and connect the HARD drive to the MBA via the USB port.  If the HARD drive is recognized, you can copy the data out of it.

    Ciao.

  • need to get the Service Pack 2 and 3 for XP home

    Recently installed new h-drive. Re-installed XP Home with services Pack 1 a. I need to get the Service Pack 2 and 3, but none of Microsoft download sites will work for me. What should I do to fix this?

    You don't need sp2 (which is a chance, l because the sp2 link no longer works).

    Download sp 3 here: http://www.microsoft.com/en-us/download/details-b.aspx?id=24

    First read this: HOW TO get WinXP SP1 or SP2 fully patched after a 'clean install': http://groups.google.com/group/microsoft.public.windowsxp.general/msg/a066ae41add7dd2b

  • If I create a windows 10 dvd using media creation tool, I need to install to get the free offer before 7/29

    If I create a windows 10 dvd using media creation tool, I need to install to get the free offer before 7/29

    Before Hawaii 2359 time (GMT-10) July 29.

  • need a script to get the news of VMs who believed map

    Hi guys

    I need a script to get the info of VMs who believed the data center map...

    Like this

    name of the virtual machine

    name of the cluster

    ESXi host ip

    name of the disk... (if it is disk 1 or 2)

    name of the data store

    NNA

    I used the script below, but I am unable to store data name, cluster and host Info

    Get-VM| Get-HardDisk-DiskType "RawPhysical","RawVirtual"| SelectParent,Name,DiskType,ScsiCanonicalName,DeviceName | fl

    Please suggest any modified script to get above information..

    Try like this

    Get-VM | Get-HardDisk -DiskType "RawPhysical","RawVirtual" |Select Parent,Name,DiskType,ScsiCanonicalName,DeviceName,  @{N="Datastore";E={$_.Filename.Split(']')[0].TrimStart('[')}},  @{N="VMHost";E={$_.Parent.Host.Name}},  @{N="Cluster";E={Get-Cluster -VM $_.Parent | Select -ExpandProperty Name}}
    
  • I tried to update my Lightroom CC to get the menu effects and fog. Once I did nothing worked! No Lightroom or Photoshop I chatted with adobe online assistance and she finally got both working again but had to wipe everything and reinstall.

    I tried to update my Lightroom CC to get the menu effects and fog. Once I did nothing worked! No Lightroom or Photoshop I chatted with adobe online assistance and she finally got both working again but had to wipe everything and reinstall.  Now I sometimes have a 'demo' of Photoshop and the same version of Lightroom CC without de-haze. In addition, I can't use these programs in offline mode - I have to keep signed in Creative cloud - I don't have this problem before.  Any ideas before once more involved with a cat onlaine?  Thank you...

    Raeburn, if you get the trial version, make sure that you are connected to creative cloud. Here's what you can try.

    • Sign in to creative cloud.
    • Disconnect from the Internet.
    • Try to use Lightroom and check if you get a trial version.

    Note: Please make sure that you are not disconnected from the creative clouds.

    You can check: why I am forced to connect to CC, when I bought a stand-alone license for Lightroom 6?

  • How can I get the menu bar with preview in browser and Code, split Code, design to appear? (DW CC) Accidentally deleted and cannot locate.

    I have accidentally disabled Standard or Document to the menu bar, now I can't locate the Code, code split, preview in browser and others.

    How can I get the menu bar with preview in browser and Code, split Code, design to appear? (DW CC)

    Found.  View > toolbars > Document.

  • Query to get the data of the column and the metadata in the same set of results.

    Is it possible to build a query to get the values of the columns in a table and also be able to get some metadata (data type, data_length, data_precision, data_scale) for columns in the same set of results.

    If I use a join, have a common value to join on the two tables?

    you use a cross join, not requiring common values.

    create table T (n number, d date, v varchar2(30));
    insert into T values (1,sysdate,'ABC');
    commit;
    
    select C.column_name, c.data_type, c.data_length,
    case c.column_id
     when 1 then to_char(T.N)
     when 2 then to_char(T.D)
     when 3 then T.V
    end VALUE
    from USER_TAB_COLUMNS C, T
    where C.table_name='T'
    order by c.column_id;
    
  • I need a query that selects the amount of records for each day of a table.

    I need a query that selects the amount of records for each day of a table.
    For example, the result would be:

    1 14 date
    Date 2-3

    etc.

    Any ideas?

    Sort:

    SELECT count ([IDCommentaire]), convert (varchar, dateAdded, 112)

    OF COMMENTSgroup by convert (varchar, dateAdded, 112)

Maybe you are looking for

  • How are we going to favorite Web sites?

    I like the bookmark pages I like. but I can't go to these favorite Web sites. Please suggest me how can I find these saved pages.

  • I enter the code and it sends me to new Firefox Sync

    I want to synchronize my desktop to my new laptop. I entered the code the two senses, computer laptop and desk laptop on the desktop, type, then the original Firefox Sync page returns to the top.Directions say "see where I can find the code to add a

  • How to change the keyboard on iPad

    iPad 3. iOS 9.0.2 The present layout of the keyboard is QWERTY, but I need to change it for accented AZERTY. I did that in 'General', 'Keyboard', 'keyboards","French","Accentuated QWERTY"and got a tick against this choice It did not work (on screen k

  • Pavilion p6754y: BIOS specifications / features

    I am trying to determine what are the specifications and features of my BIOS. I've recently updated the BIOS most recent for my model (Version 6.11), but I need to know what are my characteristics. Specifically, I need to determine if my motherboard

  • Laptop HP 15-r022tx - Wifi Button doesn't work is not (Bluetooth too)

    Hello team, HP 15 - r022tx Notebook PC button wifi of this model does not work. so I can't connect to internet via wifi. Is there any particular wifi driver to install? My Version of the OS: Win 7 32 bit Note: The Wifi button continues to blink with