Is the task-flow input parameter class value being ignored by the framework

hi
Although I don't remember where, I think I read or heard about the task-flow input parameter class value that it is "being ignored by the framework".
One example of this could be what is currently in the UI Shell sample application available
at http://www.oracle.com/technetwork/developer-tools/adf/uishellapp-134633.zip
It has in its task-flow in "flows\second.xml" an input parameter configured like
  <task-flow-definition id="second">
    <!-- ... -->
    <input-parameter-definition id="__3">
      <name id="__2">tabContext</name>
      <value>#{pageFlowScope.tabContext}</value>
      <class>oracle.ui.pattern.dynamicShell.TabContex</class>
      <required/>
    </input-parameter-definition>
    <!-- ... -->
  </task-flow-definition>Notice the missing "t" at the end of the class name "oracle.ui.pattern.dynamicShell.TabContex".
Still this task-flow configuration does allow to use expressions like "#{pageFlowScope.tabContext.selectedTabIndex}", which suggests that the class value is indeed "being ignored by the framework".
(see also forum thread "does the UI Shell sample break encapsulation in its task-flows"
at does the UI Shell sample break encapsulation in its task-flows )
All relevant references (bug numbers, documentation, blogs) explaining about this task-flow input parameter class value are welcome.
If no such references exist, maybe someone from Oracle can give some feedback.
many thanks
Jan Vervecken

