Nested data help

Hello all,
  I have two internal tables for PO line items: 1) POitems that contains data like POdoc number, POline number, MATNR, MATDESC, QTTY, AMOUNT Etc. 2) POTexts that contains PO Texts.
I want to print the data in the form in this format:
Matnr | Description | QTTY| Amount|   on the first line and then the PO texts for that line item from the next line onwards.
The PO Texts can be any number of lines depending on what user put in the PO for that line item.
I tried to nest the tables but I get all the line items printed first and then the PO texts. For example, if I have 5 line items in the PO. The data Matnr | Description | QTTY| Amount|  for all five items is first printed and then the PO texts for all these five line items are printed. I just can't get this to work. Any help is appreciated.
Thanks.

The issue is resolved. In the context tab, for the PO text tableI had not put the where conditions for EBELN = IT_EKPO-EBELN and EBELP = IT_EKPO-EBELP. Works perfect now.

Similar Messages

  • GetData() from nested data sets

    Hi,
    I've got nested data sets in the form of:
    var ds1 = new Spry.Data.XMLDataSet("products.xml",
    "items/item");
    var dsOptionSets = new Spry.Data.NestedXMLDataSet(ds1,
    "optionsets/optionset");
    var dsOptions = new Spry.Data.NestedXMLDataSet(dsOptionSets,
    "option");
    The application is an e-commerce store and I'm retrofitting
    E-Junkie's form <select> codes to allow the user to select
    "Color" and "Size" by clicking on images pulled from
    items/item/optionsets/optionset/option rather than selecting those
    options from a list. Trouble is, I can't get to the data in the
    nested data set. Help!
    I've tried poking at it thus:
    <img spry:repeat="dsOptions" spry:setrow="dsOptions"
    onclick="var rows = dsOptions.getData(); alert(rows[0].option);"
    spry:if="'{dsOptions::@image}' != 'undefined'"
    src="{dsOptions::@image}" alt="{dsOptions::option}"
    name="{dsOptions::option}" />
    .. but I've yet to get anything but "undefined" from the
    alert. I think it may have something to do with the data sets being
    more complexly nested than I imagine. I'm really looking forward to
    the day when I can refer to Spry data in javascript as easily as I
    can through {spry::tag}s.
    Here's one <item> from my <items>:
    <items>
    <item>
    <id>43522</id>
    <title>Gildan T-Shirts</title>
    <price>16.95</price>
    <images>
    <image description="Gildan T-Shirt in Charcoal
    Grey">images/products/shirts/tshirt_gildan_ss_charcoalgrey.jpg</image>
    </images>
    <optionsets>
    <optionset value="Colors" id="0">
    <option
    image="images/products/shirts/tshirt_gildan_ss_texasorange.jpg">Texas
    Orange</option>
    <option
    image="images/products/shirts/tshirt_gildan_ss_charcoalgrey.jpg">Charcoal</option>
    </optionset>
    <optionset id="1" value="Size">
    <option value="Small"
    image="images/products/sizes/size_s.gif">Small</option>
    <option value="Medium"
    image="images/products/sizes/size_m.gif">Medium</option>
    <option value="Small"
    image="images/products/sizes/size_l.gif">Large</option>
    <option value="Xtra Large"
    image="images/products/sizes/size_xl.gif">Xtra
    Large</option>
    <option value="XXtra Large"
    image="images/products/sizes/size_2x.gif">XXtra
    Large</option>
    </optionset>
    </optionsets>
    </item>
    </items>

    Hi Diana,
    I tried your suggestion of executing ds1.loadData()
    immediately after declaring ds1, but it has not fixed my problem.
    I've changed my image onClick behavior to:
    if (dsOptions.getDataWasLoaded())
    row = dsOptions.getRowCount();
    alert(row);
    On clicking any image, alert shows "0". This tells us that
    dsOptions IS being loaded, right? I'm able to work with the data
    through e.g. {dsOptions::option} tags as always, but for some
    reason I can't get to the data through dsOptions.
    I just tried replacing the onClick behavior above with
    ds1.getRowCount(), and that shows the correct number (6). Then I
    tried with dsOptionSets and got a zero count again.
    FYI, my declaration section is now:
    var ds1 = new Spry.Data.XMLDataSet("products.xml",
    "items/item");
    ds1.loadData(); // theoretically not necessary, but bug in
    this Spry version requires it
    ds1Rows = ds1.getData(true);
    var dsOptionSets = new Spry.Data.NestedXMLDataSet(ds1,
    "optionsets/optionset");
    dsOptionSets.loadData();
    dsOptionSetsRows = dsOptionSets.getData(true);
    var dsOptions = new Spry.Data.NestedXMLDataSet(dsOptionSets,
    "option");
    dsOptions.loadData();
    dsOptionsRows = dsOptions.getData(true);
    I've also just tried replacing the onclick with:
    onclick="if (ds1.getDataWasLoaded()) { ds1Rows=
    ds1.getData(true); dsOptionSetsRows = dsOptionSets.getData(true);
    dsOptionsRows =
    dsOptions.getData(true);alert(dsOptionsRows[0].option);}"
    As before, ds1Rows[0].<property> gives the correct
    result but dsOptionsRows[0].option says "dsOptionsRows[0] has no
    properties".
    Thanks,
    Dylan Oliver

  • Multiple Filtering of Nested Data Set Spry

    Hi,
    I am trying to use multiple filters on a nested data set using Spry but it does not work, no matter how many times I've re-read the code and verified that I'm using the code the right way. What is going on?
    When I use a single non-destructive filter (ie... ds.filter()) on the nested data set, the filter works beautifully. However, when I want to use multiple filters (I use ds.addFilter()), it looks like my filter function (FilterByState) is not being kicked off.
    I linked to the appropriate files, SpryData.js, xpath.js, SpryNestedXMLDataSet.js and SpryDataExtensions.js. These are the latest version, 1.6.1.
    Why will ds.filter work and not ds.addFilter? I haven't written the second filter code yet because this is stopping me from moving forward. Even though, I haven't written that, shouldn't addFilter work too?
    Please help, this is driving me crazy.
    Here is my code:
    <script type="text/javascript">          
         Spry.Utils.addLoadListener(function () {
              if (document.getElementById("stateSelect").selectedIndex != 0) {
                   document.getElementById("stateSelect").selectedIndex = 0;    
              if (document.getElementById("dateSelect").selectedIndex != 0) {
                   document.getElementById("dateSelect").selectedIndex = 0;    
         var dsTopics = new Spry.Data.XMLDataSet("compliance.xml", "compliance/subject", {useCache: false });         
         var dsDocuments = new Spry.Data.NestedXMLDataSet(dsTopics, "doc");
         var dsDates = new Spry.Data.XMLDataSet("compliance.xml", "compliance/subject/doc/date", {useCache: false, subPaths: "@num", distinctOnLoad: true, distinctFieldsOnLoad: ['date'], sortOnLoad: "@num", sortOrderOnLoad:"ascending"});
         dsDates.setColumnType("@num", "number");
         var currentSelection;
         //var FilterByState;
         function showDocuments(currentIndex) {
              dsTopics.setCurrentRowNumber(currentIndex);
              document.getElementById("stateSelect").selectedIndex = 0;
              document.getElementById("dateSelect").selectedIndex = 0;
              dsDocuments.removeAllFilters(true);
         function ToggleFilter(selected, f) {
              chosenState = selected;
              if (selected != "") {
                   alert("something's selected");
                   dsDocuments.addFilter(f, true);
              else {
                   alert("something is NOT selected");
                   dsDocuments.removeFilter(f, true);
              //dsDocuments.applyFilters();
         var chosenState;
         var chosenDate;
         function FilterByState(ds, row, rowNumber) {
              alert("Filtering by state");
              var currentSelection = document.getElementById("stateSelect").options[chosenState];
              if (row["state"].search(currentSelection.value) != -1) {
                   return row;
              else
                   return null;
         function FilterByDate(ds, row, rowNumber) {
              var currentSelectedDate = document.getElementById("dateSelect").options[chosenDate];    
              if (row["date"] == currentSelectedDate)
                   return row;
              else
                   return null;
    </script>
    <div class="articlePage articleContent">
         <h2 class="bodyCopyBold">Compliance Widget</h2>
         <form name="selectForm" action="">
              <div spry:region="dsTopics" id="topicSelector">
                   <label for="topicSelect" class="dataLabel">Topic:</label>
                   <select spry:repeatchildren="dsTopics" class="input" name="topicSelect" id="topicSelect" onchange="showDocuments(this.selectedIndex);">
                        <option spry:if="{ds_RowNumber} == {ds_CurrentRowNumber}" value="{name}" selected="selected">{name}</option>
                        <option spry:if="{ds_RowNumber} != {ds_CurrentRowNumber}" value="{name}">{name}</option>
                   </select>
              </div>
              <label for="stateSelect" class="dataLabel">State:</label>
              <select class="input" name="stateSelect" id="stateSelect" onchange="ToggleFilter(this.selectedIndex, FilterByState);">
                   <option value="" selected="selected">Please Select</option>
                   <option value="All States">All States</option>
                   <option value="AL">Alabama</option>
                   <option value="AK">Alaska</option>
                   <option value="AZ">Arizona</option>
                   <option value="AR">Arkansas</option>
                   <option value="CA">California</option>
                   <option value="CO">Colorado</option>
                   <option value="CT">Connecticut</option>
                   <option value="DE">Delaware</option>
                   <option value="DC">District of Columbia</option>
                   <option value="FL">Florida</option>
                   <option value="GA">Georgia</option>
                   <option value="HI">Hawaii</option>
                   <option value="ID">Idaho</option>
                   <option value="IL">Illinois</option>
                   <option value="IN">Indiana</option>
                   <option value="IA">Iowa</option>
                   <option value="KS">Kansas</option>
                   <option value="KY">Kentucky</option>
                   <option value="LA">Louisiana</option>
                   <option value="ME">Maine</option>
                   <option value="MD">Maryland</option>
                   <option value="MA">Massachusetts</option>
                   <option value="MI">Michigan</option>
                   <option value="MN">Minnesota</option>
                   <option value="MS">Mississippi</option>
                   <option value="MO">Missouri</option>
                   <option value="MT">Montana</option>
                   <option value="NE">Nebraska</option>
                   <option value="NV">Nevada</option>
                   <option value="NH">New Hampshire</option>
                   <option value="NJ">New Jersey</option>
                   <option value="NM">New Mexico</option>
                   <option value="NY">New York</option>
                   <option value="NC">North Carolina</option>
                   <option value="ND">North Dakota</option>
                   <option value="OH">Ohio</option>
                   <option value="OK">Oklahoma</option>
                   <option value="OR">Oregon</option>
                   <option value="PA">Pennsylvania</option>
                   <option value="RI">Rhode Island</option>
                   <option value="SC">South Carolina</option>
                   <option value="SD">South Dakota</option>
                   <option value="TN">Tennessee</option>
                   <option value="TX">Texas</option>
                   <option value="UT">Utah</option>
                   <option value="VT">Vermont</option>
                   <option value="VA">Virginia</option>
                   <option value="WA">Washington</option>
                   <option value="WV">West Virginia</option>
                   <option value="WI">Wisconsin</option>
                   <option value="WY">Wyoming</option>
              </select>
              <div spry:region="dsDates" id="dateSelector">
                   <label for="dateSelect" class="dataLabel">Date:</label>
                   <select class="input" name="dateSelect" id="dateSelect">
                        <option value="" selected="selected">Please Select</option>
                        <option spry:repeat="dsDates" value="{date}">{date}</option>
                   </select>
              </div>         
              <div class="spacer10"></div>
              <div id="documentListing" class="bodyCopy">
                   <ul spry:region="dsDocuments" spry:detailregion="dsTopics" class="list2">
                        <li spry:repeat="dsDocuments">{title}</li>
                   </ul>
              </div>
         </form>
    Here is the xml:
    <?xml version="1.0"?>
    <compliance>
         <subject>
              <name>Agent Termination</name>
              <doc id="91000038">
                   <title>Reminder: Agent Contract Termination Notification</title>
                   <date num="200907">July 2009</date>
                   <state>OR</state>
              </doc>
              <doc id="91000031">
                   <title>Reminder: Agent Contract Termination Notification 2</title>
                   <date num="200807">July 2008</date>
                   <state>OR</state>
              </doc>
              <doc id="91000031">
                   <title>Reminder: Agent Contract Termination Notification 2</title>
                   <date num="201001">January 2010</date>
                   <state>OR</state>
              </doc>
         </subject>
         <subject>    
              <name>Agent Training</name>
              <doc id="91000034">
                   <title>Oregon Agent Retraining</title>
                   <date num="200908">August 2009</date>
                   <state>OR</state>
              </doc>
              <doc id="91000060">
                   <title>Multi-State Corrective Action Plan - Training Courses – BLN Changes</title>
                   <date num="200902">February 2009</date>
                   <state>All States</state>
              </doc>
              <doc id="91000062">
                   <title>Required Training – Change for California Agents</title>
                   <date num="200902">February 2009</date>
                   <state>CA</state>
              </doc>
              <doc id="91000065">
                   <title>Required Training - BCLIC Agents</title>
                   <date num="200902">February 2009</date>
                   <state>NY</state>
              </doc>
              <doc id="91000071">
                   <title>Multi-State Corrective Action Plan - Training Courses – BLN Changes</title>
                   <date num="200901">January 2009</date>
                   <state>All States</state>
              </doc>
              <doc id="91000074">
                   <title>Multi-State Corrective Action Plan - Training Courses – BLN Changes 2</title>
                   <date num="200910">October 2009</date>
                   <state>All States</state>
              </doc>
         </subject>
         <subject>
              <name>Agents Licenses</name>
              <doc id="91000064">
                   <title>Georgia Agent Consent Orders</title>
                   <date num="200902">February 2009</date>
                   <state>GA</state>
              </doc>
              <doc id="91000066">
                   <title>New York State Correction Law</title>
                   <date num="200902">February 2009</date>
                   <state>NY</state>
              </doc>
         </subject>
         <subject>
              <name>DNC</name>
              <doc id="91000063">
                   <title>States Prohibit Unsolicited Calls</title>
                   <date num="200902">February 2009</date>
                   <state>AL, LA, RI, UT</state>
              </doc>
         </subject>
         <subject>
              <name>LTC Partnership</name>
              <doc id="91000056">
                   <title>Alabama Long Term Care and Long Term Care Partnership Compliance</title>
                   <date num="200903">March 2009</date>
                   <state>AL</state>
              </doc>
         </subject>
    </compliance>
    Thanks

    Hi Marlene,
    It isn't working right because you have a bug in your
    onchange attribute for your select:
    <select id="test"
    onChange="ds1.setCurrentRow(this.selectedIndex);">
    <option spry:repeat="ds1"
    id="{ds_RowID}">{@id}</option>
    </select>
    setCurrentRow() takes a rowID not a rowNumber. The
    "selectedIndex" of the select element is the equivalent of a row
    number, so if you want to change the current row by row number then
    use setCurrentRowNumber() instead:
    <select id="test"
    onChange="ds1.setCurrentRowNumber(this.selectedIndex);">
    <option spry:repeat="ds1"
    id="{ds_RowID}">{@id}</option>
    </select>
    After you make that change, you will see that things work as
    expected.
    --== Kin ==--

  • Spry Dataset and Nested Data

    i've 1 xml file, with basicly 3 columns: city, artist, artist
    description.
    i want to show cities and when a city clicked, show the
    artists in that city, and when artist is clicked show artist
    description as details.
    i've tryed everything, but the best i can do... see below.
    any help would be highly appreciated!!!
    erik
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <script language="JavaScript" type="text/javascript"
    src="SpryAssets/xpath.js"></script>
    <script language="JavaScript" type="text/javascript"
    src="SpryAssets/SpryData.js"></script>
    <script language="JavaScript" type="text/javascript"
    src="SpryAssets/SpryNestedXMLDataSet.js"></script>
    <script type="text/javascript">
    // Setup a parent data set:
    // Setup a couple of nested data sets:
    var ds1 = new Spry.Data.XMLDataSet("buitenplaatsen.xml",
    "root/dataroot/buitenplaatsen", { useCache: false });
    var ds2 = new Spry.Data.NestedXMLDataSet(ds1,
    "omschrijving_kunstenaar");
    var ds3 = new Spry.Data.NestedXMLDataSet(ds1,
    "buitenplaats");
    var ds4 = new Spry.Data.NestedXMLDataSet(ds1,
    "naam_kunstenaar");
    </script>
    <div class="liveSample">
    <table width="100%" border="1">
    <tr>
    <th>Buitenplaats</th>
    <th>Kunstenaar</th>
    <th>Omschrijving</th>
    </tr>
    <tr>
    <td valign="top" width="20%" spry:region="ds3">
    <ul>
    <li spry:repeat="ds3" spry:setrow="ds3"
    spry:select="selected"
    spry:hover="hover">{buitenplaats}</li>
    </ul>
    </td>
    <td valign="top" width="20%" spry:region="ds1">
    <ul>
    <li spry:repeat="ds1" spry:setrow="ds1"
    spry:select="selected"
    spry:hover="hover">{naam_kunstenaar}</li>
    </ul>
    </td>
    <td valign="top" width="60%" spry:region="ds2">
    <ul>
    <li
    spry:repeat="ds2">{omschrijving_kunstenaar}</li>
    </ul>
    </td>
    </tr>
    </table>
    </div>
    <body>
    </body>
    </html>

    Hi,
    hereby url:
    http://www.eenlintvollust.nl/test/test_datasets.html
    http://www.eenlintvollust.nl/test/buitenplaatsen.xml
    i want that in the left column i can select the distinct
    city(buitenplaats), than the middel column shows the
    artists(kunstenaar) and when clicked on artist,
    detail(omschrijving) shows up. Thanx for any help!!!

  • Nested Data and Paging

    Hello,
    I hope someone can point me in the right direction. I have been trying to display some nested data which I have been able to do.
    I then wanted to add paging to it which I cannot manage to do. I have read on the forum to not use nested data when paging and to flatten things out as per the example here:
    http://labs.adobe.com/technologies/spry/samples/data_region/NestedXMLDataSample.html
    The problem I have with flattening data out is that things will repeat. I have the following XML structure:
    <?xml version="1.0" encoding="utf-8"?>
    <questions>
                <question>
                            <questionIndex>1</questionIndex>
                            <questionString>This is question 1</questionString>
                            <answers>
                                        <answer>5 mins</answer>
                                        <answer>5-10 mins</answer>
                                        <answer>10-15 mins</answer>
                                        <answer>15-30 mins</answer>
                                        <answer>30+ mins</answer>
                            </answers>
    </question>
    <question>
                            <questionIndex>2</questionIndex>
                            <questionString>This is question 2</questionString>
                            <answers>
                                        <answer>Very Poor</answer>
                                        <answer>Average</answer>
                                        <answer>Excellent</answer>
                            </answers>
                </question>
    </questions>
    Now I wish to display this data in a survey format. So each question can have mutiple headings. This works fine when nested.
    i.e. 1. This is question 1          5 mins    5-10 mins    10-15 mins    15-30 mins    30+ mins
    If this data is flattened out for paging I will end up with
    1. This is question 1          5 mins   
    1. This is question 1          5-10 mins   
    1. This is question 1          10-15 mins   
    1. This is question 1          15-30 mins   
    1. This is question 1          30+ mins
    I don't want the question repeating for every possible answer.
    Taking the donut example if that's easier to follow I would be asking how do I display that information without repeating the ID, NAME or Price Per Unit until it actually changes.
    I simply cannot work out how to do it, any help, pointers etc would be much appreciated.

    hi,
    thanks for the quick response. The following link should give you an idea of what I am trying to get to.
    http://203.134.27.150/sv/test.php
    This displays the questions and is able to page through them.
    It also displays the answers which I am using as headings.
    The problem is I have no idea how to maintain the link between the Question and the answers for that question.
    The questions will change but the answer remains static, I know I haven't done anything to specifically link the two because I really don't have a clue what to do.
    The XML is the same as my first post so for example question 1 it should have the headings
         5 mins       5-10 mins       10-15 mins       15-30 mins       30+ mins
    Question 2 should have the headings
        Very Poor     Average      Excellent
    Is there something I can do to make this happen?
    thank you.

  • Menu Bar using Nested Data Sets?

    Hi all,
    I was wondering if anyone has succesfully implimented a menu
    bar widget using a dataset? I would like to control menu items by
    changing items on the database. Is this possible? I think this may
    be possible with nested data sets but I'm not sure.
    Thanks in advance
    Nelson

    Hi, I know you're not a baby sitter, but would you be willing
    to give me a little guidence as to how you came up with this? Your
    sample seems to work exactly the way I want it.
    Here's what I've done so far... correct me if I'm way off. I
    have a db with 2 tables (menu1 and menu2).
    menu1 = id, title, url, target (this was going to be the top
    level menu items)
    menu2 = id,menu1_id, title, url, target (this was going to be
    the sub menu items)
    I then created a menu_data page where I do two recordsets to
    pickup the items from both tables. I then used the extension
    "Export Record Set as XML" on that page for each of the recordsets.
    S now I have my xml data.
    Now I create a menu page where I try to bring in that data
    into my menu bar. Was I really far off? Can you do a little hand
    holding here? I'm kinda new to this stuff.
    Thanks so much for the help!!!
    Nelson

  • I'm on ios 6 beta so when I try to get ios 6 it says my software is already up to date. help?

    I'm on ios 6 beta so when I try to get ios 6 it says my software is already up to date. help?

    iTunes 10.6.3 - http://support.apple.com/kb/DL1575

  • Changing date help icon inside a table

    Dear Experts,
    We changed the icon for Date help in the theme editor. In a web dynpro screen the changed image reflects for all date fields but not for the ones inside a table.
    If there's a date field inside a table then the icon still shows the default imgage. We have tried to clear local as well as cluster cache and restart  the protal but with no effect.
    Please help in reolving this issue.
    Best Regards
    Gaurang Dayal

    I think rather than trying some quirks, you are better off opening a message with SAP.
    Thanks
    Prashant

  • Change date help icon inside table

    Hello,
    I've created a new theme and I've changed the date help icon(Theme Editor/Simple Elements/Labels and Fields). I can see new icon in portal but when displaying it from a cell inside a table, it displays the standard icon. Please, I need to show just our date help icon and not the standard one. It should have changed all date icons from our WD java application.
    In addition, it happens the same with paginator. I've modified the Complex element: Paginator and all tables display my colours except for UWL paginator. Why UWL table is not showing the proper colours?
    Thank you.

    I think rather than trying some quirks, you are better off opening a message with SAP.
    Thanks
    Prashant

  • It's 18th of September and my ipad4 says iOS 6.1.3 up to date, help please?

    Hi it's 18th of September and I want to download iOS 7 on my ipad 4, but it says iOS 6.1.3 up to date help please.

    Supposedly the rollout starts at 12:01 am ET.
    Apple will be "pulsing" the release of iOS 7 to users in staggered waves according to their time zone. Thus evenly distributing the server load and ensuring that everyone that wants it can get it in a reasonable amount of time.

  • Nesting Data table Components

    Hi ,
    I am having a problem using the new data table component in SJSC 2 EA2. I need to have data table nested inside the colum of a outer datatable. I assign the sourcedata propertiy of the first table to a ObjectArrayData Provider. Then i set one of the columns in the table to group panel and add another data table(Nested ) into it. It shows up fine inthe designer. The Object in the parent tables row has a getter for an array of another classes objects. The problem is if i set the source data property of the nested table using #{currentRow.value['']} to the name of the array object return by the parent object we get a property not found exception when running. Is there any referances as to how to nest data table compoenents in Java Studio Creator 2 EA2
    Thanks
    kusan

    Hi,
    Please post queries related to SJSC 2 EA2 at:
    https://feedbackprograms.sun.com/login.html
    Cheers
    Giri

  • How to get up-to-date help menu in Illustrator CC?

    Launching Illustrator Help in CC (International English) opens a PDF file, in which "What's new" tells me what is new in CS6 and CS5.
    This does not seem right.
    Is there something I can do to access the right help system for Illustrator CC?

    Thanks, InfluenceJamie, but I was — at the time of posting — getting a PDF, not web help. And I don't know how to restore web help.
    OK, after some more digging…
    Somewhere in my history of using Illustrator I've managed to switch to accessing a local PDF instead of the web-based help system — which (in its latest incarnation) is what you have linked to.
    The PDF file is called "illustrator_reference.pdf", and (on my Mac) it lives in Users > Shared > Documents > Adobe > PDF > pdf.
    I've just found the latest version of it online here: http://helpx.adobe.com/pdf/illustrator_reference.pdf — which has let me update the file to CC.
    To see if I can return to the web based system I have tried deleting the Adobe folder mentioned above. Attempting to access Illustrator Help after that produces a dialog box that tells me I must be connected to the internet (which, of course, I am).
    Restoring the Adobe folder and deleting only the PDF folder within it (leaving the other folder, entitled "Help") produces the same dialog. So I've restored the PDF folder as well.
    The upshot is that I now have up to date help in PDF format on my local drive but no idea how to revert to Web help.

  • Why is my texting using data? When I have data turned off I can't send/receive. Texting is "unlimited" but it's using up all my data- help!

    Why is my texting using data? When I have data turned off I can't send/receive. Texting is "unlimited" but it's using up all my data- help!

    Texting longer text messages or any media (pictures/video/sound etc) being sent requires data to be active. However, it does not count against your data caps.
    Since you have an iPhone, you must also be aware of the difference between iMessage and SMS Text messages. The iPhone, by default, will send an iMessage when sending another text message to anyone else with an iPhone, iTouch, or iPad. This does use your data if you are not connected to wifi. In Settings, you can turn iMessage off, and then all of your texts will go through Verizon.
    Also understand- iMessage will use wifi when connected to wifi, but would need cellular data connection to work when not connected to wifi. Regular SMS text messages that are long or any media will always use the cellular data and not wifi, so will not send if cellular data is turned off, even if on wifi. However, this does not count against your cap.

  • Inputfield Date Help

    hi all,
    i have a requirement in which i have declared a inputfiled type date and getting this field filled through pop up help using the below code.
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2003" >
      <htmlb:page title=" " >
        <htmlb:form>
          <htmlb:label for     = "HDATE"
                       text    = "From Date"
                       tooltip = "Enter from date" />
          <htmlb:inputField id       = "HDATE"
                            value    = "<%= sy-datum %>"
                            showHelp = "X"
                            type     = "date"
                            disabled = "FALSE" />
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    now  i wanted to execute an additional function when the help button is clicked so i declared it in as
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2003" >
      <htmlb:page title=" " >
        <htmlb:form>
          <htmlb:label for     = "HDATE"
                       text    = "From Date"
                       tooltip = "Enter from date" />
          <htmlb:inputField id       = "HDATE"
                            value    = "<%= sy-datum %>"
                            showHelp = "X"
                        onValueHelp = "sapHelpDate('HDATE', parameters);function();"
                            type     = "date"
                            disabled = "FALSE" />
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    The function sapHelpDate is the default function which is called when onValueHelp is not mentioned.
    Could anyone please throw some light on this function?
    by doing the above i am able to execute my separate function along with the pop up coming for the date,but the icon for the date help is changed and i am not able to show it same as in default case.
    could any one help me with this.
    thanks in Advance
    regards,
    Arvind.

    used BSP replace and find to replace the class and the icon was same as before

  • Nested data Accordion Gallery

    Hi,
    I'd like to know if anybody has tried to rebuild the adobe
    spry gallery (china,egypt,paris) but using a spry menubar or a spry
    accordion to navigate from one gallery to another. The gallery
    should than be accessed from the submenu items using the nested
    data utility. Everything display correctly but it's not possible to
    access the right gallery from within the submenus/nesteddata:
    var dsGalleries = new
    Spry.Data.XMLDataSet("galleries/galleries88.xml",
    "galleries/item");
    var dsSubitems = new Spry.Data.NestedXMLDataSet(dsGalleries,
    "gallery");
    var dsGallery = new
    Spry.Data.XMLDataSet("galleries/{dsSubitems::@base}{dsSubitems::@file}",
    "gallery");
    var dsPhotos = new
    Spry.Data.XMLDataSet("galleries/{dsSubitems::@base}{dsSubitems::@file}",
    "gallery/photos/photo");
    <div id="previews">
    <div id="example1Region" spry:region="dsGalleries
    dsSubitems">
    <div id="Acc1" class="Accordion" tabindex="0">
    <div class="AccordionPanel" spry:repeat="dsGalleries">
    <div
    class="AccordionPanelTab">{dsGalleries::@name}</div>
    <div class="AccordionPanelContent"
    spry:repeatchildren="dsSubitems">
    <ul id="nav" >
    <li spry:if="{ds_RowNumber} == {ds_CurrentRowNumber}"
    spry:hover="rowHover"
    onClick="dsSubitems.setCurrentRowNumber('{ds_RowNumber}');"
    spry:select="rowSelected"
    spry:selected="selected">{dsSubitems::sitename}{dsSubitems::RowNumber}</li>
    <li spry:if="{ds_RowNumber} != {ds_CurrentRowNumber}"
    spry:hover="rowHover"
    onClick="dsSubitems.setCurrentRowNumber('{ds_RowNumber}');"
    spry:select="rowSelected">{dsSubitems::sitename}{dsSubitems::RowNumber}</li>
    </ul></div>
    </div>
    <script type="text/javascript">
    var acc1 = new Spry.Widget.Accordion("Acc1");
    </script>
    </div>

    My problem was that I couldn't bind the var from the outside table to the value of the inside table. It wouldn't process it and iterate through the collection. I solved the problem by using the Tomahawk data list tag.

Maybe you are looking for