Cannot set date to '11-March-2012 2am' using af:inputDate

In my use case I need to accept GMT dates for one of my fields (TIME_OF_DEPARTURE) but I've been running into the following issues:
First, my local timeZone is EST where this date is not valid, based on some entries in this forum I went ahead and configured my application's timeZone as GMT where 2am on 3/11/2012 is perfectly valid. I made the following changes:
- added -Duser.timezone=GMT to the project's properties:
- META-INF/adf-config.xml
- and trinidad-config.xml
- af:convertDateTime.timeZone
The calendar popup hovever doesn't seem to accept this value. If I type in the value though it works.
What else do I have to do for the calendar popup to work? I'm printing out the adfContext.timeZone.ID value in the page where this is happening and I can see the desired timeZone to be active.
The second issue is that as I mentioned before I only want to do this for a single field and not for the entire application. My first attempt to address this was by using af:convertDate.timeZone but that didn't help. I had then to start making changes to configuration files I mentioned above and that affects every single page in my app. How can I address this on a field-by-field basis?
Any guidance is greatly appreciated.
Thanks,
MV

The format mask "dd-MMM-yyyy HH24mm" does not correspond to the literal "11-March-2012 2am". Try the mask "dd-MMMM-yyyy ha" instead ("MMMM" interprets the month as text but not a number, while "MMM" interprets it as a roman number, "h" corresponds to 1-12 hour, "a" corresponds to the AM/PM specifier). If you need the time portion in a 24-hour notation with minutes, then use the format mask "dd-MMMM-yyyy HH:mm".
Please, have a look here for information about the Java date format specifiers:
http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html
Dimitar

