Old Theme:  Pagination with Ordenation

Hi
I need return a cursor for Client (java)
I already read meny posts about article, I got to make pagination using this articles
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:76812348057
http://www.oracle.com/technology/oramag/oracle/07-jan/o17asktom.html
Implementing  Resultset   with  Pagination in a Web Application
But my Problem is thar the user can to choice 3 columns diferents for to order and Asc ou Desc
The Problem is thar the query is very large.
Example The user Choice column 1 ASC or Column2 DESC or COLUMN8 Desc
In other topic, tell me put as:
   ORDER BY decode(P_order,0, decode(P_coluna,1,LAST_NAME,2,CODE_NAME,3,VALUE)) ASC,
decode(P_order,1,decode(P_coluna,1,LAST_NAME,2,CODE_NAME,3,VALUE))  DESCBut did not work, work only when P_coluna =1 , for other number return me error
Put Query in Dynamic Query is Impossible is very great
Some have some idea?

I'm not sure why you think the size of the query
makes it more difficult to use dynamic SQL. From
your description of the problem, the only dynamic
piece is the ORDER BY clause. Everything other than
the ORDER BY clause is static.
Turning this into dynamic may take some effort, but
is far from impossible.Thank
Look length of my query ?
    OPEN P_CURSOR FOR
    WITH NOTIFICACAO AS(
      SELECT 
       t1.cd_consultora,
       t1.dc_nome_consultora,
       t2.nm_notificacao_cn,
       t2.dt_notificacao_cn dt_notificacao,
       t2.dt_atendimento_notificado,
       t1.cd_tipo_estrutura_comercial,
       t1.cd_estrutura_comercial
        FROM t_consultora t1, nc.t_nc_notificacao_cn t2
       WHERE t2.dt_notificacao_cn BETWEEN w_DTA_INI AND w_DTA_FIM
         AND t2.cd_consultora = t1.cd_consultora
         AND t1.cd_setor = w_cd_setor
         AND t1.cd_tipo_estrutura_comercial = p_tp_estrutura_comercial
         AND t1.cd_estrutura_comercial = p_cd_estrutura_comercial),
    T_NOTIFICADA AS ( select Count(t1.nm_notificacao_cn) over (partition by  t1.cd_consultora,t1.nm_notificacao_cn ) QTD_NOTAS,
                             Count(t2.nm_item_notificacao_cn) over (partition by  t1.cd_consultora,t1.nm_notificacao_cn ) QTD_ITENS,
                             T3.*
                              from nc.t_nc_notificacao_cn t1,
                                   nc.t_nc_item_notificacao_cn  T2,
                                   NOTIFICACAO                  T3 
                               where       t1.dt_notificacao_cn >= to_date('01/09/2006','dd/mm/yyyy')
                                and   t3.nm_notificacao_cn = t1.nm_notificacao_cn
                               and    t1.nm_notificacao_cn = t2.nm_notificacao_cn
                               and    ((t2.cd_tipo_item_nc = 4 and t2.cd_subtipo_item_nc = 6)
                                       or t2.cd_tipo_item_nc = 2 or t2.cd_tipo_item_nc = 3)
                                       and t3.cd_consultora = t1.cd_consultora (+)  )  ,
    T_BLOQUEADA AS ( SELECT T4.* FROM
                 (SELECT  T3.*,
                        CASE WHEN T3.BLOQUEADA = -1 THEN  'Bloqueada'
                             WHEN  T3.BLOQUEADA = 0 THEN
                          (CASE WHEN T3.QTD_NOTAS > 2 THEN
                             CASE WHEN T3.QTD_ITENS > 8 THEN 'Atencao / Analise'
                             ELSE
                                'Normal'
                             END
                           ELSE
                             'Atencao / Analise'   
                          END)
                         END OBSERVACAO
                  FROM  (SELECT CASE WHEN NVL(T2.ID_CN_BLOQUEADA,1) = 1 then -1
                               WHEN NVL(T2.ID_CN_BLOQUEADA,1) = 0  THEN 0
                               END BLOQUEADA, T1.*
                    FROM   T_NOTIFICADA T1,
                           T_PS_CONSULTORA T2 
                           WHERE T1.CD_CONSULTORA = T2.CD_PESSOA)T3) T4 )
        select *
          from (SELECT t1.*, ROWNUM r_linha
           FROM (SELECT  cd_consultora,
                   dc_nome_consultora,
                   TELEFONE1,
                   TELEFONE2,
                   --fnc_busca_telefone(CD_CONSULTORA, 1) TELEFONE1,
                   -- fnc_busca_telefone(CD_CONSULTORA, 2) TELEFONE2,
                    EMAIL,
                    observacao,
                   nm_notificacao_cn,
                   nvl(vl_total_final,0) vl_total_final,                  
                   dt_notificacao,
                   qt_produto_item_nc,
                  sg_notificacao,
                  ID_SITUACAO,
                   qtd_registros
                FROM (SELECT /*+ INDEX(W5 I0_NC_TIPO_ITEM_NC) */
                   W1.cd_consultora,
                   W1.dc_nome_consultora,
                   fnc_busca_telefone(w1.CD_CONSULTORA, 1) TELEFONE1,
                   fnc_busca_telefone(w1.CD_CONSULTORA, 2) TELEFONE2,
                   fnc_busca_email(w1.CD_CONSULTORA) EMAIL,
                   W1.OBSERVACAO observacao,
                   W1.nm_notificacao_cn,
                   sum(W4.qt_produto_nf *
                       W4.vl_unitario_final_produto_nf) OVER(PARTITION BY W1.cd_consultora, W1.nm_notificacao_cn) vl_total_final,
                   W1.dt_notificacao,
                   sum(W4.qt_produto_nf) OVER(PARTITION BY W1.cd_consultora, W1.nm_notificacao_cn) qt_produto_item_nc,
                   'PENDENTE' sg_notificacao,
                   W5.dc_tipo_item_nc ID_SITUACAO,
                   W_qtd_registros qtd_registros
                    FROM T_BLOQUEADA               W1,
                         nc.t_nc_item_notificacao_cn W2,
                         nc.t_nc_produto_item_nc     W3,
                         nc.t_nc_produto_item_nf     W4,
                         nc.t_nc_tipo_item_nc        W5
                   WHERE W1.dt_atendimento_notificado is null
                     and W1.nm_notificacao_cn =
                         W2.nm_notificacao_cn
                     and W2.cd_tipo_item_nc = W5.cd_tipo_item_nc
                     and W2.nm_notificacao_cn =
                         W3.nm_notificacao_cn(+)
                     and W2.nm_item_notificacao_cn =
                         W3.nm_item_notificacao_cn(+)
                     and W3.nm_notificacao_cn =
                         W4.nm_notificacao_cn(+)
                     and W3.nm_item_notificacao_cn =
                         W4.nm_item_notificacao_cn(+)
                     and W3.nm_sequencia_produto_item_nc =
                         W4.nm_sequencia_produto_item_nc(+)
                     and W2.cd_tipo_item_nc not in (6, 7)
                     and ((W2.id_situacao_item_nc = 1) OR
                         (W2.id_situacao_item_nc = 3 OR
                         W2.id_solucao_definida is not null))
                  UNION
                  SELECT /*+ INDEX(W5 I0_NC_TIPO_ITEM_NC) */
                   W1.cd_consultora,
                   W1.dc_nome_consultora,
                   fnc_busca_telefone(w1.CD_CONSULTORA, 1) TELEFONE1,
                   fnc_busca_telefone(w1.CD_CONSULTORA, 2) TELEFONE2,
                   fnc_busca_email(w1.CD_CONSULTORA) EMAIL,
                   W1.OBSERVACAO observacao,
                   W1.nm_notificacao_cn,
                   sum(W4.qt_produto_nf *
                       W4.vl_unitario_final_produto_nf) OVER(PARTITION BY W1.cd_consultora, W1.nm_notificacao_cn) vl_total_final,
                   W1.dt_notificacao,
                   sum(W4.qt_produto_nf) OVER(PARTITION BY W1.cd_consultora, W1.nm_notificacao_cn) qt_produto_item_nc,
                   'ATENDIDO' sg_notificacao,
                   W5.dc_tipo_item_nc ID_SITUACAO,
                   W_qtd_registros qtd_registros
                    FROM T_BLOQUEADA                W1,
                         nc.t_nc_item_notificacao_cn W2,
                         nc.t_nc_produto_item_nc     W3,
                         nc.t_nc_produto_item_nf     W4,
                         nc.t_nc_tipo_item_nc        W5
                   WHERE W1.dt_atendimento_notificado is not null
                     and W1.nm_notificacao_cn =
                         W2.nm_notificacao_cn
                     and W2.cd_tipo_item_nc = W5.cd_tipo_item_nc
                     and W2.nm_notificacao_cn =
                         W3.nm_notificacao_cn(+)
                     and W2.nm_item_notificacao_cn =
                         W3.nm_item_notificacao_cn(+)
                     and W3.nm_notificacao_cn =
                         W4.nm_notificacao_cn(+)
                     and W3.nm_item_notificacao_cn =
                         W4.nm_item_notificacao_cn(+)
                     and W3.nm_sequencia_produto_item_nc =
                         W4.nm_sequencia_produto_item_nc(+)
                         )T2
                --   ORDER BY  DECODE(p_nm_asc_desc,0,DECODE(p_nm_col_ordem ,1, t2.cd_consultora,2,t2.dc_nome_consultora,t2.cd_consultora)) ASC
                  -- DECODE(p_nm_asc_desc,1,DECODE(p_nm_col_ordem ,1, cd_consultora,2,dc_nome_consultora)) desc
                         ) T1
           where rownum <= W_TO_REC)
         where r_linha >= W_FROM_REC;
  ORDER BY is with commentary because did not work, I tried with Dynamic Sql , but return me many errors