fyi
The feedback below was posted in the forum message
at Re: does the UI Shell sample break encapsulation in its task-flows
Richard Wright wrote:
That appears to be a bug for which I am seeking confirmation.There is an enhancement request (i.e., 9377487) submitted over a year ago, that describes this behavior. It is listed as an ER as our documentation (e.g., Fusion Developer's Guide for Oracle ADF, online help ) does not specifically state that Java class for the input parameter definition is checked for type. Further anything using EL is untyped. So the expectation that types are enforced is somewhat puzzling to the development team.
However, there is an acknowledgment within circles of the development organization, that some might come to have this expectation. One trigger might be the definition itself. The other is the existence of a design time audit on the definition. For example, if the class is specified inaccurately (e.g., typo), there is an audit warning to report "not found."
Under consideration are a number of framework proposals to check for type without breaking backward compatibility or adding overhead to the production environment.
In the interim, the following recommendations are given.
Unless this breaks or can break your app in some way, no need exist for change. Nevertheless, if this is a real concern, write a test or consider a java assertion. By default, assertions are disabled at runtime. There is no need to override that default.I have been able to find enhancement request 9377487, "TASK FLOW PARAMETER VALUES NOT VALIDATED ACCORDING TO CLASS", on My Oracle Support. It currently has "Status 15 - To Internal (Oracle) Review" and "Updated 16-Dec-2010".
In the context of service request 3-4185839067 recently bug 12838099, "THE TASK-FLOW INPUT PARAMETER CLASS VALUE BEING IGNORED BY THE FRAMEWORK", has been filed and it currently still has "Status 16 - Bug Screening/Triage".
- about "... the expectation that types are enforced is somewhat puzzling to the development team ..."
Hmm, strange ... so what are people supposed to expect when there is an option to configure a class name for a task-flow input parameter?
regards
Jan

Similar Messages

  • [BUG] Page composer does not pass task flow input paramters correctly

    Hello,
    When using the page composer to add a task flow requiring parameter to an editable region, the pageDef is correctly created within the MDS store. In my test case, the generated pageDef looks like the following, which seems to be correct:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <mds:customization version="11.0.0.49.49" xmlns:mds="http://xmlns.oracle.com/mds">
       <mds:insert parent="pages_test_testWebCenterComposer2PageDef(xmlns(mds_ns1=http://xmlns.oracle.com/adfm/uimodel))/mds_ns1:executables">
          <taskFlow id="regionBinding1" taskFlowId="/taskflows/texte-riche-task-flow#texte-riche-task-flow" xmlns="http://xmlns.oracle.com/adf/controller/binding" Refresh="ifNeeded"/>
       </mds:insert>
       <mds:insert parent="pages_test_testWebCenterComposer2PageDef(xmlns(mds_ns2=http://xmlns.oracle.com/adf/controller/binding)xmlns(mds_ns1=http://xmlns.oracle.com/adfm/uimodel))/mds_ns1:executables/mds_ns2:taskFlow[2]">
          <parameters xmlns="http://xmlns.oracle.com/adf/controller/binding"/>
       </mds:insert>
       <mds:insert parent="pages_test_testWebCenterComposer2PageDef(xmlns(mds_ns2=http://xmlns.oracle.com/adf/controller/binding)xmlns(mds_ns1=http://xmlns.oracle.com/adfm/uimodel))/mds_ns1:executables/mds_ns2:taskFlow[2]/mds_ns2:parameters">
          <parameter id="idStellent" xmlns="http://xmlns.oracle.com/adfm/uimodel"/>
       </mds:insert>
       <mds:insert after="pages_test_testWebCenterComposer2PageDef(xmlns(mds_ns2=http://xmlns.oracle.com/adf/controller/binding)xmlns(mds_ns1=http://xmlns.oracle.com/adfm/uimodel))/mds_ns1:executables/mds_ns2:taskFlow[2]/mds_ns2:parameters/mds_ns1:parameter">
          <parameter id="mode" value="edit" xmlns="http://xmlns.oracle.com/adfm/uimodel"/>
       </mds:insert>
    </mds:customization>Since it was not working as I expected, I added a method call printing the parameters values as the first action of my task flow, but I get the following, showing that none of the parameters ever get passed to the task flow. Of course, in its current state idStellent should indeed be null, but the mode should have the static value "edit":
    ------------------------ idStellent = null, mode = null ------------------------Can we get a ticket filled for this issue because it's an extreme blocker for us as it prevent reuse of task flows with the page service.
    Regards,
    ~ Simon

    Hi,
    I forgot to mention that the task flow is extremely simple, here's its definition:
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <task-flow-definition id="texte-riche-task-flow">
        <default-activity>printParams</default-activity>
        <input-parameter-definition>
          <name>idStellent</name>
          <value>#{pageFlowScope.idStellent}</value>
          <class>java.lang.String</class>
        </input-parameter-definition>
        <input-parameter-definition>
          <name>mode</name>
          <value>#{pageFlowScope.mode}</value>
          <class>java.lang.String</class>
        </input-parameter-definition>
        <managed-bean>
          <managed-bean-name>document</managed-bean-name>
          <managed-bean-class>ca.ulaval.ena.faces.bean.HtmlStellentDocumentBean</managed-bean-class>
          <managed-bean-scope>pageFlow</managed-bean-scope>
          <managed-property>
            <property-name>idStellent</property-name>
            <property-class>java.lang.String</property-class>
            <value>#{pageFlowScope.idStellent}</value>
          </managed-property>
        </managed-bean>
        <managed-bean>
          <managed-bean-name>block</managed-bean-name>
          <managed-bean-class>ca.ulaval.ena.webcenter.bean.BlockBean</managed-bean-class>
          <managed-bean-scope>request</managed-bean-scope>
        </managed-bean>
        <view id="texteRiche">
          <page>/fragments/ut412/texteRiche.jsff</page>
        </view>
        <view id="texteRicheEditable">
          <page>/fragments/ut412/texteRicheEditable.jsff</page>
        </view>
        <router id="modeSwitch">
          <case>
            <expression>#{pageFlowScope.mode == 'edit'}</expression>
            <outcome>edit</outcome>
          </case>
          <default-outcome>read-only</default-outcome>
        </router>
        <method-call id="printParams">
          <method>#{block.print}</method>
          <parameter>
            <class>java.lang.String</class>
            <value>#{pageFlowScope.idStellent}</value>
          </parameter>
          <parameter>
            <class>java.lang.String</class>
            <value>#{pageFlowScope.mode}</value>
          </parameter>
          <outcome>
            <fixed-outcome>done</fixed-outcome>
          </outcome>
        </method-call>
        <control-flow-rule>
          <from-activity-id>texteRicheEditable</from-activity-id>
          <control-flow-case>
            <from-outcome>annuler</from-outcome>
            <to-activity-id>texteRiche</to-activity-id>
          </control-flow-case>
          <control-flow-case>
            <from-outcome>ok</from-outcome>
            <to-activity-id>texteRiche</to-activity-id>
          </control-flow-case>
          <control-flow-case>
            <from-outcome>enregistrer</from-outcome>
            <to-activity-id>texteRicheEditable</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <control-flow-rule>
          <from-activity-id>modeSwitch</from-activity-id>
          <control-flow-case>
            <from-outcome>read-only</from-outcome>
            <to-activity-id>texteRiche</to-activity-id>
          </control-flow-case>
          <control-flow-case>
            <from-outcome>edit</from-outcome>
            <to-activity-id>texteRicheEditable</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <control-flow-rule>
          <from-activity-id>printParams</from-activity-id>
          <control-flow-case>
            <from-outcome>done</from-outcome>
            <to-activity-id>modeSwitch</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <use-page-fragments/>
      </task-flow-definition>
    </adfc-config>Note that the method call at the start is totally useless and only used to print the input parameters.
    ~ Simon

  • How to return the name (or ID) of the Task FLow in Script

    Sitaution; two task flows created which can be accessed via Tools > TaskFlows within FDQM
    Task Flow "1.1 Multi Load - Import" --> Should run Batch Process Up to Import (enmBatchProcessLevel: 2)
    Task Flow "2.1 Multi Load - Import Up To Validate" --> Should run Batch Process Up to Validate (enmBatchProcessLevel: 4)
    I have developed one generic script which I would like to use for each task flow.
    Only the enmBatchProcessLevel differs between the task flows and therefore I would like to parse this enmBatchProcessLevel as a parameter my generic script.
    To be able to do this, the script needs to know on which task flow a user has clicked. So, I am looking for a function or statement which returns the name (or ID) of the task flow. Based on this name (or ID) a conditional statement can be performed in which a variable is dynamically filled. This variable can then be parsed as a parameter to my generic script.
    For instance:
    Sub GenericRoutine
         Dim strTaskFlow
         Dim intBatchProcessLevel
         '--Get the Task Flow Name
         strTaskFlow = ......<How to return the TaskFlow name or ID?>
         '--Validate the task flow and fill variable intBatchProcessLevel dynamically
         Select Case strTaskFlow
              Case "1.1 Multi Load - Import"
                   intBatchProcessLevel = 2
              Case "2.1 Multi Load - Import Up To Validate"
                   intBatchProcessLevel = 4
         End Select
         '--Execute generic script
         '--Call Batch script and parse intBatchProcessLevel as a parameter:
         Call sBatchProcess(intBatchProcessLevel)
         '--Execute generic script
    End Sub
    Sub sBatchProcess(Byval intBatchProcessLevel)
         Dim lngProcessLevel
         Dim strDelimiter
         Dim blnAutoMapCorrect
         '--Use intBatchProcessLevel to fill lngProcessLevel
         lngProcessLevel = intBatchProcessLevel
         strDelimiter = "_"
         blnAutoMapCorrect = 0
         Set BATCHENG.PcolFiles = BATCHENG.fFileCollectionCreate(CStr(strDelimiter))
         BATCHENG.mFileCollectionProcess BATCHENG.PcolFiles, CLng(lngProcessLevel), , CBool(blnAutoMapCorrect)
    End Sub
    Edited by: user13642656 on Jul 21, 2011 4:55 AM

    Hi, thanks for your reply.
    The Generic script contains 600+ records, which I would like to maintain once, when having multiple Task Flows for Import, UpToValidate, ValidateOnly, UpToExport, ExportOnly etc.
    Is there a central storage in FDQM workbench for script, like a "Module" in Excel VisualBasic environment? Thanks!

  • How to pass process flow input parameter to unix script external process

    Hi,
    I'm trying to pass a process flow input paramter (string) to an external process which is a unix script. I've been working on this for the last 2 days but can't get it to work. Here is the design. I have a process flow with 3 maps that create a file in the unix file system. I have a suffix, which is an input parameter to the process flow, that will need to be passed to the unix script to rename the file appending the suffix to the filename. I've tried different things and nothing works for me. Has anyone done something similar in OWB?
    Thanks much!

    I tried using useBean inside the Jsp for this.
    But following error comes:
    OracleJSP error: oracle.jsp.parse.JavaCodeException: Line # 13, oracle.jsp.parse.JspParseTagExpression@102e37e
    Error: Java code in jsp source files is not allowed in ojsp.next mode.
    Please explain why?
    How can set POST request params when calling to an external servlet?

  • Two pages reuse a task flow -------how to reinitialize the task flow?

    Hi, i get a question.
    In general:
    In the navigation menu i have two commandlink that are "Service" and "Application". And when i click on each of the two command links, i go to a page.
    The detail:
    This two commandlinks use a same task flow-----that is : <af:commandNavigationItem...... definition of this two link' action attributes are just the same.
    What's more, the pages that i go to when i click on the link also use the same one, just show something different bansed on the paramaters when alick on the link. The parameters are defined in the <af:commandNavigationItem...... using <af:setPropertyListener..
    And the question is:
    when i click on the "Service" link and see the "Add service" page and then click "Application" it's still the "Add service" page, and otherwise is the same. i just can not jump freely through this tow link.
    I have debuged the code and find that, once i click "Service" link then i click "Application" link, the task flow won't reinitialize.
    Any one has some solutions?
    Thanks in advance.

    Reading the official doc will help.
    http://docs.oracle.com/cd/E15523_01/web.1111/b31974/taskflows_complex.htm#BABHIAAI

  • Edit the task flow which is default in template for top navigation

    Hi,
    Where can I get the the default task flow file (i. e. spacesNavigationPanel) for collaborative with top navigation template?
    I want to edit the task flow for navigation.
    Thanks,
    A

    Here are the steps to find the default task flow file (i. e. spacesNavigationPanel) for collaborative with top navigation template :
    Note: I am assuming you're using Oracle WebCenter Portal 11.1.1.8.x
    Goto Portal Builder - Assets tab localhost:8888/webcenter/portal/builder/administration/assets
    Select Page Templates under Structure from left side pane and you'll see list of out of the box page templates (source not editable) and custom page templates (source editable) on the right side pane.
    Take a copy of the existing 'Collaborative with Top Navigation' page template
    Select the row 'Collaborative with Top Navigation'
    Click on Actions -> Copy
    Change the display name (Default : Copy of Collaborative with Top Navigation) and description if needed.
    Click OK to create a copy of 'Collaborative with Top Navigation' page template
    Select the row w.r.t. newly created page template Copy of 'Collaborative with Top Navigation'
    Click the checkbox to make it Available (Optional if you want to use this template later)
    Click on Actions -> Edit Source to edit the source of selected page template.
    You'll see template code in the window (by default).
    Click on 'Page Definition' tab at the bottom of the template code window i.e. Switch to Page Definition tab.
    Under Executables, you can see the taskflow code w.r.t. spacesNavigationPanel as follows :      <taskFlow id="spacesNavigationPanel" taskFlowId="/oracle/webcenter/webcenterapp/view/taskflows/navigation/SpacesNavigationTopPanelCollaborative.xml#SpacesNavigationTopPanel" Refresh="ifNeeded" activation="deferred" xmlns="http://xmlns.oracle.com/adf/controller/binding"/>
    I hope it answers your question.

  • When I click on the - fire fox disappears from the task bar; it is still open but gone from the task bar, if I click on any icon it opens a new Firefox window, I end up with several windows open but none on the task bar.

    Question
    When I click on the - to minimize fire fox, it does not close the window but the firefox icon disappears from the task bar; it is still open but gone from the task bar, if I click on any other icon it opens a new Firefox window, I end up with several windows open but none on the task bar.

    Boot the computer in Windows Safe Mode with network support (press F8 on the boot screen) as a test to see if that helps.
    Do a malware check with some malware scanning programs on the Windows computer.<br>
    Please scan with all programs because each program detects different malware.<br>
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • I have to validate the field enter in that table  values is enter in the ra

    i have one table field with data
    1. <=0.5
    2. <=1
    3.textsfsfs
    4. >=2 like that
    i have to validate the field enter in that table  values is enter in the range of the above field.
    can you help me how to validate
    ex:
    if wa-upper =  wa2-sumplus  here i have to check the upper and lowe values
    if the user enter in between and eq based on the i have to give erro message.
    Please help me the same.
    Thanks
    Ramkumar

    Hi Lekha,
    Thank you this problem was solve.
    we did the this validation in back end insted of front end.
    i passed the table data in to ZFM there we are validating and giving the error message.
    thank you for helping me all the time.
    ONE problem:
    LV_TEXT is the context attribut containe type string.
    i amgetting the values in to LV_TEXT attribut.
    LV_TEXT = nkafjkafkafhkafksfkak<b>#</b>bshfsafkasfkasfkas.
    i wanto to split this and will get the before <b>#</b> values in to other other node workarea LS_dis_new.
    this LS_DIS_NEW i have to modify with table LT_DIS_NEW.
    i used the code : Split wa at '#' into table LT_DIS_NEW.
    this is not working.
    please help me the same.
    Thanks
    Ramkumar

  • Firefox window is not shown and not even in the tasks bar, but there is a process running in the task manager

    Clicked on the Firefox icon , but window did not appeared, checked in the Task manager, there is a process running with firefox.exe, and could not see any icon in the task bar adjacent to start button

    I discovered that when the "Firefox is already running . . . ." message pops up I can fix it by doing the following [note: I get the same message for the Thunderbird e-mail program too] : 1. I open 'TASK MANAGER" and click on the "Processes" tab. 2. Next I scroll down until I see Firefox.exe *32 in the leftmost column (or Thunderbird. exe *32 if the message came up there), highlight that line by clicking on it and then click on the "end process" button on the right side on the bottom. 4. A pop-up window will come up but ignore its message and click on the "end process" button in the pop-up window. The program should then start the next time you click on the icon..
    While that saves the need to restart your PC to fix the problem, I have yet to find any information as to the reasons for those two processes to show up in the first place. I'm running the 64 bit Win 7 Professional and do not know if that has something to do with those two processes running from time to time or not. The message comes up often but not all the time and I haven't been able to pinpoint any action on my part where the message comes up if I do '''X '''or the message never comes up when I do '''Y''' before closing Firefox or Thunderbird.

  • Field Values being changed in the flat file on Application Server

    Hi All,
    I am loading a flat file(.CSV) from Application server. The file has some characteristic fields, for ex: CNUM of type Char, length 20. But it has got the value which is of 10 char length, say XYZ1234XAB. When I load the same fiel from client workstation, the load was successful but when I load it from Application server, the load has failed and the error is Invalid/Hex. characteristics for this record and many such records.
    When I checked the file on the application server the value 'XYZ1234XAB' is being displayed as 'XYZ1234XAB   #' and it is also being loaded with '#'. This is the cause of the error.
    Why is the value being changed on the application server? What can I do to overcome this?
    Thanks,
    RPK.
    Message was edited by:
            RPK

    Hi Ganesh,
    I have already loaded data to my ODS and when activating it is giving error "Value 'XYZ123XABC   #' (hex. '123456....') of characteristic CNUM contains invalid chara".
    I also have some lower case char in some of the records for the same field. The file is huge and cannot change the file, infact I have many such files. Is there any other way to overcome this?
    Thanks,
    RPK

  • When opening Firefox 6 I receive 2 JavaScript Application errors; the 1st is "TypeError: Component.classes[TvtPwmComponent_CID] is undefined". The 2nd error is; "TypeError:Components.classes[componentid] is undefined." How can I correct these errors?

    When opening Firefox 6 I receive 2 JavaScript Application errors; the 1st is "TypeError: Component.classes['''TvtPwmComponent_CID'''] is undefined". The 2nd error is; "TypeError:Components.classes['''componentid'''] is undefined." and upon closing Firefox 6 I receive the following JavaScript error; "ReferenceError:'''M_caFxTBobj''' is not defined."

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • ITunes Consolidation: Will it create duplicates of media files if they already exist in the new itunes destination folder but arent being referenced by the itunes library?

    I have a macbook pro from fall 2010. I have been using my external HD as my primary itunes folder for the past 7 yrs ( i.e it is organized by itunes default categorization, etc). However, there is some overlap between my external HD itunes folder and my comps original itunes folder (probably 20-30% of my current library's media files were already duplicated there from when i first bought the HD and transferred files to the external, however they are mostly referenced from the external now). Also there are files in the comp's itunes folder that are not on my external (probably due to organizational mishaps and podcast downloads when not connected to the external, etc). I do not know how many files this is the case for.
    Recently, i decided that i wanted to consolidate all of my itunes music into one concise folder on my macbook's HD to avoid these issues going forward.  I also just bought a new external which i will use to back up my comp's itunes folder once i consolidate everything to the comp. But i plan on using the itunes folder on the comp going forward or at least using the consolidate fcn to avoid these issues.
    Here is my dilemma. Prior to learning of the consolidate feature today, I changed the default itunes folder in settings to the original itunes folder on the macbook and then manually dragged all of the media files from my external itunes folder to the macbook's itunes folder. There were a ton of duplicates or overlapping folders with similar artist names, so i opted to have them merge all folders where possible. After doing this, i realized the itunes library still references these files that i dragged and dropped from the external since that is where my default itunes folder used to be. At that point i then read and learned of the consolidate itunes feature which seems like the best way to do this. But i am afraid that if i consolidate my library to my macbook's itunes folder now, will it create duplicates of the 4000 + media files i just dragged to the macbook's itunes folder which are already in the itunes library but being referenced from the old external??
    Question: Is there a way that i can make these files i just dragged to the macbook's itunes folder become the ones referenced by the itunes library through the consolidate feature without creating duplicates of these 4000+ files? I want to avoid having  three copies of these files (two duplicates in the itunes and the originals on the external). Furthermore, is there a best way to find out which files in the macbook's itunes folder are not being included in the library after consolidating everything to the computer's HD? Then after that, what is the best way to start backing this all up to my new external, so that this overlapping issue doesnt happen again?  Im assuming i just need to make sure to consolidate first when changing itunes folders going forward. Thank you. I know that was a lot  to read but hopefully someone can help with this issue.

    In general:
    - The best way to check if files are in a library is to drag the whole media folder to the library.  If something was missed it will be added.  If it is in the library is won't be added a second time.
    - If you have a second copy of a file and iTunes does not currently list that specific file in its database then even if it is identical to one already in the database it will add it a second time.  So if you have file xyz on the internal drive and the external drive and add them to iTunes you will end up with two entries for the same thing in iTunes because you really do have to copies of the files.  While this can happen with two copies on a single drive, it will almost definitely be the case when you have a copy of a file on two drives because iTunes really sees them as two different things.
    -Unless you know how iTunes works, avoid moving files yourself.  Let the consolidate feature do all the file moving.  Manually moving files can really mess up iTunes unless you know what you are doing and have iTunes set to not try to do it itself.
    - There's no clean and easy way to delete duplicates.  The best thing is to change practice so you don't create them.   Here are  references:
    How to find and remove duplicate items in your iTunes library - http://support.apple.com/kb/HT2905
    http://dougscripts.com/itunes/itinfo/dupin.php (commercial)
    Posts by turingtest2 about different types of duplicates and techniques- https://discussions.apple.com/thread/3555601 and https://discussions.apple.com/message/16042406 (Note: The DeDuper script is for Windows)
    http://www.hardcoded.net/dupeguru_me/

  • My Iphone 3gS is not being recognized in Itunes on my laptop. It is charging so the USB port is working properly. My wifes Iphone IS being recognized by the same laptop. My Iphone IS being recognized by the desktop computer and another laptop

    My Iphone is not being recognized in Itunes on my laptop. It is charging, so the USB port is working. My Iphone does work on another Laptop in the house and My wifes Iphone is being recognized on the same laptop that mine is not. Any suggestions?

    The key bit of information here is that one iPhone works on the computer in question and another does not. So it is unlikely that AMDS is not running or there is a driver problem; if either of these was the problem neither phone would be recognized in iTunes.
    Unfortunately, I don't have an answer either. Except to verify that both iPhones (the one that works and the one that doesn't) use the same cable and the same USB port.
    Also, are the two iPhones the same model and same iOS version?

  • I want to share files from iMac to MacBookPro.  In "Sharing" setup I want to check "screen Sharing" but get the error message"Screen Sharing is currently being controlled by the Remote Management service."  What do I need to FIX???

    I want to share files from iMac to MacBookPro.  In "Sharing" setup I want to check "screen Sharing" but get the error message"Screen Sharing is currently being controlled by the Remote Management service."  What do I need to FIX???

    Care to share which OS you are using? 
    Have you read for possible solutions over in the "More Like This" thread over here?-----------------------> 

  • HT202213 The screen displayed on the instructions for home sharing described as being found on the left side of iTunes isn't visible on the new iTunes page?? Where do i find that screen i.e., how do I fine the home sharing icon on the new iTunes page?

    The screen displayed on the instructions for home sharing described as being found on the left side of iTunes isn't visible on the new iTunes page?? Where do i find that screen i.e., how do I fine the home sharing icon on the new iTunes page?

    ontthe top menu
    View > Show sidebar
    Then the computers for home sharing show up under the Shared section

Maybe you are looking for

  • IPad 4 Retina Display not working

    Hi, Trying to fix my daughters ipad4 as the display suddenly stopped working properly last night. At first taking off the magnetic screen cover sorted the issue, today that makes no difference...all you can see now is a pattern of wavy lines across t

  • Transactional data PIR, IM stock, Open PO's documentation

    I have to make a documentation of the process of transactional data loads. transactional data loads pirchase info rec, IM stock, Open PO's the transactional data is live in both sap and legacy, so they have to be even in both systems in all stages of

  • Java and javadeveloper_for_mac_os_x_10.7.dmg

    i am having problems installing java and javadeveloper_for_mac_os_x_10.7.dmg, i keep getting an error saying, "...can't be installed on this disk. An error occurred while evaluating JavaScript for the package" On my Lion 10.7.1 running in VMWare, I c

  • Inserting a node between two existing nodes not tworking!

    According to the user manual, I should be able to insert a node between two other nodes by dragging and dropping when the input knot is highlighted. I have never been able to get this to work. Anyone have any suggestions??

  • Garbage fonts in Safari

    I've read through the previous posts on this subject, but none of the solutions seem to work in my case. In Safari, some of the webpages or parts of the webpages come up with garbage text. I've taken a screen shot of one particular site, but I'm not