Toggle Option in Process Chain not working

Hello SDNers,
I am experiencing the below scenario with one of my process chain.
Process Chain FLow
Start
|
|
Local Chain (To delete the already existing file from Application Server(ZFTP))
|
Local chain to rename the file
|
|
Local chain (Load data to cube)
|
|
Local chain to backup a file from Appl. Server
In the above flow, the step 2 has been set to proceed further even if there are no files to delete in the application server. To achieve this I am using a toggle option between the step 2 and 3.
At times, the chain progress further when there are no files to delete as expected but not all the times.
I am trying to figure why the step which is supposed to progress further is not progressing some times even though it has been set to move further.
Any advice would be helpful.
Regards,
Vinoth

Hello Venkatesh,
Thank You for your Patience.
I have BW systems both running in the SAP_BW Versions 730 & 701.
I have checked the folders " Other BW Processes " & "Other" and below are the process types.
Other BW Processes
Attribute Change Run
Adjustment of Time-Dependent Aggregates
Deletion of Requests from PSA
Deletion of Requests from the Change Log
Execute Planning Sequence
Switch Realtime InfoCube to Plan Mode
Switch Realtime InfoCube to Load Mode
Reorganize Attributes and Texts for Master Data
Execute Analysis Process
Update Explorer Properties of BW Objects
Other
Event in SAP CPS
Job in SAP CPS
Last Customer Contact Update (Retraction)
Regards,
Vinoth V