Similar Messages

  • I just purchased 2 new iPhones for my wife and I and set them up. We want to give the old phones to our kids, with the ability to share all the songs in my iTunes account. How do I want to give new names so our old phones sync with our kids names?

    Sorry for the long intro question.  I just bought a new iPhone 5S for me and a new 5C for my wife.
    We want to give our kids my old 4S and my wife's old 4.  We backed up our old phones and restored
    our info to our new ones, but when we connect our old phones, they still show all our songs and iTunes
    settings on them (along with the same names as our new ones).
    We want to set up our old iPhones for our kids to be able to have their own names on theirs so that
    when we connect to my iTunes computer, it sees each phone accordingly, and has only the songs
    that they select (whereas I want to keep ALL my songs in my iTunes account on mine, not just some).
    How do I do this?

    You are most welcome
    Each post should have the text "this helped me" or "this solved my question," or something similar. Just click on whichever one applies to that particular post!
    This tutorial has more info.
    ~Lyssa

  • HT4436 I have an old icloud account with music and pics on a computer and a new account  on my iphone and ipad how do I transfer my pics and music to my iphone account or cync them i dont want to have to repurchase all my music to pplay on my iphone

    I have an old icloud account with music and pics on a computer and a new account  on my iphone and ipad how do I transfer my pics and music to my iphone account or cync them i dont want to have to repurchase all my music to play on my iphone

    Downloading previously purchsed music from iCloud is based on your iTunes ID, not your iCloud ID.  (It uses "iTunes in the Cloud", which has nothing to do with your iCloud account, just your iTunes ID.)
    If you are using a different iTunes ID on your iOS devices than the one you used to purchase the music, you'll have to sync the music to your devices using iTunes.  If they are using the same iTunes ID, you can download the music to your devices as explained here: http://support.apple.com/kb/ht2519.

  • I have two iPads. With two functioning iPads. Is it possible (on the same ID) to sync two of them differently with the same account. So I want to use the new iPad for all my current functions. The old iPad for just my music collection?

    I have two iPads. With two functioning iPads. Is it possible (on the same ID) to sync two of them differently with the same account. So I want to use the new iPad for all my current functions. The old iPad for just my music collection and remove all the other stuff?

    Very easily. I have an iPod touch and iPad on the same account with totally different content.
    If you use iTunes, connect each iPad to your computer and open iTunes and deselect any automatic updating/syncing. If you don't sync with iTunes but have them set up independently, under the settings, App Store, turn off automatic downloads for apps, etc.
    I'm old fashioned, I set up and sync my iPad and iPod to my computer and iTunes. Each device has a different name  and I manage content manually and only allow sharing on what I want shared.

  • Keep published pages with old theme, use new theme on new entries?

    I've been using iWeb for about 18 months to publish (privately to my MobileMe account) a daily "diary" entry in blog style and would now like to change them default theme but WITHOUT changing it for the past 18 months published since the formatting of the content of the old theme doesn't FIT into the format of the new theme.
    Is this possible?

    No.  just tried adding a new entry page with a different theme and it changed the theme for all pages. 
    You could create a new blog with the new theme and link to it from your old blog. Not sure that would be as smooth a transition as you'd like however.
    OT

  • I have a 3 year old MacBook Pro with MAC OSX 10.6.8, iPhoto '09 version 8.1.2 and have downloaded two software programs: one is Aperture 3.2 and the other is Photoshop Elements 9 (which I got from a friend who didn't need it). I am totally happy with the

    I have a 3 year old MacBook Pro with MAC OSX 10.6.8, iPhoto ’09 version 8.1.2 and have downloaded two software programs: one is Aperture 3.2 and the other is Photoshop Elements 9 (which I got from a friend who didn’t need it).
    I am totally happy with the way iPhoto organizes my photos and how I can work with iMovie to create slide shows with music from iTunes, etc.
    I have been shooting mostly high resolution jpegs and I continue to learn more and more about photography, post processing etc. I realize that the small adjustments I can make in iPhoto are good, and are adequate most of the time. However, a have started to experiment with shooting RAW images and would like to go the next step, ie. post processing.I am totally technically challenged and need SIMPLE, INTUITIVE programs and am certainly NOT anywhere ready for Photoshop CS whatever!
    After having these programs sit on my computer, I decided to try to see if I could figure them out. When I opened Aperture, this is what first comes up.
    “Welcome to Aperture 3.2
    Your library needs to be upgraded to work with this version of Aperture. Once upgraded, you will not be able to use this library with previous versions of Aperture.
    Upgrading a library from previous versions of Aperture 3 generally takes a few minutes or less, though larger libraries will take longer. After that, Aperture 3.2 will upgrade your library's thumbnails, but you can use the application during that time.
    Tip: To open a different library, quit Aperture and hold the Option key down while starting Aperture
    Current Library Location:
    Jadzia (home)   -----Pictures------Aperture Library
                                                      QUIT             UPGRADE”
    I have heard horror stories  about moving your entire library to Aperture, ending up with 2 libraries, etc. etc. hence my previous reluctance in attempting Aperture. In addition, many of my photography friends are saying: Go with Lightroom 3.....you’ll love it!
    So here is my dilemma.  I don’t want to mess around with my iPhoto library. All I want to be able to do, is to isolate a few photos, export them to Aperture, Elements, and work on them there, then bring them back into iPhoto.
    Can I do this? Should I forget about Aperture and Elements and look at purchasing yet another program like Lightroom?

    Export those few photos via the File ➙ Export ➙ File Export menu option with Kind = Original to the Desktop.  Then import them into the Aperture library. That would keep one copy in your iPhoto library and another in your Aperture library to edit, etc.
    You can use Photoshop Elements 9 from within iPhoto as your editor of choice. However, if you edit a raw file in iPhoto with PSE9 the resulting edited version must be saved outside the iPhoto Library and imported back in as a new file.  For editing jpegs just do a Save (not a Save As) and it all will be kept within iPhoto. 
    Using Photoshop or Photoshop Elements as Your Editor of Choice in iPhoto.
    1 - select Photoshop or Photoshop Elememts as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done. 
    3 - however, if you get the navigation window
    that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements  the Saving File preferences should be configured as shown:
    I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Note:  to switch between iPhoto and PS or PSE as the editor of choice Control (right)-click on the thumbnail and select either Edit in iPhoto or Edit in External Editor from the contextual menu. If you use iPhoto to edit more than PSE re-select iPhoto in the iPhoto General preference pane. Then iPhoto will be the default editor and you can use the contextual menu to select PSE for your editor when desired.
    OT

  • I have a iPhone and iPad on one iTunes account, I have recently bought two further I touches fir the kids , should I set them up with their own apple ids and the can I transfer purchases through all devices

    I have a iPhone and iPad on one iTunes account, I have recently bought two further I touches fir the kids , should I set them up with their own apple ids and the can I transfer purchases through all devices,

    Hi jhyiesla,
    Im not sure wether I got you right or not. But my advice/s would be as follows:
    These steps help you get rid of old apps you downloaded years ago and you do not use anymore.(Also frees space on your mac after emptying the trash)
    1) go to iTunes and delete all applications in it. Make sure to move them to trash! Do not empty your trash yet. Its your backup if step 3 doesnt appear.
    2) connect both your devices(one after each other) and make a backup. !!!Dont press the Sync button, press the Back Up Now Button
    3) Then it asks you if you want to backup applications as well. Confirm. (This is how apps get transferred manually)
    4) Then Sync your devices... The first time it might be, that there are some additional apps loaded to your devices you dont want to.. delete them on your Device (not iTunes) and after that you should be good every time you sync again.
    5) now you can empty your trash on your mac.
    Further,
    - You should regularly connect your devices with iTunes to make sure they are backed up. (Even if you have activated iCloud backup, the iTunes backup is more proper i.e.. Apps)
    - If you hate scrolling through a list of apps in iTunes, you can re/install apps directly on iOS not via iTunes. I absolutely never go to the "Applications" section in iTunes. I install and delete apps directly on iOS.
    jl

  • I was updating to IOS 8 thru iTunes on my 4S and it came unplugged. Now it wants me to restore settings. Is there a way to undo this and get 'old' phone back with all of my info/pics/contacts/etc?

    I was updating to the IOS 8 thru ITunes on my 4S when it came unplugged from the computer (dumb dog). Now the phone just has an image of plugging in to the ITunes icon and when I plug it in it says its in recovery mode and needs to be restored to original settings and I will lose all of my contacts/photos/etc. Is there a way to reverse this and just get my 'old' phone back with all of my stuff? I only have the free ICloud storage so I know most of my stuff will be lost. Yes I know..,hindsight is 20/20 on buying the backup. Help please!

    In short. No, you cannot unsync.  If you had a back up from your old iPhone you cand restore from a back up.
    In iTunes go to Edit > Preferences > Devices > and select the latest back up. 
    Before you synced your phone did you have it set up with the PhotoStream or iCloud? The pictures would be saved there.  Or if you had them sync to a file on your computer.

  • I have replaced my old Mac Mini with new one.  What should I do about my Time Capsule?

    With the old Mac Mini (2009 model) I used Time Machine and a Time Capsule to back up everything on the Mac Mini itself and on external hard drive I added when I needed more storage space.  I've replaced the old Mac Mini with a 2011 model, and migrated the contents of the old one to the new one from Time Machine. 
    I'm now trying to figure out what I should do to my Time Capsule and/or Time Machine to make backups going forward of the same content, now on my new Mac Mini and same external hard drive. 
    When I go into Time Machine, it does not seem to recognise the items on the external hard drive as ones that I can backup (or not, as there were some items there that I did not and do not wish to backup to Time Capsule) through the new Mac Mini. 
    I am uncertain too whether the Time Machine/Time Capsule will recognise the items of my old Mac Mini as the same ones that are now on my new Mac Mini and save changes there, or whether it will try to save all over again all the same items, as they are now on a different computer. 
    My inclination is to clear out the contents of the Time Capsule now and start all over again.
    I have looked through information provided by Apple but not found answers to my questions.

    The situation concerning the hard drive is complicated.  It is not included in the list of Excluded Items.
    If the drive is not "Excluded", then it must be included.  That is the way that Apple's software works.
    But, nor am I given the option to select it or any of the items in it for adding to the list of Excluded Items.
    If you want to add an item to the list of Excluded items, click the + button at the bottom of the Excluded list, then navigate to select the drive to add it. Once the drive has been added, you can go back in and select the items.
    When I go into the exclude from backup area and select the hard drive, it and the items in it appear in dimmed form, but I cannot select them.
    Sorry, I do not understand what you are trying to say here.
    What I want to do, but cannot, is what I did before, select one of the items in it not to be backed up and leave the rest to be backed up
    I have no idea how you were able to do this. As long as I can remember, Time Machine will not allow you to pick and choose items on a drive to be backed up or excluded. Your option is to have the entire drive backed up, or the entire drive to not be backed up.
    have not seen the 'Quick Erase' option.
    You would use AirPort Utility to erase the Time Capsule drive. Open AirPort Utillty and click the Disks tab at the top of the screen. Then, click Erase Disk.  The Quick Erase option will appear.

  • I just downloaded 950 photos on iPhoto and deleted them off my camera and now under last import there is only 4 photos and i can't find the others?? There is a whole bunch of blank events in the library with no photos in them all with todays date? Help!!

    I just downloaded 950 photos on iPhoto and deleted them off my camera and now under last import there is only 4 photos and i can't find the others?? There is a whole bunch of blank events in the library with no photos in them all with todays date? Help!!

    Yes - you need a min of 10 GB just to operate - with just 1 you certainly can lose photos and other critical things - you need to make space immediately - probably by moving your iPhoto library to a volume formatted Mac OS extended -
    Moving the iPhoto library is safe and simple - quit iPhoto and drag the iPhoto library intact as a single entity to the external drive - depress the option key and launch iPhoto using the "select library" option to point to the new location on the external drive - fully test it and then trash the old library on the internal drive (test one more time prior to emptying the trash)
    And be sure that the External drive is formatted Mac OS extended (journaled) (iPhoto does not work with drives with other formats) and that it is always available prior to launching iPhoto
    And backup soon and often - having your iPhoto library on an external drive is not a backup and if you are using Time Machine you need to check and be sure that TM is backing up your external drive
    LN

  • TS2776 i've lost all my entries in my calendar. I was able to call them up with the magnifying glass icon . now it just goes to a search entry. and all my calendar/months have no entries. help please

    i've lost all the entries in my calendar.  i had been able to call them up with the magnifying glass list function, but now it only opens a search function and all my calendars/ entries are blank.  help please

    Lord K.  Thank you. Yes I am within the 90 time period, however I travel Intertionally and I can not receive not make a call to Apple. I was just at the Genius Bar in Chicago and they said, don't worry about it.  It just floats out there, however, I can not recover my messages on a flash drive. I need to go back to my old computer which I don't have with me.  My messages were in folders for a lawsuit.  It is going to take an incredible amount of work for me to, you have no Idea.  We are talking thousands of pages!  I the defendent will have them during discovery so I am not so worried.  However, I can not bring them to him on a Flashdrive when I meet with him without an extraordinary amount of presssure on my part.  THis is not just some little email issue. This is suing EXPEDIA and Tripadviosr.com

  • How do I enable the blue function keys on an old Pavilion N5445 with Windows XP?

    Yes, how do I enable the blue function keys on an old Pavilion N5445 with Windows XP?
    The blue function keys currently do not work.
    There is NO mention of the function keys (or even action keys) in the BIOS.
    Let me repeat that so that nobody posts a stupid link to how to turn on the function keys in the BIOS. THIS IS AN OLDER LAPTOP.
    There is NO mention of the function keys (or even action keys) in the BIOS.
    There is NO mention of the function keys (or even action keys) in the BIOS.
    There is NO mention of the function keys (or even action keys) in the BIOS.
    There is NO mention of the function keys (or even action keys) in the BIOS.
    There is NO mention of the function keys (or even action keys) in the BIOS.
    There is NO mention of the function keys (or even action keys) in the BIOS.
    Somehow the function keys got turned off. So I suspect there's a way to turn them on again.

    HI Lukon:
    Thank you for your post.  I will do my best to assist you in this endeavor!
    I regret that you are experiencing an issue with the function keys. I am providing you with a link to "Configuring the Multimedia and Internet Keyboard Buttons in Microsoft Windows 98, Me, and XP"    click here. Have you tried running the HP Support Assistant to look for updates and resolve issues.   click here. Have you tried the MS Fix it  tool click here to aid it resolving it. I hope this helps.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • I just purchased 2 ipod touch for my kidz.  and registered them both with my email.  I didn't know every text message I receive, they too would get on their IPod Touch.  HOw do I change this? And do I need to contact a Representative to add them

    i just purchased 2 ipod touch for my kidz (9 & 10 yr. old) .  and registered them both with my email.  I didn't know every text message I receive, they too would get on their IPod Touch.  HOw do I change this? And do I need to contact a Representative to add their own emails....?

    Can you connect to a wifi source on the device? Enable wifi in settings on the device itself. If you don't have wifi at home, there may be a local hotspot you can use for this.
    The reason this happens is carriers don't want people downloading huge files that would slow their network as well as eat up your data plan.

  • I have an old PowerPC and a Macbook Pro running 10.6.7 sitting side by side. Both are using AirPort to connect to the internet wirelessly to the same router, but the old Mac connects with full bars, but the MBP struggles with only 2. Pls help, thanks!

    I have an old PowerPC running 10.4.11 and a Macbook Pro running 10.6.7 sitting side by side. Both are using AirPort to connect to the internet wirelessly to the same wireless router. The old Mac connects with full bars but the MBP struggles with only 2 bars. Pls help, thanks!

    BDAqua,
    Thanks for the response.
    Apple has used the term "Digital Audio" to identify this machine.  System Profiler has the following information:
    Machine Name:          Power Mac G4
      Machine Model:          PowerMac3,5
      CPU Type:          PowerPC G4  (2.1)
      Number Of CPUs:          1
      CPU Speed:          800 MHz
      L2 Cache (per CPU):          256 KB
      Memory:          768 MB
      Bus Speed:          133 MHz
      Boot ROM Version:          4.3.3f2
      Serial Number:          XBxxxxxMK9
      Sales Order Number:
    Yes, I could connect them by ethernet if all I wanted to do was transfer files, but I would like to network them so I could use wireless internet.  The machines are not always so close together, I did that to simplify the testing.  With the very slow transfer speeds I am reluctant to move ahead with the internet step. 
    <Edited By Host>

  • I replaced an old airport extreme with a new one.  None of my wifi devices will connect - always say incorrect password.  Reinstalled old device, works fine.  Any ideas?

    I have a 5 year old airport extreme.  I bought a new one to upgrade for better range.  I connected the new one to the internet with a few problems, but a phone call to my internet provider resolved them.  With an ethernet cable from the new airport extreme to my iMac, I'm connected.  However, none of my wifi devices will connect.  They see the network, but it either says "incorrect password" if I'm trying a new network name and password, or it repeatedly asks me to reenter the password if I use the old ones.  I reinstalled my old airport extreme and everything works fine.  I'm about ready to box up the new one and return it.  Any ideas?

    It is extremely difficult to fix these issues.. remotely.
    If none of your wifi devices work.. that does sound unusual..
    Have another try.. This time deal with the COMPUTER only.. leave everything else turned off.
    Unplug the Extreme from the router.. reset it to factory.. do this full setup.
    Unplug power from the Extreme.. hold in the reset button.. plug in the extreme to power and keep holding in the reset.. 10sec or so the front led should flash rapidly.. release the reset and wait a couple of min.
    Now in the computer does the Airport extreme show up under wifi as new device??
    Please make sure IPv6 is set to link local only to go further but it should work no matter what the settings are.
    No luck clear out all the old wireless names from the computer.. reboot the computer and try again to scan for new wireless devices.
    Hold the reset and try again.. it must appear in the wifi to be setup.
    No sign of it the unit is faulty and can be returned.

