Dynamic Rows won't display ..

Hello,
       I have been facing a problem with Interactive form with XML interface, which was being used as offline interactive form, I was asked to add the online process using the same form to be called as Online interactive form.
When the form is displayed on the web page all the fields appear but the table rows won't appear in the interactive mode but I have provided the download facility as well for the form to be used as offline form, strangely, when dowloaded the all the tables rows are visible and work fine, only when the form is online the tables or table rows won't be displayed. I have checked with the properties and subform and table is set to:-
1. visible
2. Flowed
I have gone through every possbile thread relevant in forum, but the problem still remains unresolved. Please suggest me any possible solution.
Regards,
Shishir.P
Edited by: Shishir Paltanwale on Apr 18, 2010 6:20 PM

Hi,
    The problem was in the Form properties - Default, as the default XDP review Form was set Acrobat 7 ( Dynamic ) XML Form and my ADLC version was 8.0. It took a while for to understand this as I was under the impression that I am working on ADLC 7.0. When the changed the version the problem was resolved.

Similar Messages

  • Dynamic text won't display

    I don't know if this is a bug. I have a movie that contains a
    dynamic text. When I run it, the text displays fine. But when the
    said movie is run through another movie clip (using loadMovie), the
    dynamic text won't display. Any ideas why? Thank you.

    dongzky wrote:
    > Actually, there was no code involved. The dynamic text,
    with borders around it,
    > I tried to put a value for testing. It works fine when
    run. But when called
    > by another movie clip, although the movie with the
    dynamic text still loads,
    > the text won't display anymore. Even the borders were
    gone.
    Than again, it's a bug on your end :)
    Dynamic text is a text container, it's to be use with
    dynamically given data, from
    source file or variable string on timeline. It's not meant to
    be for regular text
    display. You need to use Static text. The fact that you can
    see it it's just flash
    being tolerant but it only lasts for as long as the movie is
    getting more complex.
    You can get away with somethings even tho you should not be
    using them, does not
    mean they will work all the way. Dynamic text, as said above
    is for text that comes
    to flash from outside source and this is when it works best.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Dynamic gallery won`t display once uploaded on FTP

    Hi, I builded this dynamic gallery page that display the
    pictures using an UI Loader component.
    When I test the movie in Flash the gallery loads and displays
    the external picture with no problems. However, once the html and
    SWF file are upoladed on line you can see everything correctly but
    the clickable thumbnails won`t open any picture.
    In the FTP I`m keeping the same exact path as my directory.
    The code says
    btn1.addEventListener(MouseEvent.CLICK, ldr1)
    function ldr1 (e:Event) {
    my_ldr.source = "PICTURES/FASHION/fashion1.jpg";
    So, I have a PICTURES folder in the same directory as the SWF
    and HTML document and inside of it I have the FASHION folder
    containing the pictures called "fashion1", "fashion2", and so
    forth...
    I can send more code if necessary. It seems a pretty
    straightforward process and it should work, but I can gigure out
    why is not working.
    Anybody have any idea why?
    Here` s the website in progress
    http://www.erinbarry.co.uk/staging/home.html

    I see in the directory tree of your web host that all of your
    jpg's have all caps for their extensions (fashion1.JPG not
    fashion1.jpg). If you change the path in the Flash or change the
    filenames this will work. Often, your local computer OS doesn't
    care about caps vs no-caps, whereas web servers often do care, and
    in this instance your web server does.
    To test this, if you put "
    http://www.erinbarry.co.uk/staging/PICTURES/FASHION/fashion1.jpg"
    into the browser path you get a "404 Not Found" error. If you
    change it to "
    http://www.erinbarry.co.uk/staging/PICTURES/FASHION/fashion1.JPG"
    you get the image.

  • Front Row won't display station information of radio streams.

    Hi,
    I love to use Front Row to listen to internet radio stations. While iTunes displays the station information correctly (mostly artist and title) Front Row only shows blank.
    Does anybody know if it's possible to activate station information in Front Row? I'm using version 2.1.7.
    Thanks for your hints,
    Alex

    Yes, you can add radio stations to a playlist. The station should then appear when you select that playlist. There's no built-in interface to find/play the radio stations directly in Front Row.
    EDIT: I guess I haven't done this for a while. This used to work with Front Row 1.x in Mac OS X 10.4.x (Tiger). Now Front Row says there are no songs in that playlist. I may have to play around with that. I'm surprised it hasn't come up recently...
    -Doug

  • How to display the rows dynamically in the table display in web dynpro abap

    Hi experts,
                   There is a visible row count tab where you can give the no of rows to be displayed in the output table, but i want it to be done dynamically as the row count of my table may change dynamically at runtime.
    And i want to know how to reduce the width of a column as my table display is taking the length as per the binded table specifications.Can anyone please help me out in this issue.
    Thanks in advance,
    Anita.

    Hi Anita
    You can bind the visiblerowcount property to the a context attribute. and at runtime you can set the context attribute to the no of rows you want in your table,
    Regards
    Naresh

  • Dynamic rows in Table Control

    Hi Experts,
    My Requirement is create a table control with 5 coloumns. The rows have to be displayed dynamically...
    I created a screen , and placed a table control.
    For eg :
       if my internal table having 2 entries , then the table control should only have two rows....(no disable/greyout)
       if internal table having say 40 entries , then the table control should have 40 rows...
    Thanks,
    Lakshmiraj.A

    Hi,
    Refer
    table control dynamic rows
    Dynamic rows increment according to user input in Table Control Module Pool
    Hope this helps
    Sumana

  • Image with foreign characters in name won't display

    I have an image on my drive whose name has foreign characters ("c�pia de frente.jpg"). To display the image my JSP reads the image name from the database and generates the following html:
    <img src="../pictures/c�pia de frente.jpg">The page then displays a broken image icon for this image. Images in the same list which do not have foreign chars get displayed accurately. When I choose "show image.." in my browser I see that the image name has been rewritten into the following: c%C3%B3pia%20de%20frente.jpg. The rewriting that will display the image is instead c%F3pia%20de%20frente.jpg. I found the correct rewriting on another of my JSP where the image with the foreign chars actually gets displayed correctly although the code to generate the html is the same on both pages and looks something like this (simplified):
    <logic:iterate id="listelement" name="list" property="rows" scope="request" type="org.apache.commons.beanutils.DynaBean">
    <%         
    out.write("<img src=\"../pictures/"+listelement.get("name").toString()+"\">");
                             %>  <br>                     
                            </logic:iterate> Every image that doesn't have foreign chars in its name gets displayed accurately but images with foreign chars in their names won't display. What am I doing wrong?
    Thanks
    Niklas

    Thanks, but it doesn't seem necessary to replace foreign characters. It works without replacing in one place but not in another which is confusing. I think it is something with the enconding but can't see what the difference is between the working and non-working code. In both pages I have put <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">I'd greatly appreciate any more suggestions to solve this problem.

  • Flash 8 Player - Dynamic jpg's not displaying.

    Hi there,
    Has anyone else experienced this issue and if so has anyone
    got a fix?
    Basically, I am using loadMovie() to load a dynamic jpg into
    a simple movieclip. When you go to view the website using the Flash
    8 player the image doesn't display. However, if you are using the
    new flash 9 player the image displays fine.
    The information is being pulled from an oracle database, via
    coldfusion and flash remoting. The information is obviously being
    returned as the images are infact displaying in flash player 9 and
    also the text being returned from the same query is also being
    displayed correctly.
    Any help or ideas will be great.
    cheers
    the whippet

    Here is a link to the site. The homepage doesn't have any
    dynamic jpgs so you will have to click the '7 TranScan' button
    (this is the bottom button within the menu down the right-hand
    side).
    This will take you to the '7 Transcan' homepage where one of
    the problem jpgs is not displaying. As you'll see it won't display
    at all within Flash Player 8 but displays fine in Flash Player 9.
    The address is
    http://www.sevengroup.co.uk/flash_version.cfm
    If you find anything please let me know - thanks in
    advance.

  • Dynamic row in STRUTS2

    dear java,
    Help needed for updating an list in jsp with values added as dynamic row in STRUTS2.
    I have a table displaying data from list (<s:iterator>). It displays 2 rows. I have a button which on clicks added one more row.. blank row (consists, textfields).. in which data is added. now on submit, i need to update list.
    Any help would be much appreciated!

    tnx friend.,
    anyway i got the result.
    instead of using <s:textfield name="textFields[0]" />, i have replaced for (within JS method)
    <input type='text' name='locationId[" + num + "]' value='' id='dyamicRowAction_locationId_" + num + "_'/>
    (its actual replacement html tag for S2 tag - get it from view source ).

  • My iPhone 5 won't display smart text options.

    My iPhone 5 won't display smart text. It did when I initially downloaded the new OS, now those options don't appear at all. Did I click something to make them disappear?
    I went into Settings to see if there was a component of it within Messages. I don't see anything.
    Thoughts please.....
    Thanks much
    Ginger

    Awwww......that's it....the dash! I tapped it. Tried to drag it up/down and it didn't move. Now I swiped and it's back!
    So I need to remember to drag up/down and now swipe.....
    Thanks much!
    Ginger

  • Dynamic Rows in Report Painter

    Hello everyone,
    I'm new to report painter and m using the SAP Library help  material to understand report painter. I've one query though i.e
    Is it possible to create a report hrough report painter with dynamic rows ? if yes then pls let me know how.
    Regards
    Anik

    Thank you.
    See I have the below Rows
    Total Revenue
    Cost2
    Cost3
    Direct Cost
    Gross = Total revenue - Direct Cost
    Gross % = (Gross/Total revenue ) * 100
    I have Columns as with basic Key figures and Formulas
    Year(basic key Figure)
    Year+1(basic key Figure)
    Total = Year + (Year+1)
    Its giving me correct values in case of Basic Key figures and not in the formula case.
    It giving error when there is formula both in Row and Column.
    In the above case last row and last colum. Only Column formula is getting implemented.
    Here for example I have mentioned 4 rows and 4 columns.. But I have 15 Rows and 30 columns .. out of which 15 rows and columns have formulas...
    % Rows are problem.. which gives me errors... I tried using Special cells, but I am not 100% sure how to use them.
    I would be very thankful if you can help me out.. Please

  • ITunes won't display current voice memos from my iPhone 4S. How can I tranfer this data without loosing it?, iTunes won't display current voice memos from my iPhone 4S. How can I tranfer this data without loosing it?

    Please help! My iTunes won't display my voice memos from iPhone 4S when trying to sync data. Files are to large for emailing. I want to back up the files on to my computer.

    JustinV72 wrote:
    How do I get the audiobook onto my iphone without erasing anything?
    You transfer the purchases to the computer you use to sync the iPhone.  You can use a thumb drive or an external HD, etc.  Read this: iTunes for Mac - How to copy purchases between computers:  http://support.apple.com/kb/HT1373

  • I updated to iOS 7 and now some of my apps won't display in landscape mode and they did before the update. Any ideas on how to fix it?

    I updated to iOS 7 and now some of my apps won't display in landscape mode and they did before the update. Any ideas on how to fix it?

    This could be from having restrictions enabled. Icons completely disappear when "restricted"

  • How do I set the value of a dynamic row text field

    I have a repeated row form which contains a button and multiple text fields.  There is a text field (Input Data Field) further up with some information I want to place in the table and multiple buttons that I want to read the value of and set to the table.  I apologize there are multiple questions I have and I am using pseudocode to describe it.
    Top form looks like
    InputField
    | ButtonX1 | ButtonY1 | DescriptionX1 (read only Text Field)
    | ButtonXn | ButtonY1 | DescriptionXn
    OutputRow looks like
    | ButtonOutput | OutputField1 | OutputField2 | OutputField3 |
    So I would like it to do
    ButtonX1.click
    OutputTable.OutputRow.addInstance(true)  //this works - everything else I have questions on
    OutputTable.OutputRow.OutputField1.rawValue = DescriptionX1.rawValue
    Question 1
    How do I address the location in each table to set a value
    Question 2
    How do I get the value of the description field in the same table and row as the button
    I would like to say something to the effect of  OutputTable.OutputRow[??].OutputField1.rawValue = this.parent.DescriptionX
    OutputTable.OutputRow.OutputField2 = InputField.rawValue
      Same question as above - how do I specify a dynamic row - is this the proper syntax for getting the value from the input field?
    OutputTable.OutputRow.OutputField3 = this.ButtonLabel
    Question 3
      How can I get the value of the button's label to set in the field
      There should be very many of these buttons and buttons will be added - I would prefer to set the value based on the button's label to make the value easier - not requiring changing the code
    Question 4 - unrelated to those above.
    Is it possible to build the first table
    | ButtonX | ButtonY | Description |
    from an XML File.  I have seen examples of how to build if it is just data, but can the XML be pushed into a form with code to do the above actions?

    Each object in a form must have a unique name. I doing so it is not neccessarily the name but the path or SomExpression associated with that object that must be unique. In your case you have a Table.Row.object configuration. The Row is the part that is repeating so to give each object a unique name an instance number is placed on the repeating part. So objects in the 1st row woudl be Table.Row[0].object...objects in the second row woudl be Table.Row[1].object etc .....You can see this by adding a debug instruction on the Enter event of the description field. Put the code app.alert(this.somExpression) and when you enter the field you will see what the somExpression is. Do this for a few rows and you will see the pattern (don't forget to remove the debug code from the enter event). Now you know what you have to use to address the fields. If no instance is given it is assumed to be 0 ..that is why only the 1st row is being affected.
    So now to answer your questions:
    Question1: The square bracket notation is an issue for javascript (this is the notation for an array) so we have to use a different means of addressing the field to include the instance number. So to address the Description in the 3rd row we woudl use:
    xfa.resolveNode("Table.Row[2].Description").rawValue = "This is my new description";
    Note that the instance number is 2 for the 3rd row because the instance numbers are 0 based.
    Question2. The resolveNode notation allows you to pass a string so you can also concatinate expressions to make the string. If you are writing code on a button in the same row you can get the instance that you are on by using the expression this.parent.index. The "this" portion refers to the current object (the button) and the parent.index gets you th eindex of the Buttons parent. If the button is embedded deeper in a hierarchy then you can continue to add parent indicators until you get back to the node that you want. So rewriting your expression from Q1 it woudl be:
    xfa.resolveNode("Table.Row[" + this.parent.index + "].Description").rawValue = "This is my new description";
    Question3: The buttons caption can be retrieved by using ButtonName.caption.value.text.value
    Question4: When you say build from an XML file. What are you expecting to come from the XML file? The caption that goes on the button? Typically the XML file carries data (not to say that it cannot carry other things). Just need a bit of clarification on this one first.
    Hope that helps
    Paul

  • How to determine the number of rows to be displayed in a report

    hello experts,
    Has anyone ever come across this requirement before? Before a report finishes being executed and before it displays the results, is there a way to determine the number of rows to be displayed as the result?
    Many thanks in advance.
    Regards,
    Inma

    Hello Arun,
    Thanks for your reply but do you know which method I should use for this purpose if I use the table interface?
    Thanks,
    Inma

Maybe you are looking for

  • My iMac wakes up immediately after sleeping

    First off, I'm using a mid-2010 imac with an i7 Quad Core processor, 8 GB 1333 MHz RAM, and Mac OSX 10.9.5. I've had this issue for a while now and I seriously can't pin it down. It doesn't always do this - it seems completely random, where it will b

  • Can't Create User after migration

    I recently upgraded a PPC xserver running leopard to a new Power Mac running lion server. Everything seemd to go smoothly but after a more thorough look I am having issues. The main one being I cannot create users in the I go into the server.app and

  • ITunes reinstalled on win 7x64 but still cannot enable bonjour services for home sharing any ideas

    i am trying to reenable home sharing - but bonjour services will not reenable in services although it is stating it has - tried to uninstall and reinstall all apple products/services but still no joy in preferences -  the Bonjour Services has bee ndi

  • Install fails on SUNWamws

    Hello, my installation fails somehow ... it looks like some path is missing. I try to unset LD_LIBRARY_PATH, but it has no effect. Have you ever met similar problem? Thanks for any idea. Here is a part of my installation log: ERROR: information for "

  • Move entire music library - music and artwork to another computer

    I'd like to move my entire music library, including artwork to another mac. I am using iTunes 9 and Mac OXS 10.4.11. Is there a tutorial for doing that? Thank you, TPK