Similar Messages

  • "Ask to buy" and "Sign in to Approve" process is not working

    Last weekend I setup Family Sharing for the first time, but the "Ask to buy" and "Sign in to Approve" process is not working. I am the Family Organizer and I created an account for my child under 13 with "Ask to buy" enabled. My child can go in to the App Store, click "Buy" for a desired app and I get a notification on my iPhone 5s... as expected. When I open the Notification I have the option to Decline or Approve. If I select Approve, a box pops up asking me to enter the password for my child's iCloud account to complete the request. (It seems odd to me that I'd have to enter his password instead of my own, but whatever.) So I enter his password and the box goes away for a second and then comes right back like I typed it wrong or something. I enter it again and again and always the same box comes back and the request is never completed. We've tried this several times over several days and always see the same behavior. I have also tried entering my password instead of his (since that makes more sense to me) but I encounter the same problem.
    I have verified that I am signed in to my iCloud account and my iTunes account on my iPhone 5s. I have also verified that my son is logged in with his iCloud/iTunes account on his iPod touch, so why isn't this working? Additionally, if I disable "Ask to Buy" then I can successfully install apps on his iPod from the iPod itself.
    Is it normal for the "Sign in to Approve" box to show his iCloud address instead of mine? And if so, why doesn't it complete when I enter his password? Am I missing something completely? This is driving me crazy.

    Hi ,
    When you click your link "Click here", the SharePoint web page with anchor will not work until refresh the page, if it's the case, you can add the javascript code to refresh the page automatically as workaround per the following similar post.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/f7eab808-da8a-44fd-9933-f9b992f5affc/sharepoint-anchor-tags?forum=sharepointgeneralprevious
    http://yalla.itgroove.net/2012/05/anchor-links-tags-in-sharepoint-2010/
    <script type="text/javascript">
    setTimeout(Reload,2000);
    function Reload()
    window.location.hash=self.document.location.hash.substring(1);
    </script>
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] 
    Daniel Yang
    TechNet Community Support

  • Update process does not work on Tabular Form

    Hello,
    I have 2 tabular forms on one page, which are using manual update processes.
    First form is created using wizard, and therefore works perfectly.
    The update process is as follows:
    DECLARE
      lc_string VARCHAR2(4000);
    BEGIN
      FOR i IN 1..APEX_APPLICATION.G_f01.COUNT
      LOOP
         lc_string := lc_string|| '[' ||APEX_APPLICATION.G_f*03*(i) || '|' || APEX_APPLICATION.G_f*04*(i) || ']';
      END LOOP;
      --Database processing using the concatenated string here
    END;Second form is created manually, using the following code:
    SELECT apex_item.checkbox (30,
                               '#ROWNUM#',
                               'onclick="highlight_row(this,' || '#ROWNUM#'|| ')"',
                               NULL,
                               'f30_' || '#ROWNUM#'
                              ) delete_checkbox,
           CATALOG_ID,
              apex_item.hidden (31, CATALOG_ID)
           || apex_item.text (32,
                              LANG,
                              80,
                              100,
                              'style="width:100px"',
                              'f32_' || '#ROWNUM#'
           || apex_item.hidden (33, wwv_flow_item.md5 (LANG, DESCRIPTION)) LANG,
           apex_item.text (34,
                           DESCRIPTION,
                           80,
                           100,
                           'style="width:255px"',
                           'f34_' || '#ROWNUM#'
                          ) DESCRIPTION
      FROM V_CATALOGS
    UNION ALL
    SELECT     apex_item.checkbox
                              (30,
                               TO_NUMBER(9900 + LEVEL),
                               'onclick="highlight_row(this,' || '#ROWNUM#' || ')"',
                               NULL,
                               'f30_' || TO_NUMBER (9900 + LEVEL)
                              ) delete_checkbox,
               NULL,
                  apex_item.hidden (31, NULL)
               || apex_item.text (32,
                                  NULL,
                                  80,
                                  100,
                                  'style="width:100px"',
                                  'f32_' || TO_NUMBER (9900 + LEVEL)
               || apex_item.hidden (33, NULL) LANG,
               apex_item.text
                                               (34,
                                                NULL,
                                                80,
                                                100,
                                                'style="width:255px" '  ,
                                                'f34_'
                                                || TO_NUMBER (9900 + LEVEL)
                                               ) DESCRIPTION
          FROM DUAL
         WHERE :P18_TEMP = 'ADD_ROWS1'
    CONNECT BY LEVEL <= 1However, the update process does not work on this form.
    I created it using the first one as an example, but with the id's of the second form:
    DECLARE
      lc_string VARCHAR2(4000);
    BEGIN
      FOR i IN 1..APEX_APPLICATION.G_f*30*.COUNT
      LOOP
         lc_string := lc_string|| '[' ||APEX_APPLICATION.G_f*32*(i) || '|' || APEX_APPLICATION.G_f*34*(i) || ']';
      END LOOP;
      --Database processing using the concatenated string here
    END;Also, both forms are opening in a modal pop-up dialog window.
    I use a Dialog Region plug-in for that.
    Please advise, what is causing a problem with update?

    Sloger,
    if this is your tabular form
    SELECT apex_item.checkbox (30,
    ...and this is your update statement
    FOR i IN 1..APEX_APPLICATION.G_f*30*.COUNT
    ...Then you will only ever update records that have been checked. Unchecked checkboxes are not passed back in the global array. You need to have a hidden column with the ID's for the record and loop through that when you are updating/inserting. That is why the built in tabular form has a MRU and a MRD. the MRU loops through the hidden ID column. The MRD loops through the checkbox.
    Thanks,
    Tyson Jouglet

  • Itunes does not open,everytime i try it says "The itunes application could not be opened. The required folder cannot be found" I have tried the shift key option but that does not work. help!!

    I cannot open itunes. Everytime i try it says "The itunes application could not be opened.The folder cannot be found." I have tried the shift key option but this does not work. Please help.!!

    Try the actions here for that driver.
    iOS: Device not recognized in iTunes for Windows
    I would first do this:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7

  • Layout Options - Page Order Does Not Work Correctly

    I have a Photosmart C7280 All-in-One printer.  The Layout Option - Page Order does not work as expected.  The User Guide (page 95) states that the default for a multiple page document is to print first page first.  The manual states that to print last page first requires one to change the Page Order to "Back to Front".  For my Excel, Word, Internet Explorer and PDF pages, I need to leave the Page Order as "Front to Back" if I want the last page to print first.  This makes no sense.  In addition, I can't get my Quicken reports to print last page first no matter what I try.  Does anyone no why the Page Order does not work as expected for Excel, Word, IE and PDF, and does not work at all for Quicken?

    Keisha,
    If you uncheck the "show" option, then the corresponding HTML for that item is not rendered on the page. Thus, when you try to inspect that item via APEX_APPLICATION.G_F02, it simply doesn't exist.
    One trick that I use when I want to have hidden items on the page, but not make them take up any space, is to concatenate them to items that will be visible.
    Using your query as an example, I would re-write it like this:
    SELECT APEX_ITEM.CHECKBOX(1,ROWNUM,'CHECKED')ATTENDED,
    APEX_ITEM.HIDDEN(2,C.PARTY_ID)
      || APEX_ITEM.HIDDEN(3,C.PARTY_TYPE_CODE)
      || C.PARTY_TYPE_CODE PARTY_TYPE_CODE,
    S.PERSON_ID,
    S.PERSON_FIRST_NAME AS NAME,
    C.PARTY_CASE_ID
    FROM CASE.PARTY C
    INNER JOIN DN.PERSON S
    ON C.PARTY_ID = S.PERSON_ID
    WHERE C.PARTY_CASE_ID = :P18_CDBCASE_ID
    AND C.PARTY_SEQ_NO = :P18_SEQThus, the second APEX report column will contain the HTML for the hidden items PARTY_ID & PARTY_TYPE_CODE, as well as the value for PARTY_TYPE_CODE. When you submit the page, you should not encounter any issues.
    Thanks,
    - Scott -
    http://sumnertechnologies.com/
    http://spendolini.blogspot.com/

  • Supersession chain not working

    Hi Gurus,
    i need your help on the supersession topic. I am new to this and i'm finding some problems in defining supersession chains and use them. To define a chain, I have the steps written in the guide here below:
    http://help.sap.com/saphelp_dimp50/helpdata/EN/59/712938dd60fe64e10000009b38f842/frameset.htm
    more precisely, I:
    - defined a very simple supersession chain using PIC01. Material A is replaced by Material B, from today onwards, reason 1 (maintained earlier), F
    - gave the same availability check code and strategy group to both materials
    But, when i place an order for Material A, availability check is done against Material A... and part is not substituted by Material B.
    I think that the guide there.. is missing something. It seems too simple.. i was expecting to customize some condition table.. for example to make supersessions dependent on some parameters like sales order type or customer group... etc. Can somebody please give me some advice on what is making my supersession chain not working?
    thanks
    regards
    Marco

    Hi
    Also you need to do ABAP development:
    a.) Create CUSTOMER INCLUDE and add ABAP structures REGUH_LST and REGUP_LST to contain the values provided by payment program
    b.) Define the BTE 00002110 and copy the sample function module and add the source text required.
    Jayaram

  • Batch process does not work in one service, but worked in another.

    Hi Fellows,
    We have here a batch process with a code encrypted, that runs daily in a production environment.
    Tonight this batch process did not work.
    It is expected that this process runs in about 20 seconds, but tonight this process used about 3 hours and did not finished.
    We checked if it was concurrency, killed some sessions and tried again, and nothing has changed.
    And then someone changed the service that this process uses, it was 'bat' and changed to 'dba'. And it worked succesfully in 11 seconds.
    Here is the tnsnames that the batch process uses:
    bat =
    (DESCRIPTION =
    (LOAD_BALANCE = OFF)
    (FAILOVER=ON)
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x1)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x2)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x3)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = bat)
    (FAILOVER_MODE =
    (BACKUP = dba)
    (TYPE = NONE)
    (METHOD = BASIC)
    (RETRIES = 20)
    (DELAY = 5)
    dba =
    (DESCRIPTION =
    (LOAD_BALANCE = OFF)
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x1)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x2)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x3)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = dba)
    Do you guys know what could be the reason?
    Thanks in advance.

    We set the service which the app should connect.
    These services are set in srvctl:
    ora.cms.bat.cms1.srv ONLINE ONLINE on fastora1
    ora.cms.bat.cms2.srv ONLINE ONLINE on fastora2
    ora.cms.bat.cms3.srv ONLINE ONLINE on fastora3
    ora.cms.bat.cs ONLINE ONLINE on fastora1
    ora.cms.cms1.inst ONLINE ONLINE on fastora1
    ora.cms.cms2.inst ONLINE ONLINE on fastora2
    ora.cms.cms3.inst ONLINE ONLINE on fastora3
    ora.cms.cmsuser.cms1.srv ONLINE ONLINE on fastora1
    ora.cms.cmsuser.cms3.srv ONLINE ONLINE on fastora3
    ora.cms.cmsuser.cs ONLINE ONLINE on fastora1
    ora.cms.db ONLINE ONLINE on fastora1
    ora.cms.dba.cms1.srv ONLINE ONLINE on fastora1
    ora.cms.dba.cms2.srv ONLINE ONLINE on fastora2
    ora.cms.dba.cms3.srv ONLINE ONLINE on fastora3
    The batch process connects to a service [ bat ], but it hangs and don't finish. But when we change the service do dba is just pass in some seconds and finish succesfully.
    Connected to DB [issr@bat  ]
    PAYware CMS Version 8.0 - Module : E352 Release : 000000002
    Program: /cms/cmsissr/CMS/bin/issuer/mepcs352
    Release: 2
    PARAMETERS OK !!!
    NUMBER OF PROC.: 000001
    Number of transactions : +000047570
    Number of parallel processes: 000001
    Transactions by process: 000000000000047570
    Transactions Processed: 000010000

  • BI IP Executing planning sequence via process chain not possible

    Hi,
    we use BI IP and have defined a process chain (RSPC) with value type process planning sequence. When we execute it, we get error message
    "Inconsistent input parameter (parameter: <unknown>, value <unknown>)"
    When we execute this planning sequence via the modeller or via SE38 RSPLS_PLSEQ_EXECUTE everything works fine. I thougt the cause could be the user of the job itself (job is executed with different user, and variant of planning sequence is user-dependent!), but I changed the user in the job itself as well without results.
    any thoughts?
    regards
    D
    null

    Hi,
    I executed with my user and have a SAP_ALL authorization. Perhaps it could be because we use authorisation with the old method (4.0) (-> I'm not sure on this). I also think it has to do with authorization. I'll check this out with our authorization consultant.
    D

  • Batch processing does not work with action

    Here is the thing. I have implementes several action on Photoshop. SOme of the include several  sub actions and  different saving locations. For example, I open a file, then I hit my prefered key combo for that action, and I have:
    1) convert to cmyk
    2)save  copy as JPG with 11 quality level
    3) save to folder A
    4) image size to 72 dpi
    5) covert to RGB
    6) save as JPG 6 quality level
    7) save to folder B
    8) close file and discard cahnges.
    Everything runs like heaven, but the moment I want to batch several files everything stalls.
    I choose file > Batch > Choose my set > choose my action
    Source > I choose where my files are (usually a PDF)
    then I use "Supress file open options dialogs"
    Destination>  Since I already have set destinations y my actions, I choose here a "dump" folder
    On errors > I hit Save As... and put a name for that log.
    Then photohop opens my PDF on Photoshop and does nothing! It keeps my file open.
    I m gettting frustated here, because I ma about to work with 400 files to batch, and this batch system does not work.
    I am using CS6
    Any clues

    Your action doesn't to seem to include any Open actions. Why do you have the "Supress" option enabled?
    Also, since your action has the two save commands, you would just leave the Destination set to None. Setting a Destination means that is going to save the files again.
    The problem you'll run into though is that the action also saves the file name as part of the action, so that you'll end up just saving over the one file each time the action is played back on your 400 files. So Photoshop will process all the files, but each time it will overwrite the first file, so you'll end up with one file in each folder. Normally, in these situations, you'd use the Destination setting and use the "Overrride Action "Save As" Commands", which would substitute the Destination folder for whenever a Save command is used. The problem here is that you can only choose a single destination folder, so all files would be saved to the same location.
    Short of scripting this, it may be best to break this into two separate actions.

  • Command, option, ctrl, fn keys not working

    thanks to a visiting dog who got tangled up the power adapter my laptop ended up on the floor, wide open with the keyboard popped out. I have inspected the connector cable and it looks OK to the naked eye. I disconnected the keyboard cable and re-connected.
    When using an external USB keyboard all keys function normally. When using the built-in keyboard the only keys not working are the command, option, ctrl and fn keys. I have restored modifier keys to default (I had never changed them) but this did not help. I also toggled the "use F1-F12 to control..." option in the keyboard preferences to no avail and have restored keyboard shortcuts to no avail.
    Is my keyboard shot? Is the a pref file I might delete?

    Hi, Mel. If the external keyboard works properly, I'm afraid you have to figure your built-in KB has been dogged to death. I hope the pet owner will do the right thing by you. I also hope the KB is all that was damaged. How are your adapter cord, plug, and DC-In port? Does your battery still charge OK?
    Whenever anything visits my house that's active, inattentive, and built low to the ground, my Powerbook runs on battery power only. I haven't seen one yet, but the new magnetically-connected, easily- and harmlessly-detached MacBook Pro AC adapters sound like a superb idea to me. Too bad our PBs can't use 'em.

  • Process chains not delivered in BPC 7.5 NW SP4 Version

    Hi Experts,
    We have installed BPC 7.5 NW SP04 sandbox system and we found that
    there are two process chains
    (/CPMB/IMPORT_IOBJ_MASTER, /CPMB/IMPORT_IOBJ_HIER) not delivered with
    BPC NW 7.5 NW versino which are used for BW Master data imports.
    Please suggest.
    thanks
    Venkata

    Hi,
    To acitvate BI Business content follow as below:
    Login into Backend system (BW) and run tcode SE38> Enter program name as UJS_ACTIVATE_CONTENT>Execute
    Choose AppsetID uncheck all check boxes except Activate BI Business Content and Run (F8).
    Hope it works..
    regards,
    Raju

  • Process chains not pulling any data?

    I have created   process chain and also shceduled it I am not even seeing the in monitor the requests.But in SM 37 all of them shceduled and also completed.

    Hi Vasu,
    I doubt that u have used a wrong schedule time..
    Just check going into the infopackage and then goto Monitor..and check if u can see any entry in the monitor... If not.. then proceed as below..
    So try with an immediate run and then check is that works fine for u...!!!
    Do let us know the details..
    Thanks
    Hope thishelps

  • ABAP Process of process chain not ending

    Hello,
    I have created a  Process Chain(BW) which has a ABAP Process.This program calls a FM in R/3 and deletes table data. The R/3 FM Module in turns calls  the BW FM <b>RSPC_ABAP_FINISH</b> to  Mark the ABAP Process as Green.
    Here is the code snippets
    <b>BW FM</b>
    REPORT  ZCMC47_DELETE.
    parameter: p_rfc type rfcdes-rfcdest,
               p_srfc type rfcdes-rfcdest,
               PR_VAR type variant.
    CALL FUNCTION 'ZCFM_MC47_DELETE'
    destination p_rfc  " <b>R/3 Destination</b>
      EXPORTING
        P_SRFC   = p_srfc " <b>BW Destination</b>
        pr_var = pr_var.
    <b>R/3 FM</b>
    FUNCTION ZCFM_MC47_DELETE.
      delete from ztab_rqmt1.
      commit work.
      delete from ZTAB_5MNTH.
      commit work.
      delete from ZTAB_ODUE1.
      commit work.
      delete from ZTAB_QTRLY.
      commit work.
      delete from ZTAB_RQMT2.
      commit work.
      delete from ZTAB_RQMT3.
      commit work.
    CALL FUNCTION 'RSPC_ABAP_FINISH'
    DESTINATION p_srfc  "<b> BW Destination</b>
    EXPORTING
    I_VARIANT = pr_var   <b>"Process  Variant</b>EXCEPTIONS
    ALREADY_FINISHED = 1
    OTHERS = 2
    ENDFUNCTION.
    But some how background job BI_ABAP_PROCESS is stuck in the RFC Call is not returning back to BW from R/3.
    Is there any problem with my coding please guide ?
    Please help as I'm Stuck
    Thanks,
    Dutta

    Hello,
    I have created a  Process Chain(BW) which has a ABAP Process.This program calls a FM in R/3 and deletes table data. The R/3 FM Module in turns calls  the BW FM <b>RSPC_ABAP_FINISH</b> to  Mark the ABAP Process as Green.
    Here is the code snippets
    <b>BW FM</b>
    REPORT  ZCMC47_DELETE.
    parameter: p_rfc type rfcdes-rfcdest,
               p_srfc type rfcdes-rfcdest,
               PR_VAR type variant.
    CALL FUNCTION 'ZCFM_MC47_DELETE'
    destination p_rfc  " <b>R/3 Destination</b>
      EXPORTING
        P_SRFC   = p_srfc " <b>BW Destination</b>
        pr_var = pr_var.
    <b>R/3 FM</b>
    FUNCTION ZCFM_MC47_DELETE.
      delete from ztab_rqmt1.
      commit work.
      delete from ZTAB_5MNTH.
      commit work.
      delete from ZTAB_ODUE1.
      commit work.
      delete from ZTAB_QTRLY.
      commit work.
      delete from ZTAB_RQMT2.
      commit work.
      delete from ZTAB_RQMT3.
      commit work.
    CALL FUNCTION 'RSPC_ABAP_FINISH'
    DESTINATION p_srfc  "<b> BW Destination</b>
    EXPORTING
    I_VARIANT = pr_var   <b>"Process  Variant</b>EXCEPTIONS
    ALREADY_FINISHED = 1
    OTHERS = 2
    ENDFUNCTION.
    But some how background job BI_ABAP_PROCESS is stuck in the RFC Call is not returning back to BW from R/3.
    Is there any problem with my coding please guide ?
    Please help as I'm Stuck
    Thanks,
    Dutta

  • Information Broadcast - how to get options for process chains?

    Hi,
    I try to find out why I do not get the options to trigger the information broadcast through the process chain.
    Every time I try to schedule an information broadcast, I only see the option to schedule the broadcast by time only.
    I tried by creating/activating a process chain and many more ways - with no success in seeing the desired options.
    Who could help and tell how I get the option "Scheduling Set" / "Execution with Data Change in the InfoProvider"? Do I need some add. piece of software?
    Thanks!

    hi ,
    Check these links regarding information broadcast through the process chain.
    1. [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/296edc90-0201-0010-7982-c6dc0b288296?quicklink=events&overridelayout=true]
    2. /thread/450654 [original link is broken]
    3. broadcasting through process chains
    Regards ,
    Lokesh

  • Share option for email does not work after Yosemite upgrade.

    Hi,
    Does anybody know why the share option, "Share via email" does not work anymore after Yosemite upgrade?  I love this feature.  It's just quick and easy.
    Rod.

    On Yosemite, Pages '09 v4.3 no longer recognizes the Share > Send Via Email categories. You will have to export and manually drag/drop/attach documents to Mail. There is no fix.

