BPELConsole: Initiate does not show HTML or XML form to fill in variables

Hi,
i am using a xsd with a cascaded import of other xsds.
If i use one import layer everything is fine.
But if i use something like:
1.xsd (imports 2.xsd)
2.xsd (imports 3.xsd)
The BPELConsole refuses to show me a HTML or XML form where i can fill in the variables...

Hi,
For time being create one dummy process with request and response as a string type and call your process with the [xml]string input by creating partnerlink.
Generate xml from the schema with xml generator tools.
or use java api to invoke the process.
Regards,
Bogi

Similar Messages

  • DMP does not show html link

    Hi,
    We are deploying a DMM system with DIgital Signs, version 5.3.0. We are using DMP 4310G with the beta version of firmware 5.4 as this is the only one with a browser.
    We need to show Cisco unified Intelligence Center ( CUIC ) reports of IPCCE.
    When I first tried to use the GoTo URL method with play now, it worked fine. with the same link, I created a Presentation using the designer and we only saw a black box on the screen. I can see that the startup URL changes ( if I do play now with go to url method, then Startup URL chnages to what I push and it clears the contents of the Flash Variables Data_Url, if I create a presentation and schedule it to play at certion intervals then it shangec the Flash Variables URL and the Startup URL stays as default ).
    Now the problem with the Play Now + Go To URL is that you cannot schedule and cannot erally arrange the screen as you want. But Still, this might have been a solution at least until we figure out why it is not working with Presentation + Schedule method.
    So I have created a new report on CUIC by increasing the Font size to 30 ( by default it is 10 ). It shows fine, I again created a GoTo URL also cerated a presentation with the same link. The preview on the designer looks fine.
    So I pushed the GoTo URL using play now to one DMP and scheduled the presentation for the other DMP. The one with presentation shows a big black screen and the other one shows a big white screen.
    So if anybody have any idea what might be going wrong, or what I may be doing wrong taht wuld be great.
    By the way I am uisng the permalinks of the Dashboards from CUIC. I tried with both http and https.
    Thanks

    Hello,
    DMS 5.4 is officially out, so you could test this with a full 5.4 system. DMP running 5.4 is not officially supported with DMM running 5.3. See the compatibility matrix at:
    http://www.cisco.com/en/US/docs/video/digital_media_systems/dmscompat3.html#wp1207463
    Please notice that the 5.4 release do not support Show and Share and the scheduling system has been changed with a new Channel feature.
    Regards,
    Marco

  • FSG report output does not show column headers (XML Publisher)

    Hi everyone
    Iam required to create a template for an FSG report with 20 columns. Used copy of FSG:Fixed number of columns Template(FSGTEMP) to create the template because i need to do some conditional formatting(need to show negative values in red color).
    here is the problem:
    when i use the template and run the program the output i can see the row data but not the column headers..column headings are blank!
    regarding the conditional formatting, can anybody tell me how to give the condition
    iam able to give the condition for oracle reports but not for FSG reports as i dont see the column name in the 'data field' in conditional format
    Regards
    sam

    Open the report in Edit Mode Click on the reports and in the properties section Uncheck the
    Enable Document Cache Property and your issue should be resolved.

  • Print Preview in RFx does not show new Adobe Interactive Form

    Hello Experts,
    I am trying to assign a standard Adobe Interactive form as the output form for SRM RFQ.  I have carried out the following steps in customising under "Define Actions for Document Output".
    - Selected bid invitation Action Profile = BBP_PD_BID
    - Go to "Processing Types"
    - Create a new Processing Type called "External Communication"
    - Set the following values to the new processing type:
         - Form Name = BBP_BID_INV_ADB
         - Form Type = P PDF-Based Forms
         - Format = BBP_BID_INV_ADB_MAI
         - Personalization Type = 5 - Recipeient Variable Replacement
    - Save Changes
    My problem is that when I go to into the BID (RFx) and click "Print Preview" it picks up the standard Smartform, not the new Adobe form I have added as required.
    Please can you advise of any additional config settings or other steps required to ensure that the Adobe Form is called when I click "Print Preview"?
    We are on SRM 7.0.
    I look forward your response.
    Regards,
    Matt

    Hi Matt could you please tell me how do you solve your issue? I have the same and I cant find the solution.
    Thanks a lot
    Kind Regards

  • XML child 'Title' does not show on web page

    I have imported an XML file and when I launch the page the
    title does not show.
    The following is on my page but does not display "
    <td><?xml version="1.0" encoding="UTF-8"?>
    <Title>Miss Congeniality 2: Armed and
    Fabulous</Title>xx </td>
    The rest of the field do display and I can not understand why
    'Title' Does not display.
    Thanks for any help
    David Merchant
    The following is the code to display the data:
    <cfloop index="MyCounter" from="1" to="#Counter#">
    <tr>
    <td>#mydoc.Collection.DVD[MyCounter].ID#</td>
    <td>#mydoc.Collection.DVD[MyCounter].UPC#</td>
    <td>#mydoc.Collection.DVD[MyCounter].ProfileTimestamp#</td>
    <td>#toString(mydoc.Collection.DVD[MyCounter]["Title"])#xx </td>
    <td>#mydoc.Collection.DVD[MyCounter]["SortTitle"]#</td>
    <td>#mydoc.Collection.DVD[MyCounter]["Rating"]#</td>
    <td>#mydoc.Collection.DVD[MyCounter]["ProductionYear"]#</td>
    <td>#mydoc.Collection.DVD[MyCounter]["RunningTime"]#</td>
    <td>#mydoc.Collection.DVD[MyCounter]["Audio"]#</td>
    </cfloop>
    This is the XML file I am reading
    <?xml version="1.0" encoding="us-ascii"?>
    <!-- DVD Profiler Version 2.4.0 Collection Export -->
    <!-- Exported: 9/3/2006 12:39:08 PM -->
    <Collection>
    <DVD>
    <ID>012569557123.21</ID>
    <UPC>012569-557123</UPC>
    <ProfileTimestamp>2004-03-17
    23:58:12</ProfileTimestamp>
    <Title>Doctor Zhivago</Title>
    <SortTitle>Doctor Zhivago</SortTitle>
    <Regions>
    <Region>3</Region>
    </Regions>
    <Discs>
    </Discs>
    </DVD>
    </Collection>

    I believe you want to print the XML node's text to a HTML
    table cell. To do so you would change:
    <td>#mydoc.Collection.DVD[MyCounter].ID#</td>
    to
    <td>#mydoc.Collection.DVD[MyCounter].ID.XMLText#</td>
    Try appending ".XMLText" to your variables.
    I would also consider droping the ToString method with:
    <td>#toString(mydoc.Collection.DVD[MyCounter]["Title"])#xx </td>
    to
    <td>#mydoc.Collection.DVD[MyCounter]["Title"].XMLText#</td>
    I don't know why you are invoking the toString() function
    here and not on the other nodes. It only confuses me, and likely
    you when you have to return to this code later, unless you are
    trying to do something special with this node, like set your HTML
    <title> tag.
    If you are trying to set your document's <title> tag
    then it should belong between the <head> tag of your document
    and not inside your table, as a matter of semantics.

  • Example file html 5 and jquery does not show in IE

    I used the file mobile starter and made a nice ( its not ready) mobile webpage. The problem is that it is not showing in Internet Explorer not even version 9 . The example file does not show. The site I work on is www.ebblab.nl/qrpage.php
    I know I do not really need IE since its not used in a smartphone but still its feels like a problem because this site will get some links to the big project site.

    Hi
    They removed the back button as a default inclusion in the jQuery mobile beta release as all smart-phones have one built into the system anyway, but it can be re-enabled if you wish, it is in the documentation for the new build, let me know if you have a problem finding it though.
    As for zooming in on the photos have you thought of using the css3  2d transform for this, it is supported in all the modern smart-phones, to get the image to enlarge by 2x you would use the hover/focus pseudo-class and then scale by 2.?
    img:hover, img:focus {
    transform: scale(2.0);
    You would have to use the vendor prefixes for each browser as well.
    PZ

  • PS gallery linked to Dreamweaver does not show up once on pub. server

    i created a photoshop gallery and linked it to my website (Dreamweaver) under construction (as im learning); it shows up fine when i preview it on browser from my computer location, however, it does not show up once on the public server. any help as to the direct problem with this link/file/coding, etc... would be greatly appreciated....
    site >>>> http://paulrosal.com/ >>>>> CLICK ON "ART"
    ******************************CHECK OUT CODING RIGHT HERE******************************
    <!-- saved from url=(0013)about:internet -->
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>gallery</title>
    <style>
    body,html {
    margin-top:0;
    margin-left:0;
    margin-right:0;
    margin-bottom:0;
    height: 100%;
    width: 100%;
    </style>
    <!-- Active Content Workaround Support File -->
    <script src="resources/AC_RunActiveContent.js" language="javascript"></script>
    <script language="JavaScript" type="text/javascript">
    function getQueryVariable(variable) {
      var query = window.location.search.substring(1);
      var vars = query.split("&");
      for (var i=0;i<vars.length;i++) {
        var pair = vars[i].split("=");
        if (pair[0] == variable) {
          return pair[1];
      return -1;
    </script>
    <script language="JavaScript" type="text/javascript">
      var startImg = getQueryVariable("startImg");
      //alert(startImg);
    </script>
    <!-- Flash Detection Script Block -->
    <script language="JavaScript" type="text/javascript">
    <!--
    // Globals
    // Major version of Flash required
    var requiredMajorVersion = 8;
    // Minor version of Flash required
    var requiredMinorVersion = 0;
    // Minor version of Flash required
    var requiredRevision = 0;
    // the version of javascript supported
    var jsVersion = 1.0;
    // -->
    </script>
    <script language="VBScript" type="text/vbscript">
    <!-- // Visual basic helper required to detect Flash Player ActiveX control version information
    Function VBGetSwfVer(i)
      on error resume next
      Dim swControl, swVersion
      swVersion = 0
      set swControl = CreateObject("ShockwaveFlash.ShockwaveFlash." + CStr(i))
      if (IsObject(swControl)) then
        swVersion = swControl.GetVariable("$version")
      end if
      VBGetSwfVer = swVersion
    End Function
    // -->
    </script>
    <script language="JavaScript1.1" type="text/javascript">
    <!-- // Detect Client Browser type
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    jsVersion = 1.1;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function JSGetSwfVer(i){
    // NS/Opera version >= 3 check for Flash plugin in plugin array
    if (navigator.plugins != null && navigator.plugins.length > 0) {
    if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
    var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                    var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
    descArray = flashDescription.split(" ");
    tempArrayMajor = descArray[2].split(".");
    versionMajor = tempArrayMajor[0];
    versionMinor = tempArrayMajor[1];
    if ( descArray[3] != "" ) {
    tempArrayMinor = descArray[3].split("r");
    } else {
    tempArrayMinor = descArray[4].split("r");
                    versionRevision = tempArrayMinor[1] > 0 ? tempArrayMinor[1] : 0;
                flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
               } else {
    flashVer = -1;
    // MSN/WebTV 2.6 supports Flash 4
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
    // WebTV 2.5 supports Flash 3
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
    // older WebTV supports Flash 2
    else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
    // Can't detect in all other cases
    else {
    flashVer = -1;
    return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
          reqVer = parseFloat(reqMajorVer + "." + reqRevision);
            // loop backwards through the versions until we find the newest version    
    for (i=25;i>0;i--) {    
    if (isIE && isWin && !isOpera) {
    versionStr = VBGetSwfVer(i);
    } else {
    versionStr = JSGetSwfVer(i);         
    if (versionStr == -1 ) {
    return false;
    } else if (versionStr != 0) {
    if(isIE && isWin && !isOpera) {
    tempArray         = versionStr.split(" ");
    tempString        = tempArray[1];
    versionArray      = tempString .split(",");                   
    } else {
    versionArray      = versionStr.split(".");
    versionMajor      = versionArray[0];
    versionMinor      = versionArray[1];
    versionRevision   = versionArray[2];
    versionString     = versionMajor + "." + versionRevision;   // 7.0r24 == 7.24
    versionNum        = parseFloat(versionString);
                 // is the major.revision >= requested major.revision AND the minor version >= requested minor
    if ( (versionMajor > reqMajorVer) && (versionNum >= reqVer) ) {
    return true;
    } else {
    return ((versionNum >= reqVer && versionMinor >= reqMinorVer) ? true : false );    
    // -->
    </script>
    </head>
    <body><div align="center" style="width:100%; height:100%">
    <script language="JavaScript" type="text/javascript">
    <!--
    // Version check for the Flash Player that has the ability to start Player Product Install (6.0r65)
    var hasProductInstall = DetectFlashVer(6, 0, 65);
    // Version check based upon the values entered above in "Globals"
    var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
    // Location visited after installation is complete if installation is required
    var MMredirectURL = window.location;
    // Stored value of document title used by the installation process to close the window that started the installation process
    // This is necessary to remove browser windows that will still be utilizing the older version of the player after installation is complete
    // DO NOT MODIFY THE FOLLOWING TWO LINES
    //document.title = document.title.slice(0, 47) + " - Flash Player Installation";
    document.title = document.title.slice(0, 47);
    var MMdoctitle = document.title;
    // Check to see if a player with Flash Product Install is available and the version does not meet the requirements for playback
    if ( hasProductInstall && !hasReqestedVersion ) {
        var productInstallOETags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
        + 'width="550" height="200"'
        + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
        + '<param name="movie" value="resources/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=Ac tiveX&MMdoctitle='+MMdoctitle+'" />'
        + '<param name="quality" value="best" /><param name="bgcolor" value="#3A6EA5" />'
        + '<embed src="resources/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=Plug In" quality="high" bgcolor="#3A6EA5" '
        + 'width="550" height="300" name="detectiontest" align="middle"'
        + 'play="true"'
        + 'loop="false"'
        + 'quality="best"'
        + 'wmode="opaque"'
        + 'allowScriptAccess="sameDomain"'
        + 'type="application/x-shockwave-flash"'
        + 'pluginspage="http://www.adobe.com/go/getflashplayer">'
        + '<\/embed>'
        + '<\/object>';
        document.write(productInstallOETags);   // embed the Flash Product Installation SWF
    } else if (hasReqestedVersion) {  // if we've detected an acceptable version
        AC_FL_RunContent(
    'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
    'flashvars','baseRefUrl=resources/&groupxml=group.xml&stylexml=style.xml&localText=localT ext.xml&livePreview=false&startImg='+startImg,
    'width', '100%',
    'height', '100%',
    'src', 'resources/gallery',
    'quality', 'high',
    'pluginspage', 'http://www.adobe.com/go/getflashplayer',
    'align', 'middle',
    'play', 'true',
    'loop', 'true',
    'scale', 'showall',
    'wmode', 'opaque',
    'devicefont', 'false',
    'id', 'gallery',
    'bgcolor', '#f7f7f7',
    'name', 'gallery',
    'menu', 'true',
    'allowScriptAccess','sameDomain',
    'movie', 'resources/gallery',
    'salign', ''
      } else {  // flash is too old or we can't detect the plugin
        var alternateContent = 'This photo gallery requires the Adobe Flash Player.'
            + '<a href=http://www.adobe.com/go/getflash/>Get the free Flash Player here</a>';
        document.write(alternateContent);  // insert non-flash content
    // -->
    </script>
    <noscript>
    // Provide alternate content for browsers that do not support scripting
    // or for those that have scripting disabled.
           Sorry, this photo gallery requires that scripting be enabled on your web browser and that the Adobe Flash Player be installed.
      <a href="http://www.adobe.com/go/getflash/">Download the Adobe Flash Player</a>
    </noscript>
    </div>
    </body>
    </html>

    Are you sure you have uploaded everything in the gallery folder to the correct location. It can't find the index.html page.

  • Uix does not show

    Hi,
    When I create a uix page with the wizard and try to run it. It does not show anything.
    I only see "Loading..." and that's it.
    Iam using Jdev 9.0.3.0 and uix 2.1.5
    Can anybody help me?????
    below the code of my page
    <?xml version="1.0" encoding="windows-1252"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
          xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
          xmlns:html="http://www.w3.org/TR/REC-html40">
      <content>
        <dataScope xmlns="http://xmlns.oracle.com/uix/ui"
                   xmlns:data="http://xmlns.oracle.com/uix/ui">
          <provider>
            <!-- Add DataProviders (<data> elements) here -->
          </provider>
          <contents>
            <document>
              <metaContainer>
                <!-- Set the page title -->
                <head title=""/>
              </metaContainer>
              <contents>
                <pageLayout>
                  test
                </pageLayout>
              </contents>
            </document>
          </contents>
        </dataScope>
      </content>
      <handlers>
        <!-- Add EventHandlers (<event> elements) here  -->
      </handlers>
    </page>

    thanx. Now I've tried to run it on a standalone oc4j server, the deployment is succesfull, but now Iam getting "page cannot be displayed".
    Again everything is out of the box and fully generated by jdeveloper.

  • I subscribed to Creative Cloud for teams and LR does not show in AAM.

    I have a licensed copy of LR4.4 installed along with CS6.  Howeveer LR does not show in AAM and cannot be accessed.  Please advise to solution.

    Whaleybird1958 which operating system are you using?  Please make sure you meet or exceed the system requirements listed at http://www.adobe.com/products/photoshop-lightroom/tech-specs.html.

  • Plz. help,table does not show value for one field

    hi all,
    i have a really strange problem , i have a string field in access database that contains the date and time value,this field for some strange reason does not show in my table created through html,
    i tried all combination(arranging the fields) ,renaming it w/o help, it shows the value using out.println(but then why is it not showing me in the table???)
    plz. help ASAP.
    the code is as under
    <HTML>
    <HEAD><TITLE> LOGGED IN ok</TITLE> </HEAD>
    <BODY bgcolor = "yellow">
    <%@ page import = "java.sql.*" %>
         <%! // declaring variables
    String s = "";
    java.sql.ResultSet rs=null,rs1=null,rs2=null;
    java.sql.Connection con;
    java.sql.Statement stmt,stmt1;
    String empId = "",compid ="",calltype ="",probheader="",probdescription ="",probcomment ="",priority ="",a="";
    %>
    Following are the pending complaints ..
         <TABLE BORDER=1 CELLSPACING=0 CELLPADDING=0 width="100%">
         <TR>
         <TD> ComplainD </TD>
    <TD> ComplainId </TD>     
    <TD> ProbHeader </TD>     
    <!--
    <TD> ProblemDescription </TD>     
    <TD> Problem Comments </TD>     
    -->
    </TR>
         <%
         try
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         java.sql.Connection con = java.sql.DriverManager.getConnection("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};" +"DBQ=c:/vishal/HelpDesk.mdb;DriverID=22;READONLY=false","","");
         //java.sql.Connection con = java.sql.DriverManager.getConnection("jdbc:odbc:Portal");
              java.sql.Statement stmt = con.createStatement(java.sql.ResultSet.TYPE_SCROLL_INSENSITIVE,java.sql.ResultSet.CONCUR_READ_ONLY);
              s = "select * from Complains";
         java.sql.ResultSet rs = stmt.executeQuery(s);               
                        while(rs.next())
                        //getting data from database
                                                           empId = rs.getString("EmpId");                    // out.print(" " + empId);
              compid = rs.getString("ComplainId");
              // out.print(" " + compid);
              calltype = rs.getString("CallType");
              // out.print(" " + calltype);
                        a = rs.getString("Complaindate"); //problem with this field
    out.print(a); // prints value
              %>               
                        <TR>      
                        <TD> <%=compid %> </TD>
                        <TD> <%=calltype %> </TD>     
                        <TD <%=a %> </TD>
                                       </TR>
    <%
                        }//while loop          
         %>
         </TABLE>     
         <%                
         }//try
              catch(Exception ep)
              out.println(ep);
              System.exit(1);
    %>
    </BODY>
    </HTML>
    value in database is as follows :-
    Complaindate
    5/18/2003 1:30:27 PM
    5/18/2003 7:32:43 PM
    5/18/2003 7:34:02 PM
    5/18/2003 7:49:19 PM
    5/18/2003 7:50:27 PM
    5/18/2003 10:49:42 PM
    5/18/2003 10:58:24 PM
    thanking u ,plz ask if any further clarifications

    Hi
    I am seeing nothing wrong with ur code..
    what about "view source" result.....plz check with that...
    whether u r getting all the trs and tds...
    revert back on this Issue..
    Mars Amutha

  • HTTP response does not contain a valid XML root tag

    I am running into an error in my trace portion of my XML when executing my application. The error is  "HTTP response does not contain a valid XML root tag". The HTTP request is successful with message 200 so it seems to be accepted by the Integration Engine. I looked for other posts on this error and only found one and it didn't show the resolution. Any help would be appreciated.

    Hello
    Check these notes (do you use a split mapping?):
    1) 1515230     XI mapping: "Root tag missing" in split mapping
    2)  1640553     XI mapping: Split mapping: error Missing_Interface
    Regards
    Mark

  • Itunes freezes when connecting and ipod does not show up

    When I connect my nano 3rd gen in windows vista using itunes 9 my ipod does not show up and itunes freezes. the ipod remains with the connected screen and I cannot close out of itunes. Any help would be wonderful... Thanks!!

    I have (finally)solved the problem with my iTunes freezing! Here's what I did:
    1.I backed up my entire music library to an external hard drive.
    2.Then I completely uninstalled iTunes 9 from my computer.
    3.After a re-boot I then completely deleted my entire music library. (this can be a little scary so I double checked my music library back up on the external drive)
    4.I Googled iTunes 8 and found it at
    http://www.mydigitallife.info/2009/06/28/apple-itunes-8-2-and-quicktime-7-6-2-di rect-download-links/
    5. I downloaded it but before I installed it I copied my music library back to my computer. I did not copy everything that was in my original iTunes music folder however, I only copied the music,album art work, applications,games,Tv shoes, and podcasts folders. I placed those folders in a new folder called iTunes on my computer. I did not include any of the iTunes database files eg: .itl / .xml / or .itdb files as these were created in iTunes 9.
    6. Now I opened iTunes 8.2 and added all of my music and other media content.
    7. Next I attached my iPod nano to my computer. Then Windows automaticly open a window asking me if I wanted to scan for problems or continue without scanning. I had windows scan for problems and once that was done my iPod nano began to sync. Oh what joy!
    I think, and this is only a guess based on what I've read here on Apple's discussion pages and my own experience, that there is a problem/conflict or bug with iTunes 9, Windows Vista and the 3rd -4th generation iPod. I will NOT be upgrading to iTunes 9 until Apple has addressed this issue. It seems to me that there are a lot of people having similar issues.

  • Song plays in iTunes, but file does not show in Finder

    Bizarre issue. My 26,000+ song iTunes Library lives on an external LaCie drive. All the songs play fine in iTunes (and I can hear the drive spin up when I go to play them). However, for a few thousand of the songs, the song's file is not in the physical location where iTunes shows it to be.  
    An example is below... these are two song file locations from the 'Master Tune Library.xml' exported from iTunes.  Both of these files
    show in iTunes, and they both play just fine from iTunes (no exclamation mark next to the song names). Yet only the first file (one ending in 1219.mp3)
    is at that location.  The one ending in 1249.mp3 does not show in that location, either via Finder, or via Terminal.
    From Terminal I get no results from "find /Volumes/LaCie500 -name espace_20101103_1249.mp3"  (without the dbl quotes) But if I run the same command for the 1219 file, it does find it in the expected location.  Really stumped as from where iTunes is playing ...1249.mp3.
    /Volumes/LaCie500/myTunes/Unknown Artist/Unknown Album/espace_20101103_1219.mp3
    /Volumes/LaCie500/myTunes/Unknown Artist/Unknown Album/espace_20101103_1249.mp3
    Mac Mini
    Mac OS X 10.5.8
    iTunes 10.5
    iTunes Media folder location is /Volumes/LaCie500/myTunes   Both options underneath for "organize" and "copy files ... when adding to Library" are checked.
    Thanks!

    Try using EasyFind utility to reveal the files.
    Are you absolutely positive those files exist? You have verified with iTune's summary view thatthe files is what you think it is?
    Show In Finder will usually not only open the directory but also leave the actual file highlighted.

  • I downloaded Firefox 4.0. Spellchecker is included and I have downloaded English Dictionary as Addon. It does not work on website. Spellchecker does not show up in Context Menu. I have tried every other source. Can you help please?

    I understand that Spellchecker is pre-installed but I cannot verify this is the case with v.4.0 Firefox. I have right-clicked on webpages and it does not say Dictionary is missing, so I assume the problem remains with Spellchecker. I expected to find Spellchecker and Languages under Edit in nav bar but it does not show up, What must I do? Richard

    That should work on a Mac as well.
    You did download and install the French version?
    Download a new copy of the Firefox program and save the DMG file to the desktop
    * Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Trash the current Firefox application to do a clean (re-)install
    * Install the new version that you have downloaded
    Your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks and other personal data.

  • Custom Ribbon tab does not show in generic list

    Hi.
    I'm deploying the following definiton on a generic list, but the new custom tab does not show up. Anyone that can see what I have done wrong?
    Thanks!
    <Elements xmlns=”http://schemas.microsoft.com/sharepoint/“>
    <CustomAction
    Id=”Ribbon.MyTab”
    Title=”Adds a new Ribbon tab to Generic List”
    RegistrationType=”List”
    RegistrationId=”100″
    Location=”CommandUI.Ribbon.ListView”
    >
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition
    Location=”Ribbon.Tabs._children”>
    <Tab Id=”Ribbon.MyTab” Sequence=”110″ Description=”" Title=”My Tab Name”>
    <Scaling Id=”Ribbon.MyTab.Scaling”>
    <MaxSize
    Id=”Ribbon.MyTab.Scaling.MyGroup.MaxSize”
    Sequence=”15″
    GroupId=”Ribbon.MyTab.MyGroup”
    Size=”LargeMedium”/>
    </Scaling>
    <Groups Id=”Ribbon.MyTab.Groups”>
    <Group
    Id=”Ribbon.MyTab.MyGroup”
    Sequence=”15″
    Description=”"
    Title=”My Group Name”
    Template=”Ribbon.Templates.MyTab.MyGroup.CustomTemplate”>
    <Controls Id=”Ribbon.MyTab.MyGroup.Controls”>
    <Button
    Id=”Ribbon.MyTab.MyGroup.Button”
    Alt=”Ribbon.MyTab.MyGroup.Button”
    Command=”Ribbon.MyTab.MyGroup.Button_CMD”
    Image16by16=”/_layouts/images/siteIcon.png”
    Image32by32=”/_layouts/images/siteIcon.png”
    LabelText=”Button”
    Sequence=”10″
    TemplateAlias=”o1″
    ToolTipTitle=”Button”
    ToolTipDescription=”Shows a dialog” />
    </Controls>
    </Group>
    </Groups>
    </Tab>
    </CommandUIDefinition>
    <CommandUIDefinition
    Location=”Ribbon.Templates._children”>
    <GroupTemplate Id=”Ribbon.Templates.MyTab.MyGroup.CustomTemplate”>
    <Layout Title=”LargeMedium”>
    <OverflowSection Type=”OneRow” TemplateAlias=”o1″ DisplayMode=”Large”/>
    <OverflowSection Type=”ThreeRow” TemplateAlias=”o2″ DisplayMode=”Medium”/>
    </Layout>
    </GroupTemplate>
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler
    Command=”Ribbon.MyTab.MyGroup.Button_CMD”
    CommandAction=”javascript: alert('Hello World');” />
    </CommandUIHandlers>
    </CommandUIExtension>
    </CustomAction>
    </Elements>

    Hello,
    I was able to use your custom ribbon tab XML just fine.  The only thing is, the copy you provided had a bunch of illegal characters embedded in it (like reverse quotes?), I'm not sure if they're showing up in your version of the XML or not.  Anyway,
    after replacing those with straight quotes and fixing some other misc formatting, it worked fine.  I created an empty SharePoint project and added an empty element, then added your XML to the Element.xml file.  In SP, I created a new custom
    list and the "My Tab Name" tab appeared with a button that displayed "Hello World" when I clicked it. So, I recommend checking the formatting of your XML.  Just look for red squiggles in the editor and fix them.
    Regards,
    - Kemp Brown [MSFT]

Maybe you are looking for

  • Touchpad and keyboard don't work at same time

    Hi. I knew how to fix this problem on Windows 8 but can't seem to figure out how to fix it on Windows 8.1. I put the touchpad on no delay through change PC settings but it still seems to do this. Does anyone know how to fix it?

  • Iphone 4 won't play via USB in car after ios7 upgrade

    Music will not play via USB or Bluetooth. I own 2013 Toyota Corolla. When I plug via USB my car audio display lets me select folders and music through browse but when I select a song I get an error on the car audio display that says "read manual or c

  • Unapplied cash receipts

    Hi I am working on a sql to find the unapplied cash receipts Following are the tables and joins I am having SELECT acr.receipt_number, acr.receipt_date, acr.amount receipt_amount, rc.party_name customer_name, cust.account_number customer_number, ps.t

  • Anti-Virus Software Needed @ Work in a Windows/Exchange 2003 Environment?

    I'm taking delivery of a new 24" iMac, and will be using it at work in a Windows/Exchange 2003 environment. I'll be using VMWare Fusion, and Win XP Pro 32 bit to run our business-critical applications. Also, until Office for Mac 2007 is released in J

  • Handling unit detail report against reservation Number (MB21)

    Hi experts for Internal material requiremnt we create reservation from MB21.then against that reservation number we transferred material from Ware house management system in form of Handling unit. As per process against that resrvation number system