Similar Messages

  • R3trans finished 0012 / cannot recover data file 1 file is in use or recove

    Hi
    After a system Cloning from PRD to SandBox, SAP doesn't start any more :
    /usr/sap/SID/SYS/exe/run/startdb: Terminating with error code 12
    DB startup failed
    On the other hand, I can start the database manually, but SAP still doesn't connect to the DB.
    The R3trans -d returns the following :
    2EETW169 no connect possible: "maybe someone set invalid values for DIR_LIBRARY ('/usr/sap/SID/SYS/exe/run') or dbms_type ('ORA')"
    R3trans finished (0012).
    DIR_LIBRARY is correctly set.
    I tought may be the databse is inconsistent, so I tried to recover the it.
    The recover command doesn't work too :
    ORA-00283: recovery session canceled due to errors
    ORA-01124: cannot recover data file 1 - file is in use or recovery
    ORA-01110: data file 1: '/oracle/SID/sapdata1/system_1/system.data1'
    I shall be very grateful to you for any help !
    Regards

    Hi,
    DB was started with "startup"
    trans.log
    4 ETW000 R3trans version 6.14 (release 701 - 23.07.10 - 09:23:00).
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 24.08.2011 - 14:15:28
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: R3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  wed aug 24 14:15:28 2011                                                 106  0.000106
    4 ETW000  [dev trc     ,00000]  db_con_init called                                                        11  0.000117
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                                                 30  0.000147
    4 ETW000  [dev trc     ,00000]  Loading DB library '/usr/sap/SID/SYS/exe/run/dboraslib.o' ...             37  0.000184
    4 ETW000  [dlux.c      ,00000]  *** ERROR => DlLoadLib()==DLENOACCESS - dlopen("/usr/sap/SID/SYS/exe/run/dboraslib.o") FAILED
    4 ETW000                          "     0509-022 Cannot load module /usr/sap/SID/SYS/exe/run/dboraslib.o.
    4 ETW000                                0509-150   Dependent module libclntsh.a(shr.o) could not be loaded.
    4 ETW000                                0509-022 Cannot load module libclntsh.a(shr.o).                        1360  0.001544
    4 ETW000                                0509-026 Syste"  (errno=2,No such file or directory)
    4 ETW000  [dbcon.c     ,00000]  *** ERROR => Couldn't load library '/usr/sap/SID/SYS/exe/run/dboraslib.o'
    4 ETW000                                                                                69  0.001613
    2EETW169 no connect possible: "maybe someone set invalid values for DIR_LIBRARY ('/usr/sap/SID/SYS/exe/run') or dbms_type ('ORA')"
    Thanks

  • ORA-01124: cannot recover data file 1 - file is in use or recovery

    I am trying to recover standby database, but it is giving the below error.
    ORA-00283: recovery session canceled due to errors
    ORA-01124: cannot recover data file 1 - file is in use or recovery, recovery is already stated
    ORA-01110: data file 1: 'I:\ORACLE\QAS\SAPDATA1\SYSTEM_1\SYSTEM.DATA1'
    when i checked in the alert log the recovery is not started. and later i hae given "alter database recover cancel' and the command end up with the below line
    "media recovery not started".
    it seems that the recovery has stuck in between.
    please advise me how to kill the recovery session that's stuck. because i dont want to bounce the standby database.
    thanks in advance.

    Without dataguard and MRP, you are running a scripted standby.
    In a scripted standby, a RECOVER DATABASE session would have an UNTIL clause (most likely UNTIL SEQUENCE). At the end of the recovery to that point (SEQUENCE#), it exits and shuts down the database.
    Also, the scripting is such that when one RECOVER session is active, another session is not allowed to start. It may loop in wait state or exit and retry at the next scheduled interval.
    Apparently your standby scripting is not robust enough to prevent another RECOVER session from starting off even as the first is active (and/or it doesn't have a proper UNTIL clause and stop, exit, shutdown actions)
    What you have is a custom implementation of a standby database. Without complete details of the script, the "locking" between sessions (to prevent a second RECOVER from starting when one is already running) etc .... we really cannot do much to help you.
    Your scripts should be maintaing status information . It should be possible for you to discover the "other" sqlplus session that has issued a RECOVER DATABASE but not yet exited (e.g. ... how about a simple "ps -ef |grep sql" and "ps -ef | grep ora" combination ??)
    Hemant K Chitale
    Edited by: Hemant K Chitale on May 29, 2013 5:47 PM

  • HT5706 I have not used my apple tv in a few years, and just got it out of the bag. I connected it up, and it cannot set date, time.  it also does not interact with the remote.  Could it be as simple as a new batter is needed for remote?

    I have not used my Apple TV in a few years, and just got it out of the bag to use on a new TV.  I connected it up to power and with an HDMI cable toTV.  It attempts to set date and time and cannot.  I cannot get the remote to interact with the box also.  Could it be something as simple as needing a new battery?

    Hi kybriar,
    Thanks for using Apple Support Communities.  This article has steps you can take to troubleshoot the remote itself:
    Troubleshooting the Apple Remote
    http://support.apple.com/kb/ht1722
    For the issue of setting the date and time, these articles may help:
    Apple TV: Basic troubleshooting
    http://support.apple.com/kb/ht1551
    Reset Apple TV by unplugging it from the power outlet, waiting about five seconds, then plugging it in again.
    Power off your TV, wait five seconds, then power it back on.
    Apple TV (2nd and 3rd generation): Troubleshooting Wi-Fi networks and connectionshttp://support.apple.com/kb/TS4546
    Ensure that Apple TV is within range of your Wi-Fi router or base station.
    Confirm that your Wi-Fi router and cable/DSL modem are connected to power and turned on.
    Make sure other devices (computers, iPhone, iPad, for example) are able to connect to the Wi-Fi network and access the Internet.
    Check your Wi-Fi network settings on Apple TV:
    Select Settings > General > Network > Wi-Fi and press the center button on the remote to display nearby networks.
    Choose your Wi-Fi network from the list.
    If your Wi-Fi network uses a password, make sure you are entering it correctly.
    Restart your Apple TV by selecting Settings > General > Restart.
    Try restarting your Wi-Fi router or modem by turning it off and then on again.
    If possible, connect an Ethernet cable and verify your Internet connection. If you can connect to the Internet using an Ethernet connection, verify that your Apple TV is using the latest software by selecting Settings > General > Software Update. If your Apple TV can be updated, install the update and then try the steps again.
    Cheers,
    - Ari

  • HT3180 cannot set date and time

    how do I set date and time

    Here is the solution:
    Download Apple Configurator from the App Store
    https://itunes.apple.com/us/app/apple-configurator/id434433123?mt=12
    Follow the directions on this link: http://techjournal.318.com/apple-tv/install-a-profile-on-apple-tv-using-configur ator/
    You will need a micro-USB to USB connector --
    Be sure the plug in the Apple TV *FIRST*  ~b e f o r e~ the USB cable is plugged in.
    It works like a charm!!
    Enjoy!

  • My AppleTV cannot set date and time. I've reset it, but after 3 hours, it is still trying

    My AppleTV used to work fine. Someone messed with my Time Capsule, so I had to have it worked on. Since it was messed up, the AppleTV can't function. I reset it and updated everything. It said "Activating" and "setting date and time". After 3 hours, it is still trying to set the date and time. Now what do I do? Thanks for any help.

    As I previously wrote in a former post:
    I will first assume you are still setting up your new Apple TV. Is this is the case, use a website like canyouseeme.com to check if port 123 is open. If it is not, this is your issue of your Apple TV not being able to connect to the timeserver. Try contacting your Internet Service Provider for help with opening this port.
    Otherwise, try hard resetting your Apple TV by disconnecting all power for 30 seconds. If the problem still persists, you may try hard resetting your router by also unplugging all power for 30 seconds.
    Hope this worked out well for you. If you are having further troubles you can always connect it to iTunes using a micro-usb and restore it. Lastly, the Genius Bar will be more than happy to fix the problem for you if you'd like to make a reservation for your local Apple Store.

  • Cannot set date& time and only computer and settings icons are showing

    I am having difficulty with my appletv(MC572LL/A). It will not set the time & date after it downloaded the last update. It just stalls saying "setting date and time". I have reset the system and even re-installed the latest update to the unit but get the same results. Any suggestions?

    Assuming this is not the first time you have used your Apple TV
    You might try restarting the Apple TV by removing ALL the cables for 30 seconds.
    Also try restarting the router.
    If the problem persists, try a restore, you may want to try the previous procedures several times before doing this.
    If this is a new Apple TV, it may also be that your network router is not allowing access to the timeserver, check that your router allows access over port 123.

  • Cannot set date and time

    I am in the UAE and brought over an Apple TV 3rd generation from the US but cannot get it to set the date or time.  This product has not been released yet in this country.

    Here is the solution:
    Download Apple Configurator from the App Store
    https://itunes.apple.com/us/app/apple-configurator/id434433123?mt=12
    Follow the directions on this link: http://techjournal.318.com/apple-tv/install-a-profile-on-apple-tv-using-configur ator/
    You will need a micro-USB to USB connector --
    Be sure the plug in the Apple TV *FIRST*  ~b e f o r e~ the USB cable is plugged in.
    It works like a charm!!
    Enjoy!

  • HT3180 Cannot set date and time keeps waiting

    Can anyone help

    Here is the solution:
    Download Apple Configurator from the App Store
    https://itunes.apple.com/us/app/apple-configurator/id434433123?mt=12
    Follow the directions on this link: http://techjournal.318.com/apple-tv/install-a-profile-on-apple-tv-using-configur ator/
    You will need a micro-USB to USB connector --
    Be sure the plug in the Apple TV *FIRST*  ~b e f o r e~ the USB cable is plugged in.
    It works like a charm!!
    Enjoy!

  • Cannot load data to essbase 7.1.6 using ODI 10.1.3.5.6

    Hi,
    I try to load data to Essbase (Basic/Sample app) from a table in oracle 10g express but I get an error when I try to execute the interface. The staging area I use is in Oracle again, and the error is the following:
    com.sunopsis.tools.core.exception.SnpsSimpleMessageException: No conversion for the datatype CHAR, for the source technology Oracle and for the target technology Hyperion Essbase
         at com.sunopsis.dwg.codeinterpretor.c.a(c.java)
         at com.sunopsis.dwg.codeinterpretor.c.a(c.java)
         at com.sunopsis.dwg.codeinterpretor.c.a(c.java)
         at com.sunopsis.dwg.codeinterpretor.SnpGeneratorSQLCIT.a(SnpGeneratorSQLCIT.java)
         at com.sunopsis.dwg.codeinterpretor.SnpGeneratorSQLCIT.a(SnpGeneratorSQLCIT.java)
         at com.sunopsis.dwg.codeinterpretor.SnpGeneratorSQLCIT.a(SnpGeneratorSQLCIT.java)
         at com.sunopsis.graphical.g.ot.f(ot.java)
         at com.sunopsis.graphical.frame.a.fj.actionPerformed(fj.java)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    I have reversed engineered the outline properly, with the only exception that the columns type definition of the datastore was undefined and I decided to define the datatype to char. Do you have a clue of what might goes wrong?
    John

    Hi John,
    For some unknown reason the datatypes of Essbase in topology manager were similar to Oracle's RDBMS.
    I re-installed Essbase technology, I reversed engineered the outline again, and now it seems I made some progress. But, during the execution now of my interface I get the following error in integration step.
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 79, in ?
    java.lang.NullPointerException
         at com.hyperion.odi.essbase.ODIEssbaseDataWriter.validateLoadOptions(Unknown Source)
         at com.hyperion.odi.essbase.AbstractEssbaseWriter.beginLoad(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java)
         at org.python.core.PyMethod.__call__(PyMethod.java)
         at org.python.core.PyObject.__call__(PyObject.java)
         at org.python.core.PyInstance.invoke(PyInstance.java)
         at org.python.pycode._pyx2.f$0(<string>:79)
         at org.python.pycode._pyx2.call_function(<string>)
         at org.python.core.PyTableCode.call(PyTableCode.java)
         at org.python.core.PyCode.call(PyCode.java)
         at org.python.core.Py.runCode(Py.java)
         at org.python.core.Py.exec(Py.java)
         at org.python.util.PythonInterpreter.exec(PythonInterpreter.java)
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:144)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.k(e.java)
         at com.sunopsis.dwg.cmd.g.A(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException: java.lang.NullPointerException
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.k(e.java)
         at com.sunopsis.dwg.cmd.g.A(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    pWriter.beginLoad(loadOptions)
    It seems that the last line of code in 'Prepare For Loading' command of 'IKM SQL to Hyperion Essbase (DATA)' generates an exception.
    John

  • Cannot pass data from Web Dynpro to XI using a Web Service

    Hi All,
    We have been facing some issues when we try to pass on a SOAP / XML message via a WSDL from a WebDynpro App to XI - No data is reaching XI interface. The payload data details for the inbound message in XI is empty. When testing the WSDL separately using XML spy the data passes to the XI successfully.
    The problem only occurs when we pass on the data from the WebDynpro component.
    We are also passing additional information _user and _password to ensure authenticated access.
    Steps that we completed so far:
    1. Created a WSDL which we can use to communicate to XI interface.
    2. Imported WSDL using webdynpro Web Service Model import
    functionality.
    3. Bound WSDL with webdynpro components.
    4. Pass on data through WSDL contexts.
    5. Execute WSDL model.
    Any help would be much appreciated.
    Thanks,
    RR

    Hi,
    please check document:
    Almost Everything about Transaction Launcher u2013 Part
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/3059fb20-987f-2e10-ef82-d147b9b5e8b4
    Denis

  • Cannot set up new ipad with retina display using os x 10.6.8 software

    Unable to sync and get started the new ipad using Mac  osx 10.6.8 current software.  Do I need to upgrade software and what are the software steps to take ( or sequencing )?

    Your iTunes version needs to be v11.x
    FYI
    Complete guide to using iOS 6
    http://howto.cnet.com/ios-6-complete-guide/
    Guide to Built-In Apps on iOS
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/guide-to- built-in-apps-ios
    You can download a complete iOS 5 iPad User Guide and iOS 6 iPad User Guide here: http://support.apple.com/manuals/ipad/
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Apple iPad Guided Tours - Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    http://www.youtube.com/watch?v=YT2bD0-OqBM
    http://www.youtube.com/watch?v=ROY4tLyNlsg&feature=relmfu
    http://www.youtube.com/watch?v=QSPXXhmwYf4&feature=relmfu
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download this guide to your iPad.
    iPad User Guide for iOS 5
    http://itunes.apple.com/us/book/ipad-user-guide-for-ios-5/id470308101?mt=11
     Cheers, Tom

  • I cannot set up my Cannon MG6250 printer to use air-print?

    Can anyone suggest why this setup does not work please. I've checked on compatability on the Apple website and ethey arecompatable. Thanks.

    The MG6250 doesn't support Airprint out of the box, you need to do a firmware update!
    Install the software, and then install the update to the printer (the printer must be connected to the computer via USB, not wireless!
    Search for Firmware and then "AirPrint & Google Cloud Print Firmware Updater"; http://www.canon-europe.com/Support/Consumer_Products/products/Fax__Multifunctio nals/InkJet/PIXMA_MG_series/PIXMA_MG6250.aspx?type=download&page=1

  • Setting date format for the entire SQL Server installation - SQL Server 2008 R2-2012

    Hi,
    I need to safeguard the behaviour of SQL codes that inserting into SQL tables with some date columns. For this purpose, I need to change the date format for the SQL instance and not using CONVERT and CAST.
    I've seen the SET DATE FORMAT statement, but if I use it, could I solve my problem?
    Thanks

    The language setting is related to the database user.
    BOL: "DEFAULT_LANGUAGE = { NONE | <lcid> | <language name> | <language alias> }              
    Specifies the default language for the new user. If a default language is specified for the user and the default language of the database is later changed, the users default language remains as specified.
    If no default language is specified, the default language for the user will be the default language of the database. If the default language for the user is not specified and the default language of the database is later changed, the default
    language of the user will change to the new default language for the database."
    LINK: http://technet.microsoft.com/en-us/library/ms173463.aspx
    The default language setting can be overridden by SET LANGUAGE for the session:
    http://technet.microsoft.com/en-us/library/ms174398.aspx
    Example:
    SET LANGUAGE us_english; -- mdy
    SELECT CAST ('12/13/2014' as DATE); -- 2014-12-13
    GO
    SET LANGUAGE british; -- dmy
    SELECT CAST ('12/13/2014' as DATE);
    GO
    (1 row(s) affected)
    Changed language setting to British.
    Msg 241, Level 16, State 1, Line 2
    Conversion failed when converting date and/or time from character string.
    Kalman Toth Database & OLAP Architect
    SELECT Video Tutorials 4 Hours
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • HT3180 Can't set date and time on apple tv

    I cannot set date and time. Help!

    It is having trouble connecting to the network. Make sure location is set correctly. DNS should be set to automatic (settings - general - network). If on wifi try ethernet. Reboot ATV and router.

Maybe you are looking for

  • Upload multiple files to iphone via wifi - completely freeze

    Hi, I upload files to iphone via wifi and air sharing app a lot. Just connect with finder and drag&drop files one at a time and everything is fine, but when you select more files and try to copy them to iphone together Leopard completely freeze. Tota

  • Applicatio​n icon is going to downloads

    Hai all            i developed an application in blackberry. when iam loading it to curve 8900 simulator theappplication icon is not shong in the menu items INSTED IT IS GOING TO DOWNLOADS. .can anyone suggest me how to show my applicationicon in the

  • Dreamweaver/Flash Help!!!!!!!

    So this is my first time using either of these programs, and my head is spinning. I have a few questions,and any help would be GREATLY appreciated. 1. How do I create a flash button from a picture in my comp? 2. How do I save that in flash to prepare

  • AS/400 - point SQL to specific member

    When creating a result set via SQL in a java application, what is the best way to point to specific table member? I don't want to issue an OVRDBF unless I have to.

  • Order Management: Additional Header Information

    dears, we recive the following error "values have not been entered for one or more required segments sales order" we tried to but the flexfileds not requerd but still the same we recive the error we also tried to put default value for the flexfiled b