Maybe you are looking for

  • Error from Recovery Manager on HP Mini-110 1135CA

    Hi, after having a hard disk crash I had to order the Recovery Disks from HP called System Recovery DVD Windows 7 Starter EM and after going through the steps two times, it always fail at the end with error message: "The recovery attempt failed. Sele

  • COPA - Planned Material Cost not appearing in KE30 report

    Hi all   In COPA planning, I manually planned the Material cost (Material External Price) along with the Sales Quantity and Revenue for two company codes (one plant in each co code). But in KE30 report, I could see the material cost (MEP) values only

  • Ovm server install failure: UnboundLocalError: local variable 'dev' referenced before assignment

    I'm getting the above error on the server install. Here's the first line in the failure: File "/usr/lib/anaconda/network.py", line 685, in write      if dev.get('BOOTPROTO').lower() in ['dhcp', 'ibft']:... From my research it appears to be a known bu

  • Crossfire Troubles

    I recently got myself a 2nd HD5750 to put into Crossfire.  As a disclaimer, I do have the 12.4 Catalyst drivers, crossfire works in Windows, and 3D acceleration works fine in linux. Anyways, I've run the following commands as root: aticonfig --cfa --

  • Itunes 10.6.1.7 - HP Mediasmart server access issues in itunes

    Have just updated itunes to version 10.6.1.7 and having problems with accessing my HP Mediasmart Homeserver. Itunes can see the server on the shared tab, however when I click on the server you get "Loading "HP Mediasmart Server" at the top of the scr