Table doesn't appear

LiveCycle ES2 v9.0. I have put a table in my form - fixed size. Some of the cells contain plain text, some drop-down lists. The table does not appear in Preview PDF or when I Publish to Repository and view in Acrobat. The table does appear when I print the document. Why is this happening?
Graham

Hi Miller,
I had gone through your form. When i "ungroup section" all the sections that are grouped, i'm able to see the able. I'm afraid that following is the reason why the table has not appeared before ungrouping:
1) Your table structure is wrong. Currently your table structure is as follows:
<Table>
    HeaderRow0
    Row1[0]
   HeaderRow1
    HeaderRow2
    Row1[1]
    Row1[2]        
</Table>
You can have multiple Header Rows in a single table provided the Header Rows should be immediate to eachother and should be grouped as one. You can't have a Header Row a Body Row place multiple times between eachother.
If you wish to have multiple Header Rows, then you should create nested table (table within table). The possible structure in that case would be as follows:
<Table0>
     <Table1>
         HeaderRow0
         Row1[0]
     </Table1>
     <Table2>
        HeaderRow1  (Group HR1 and HR2)
         HeaderRow2
         Row1[1]
         Row1[2]        
</Table2>
</Table0>
So, you need to restructure your table.
Please feel free to ask me in case of any queries.
Thanks,
VJ