Maybe you are looking for

  • Can one apple ID belong to multiple family sharing groups?

    I'm interested in starting a family sharing group with my siblings (surprise).  They have children of their own, however, so if I invite them to my new group, will they also be able to create a different group for themselves with their children? My t

  • I am able to bookmark a site, but "Bookmarks" button does not appear.

    HTC Evo 4G. Firefox mobile browser 20.0.1 Using Firefox browser, if I am at a website and press "Menu" on my phone I have the "Bookmark" option. Pressing it I get "Bookmark added" message. But then when I press "Menu", it gives me the "Bookmark" opti

  • How to use protable external Hard Drive to install software?

    Hello, I have 250 GB External Portable Hard Drive. When i install any software,in installation window it only show macintosh HD..Please tell me how to install software in External HDD.

  • Asset cannot be depreciated

    Hi all, I have problem with asset depreciation. Here is the case : I run AFAB for period 7 in test run mode and I ticked the list assets in further option. I got a warning messages : Message no. AAPO509 Diagnosis Errors in planned depreciation were f

  • Ineffective Multicam Audio Sync in PPro CC (PluralEyes wins every time)

    I was excited to try the multicam sync using audio in Premiere CC but unfortunately I've found that it has very limited success. I regularly run shoots of 4 cameras with each having several clips, and when I try to sync them in Premiere only a few ac