Need to know

Hi All,
Please let me know how the ANLU table has updated,
Thanks
Please try to come up with a meaningful title for your question. Everyone needs to know something about something.
And please try to ask a meaningful question. the list of correct answers would include "It is updated through SAP"
Edited by: Rob Burbank on Feb 27, 2009 10:18 AM

Here's a good read: http://en.wikipedia.org/wiki/WRT54G
If you cannot get a hardware version lower than v5 of the G and the GS, I would suggest getting the WRT54GL.

Similar Messages

  • Firefox hangs on opening requiring force quit I have snow leopard mac It hangs when I try safe mode. I need to know how to remove all traces of firefox on my mac so I can reinstall. I have tried terminal as advised on firefox webpage. Please advise m

    Firefox hangs on opening requiring force quit I have snow leopard Mac It even hangs when I try safe mode. I need to know how to remove all traces of firefox on my mac so I can reinstall. I have tried terminal as advised on firefox webpage. Please advise me
    == This happened ==
    Every time Firefox opened
    == I tried to update firefox add-ons ==
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7

    Try a new profile. See [[Recovering important data from an old profile]]

  • HT1918 I need to know how to delete my credit card from account because I know longer have a credit.  I just want to be able to up date my Apps but I can't now because there is a credit card on my account what do I need to delete it.

    I need to know how to delete my credit card from account because I know longer have a credit.  I just want to be able to up date my Apps but I can't now because there is a credit card on my account what do I need to delete it.

    I need to know how to delete my credit card from account because I know longer have a credit.  I just want to be able to up date my Apps but I can't now because there is a credit card on my account what do I need to delete it. Also my credit has expired so i need to delete it.

  • I have a 3g iphone and I need to know how to delete old photos from my phone!! I need the space but there is no way to delete the pictures!! Help!!!

    I have a 3g iPhone and I need to know how to delete old photos. Need to free up space and there is no clear way to delete these photos!! Can someone please let me know how to get rid of these pictures!!!! Help!!!

    There are a number of ways to delete pictures from the Camera Roll.  One is to open Camera Roll in the thumbnail view, tap the arrow button (top right), tap all the pictures you want to delete, tap the Delete button ant the bottom.  Photo Library pictures are deleted by unchecking Sync Photos on the Photos tab of your iTunes sync settings, followed by syncing your phone.

  • I need to know free login for itunes so please provide me necessary information on free procedure of free downloading apps of apple.

    i need to know free login for itunes so please provide me necessary information on free procedure of free downloading apps of apple

    Follow the instructions on this page when creating an account : http://support.apple.com/kb/HT2534

  • I am going to buy a macbook pro for grade 12, and I need to know wheather I should get a macbook pro or a macbook pro retina. If someone could tell me (in a very simple way) which one is,better for me and why, I would be ever so apprreciative.

    I am going to buy a macbook pro for grade 12, and I need to know wheather I should get a macbook pro or a macbook pro retina. If someone could tell me (in a very simple way) which one is,better for me and why, I would be ever so apprreciative.

    Why do you need a expensive MacBook Pro?
    Your attending high school and unless everyone else is rich also your likely going to be a target by the more poorer students for theft or damage to the machine.
    You could keep it home, but if you need it for class then your exposed again.
    Also at that age your not very careful yet, a MacBook Pro is a expensive and easily damaged machine.
    Unless your made of money and so are others at your school, I would recommned a low profile, just does the job cheap Windows PC.
    If it dies, gets lost, stolen or damaged because of your inexperince handling senstivie electronics then it's no big deal.
    You can buy a Mac later on when your sure you have a need for it, currently there isn't much advantage of owning a Mac compared to a PC, they do just about the same things now, one just looks prettier than the other.
    Since 95% of the world uses Windows PC's your going to have to install Windows on the Mac in order to keep your skills up there or be unemployed, so it's a extra headache and expense.
    good luck

  • Need to know what form is attached to a responsibility

    Hi,
    There is a need to know what responsibility in Oracle has access to a given form. All seeded Oracle Reports that I am aware of (Function Security Function Report, Function Security Menu Report, Function Security Navigator Report) require a responsibility be inputted into a parameter in order to run. This is not a feasible option as we have hundreds of responsibilities and we would need to manually review each output for a specific function or form. Does a report or other SQL exist where I do not have to specify a responsibility?
    I have attempted different ways for a custom sql but the difficulty always lies in the exclusions because you need to look in every single menu that has been excluded whether or not a function is attached (need to look at all the submenus). This is difficult because you need to go down the entire menu tree of each excluded menu and I haven't been able to do this.
    Below is the closest I have got for an sql however I am getting 207 results which I know is not correct. I'm wondering if the query when looking at the menu exclusions is not looping at all the menus that are excluded for a given responsbility? Any ideas or suggestions would be greatly appreciated.
    Thanks,
    PJ
    SELECT b.responsibility_name FROM fnd_responsibility_vl b
    /*Get all menus assigned to a responsbility that has a
    specfic function_id based on a form and takes into account function exclusions*/
    WHERE EXISTS (SELECT 1 FROM
    apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM
    FND_FORM_FUNCTIONS_VL WHERE
    form_id = 10397)
    AND c.function_id NOT IN (SELECT action_id from
    fnd_resp_functions frf where frf.application_id = b.application_id
    AND frf.action_id IN (SELECT DISTINCT
    FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    and frf.rule_type='F' AND
    frf.responsibility_id = b.responsibility_id)
    START WITH c.menu_id = b.menu_id CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    /*Do not show any responsibiliy that has a menu in the
    excluded list against the responsbility that has the specified form/function*/
    AND b.end_date IS NULL
    AND NOT EXISTS ( SELECT 1 FROM
    apps.fnd_menu_entries_vl c,
    fnd_resp_functions frf
    WHERE frf.responsibility_id = b.responsibility_id
    and frf.application_id = b.application_id
    and c.menu_id = frf.action_id
    AND frf.rule_type ='M'
    AND c.function_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL
    WHERE form_id = 10397)
    START WITH c.menu_id = frf.action_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)

    Hi Hussein,
    Thank you for the reply.
    For note "How to get information related to forms functions, menus and responsibilities for both 11i and R12 (Doc ID 953934.1)":
    The script for "How to retrieve list of responsibilities and associated menus" (SELECT RESPONSIBILITY_NAME, MENU_ID FROM FND_RESPONSIBILITY_VL;) isn't really giving that as it's just the one menu that is associated with that responsibility (and doesn't look at the menu exclusions).
    For note, "How To get List Of Functions Which Are Setup For A Responsibility? (Doc ID 549100.1)":
    I can already get a list of functions on a particular responsbility and even more so I know what menus use a particular function using the following sql:
    SELECT * FROM apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = <form_id>)
    This note does not help because you would need to do it by responsibility and I have hundreds of responsbilities I would need to search which is why the seeded reports I reference above do not work (you need to specify a responsibility at a time).
    I believe these are two links I need to look at to find what menus are associated and unassociated with a responsbility. In fnd_responsibility_vl, there is the main menu_id that says where this repsonsbility gets all of it's menus. This is where I look first in the first part of my query (b.menu_id is this link to the fnd_responsibility_vl table) :
    --Get all menus assigned to a responsbility that has a specfic function_id based on a form and takes into account function exclusions
    WHERE EXISTS (
    SELECT 1 FROM apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM
    FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    AND c.function_id NOT IN (SELECT action_id from fnd_resp_functions frf where frf.application_id = b.application_id
    AND frf.action_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    and frf.rule_type='F' AND frf.responsibility_id = b.responsibility_id)
    START WITH c.menu_id = b.menu_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    The next link is the "unassociated" link which is the menu exclusions. I'm looking at these exclusions similar to the part above however I don't think it's looking at all of the menus defined in the menu exlusions as my list of responsbilities is more then it should be:
    --Do not show any responsibiliy that has a menu in the excluded list against the responsbility that has the specified form/function
    AND NOT EXISTS (SELECT 1
    FROM apps.fnd_menu_entries_vl c,
    fnd_resp_functions frf
    WHERE frf.responsibility_id = b.responsibility_id
    and frf.application_id = b.application_id
    and c.menu_id = frf.action_id
    AND frf.rule_type = 'M'
    AND c.function_id IN (SELECT DISTINCT FUNCTION_id
    FROM FND_FORM_FUNCTIONS_VL
    WHERE form_id = 10397)
    START WITH c.menu_id = frf.action_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    It needs to be able to look at the menu trees of all of the defined menus that are excluded and find any menu that has that function as defined in the first sql of this post (if it is found in the exclusions then do not show it). However I do not think it is looping through all of the menus defined in the exclusions. Any guidance is greatly appreciated.
    Thanks,
    PJ

  • I need to know all the questions below.  I had to restore my computer to original state and now even if I sign on it won't let me sync my ipad or iphone.  the message is that it is synced to another library and it could wipe out my data on the ipad.

    I need to know all the questions below.  I had to restore my computer to original state and now even if I sign on it won't let me sync my ipad or iphone.  the message is that it is synced to another library and it could wipe out my data on the ipad.  Am I understanding correctly? I am running Windows 7 but have never had any problems.  Thanks

    You need iTunes on the computer. There is no iTunes for your phone. See:
    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    Forgotten Restrictions Passcode Help
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    Also, see iTunes- Restoring iOS software.

  • I need to know the multitude of reason why my iPhone 5s would prompt me for my Apple ID password. Please help.

    I need to know the multitude of reason why my iPhone 5s would prompt me for my Apple ID password.
    All I did was place my phone on the charger, I then walked away for 10-15mins and when I came back it was asking me to enter my Apple ID password.
    I never gave my password out to anyone ever and hardly anyone knows my email address.
    I haven't recently downloaded anything either and I only have one apple device which is my iPhone 5s.
    I just want to know really if it could have been because someone was trying to log into my Apple ID?
    Please help with multiple reasons why this could have happened. I just want to know the options. Thank you

    My iPhone 5s did the same thing yesterday. I have iCloud backup turned on in Settings > iCloud > Storage & Backup and that means it will automatically do a backup when the phone is plugged in, locked and connected to wi-fi. I had it charging and when I returned it was asking for the password and the prompt did identify that it was requesting it for the iCloud backup (something you may not have noticed if you didn't look closely).
    It has never done that before and 2 iPads in my household have not yet done it. All are on iOS 7.1
    I have found a report of the same issue by a user of the 7.1 beta and in that case it was happening every day. In my case I entered the password then went to the same area in Settings as above and used the "Backup Now" button to do a backup. I will see tonight when I charge again whether this is going to be an every day problem.

  • I just need to know how you get an iTunes library off the original hard drive of a mac and onto an external hard drive and still have it work normally?

    I just need to know how you get an iTunes library off the original hard drive of an imac and onto an external hard drive and still have it work as it normally would?

    http://support.apple.com/kb/HT1449

  • I just got my first Apple product (ipod touch) and am needing to know how to transfer music from another itunes list. Can music that is currently on another ipod and/or computer be transferred to my new touch and my new itunes account? Thank you!

      
    Recently purchased my first Apple product (ipod touch) and am needing to know how to transfer music from other ipods and other itunes accounts. Can this be done? I have plugged in another ipod into my new itunes account and it will not let me transfer the music that it contains into my new account. Any/all help is much appreciated. Thank you!

    I have no music in my itunes account yet. I am trying to transfer music from friends' accounts and their ipods/playlists.

  • HELLP!! NEED TO KNOW HOW TO USE TWO IPODS ON ONE COMP!ASAP

    i have an ipod nano and an itunes account. Now my mom has a nano and we need to know if you can register them on the same account and how or any other tips for using two ipods on one comp!
    PLEASE HELP ASAP!
    ZACH

    Hello Zach,
    There are a couple of methods for using more than one iPod on a single computer. Have a look at the article linked below. Method one is to have two Mac or Windows user accounts which by definition would give you two completely separate libraries. Method two is to set your preferences so each iPod is updated with only certain playlists within one library. Have a look anyway and see what you think and go for whichever you feel suits your needs best: How To Use Multiple iPods with One Computer

  • My family put multiple devices on the icloud, and I need to know how to manage duplicate entries.  Specifically contacts.  If I fix the contact list on my pc will it push the info out to the other devices and maintain it correctly?

    My family put multiple devices on the icloud, and I need to know how to manage duplicate entries.  Specifically contacts.  If I fix the contact list on my pc will it push the info out to the other devices and maintain it correctly?

    All devices signed into the same iCloud account will finish up with the same contacts. Of course if prior to joining iCloud two family members each had an entry for Uncle Fred, then you will finish up with two contact cards for Uncle Fred, and so on. If you tidy this up on your computer then the changes will propagate to everyone else.

  • Everything you need to know about Foxtel Go

    Foxtel on T-Box customers can self register Foxtel Go on 2 devices per Foxtel on T-Box subscription. You are able to view content on 1 of the 2 registered devices. The T-Box device will automatically be registered on your behalf and cannot be deregistered. You can change the device they have registered once per calendar month.
    To change a registered device you must log into the Foxtel Go app. As a Foxtel from Telstra customer please use your Foxtel My account details. As a Foxtel on T-Box customer please log in with your primary (i.e. the first username created and linked to your account) BigPond username and password.
    Once in the app go to the settings icon and choose 'manage my devices'. Within this section of the app you will be able to select de-register for the device you wish to change. To register, download the Foxtel Go app and log in. You will be prompted to register the device.
    Remember you can only change one device once per calendar month. If you are still able to make a change, you will be advised of the number of device registrations left this month.
    If you recently registered your T-Box, you should have access to Foxtel Go within 1 hour. If you are experiencing errors please try closing the Foxtel Go App and logging in again. If you are still unable to access any content please contact us via Telstra 24x7 or Telstra Technical Support on 13 22 00
    If you swap your Foxtel on T-Box service to a new device, your Foxtel Go service is not affected as it is associated to your BigPond username and password, and not the T-Box device.
    When trying to make a second device change within a month the de-register' button will be greyed out, preventing the change.
    Current channel rights only allow Foxtel Go to be registered on 3 devices per Foxtel Account. For Foxtel on T-Box customers, the T-Box counts as your 3rd device.
    The parental control function is specific to Foxtel Go and managed in the app via the settings icon. To access parental control:
    Go to the settings' icon in the app (top right)
    Access parental controls'
    Choose which classifications you'd like to restrict
    All R-rated content is automatically blocked, but you can personalise your restrictions for other ratings. To do this go to Settings in the Foxtel Go app, turn on Parental Controls and restrict the classifications you would like to block. If this is the first time you do this you'll be prompted to set a 4 digit PIN specifically for Foxtel Go. You can use this PIN to change your parental controls in the future. This PIN is only applicable to the Foxtel Go app. For Foxtel from Telstra customers, the PIN is not the same as you use on your IQ or Set Top Box, and you will be required to setup a new PIN to restrict content on Foxtel Go. For Foxtel on T-Box customers, the PIN is not the same as you use on your T-Box, and you will be required to setup a new PIN to restrict content on Foxtel Go.
    Foxtel Go content is unmetered with Telstra BigPond Home Broadband services. With other internet service providers this will be offset against your data plan.
    If you use Foxtel Go on your device with any 3G/4G telecommunications service provider, including Telstra, usage isn't unmetered and you will incur data charges when using Foxtel Go. The below list provides an indicationof the data you will use per device on the various app settings, based on watching an hour of TV. To view your settings go to the 'settings' icon in the Foxtel Go App, turn on 'video settings' and choose your preferred quality:
    3G Phone/Tablet Best: 320 MB per hour / Low: 170 MB per hour
    Wi-Fi Phone Best: 420 MB per hour / Low: 320 MB per hour
    Wi-Fi Tablet Best: 720 MB per hour / Low: 320 MB per hour
    Wi-Fi PC/Mac Best: 1310 MB per hour / Low: 470 MB per hour
    The size of each episode or Movie on Catch up TV can be found on the Synopsis tab.
    You can use Foxtel Go at a Wi-Fi location or a personal hotspot when you are in Australia provided you have an internet connection. Some locations offer Wi-Fi hotspots where you can log onto the internet for free. e.g. McDonalds, Starbucks, etc. Any data charges incurred are charged to the business and not to you. When connected to Wi-Fi, you'll see a Wi-Fi symbol on your device.
    Foxtel from Telstra customers with a Foxtel iQ or iQHD set top box can Remote Record and send a channel change to their set top box. Unfortunately this functionality is not available to Foxtel on T-Box customers.
    You can pause and rewind the last 30 minutes of Live TV, even if you've just changed to that channel. Due to device restrictions users of Samsung Android devices are unable to use this feature.
    Foxtel Go is a streaming video service. Streaming means that images and sound are delivered live to your device to view when you press Play, rather than being downloaded to your device to view at a later time.
    Games you'd normally see on Foxtel from Telstra or Foxtel on T-Box on FOX SPORTS 3 are broadcast on Foxtel Go on the Footy Play Plus channel
    There are no Catch Up of AFL games or magazine shows on Foxtel Go due to content restrictions.
    The key symbol indicates that a channel isn't part of your package. You need to upgrade your Foxtel from Telstra or Foxtel on T-Box package to watch it. Your package can not be updated through the Foxtel Go app. For Foxtel on T-Box customers you can update your packages in the T-Box App, at www.telstra.com/tboxsetup, via 13 2200 or in store. For Foxtel from Telstra customers you can update your packages through the store or via 13 1999. The lock symbol indicates that, as part of your parental control setting, you've locked this classification of content, and can't watch it. If you want to change the settings then the primary (i.e. the first username created and linked to your account) account holder can change these by:
    Go to the settings' icon in the app (top right)
    Access parental controls'
    Choose which classifications you'd like to restrict
    No other username or password can change the parental control settings.
    We may be required to block out specific programming from time to time, e.g. if a channel doesn't have the legal right to broadcast the programme over the internet. However, all live channels are the same as channels you watch through Foxtel from Telstra or Foxtel on T-Box.
    The vast majority of the Foxtel on T-Box content is available via Foxtel Go. There are some minor exceptions. MTV Music and MTV Dance channels are not available. FOOTY PLAY and FOOTY PLAY+ (overflow) channels are not available on PC and Mac only.
    Access to Foxtel Go is included in your Foxtel on T-Box and Foxtel from Telstra subscription. However, you will incur data charges when accessing the service on a 3G/4G network.

    Re: Everything you need to know about Foxtel Go
    Iam book in to have foxtel install on 2nd of March was offered Thursday the 28 my appointment has been cancelled so can be home Thursday I put a complaint in as was told it was 1hour for change over from T Box but no one has got back to me

  • Can I set up a 2 (or 3) room audio system? I have iphone 3, iphone 4 and ipad 2 and need to know what hardware, if any, I need for this (airport express?, apple TV?) Also, would I use icloud or home sharing?

    I need to know what hardware, if any, I need to do this (airport express?, apple TV?)
    I simply want to send music from my itunes to 2 different rooms at the same time. Is it possible? I have iphone3, iphone4 and ipad2 if that helps.
    Also, would I use icloud or home sharing? Sorry for the noob question, any help is appreciated.
    Thanks!

    The answer is not if you use iTunes.
    The TC is NOT an iTunes server.. it is not a media device at all. It is a backup location for Time Machine.
    You need a computer in the network which stores the iTunes library and you can then play it via the ipad.
    A mini with a large USB drive plugged in will work fine.. it doesn't need to be new.. a couple of years old mini will work just as well.
    As an extention to this, can we use multiple Airport expresses plugged into mutiple sound systems to simultaneously access different music from the same time capsule?
    I am not sure.. there will be network limitations to this.
    Look up how to use itunes in a network.
    http://support.apple.com/kb/ht4620
    You would do better perhaps posting the question in iTunes section.. if as I guess you are actually using iTunes.

  • Need to know how to get my apple account to sync up with a new email on my phone and delete the old one in a step by step process??

    Need to know how to get my apple account to sync up with a new email on my phone and delete the old one in a step by step process??

    After you change the account settings as I described below hold your finger on any app until they all wriggle, then tap the "-" on each purchased with her Apple ID. Press the HOME button when done. Then go to the App Store and buy or download the apps you want.

Maybe you are looking for