Similar Messages

  • Condition Type Doesn't Appear in COMMPR01

    Hello CRM Pricing Experts,
    I have created a custom pricing procedure called Z00001.  This pricing procedure has a custom condition type called ZPR0.  This in turn is based on a custom access type ZPR0 (Access=5, Table=SAP00080,E=checked, requirement=0.......based on the product).
    I have also maintained the pricing procedure with Distr Channel 10 (no division, no customer proc etc.) "Determination of Pricing Procedure".
    The problem is that when I create a material using COMMPR01, the new condition type doesn't appear as a valid condition type on the Conditions tab's Item Area.
    What could I be missing?
    I'd appreciate your help.

    Thanks for your reply.
    I followed the instructions you mentioned.  It dawned on me that I can only have 1 entry for application CRM.  This seemed like a big change so I decided not to change this and leave the CRM-> Condition Maintenance group setting as CRM->PRODUCTPRICES.
    I do have one follow-up question:
    Within the same screen (condition maintenance), what is the purpose of Product Category folder on the left pane.  I see an entry there for CRM ->PRCAT_CRM.  What does this mean? Do I have to add my item category here? Or is this something different?
    Thanks
    Edited by: Jamal Kazmi on Aug 29, 2009 9:18 PM

  • Shipping tab doesn't appear in PO

    Hi MM experts,
    When I am creating returns PO (return box checked), the shipping tab is not coming in item detail. System gives below error.
    "Not possible to determine shipping point for item"
    The most common reason this shipping tab doesn't appear in PO is because a Returns Vendor customer account number has not been maintained on vendor master.  But in this case I have checked the vendor and found that Vendor customer account number has been maintained. And the material also has been extended to sales org xxxx, distr.channel xx.
    I have checked TVSTZ table, eveything seems to be OK.
    Error descr: Message no. 06855, Diagnosis "The system was not able to determine a shipping point for the combination shipping condition , loading group xxx, plant xxxx in the case of item xx."
    System Response
    It is not possible to create a delivery in the Sales and Distribution component without specifying a shipping point.
    I do not know what to do or what is missing??
    Can anyone suggest how to proceed to create return PO.
    Thanks in advacne
    Suresh.

    Hi,
    Please refer SAP note- 831469 - Customer, Shipping Point for Storage Location incorrect for the same.
    Also check wether Sales views are maintained for that Material you are using for the STO, Check and maintain the loading group and shipping conditons in MMR sales: General/Plant View for receiving plant
    Also Check created SD customer(vendor) by you in system by XD01.
    and check for the complete STO config settings
    SPRO - MM -- Purchasing -- Purchase order --- Set up stock transport order -- define shipping data for plants
    Regards,
    Sandesh Sawant

  • Row banding on a ADF table doesn't work

    Using EA19 and previuously EA17, the table works fine, but the row banding doesn't appear.
    The used "skin" is oracle. Each row stays white.
    The attributes I use are bandingInterval="1" banding="row".
    Thanks in advance
    Laurent

    Hello,
    I installed the demoADF context and banding works fine
    on the table.jspx file.
    Now I have to find whats wrong with my context, what can be context dependend ?
    Best thanks
    Laurent

  • SQ01 Sap Query - additional fields doesn't appear

    Hi everybody,
    i've created a SAP Query with transaction SQ01 but one of my additional fields doesn't appear when i execute my Query.
    My query shows the G/L account number and the field status Group (table SKB1)
    I just need to display equally the text field of "field status Group" but it doesn't work.
    When i look at the parameters i can see that it makes the link between the table T004G and SKB1 in order to find the textfield but the field stay blank.
    For information T004g is a Pooled table.
    Is someone could help me?
    Thank you

    Hi,
    First you need to create a structure in Data Dictionary - SE11. This structure will contain all the fields that you want to display in the query output.
    Example - Name the Strucutre as zz_infoset01
    fields of the structure( for your requirement )
    BUKRS
    SAKNR
    FSTAG
    FSTTX
    Go to T-code SQ02
    1) Enter the Infoset name - zinfoset01 press create
    2) Enter a Short Description - G/L Infoset - 01
    3) select radio button - "Data retrieval by program"
                   and in "data structure" enter   zz_infoset01
    4) select "Integrated program" radio button
    5) In the next screen click on the "Data reading program" push button(on the application toolbar)
    6) An Editor will open with the following code
    REPORT  rsaqdvp_template .
      declarations
      (insert your declarations in this section)
    DATA:
      zz_infoset01                          TYPE zz_infoset01                          ,
      it_data TYPE STANDARD TABLE OF zz_infoset01 WITH HEADER LINE.
      selection screen statements
      (define your selection-screen here)
    !! the following comment MUST NOT BE CHANGED !!
    *<QUERY_HEAD>
      read data into IT_DATA
    (select your data here into internal table IT_DATA)
      output of the data
      (this section can be left unchanged)
    LOOP AT it_data.
      zq01  = it_data.                        .
    !! the following comment MUST NOT BE CHANGED !!
    *<QUERY_BODY>
    ENDLOOP.     
    7) when you insert your code in the sections it will look like this
    REPORT  rsaqdvp_template .
      declarations
      (insert your declarations in this section)
    Tables:SKB1,
              t004g.          
    DATA:
      zz_infoset01                          TYPE zz_infoset01 ,
      it_data TYPE STANDARD TABLE OF zz_infoset01 WITH HEADER LINE.
      selection screen statements
      (define your selection-screen here)
    !! the following comment MUST NOT BE CHANGED !!
    *<QUERY_HEAD>
    *These will be the input parameters for the query
    parameters: sp_bukrs like skb1-bukrs,
             sp_saknr like skb1-saknr.     
      read data into IT_DATA
    (select your data here into internal table IT_DATA)
    *get all the G/L for com code and G/L in selection screen
    SELECT bukrs saknr fstag
                INTO TABLE it_data
                FROM skb1
                WHERE bukrs = sp_bukrs
                AND   saknr = sp_saknr.
      output of the data
      (this section can be left unchanged)
    *for every G/L get the status text from t004g for lang 'EN'
    LOOP AT it_data.
    SELECT SINGLE fsttx
                    FROM t004g
                    INTO it_data-fsttx
                    WHERE spras = 'EN' "Language
                    AND   bukrs = it_data-bukrs
                    AND   fstag = it_data-fstag.
      zz_infoset01  = it_data.                        .
    !! the following comment MUST NOT BE CHANGED !!
    *<QUERY_BODY>
    ENDLOOP.     
    8) Save and generate the Infoset.By clicking on the generate button.
    9) Now assign the Infoset to the query in SQ01 and select the output list fields.
    let me know if you need more info. Also award points if helpful.
    Regards,
    Santosh

  • The New Field in the FBL5N/FBL1N doesn't appear

    Hi guys,
    I created an APPEND STRUCTURE with the NAME1 field in the table RFPOS and through the transaction FIBF an Event that calls a Function and move the Name of Customer or Supplier according to the transactions FBL5N or FBL1N.
    This field, NAME1, should appear in these transactions when the user choices the hidden fields through the Change Layout button. But this field doesn't appear...
    I debbuged the Function Module and the data have been moved. (It works...)
    Please, someone did it before and could help me to solve it?
    Why doesn't the Field NAME1 appear? What could I do??
    Thanks a lot!
    Regards,
    Marcos Fernando Dotta

    Hi
    The new fields have to be appended in the structure RFPOSX too, and then you need to run the program RFPOSXEXTEND in order to add the new fields in layout structure RFPOSXEXT
    Max

  • External usb drive doesn't appear correctly connected via usb to Time Capsule

    After using it successfully for months over my home LAN by connecting it via FW800 (and suing filesharing) to a stationary MacBook Pro, I'm attempting to connect a 2 TB Hitachi Deskstar 7K2000 hard drive (in a Rosewill quad-interface enclosure with Oxford semiconductor bridge chip) via USB cable to my third-generation Time Capsule. It is formatted as HFS+ with a GUID partition table.
    It appears in Airport Utility and mounts correctly, but none of its folders appears. Have tried two different USB cables with the same results.
    Any ideas as to what could be wrong?

    So do I. I have a 350 GB Maxtor One Touch external harddrive. When I boot the mac, the drive doesn't show. And if I run the AirPort Disk Utility, it shows by name. But no matter what settings I chose, it doesn't mount and it says "No Disk Found" in the menu.
    But here comes the interesting bit: If I turn off the harddrive, and turn it back on again, AirPort Disk Utility finds it. So I think the problem has to do with the harddrive spinning down and going into sleep-mode. For some reason it seems to become invisible to the Extreme-box when doing so. But if that's correct, what the heck do I do about it?

  • Google Map doesn't appear automatically when a prompt changes value

    Hi everybody,
    I'm using OBIEE 11.1.1.6.0 updated to 11.1.1.6.1 and I'm facing a curious problem.
    I created a dashboard with three sections.
    In the first section there is a prompt which shows the Top number of providers.
    In the second section there is a table on the left side which shows how many members we have for each provider, and a pie chart on the right side.
    In the third section there is a narrative view used to see a google map with ALL the providers' locations. This map have to show ALWAYS ALL the locations (no matter what I selected as Top number of providers, so it will be always the same).
    So, when I change the Top number of providers, the table and the pie chart refresh automatically, but the map doesn't refresh, or better it doesn't appear ! (I don't see the map anymore, I see a white space....). To see it again, I have to refresh the entire page.....
    This functionality worked in the past, but with this version it seems that it doesn't work properly....
    Has anyone faced an issue like this using the narrative views with google maps ??? This is a problem that I need to solve urgently.
    Any help or hint will be appreciated
    Thanks in advance
    Alex

    It looks to me like this has nothing to do with the digital signature prompt and everything to do with a badly formed URL. In a URL the domain name is not case sensitive but all the path information is case sensitive. Whether one should use http://www.mycompany.com/Abc/Xyz/ or http://www.mycompany.com/abc/xyz/ depends only on what the HTTP server expects. So which of these does the HTTP server expect?

  • Fields doesn't appear in SM30

    I have 2 custom tables . One which has no key fields ( other than CLIENT-MANDT ) field , while the other table has 4 fields as key. I used table maintenance generator for both the tables. Both these tables currently has no data in them. When i view in SM30 , i find the template for the second table , i mean the field names but no records- as no data in table.
    But for the first table , the template [just field labels] doesn't appear. I just get the message " No entries exist "
    Why is it so ?
    Thanks in advance,
    Asha

    Hello Asha,
    (and for everyone else having a problem with tables having only MANDT as key-field.. )
    It is very well allowed and supported in View Maintenance.
    But you should remember and realise one thing. MANDT field is never display on screen. Hence, if you have a table with only MANDT as the key-field, then you realise you do not need what is known as the 'Overview Screen'. It is also not supported Technically, as you are always handling only one record of the table - that belonging to current client!
    Hence, please goto your SE54, and change your maintenance type to two-step. Simply maintain a detailed screen, and re-generate your entire dialog. You will now see that when you access via SM30 now, you will always be directed to the detailed screen of your login client. Which is what is required functionally, am I right?
    Good luck!
    Cheers
    Rekha

  • Asset class doesn't appear in T.code AS01

    Hi
    I created Asset Class, and Screen layout with that asset class. But when I creat asset in T.code AS01, I click field "Asset Class", but that asset class doesn't appear. It notice following:
    "Asset class 213200 cannot be used in company code HDQC
    Message no. AA130
    Diagnosis
    When you create an asset, the system determines the chart of depreciation from the company code definition. In order for a chart of depreciation to be available for an asset class during asset maintenance, the chart of depreciation has to be entered for that asset class (Determine class valuation). Chart of depreciation HDQC that was determined is not entered for asset class 213200.
    System Response
    You cannot create any assets in your company code for this class.
    Procedure
    You can do one of the following:
    Use another asset class, for which chart of depreciation HDQC is defined.
    Maintain the asset class valuations for asset class 213200 in chart of depreciation HDQC. Chart of depreciation HDQC has to be specified in order for you to be able to maintain the valuation parameters of asset class 213200 for chart of depreciation HDQC"
    Please explain me as detailed as possible
    Thanks
    Ngocpt

    Thank you
    I understood my problem. When I determine depreciation area in Asset Class. It notice error:
    Contact your system administrator (table error)
    Message no. AA826
    Diagnosis
    Depreciation area 41 has not been defined in the chart of depreciation HDQC.
    Procedure
    Define the depreciation area using in FI-AA Customizing.
    Before I created depreciation area 41.After that I deleted depreciation area 41. So I can't determine depreciation area in Asset Class 213200
    You can help me to fix that error.
    Thanks
    Ngocpt

  • 0RT_PA_TRAN_CONTROL DataSource doesn't appear in Transaction SBIW.....

    Hi all
    i'm trying to use standard POS PIPE Retail Data Sources 0RT_PA_TRAN_CONTORL. This DataSource unfortunately doesn't appear in the R/3 System TAC: SBIW. This DataSource also not exist in table ROOSOURCE, neither in OBJVERS 'A', nor in OBJVERS 'M' or 'D'.
    Could anybody tell me, how to add this DataSource in R/3 System, or is this DataSource obsolet and i have to use the "newer" one?
    Thanks a lot
    Christian Weber

    Hello,
    0RT_PA_TRAN_CONTROL is a BW based DataSource, that is why it doesn't show in any ERP SBIW. You'll find it in your BW System that has BI_CONT installed.
    Regards
    Hergen

  • JTable edited data doesn't appear in the same time

    Hi
    i have aserious problem JTable edited data doesn't appear in the same time imust tom minimize the frame and maximize it to see the table modified what is the reason?

    Quit multi-posting the same question every time. You asked this same question 3 hours ago:
    http://forum.java.sun.com/thread.jspa?threadID=729894
    The last time you posted the same question within two minutes of one another:
    http://forum.java.sun.com/thread.jspa?threadID=729202
    http://forum.java.sun.com/thread.jspa?threadID=729200
    Not only that, you never bother to reply to your postings to indicate whether the advice given was helpfully or not. This is commonly known as thanking people for the time spent helping your.
    Learn to use the forum correctly or you will be on your own in the future.

  • After upgrading to IOS5, iphone doesn't appear on Itunes, and i cann't transfer pjhotos on iphoto, .., after upgrading to IOS5, iphone doesn't appear on Itunes, and i cann't transfer pjhotos on iphoto, ..

    after upgrading my iphone 4 to IOS5, it doesn't appear on "Itunes", and also i cann't transfer photos on "iphoto", .., so i cant load, save or erased anything now! 

    They are now in the videos app!

  • After I reset my Ipod (deleted all data and settings) windows 7 doesn't recognize by ipod touch, and it doesn't appear in the itunes library or in the device menu, but it does charge. How can I get my computer to recognize it again?

    After I reset my Ipod (deleted all data and settings) windows 7 doesn't recognize by ipod touch, and it doesn't appear in the itunes library or in the device menu, but it does charge. How can I get my computer to recognize it again?

    Refer to this article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538

  • HT1382 i got an iPad and all my app's, music,  and movies are on it, but when i try to download some apps to mi iPhone, they doesn't appear on the purchased tab, how could i move them back to itunes so i can access thru iCloud?

    i got an iPad and all my app's, music,  and movies are on it, but when i try to download some apps to mi iPhone, they doesn't appear on the purchased tab, how could i move them back to itunes so i can access thru iCloud? i have an 2nd generetion ipad and an iphone 5, thanks for you answers!

    (I think the daughter got he better end of the deal!)   I believe if you change the password and user id one of the devices it will stop that from occurring. But I'm not the one to tell you how to do it; someone like "Illaass" (Illaass seems to know how to correct / fix almost anything!) will know how if you don't. Just look for the "cat" icon.

Maybe you are looking for

  • 9i AS installation problem on NT

    Please help. I try to install 9iAS with HTTP Server only option on my NT workstation, on which Oracle 8.0.4 Server are running. So I choose another HOME for iSuites (DEFAULT_HOME = c:\ORANT for existing oracle server, iSuites_Home = d:\iSuites for 9i

  • Open a Sales Order on statistical WBS element. How?

    Hi, I tried to open a sales order on a statistical WBS element but the system shows me an error saying I can't open it because the WBS is statistical. Could it be a problem of Controlling Area or Operating Cornern? Is there a setting that allow me to

  • How to write Select statement for this codition

    I need to check whether SGTXT contains BELNR value. SGTXT is a text field and It should be matched with BELNR How to write select statement for this. Select AUGBL AUGDT into t_BSAD from BSAD where SGTXT should have the given BELNR Value. Plz note : H

  • Please help - error message

    When I try to open my document I get an error message saying 'There is an error opening this document. The file is damaged & could not be repaired'. It opens fine on my ipod & ipad, just get the error message on my pc. Please help

  • M93p SFF "missing driver" for &DEV_8C24&SUBSYS_309717AA; needed Intel chipset utility 10.0.24

    A new M93p SFF machine arrived Thursday, which I'm preparing for shipment to a friend in Virginia whose current 7-year old desktop machine has finally reached its own end-of-life.  Win7 Pro x64 pre-installed (via downgrade rights from Win8.1). I've b