Reg BSP table column title

Hi All,
I have problem with BSP table title display for one of the field.
The current code of
<%-- -
Create table for line item----
--%>
                                                  <htmlb:tableView id    = "tv_eban"
                                                            table = "<%= it_final %>" >
                                                  </htmlb:tableView>
                                                  </htmlb:tabStripItem>
                                              </htmlb:tabStrip>
The table field titles are defined and comes by default. From where does the sap table title text is coming. Here can we now update to display the new title for one of the new table field.
Thanks in advance. Please let me know if you need any further details.
From
Reddy.

Hi Readdy,
The column title of the BSP application comes from each data-element's field label of your table columns.
For example, let us assume that internal table contains two columns, say
col1 type char10
col2 type char50
where,
col1 and col2 are column names of the internal table and
char10 and char50 are data elements associated with col1 and col2 respectively.
Now when you display this structure in a table view then by default the title is got from the data element. The field label in the data element is used for this purpose.
In our example, the char10 field label is blank and char50 filed label is 'c'. So by default the col1 title will be blank and col2 title will be 'c'. (Don't worry i have cross-checked it).
There are three ways where you could give your own title
1. Provide a correct data element to the columns with correct field labels.
2. Change the BSP code by providing the title as given below,
<%@page language="abap"%>
<%@extension name="htmlb" prefix="htmlb"%>
<htmlb:content design="design2003">
  <htmlb:page title = "Table view column defult title text ">
    <htmlb:form>
        <htmlb:tableView id="tv1" table="<%= itab %>">
        <htmlb:tableViewColumns>
        <htmlb:tableViewColumn columnName="col1" title="Column 1"></htmlb:tableViewColumn>
        <htmlb:tableViewColumn columnName="col2" title="Column 2"></htmlb:tableViewColumn>
        </htmlb:tableViewColumns>
        </htmlb:tableView>
    </htmlb:form>
  </htmlb:page>
</htmlb:content>
3. To implement a iterator for this table view and change the title. (This has loads of features in order to modify the table view display).
Hope it helps! Please search in the sdn forums for more intresting ways of using the tableview tag. As suggested by SAP Mentor Graham Robinson, please look into the example BSP application for more information.
Regards,
Maheswaran
Edited by: Maheswaran B on Mar 8, 2010 5:02 PM

Similar Messages

  • BSP table column no longer editable

    I have a problem with a BSP where a table column used to be open for input in 4.6 but in the new ECC6 box is greyed-out and can't be changed. I've looked at the iterator logic in RENDER_CELL_START for the column in question and tried various combinations of values but nothing makes the cell editable. Does anyone have any ideas, in particular what changed from 4.6 to ECC6?
    Thanks,
    Dave

    Unfortunately. Here is another forum thread referencing this issue, including the bug number:
    Another bug introduced in production release - table filter
    -Gary

  • Modify sytem table column title

    Hi Experts,
    I want to modify system form (A/R invoice). I need to change column title in this system form.
    Help me please.

    Hi,
    You may check this thread first:
    Re: Change statictext caption
    Thanks,
    Gordon

  • BSP table column not opening for input

    I know very little about BSP but have a problem to fix. We have a BSP which works in 4.6 but not in ECC6. The problem is that when a table line is selected one of the columns is supposed to open for input but is not doing so. In the View the table is defined as selectionmode = "singleselect" and onRowSelection = "MyEventRowSelection" - I'm not sure where to find that event and associated method. Can someone direct me to the likely area of this problem? Thanks.

    Hi Mike,
    To have an editable table, the fields of your table must be bound to a cell editor of type 'Input field'. Check if this is done.
    Then, you should bind the read_only property of each input field to the context attribute. Not the read only of the table. This way, you can bind different columns to different attributes and make selected columns only as editable etc. For each field in your table, you will have a cell editor. Do the binding for each cell editor, i,e each column.
    Regards,
    Nithya

  • XML Schema Collection (SQL Server 2012): How to create an XML Schema Collection that can be used to Validate a field name (column title) of an existing dbo Table of a Database in SSMS2012?

    Hi all,
    I used the following code to create a new Database (ScottChangDB) and a new Table (marvel) in my SQL Server 2012 Management Studio (SSMS2012) successfully:
    -- ScottChangDB.sql saved in C://Documents/SQL Server XQuery_MacLochlainns Weblog_code
    -- 14 April 2015 09:15 AM
    USE master
    IF EXISTS
    (SELECT 1
    FROM sys.databases
    WHERE name = 'ScottChangDB')
    DROP DATABASE ScottChangDB
    GO
    CREATE DATABASE ScottChangDB
    GO
    USE ScottChangDB
    CREATE TABLE [dbo].[marvel] (
    [avenger_name] [char] (30) NULL, [ID] INT NULL)
    INSERT INTO marvel
    (avenger_name,ID)
    VALUES
    ('Hulk', 1),
    ('Iron Man', 2),
    ('Black Widow', 3),
    ('Thor', 4),
    ('Captain America', 5),
    ('Hawkeye', 6),
    ('Winter Soldier', 7),
    ('Iron Patriot', 8);
    SELECT avenger_name FROM marvel ORDER BY ID For XML PATH('')
    DECLARE @x XML
    SELECT @x=(SELECT avenger_name FROM marvel ORDER BY ID FOR XML PATH('Marvel'))--,ROOT('root'))
    SELECT
    person.value('Marvel[4]', 'varchar(100)') AS NAME
    FROM @x.nodes('.') AS Tbl(person)
    ORDER BY NAME DESC
    --Or if you want the completed element
    SELECT @x.query('/Marvel[4]/avenger_name')
    DROP TABLE [marvel]
    Now I am trying to create my first XML Schema Collection to do the Validation on the Field Name (Column Title) of the "marvel" Table. I have studied Chapter 4 XML SCHEMA COLLECTIONS of the book "Pro SQL Server 2008 XML" written by
    Michael Coles (published by Apress) and some beginning pages of XQuery Language Reference, SQL Server 2012 Books ONline (published by Microsoft). I mimicked  Coles' Listing 04-05 and I wanted to execute the following first-drafted sql in
    my SSMS2012:
    -- Reference [Scott Chang modified Listing04-05.sql of Pro SQL Server 2008 XML by Michael Coles (Apress)]
    -- [shcColes04-05.sql saved in C:\\Documents\XML_SQL_Server2008_code_Coles_Apress]
    -- [executed: 2 April 2015 15:04 PM]
    -- shcXMLschemaTableValidate1.sql in ScottChangDB of SQL Server 2012 Management Studio (SSMS2012)
    -- saved in C:\Documents\XQuery-SQLServer2012
    tried to run: 15 April 2015 ??? AM
    USE ScottChangDB;
    GO
    CREATE XML SCHEMA COLLECTION dbo. ComplexTestSchemaCollection_all
    AS
    N'<?xml version="1.0"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="marvel">
    <xsd:complexType>
    <xsd:all>
    <xsd:element name="avenger_name" />
    <xsd:element name="ID" />
    </xsd:all>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>';
    GO
    DECLARE @x XML (dbo. ComplexTestSchemaCollection_all);
    SET @x = N'<?xml version="1.0"?>
    <marvel>
    <avenger_name>Thor</name>
    <ID>4</ID>
    </marvel>';
    SELECT @x;
    GO
    DROP XML SCHEMA COLLECTION dbo.ComplexTestSchemaCollection_all;
    GO
    I feel that drafted sql is very shaky and it needs the SQL Server XML experts to modify to make it work for me. Please kindly help, exam the coding of my shcXMLTableValidate1.sql and modify it to work.
    Thanks in advance,
    Scott Chang

    Hi Scott,
    2) Yes, FOR XML PATH clause converts relational data to XML format with a specific structure for the "marvel" Table. Regarding validate all the avenger_names, please see below
    sample.
    DECLARE @x XML
    SELECT @x=(SELECT ID ,avenger_name FROM marvel FOR XML PATH('Marvel'))
    SELECT @x
    SELECT
    n.value('avenger_name[1]','VARCHAR(99)') avenger_name,
    n.value('ID[1]','INT') ID
    FROM @x.nodes('//Marvel') Tab(n)
    WHERE n.value('ID[1]','INT') = 1 -- specify the ID here
    --FOR XML PATH('Marvel')  --uncommented this line if you want the result as element type
    3)i.check the xml schema content
    --find xml schema collection
    SELECT ss.name,xsc.name collection_name FROM sys.xml_schema_collections xsc JOIN sys.schemas ss ON xsc.schema_id= ss.schema_id
    select * from sys.schemas
    --check the schema content,use the name,collection_name from the above query
    SELECT xml_schema_namespace(N'name',N'collection_name')
    3)ii. View can be viewed as virtual table. Use a view to list the XML schema content.
    CREATE VIEW XSDContentView
    AS
    SELECT ss.name,xsc.name collection_name,cat.content
    FROM sys.xml_schema_collections xsc JOIN sys.schemas ss ON xsc.schema_id= ss.schema_id
    CROSS APPLY(
    SELECT xml_schema_namespace(ss.name,xsc.name) AS content
    ) AS cat
    WHERE xsc.name<>'sys'
    GO
    SELECT * FROM XSDContentView
    By the way, it would be appreciated if you can spread your questions into posts. For any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • Unable to capture the adf table column sort icons using open script tool

    Hi All,
    I am new to OATS and I am trying to create script for testing ADF application using open script tool. I face issues in recording two events.
    1. I am unable to record the event of clicking adf table column sort icons that exist on the column header. I tried to use the capture tool, but that couldn't help me.
    2. The second issue is I am unable to capture the panel header text. The component can be identified but I was not able to identify the supporting attribute for the header text.

    Hi keerthi,
    1. I have pasted the code for the first issue
    web
                             .button(
                                       122,
                                       "/web:window[@index='0' or @title='Manage Network Targets - Oracle Communications Order and Service Management - Order and Service Management']/web:document[@index='0' or @name='1824fhkchs_6']/web:form[@id='pt1:_UISform1' or @name='pt1:_UISform1' or @index='0']/web:button[@id='pt1:MA:0:n1:1:pt1:qryId1::search' or @value='Search' or @index='3']")
                             .click();
                        adf
                        .table(
                                  "/web:window[@index='0' or @title='Manage Network Targets - Oracle Communications Order and Service Management - Order and Service Management']/web:document[@index='0' or @name='1c9nk1ryzv_6']/web:ADFTable[@absoluteLocator='pt1:MA:n1:pt1:pnlcltn:resId1']")
                        .columnSort("Ascending", "Name" );
         }

  • How to make the column title needs to be on each page?

    If a document has more than one page than a column title needs to be on each page,I can use Word fuction to do that. But If I Only use XML publisher, How to do it.
    Message was edited by:
    zhengr

    Hi
    If you mean how do you repeat the column titles on a table if the table extends over several pages then all you need do is:
    Highlight the table header row
    Right click and select table properties
    On the Row tab, specify that the header row should be repeated on every page
    Save your work
    XMLP will now respect the word setting and will repeat the header row on evey page the table needs.
    Regards, Tim

  • How to query XML file RDL SSRS Report to find column titles?

    I have list of SSRS reports  theirRDL file. How can we query the file to find like text book name as below(  <Textbox Name="bippie_passed_qa_photostamps_orders_amount">). Catlog t able in report server does not provide column title
    but i am trying to find column title through RDL file. How can we query in SQL server 2012 version too? I am new in XML please help is appreciated.
      </Textbox>
                      </CellContents>
                    </TablixCell>
                    <TablixCell>
                      <CellContents>
                        <Textbox Name="bippie_passed_qa_photostamps_orders_amount">
                          <CanGrow>true</CanGrow>
                          <KeepTogether>true</KeepTogether>
                          <Paragraphs>
                            <Paragraph>
                              <TextRuns>
                                <TextRun>
                                  <Value>=Fields!bippie_passed_qa_photostamps_orders_amount.Value</Value>
                                  <Style>
                                    <FontSize>8pt</FontSize>
                                    <Format>'$'#,0.00;('$'#,0.00);''</Format>
                                  </Style>
                                </TextRun>
                              </TextRuns>
                              <Style>
                                <TextAlign>Right</TextAlign>

    You will first need to get your report XML from the dbo.Catalog table but something like this should work:
    -- !!TODO get your report XML from the dbo.Catalog table
    DECLARE @ssrsXML TABLE ( yourXML XML )
    INSERT INTO @ssrsXML
    SELECT '<TablixCell>
    <CellContents>
    <Textbox Name="bippie_passed_qa_photostamps_orders_amount">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Fields!bippie_passed_qa_photostamps_orders_amount.Value</Value>
    <Style>
    <FontSize>8pt</FontSize>
    <Format>''$''#,0.00;(''$''#,0.00);''''</Format>
    </Style>
    </TextRun>
    </TextRuns>
    <Style>
    <TextAlign>Right</TextAlign>
    </Style>
    </Paragraph>
    </Paragraphs>
    </Textbox>
    </CellContents>
    </TablixCell>'
    SELECT t.*, c.c.value('@Name', 'VARCHAR(100)' ) nameProperty
    FROM @ssrsXML t
    CROSS APPLY yourXML.nodes('//TablixCell/CellContents/Textbox' ) c(c)

  • Nested Composite Component Doesn't work for table column

    I have reported this issue as defect 1541 but I'm hoping someone my have a suggestion on a work around for this. Here is the issue
    I am attempting to use composites to represent a table column. I have tried this with both IceFaces and the standard implementation. I have a custom component that is of type UIColumn that is being inserted into another composite that houses a table. The table renders and the column renders. However, the outputText that should represent the row data does not render. Interestingly this will render using composites when I don't have the column rendering as a composite (IE the table is contained in the composite and the row level output is contained in the top level page.). That is not my requirement though. This seems to be a tough cookie to crack. I have the source now and am starting to acquaint myself with it in an attempt to figure out what is going on. Any brilliant ideas out there?
    Code is below.
    tableColumn.xhtml
    <!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"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:composite="http://java.sun.com/jsf/composite">
    <h:head>
    </h:head>
    <h:body>
    <composite:interface componentType="MyColumn">
    </composite:interface>
    <composite:implementation>
    <ice:column headerText="Make" id="column3">
    <composite:insertChildren />
    </ice:column>
    </composite:implementation>
    </h:body>
    </html>
    table.xhtml
    <!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"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:composite="http://java.sun.com/jsf/composite">
    <h:head>
    <title></title>
    </h:head>
    <h:body>
    <composite:interface>
    </composite:interface>
    <composite:implementation>
    <ice:dataTable augmentTitle="false"
    rows="10"
    value="#{SessionBean1.carDataProvider.tableDisplayList}"
    var="item" >
    <composite:insertChildren />
    </ice:dataTable>
    </composite:implementation>
    </h:body>
    </html>
    Example Page
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:temp="http://java.sun.com/jsf/composite/tempcomp"
    <h:head id="outputHead1">
    </h:head>
    <h:body>
    <ice:form id="form1">
    <temp:table>
    <temp:tableColumn>
    <ice:outputText id="outputText3" value="#{item.make}"/>
    </temp:tableColumn>
    </temp:table>
    </ice:form>
    </h:body>
    </html>
    The the new UIMyColumn class
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package icefacestestapp2;
    import com.icesoft.faces.component.ext.UIColumn;
    import javax.faces.component.FacesComponent;
    @FacesComponent(value = "MyColumn")
    public class MyColumn extends UIColumn {
    @Override
    public String getFamily() {
    return "custom";
    Interestingly the row text will not render even if I add it directly to the new
    composite column class as seen below.
    <!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"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:composite="http://java.sun.com/jsf/composite">
    <h:head>
    </h:head>
    <h:body>
    <composite:interface componentType="MyColumn">
    </composite:interface>
    <composite:implementation>
    <ice:column headerText="Make" id="column3">
    <ice:outputText id="outputText3" value="#{item.make}"/>
    </ice:column>
    </composite:implementation>
    </h:body>
    </html>

    Hi,
    I recall an issue in 10.1.3.2 with inner frames that had the wrong JavaScript reference to the DOM. So I assume this to be the same in your case. So you can give it a try with JDeveloper 10.1.3.3 and see if this fixes the problem
    Frank

  • How to test BLOB Table Column in BCBrowser??

    Hi,
    My requirement is to upload a file(pdf,doc,jpg, txt) into DB using ADF.
    I use, Jdev 11.1.1.6, Oracle 10g XE.
    For this, I created the following
    1. A table as MyFilesTab(ID Number, FileName Varchar2(80), File BLOB)
    2. An Entity Object MyFilesEO on MyFilesTab.
    3. Generated a default view object: MyFilesVO
    4. Application Module : TestAM with view instance "MyFiles"
    But When I run TestAM, I see MyFiles as an Input textbox. So I cannot able to add a file that will be stored in my Table.
    Please help me out.

    Just to clarify, my previous post is related to title of this thread("How to test BLOB Table Column in BCBrowser??"),
    and not to "My requirement is to upload a file(pdf,doc,jpg, txt) into DB using ADF" 
    Dario

  • How can I display sort icons of an af:table column permanently

    Hello all,
    I'm using JDEV 11.1.1.5. Is there a way using skinning or any other mean to make the sort icons of a column in a af:table to be displayed permanently and not only after a mouse over on the column title?

    Can you try with skinning?
    Check the forum post:
    Column Sort image display permanent
    Thanks,
    Navaneeth

  • SOLVED - ADF Table - Column move beyond bounds

    JDeveloper 11.1.1.0.0
    At runtime, moving a column (by dragging) outside the bounds of and af:table throws a client browser runtime error in IE 7:
    Line 70021
    Error: 'rows' is null or not an object
    The "Do you wish to Debug" message is repeated until the dialog is moved within the table (column) bounds.

    Are you using tech preview 2? I am attempting to reproduce this error in IE 7 as well as firebug, but without success. The jspx file I am using can be found below.
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <af:document>
          <af:messages/>
          <af:form>
            <af:table value="#{bindings.Persons1View1.collectionModel}" var="row"
                      rows="#{bindings.Persons1View1.rangeSize}"
                      first="#{bindings.Persons1View1.rangeStart}"
                      emptyText="#{bindings.Persons1View1.viewable ? 'No rows yet.' : 'Access Denied.'}"
                      fetchSize="#{bindings.Persons1View1.rangeSize}"
                      selectedRowKeys="#{bindings.Persons1View1.collectionModel.selectedRow}"
                      selectionListener="#{bindings.Persons1View1.collectionModel.makeCurrent}"
                      rowSelection="single">
              <af:column sortProperty="PersonId" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.PersonId.label}">
                <af:outputText value="#{row.PersonId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View1.hints.PersonId.format}"/>
                </af:outputText>
              </af:column>
              <af:column sortProperty="PrincipalName" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.PrincipalName.label}">
                <af:outputText value="#{row.PrincipalName}"/>
              </af:column>
              <af:column sortProperty="Title" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.Title.label}">
                <af:outputText value="#{row.Title}"/>
              </af:column>
              <af:column sortProperty="FirstName" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.FirstName.label}">
                <af:outputText value="#{row.FirstName}"/>
              </af:column>
              <af:column sortProperty="LastName" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.LastName.label}">
                <af:outputText value="#{row.LastName}"/>
              </af:column>
              <af:column sortProperty="PersonTypeCode" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.PersonTypeCode.label}">
                <af:outputText value="#{row.PersonTypeCode}"/>
              </af:column>
              <af:column sortProperty="SupplierId" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.SupplierId.label}">
                <af:outputText value="#{row.SupplierId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View1.hints.SupplierId.format}"/>
                </af:outputText>
              </af:column>
              <af:column sortProperty="ProvisionedFlag" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.ProvisionedFlag.label}">
                <af:outputText value="#{row.ProvisionedFlag}"/>
              </af:column>
              <af:column sortProperty="PrimaryAddressId" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.PrimaryAddressId.label}">
                <af:outputText value="#{row.PrimaryAddressId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View1.hints.PrimaryAddressId.format}"/>
                </af:outputText>
              </af:column>
              <af:column sortProperty="RegisteredDate" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.RegisteredDate.label}">
                <af:outputText value="#{row.RegisteredDate}">
                  <af:convertDateTime pattern="#{bindings.Persons1View1.hints.RegisteredDate.format}"/>
                </af:outputText>
              </af:column>
              <af:column sortProperty="MembershipId" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.MembershipId.label}">
                <af:outputText value="#{row.MembershipId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View1.hints.MembershipId.format}"/>
                </af:outputText>
              </af:column>
              <af:column sortProperty="Email" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.Email.label}">
                <af:outputText value="#{row.Email}"/>
              </af:column>
              <af:column sortProperty="ConfirmedEmail" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.ConfirmedEmail.label}">
                <af:outputText value="#{row.ConfirmedEmail}"/>
              </af:column>
              <af:column sortProperty="PhoneNumber" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.PhoneNumber.label}">
                <af:outputText value="#{row.PhoneNumber}"/>
              </af:column>
              <af:column sortProperty="MobilePhoneNumber" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.MobilePhoneNumber.label}">
                <af:outputText value="#{row.MobilePhoneNumber}"/>
              </af:column>
              <af:column sortProperty="CreditLimit" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.CreditLimit.label}">
                <af:outputText value="#{row.CreditLimit}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View1.hints.CreditLimit.format}"/>
                </af:outputText>
              </af:column>
              <af:column sortProperty="DateOfBirth" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.DateOfBirth.label}">
                <af:outputText value="#{row.DateOfBirth}">
                  <af:convertDateTime pattern="#{bindings.Persons1View1.hints.DateOfBirth.format}"/>
                </af:outputText>
              </af:column>
              <af:column sortProperty="MaritalStatusCode" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.MaritalStatusCode.label}">
                <af:outputText value="#{row.MaritalStatusCode}"/>
              </af:column>
              <af:column sortProperty="Gender" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.Gender.label}">
                <af:outputText value="#{row.Gender}"/>
              </af:column>
              <af:column sortProperty="ChildrenUnder18" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.ChildrenUnder18.label}">
                <af:outputText value="#{row.ChildrenUnder18}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View1.hints.ChildrenUnder18.format}"/>
                </af:outputText>
              </af:column>
              <af:column sortProperty="ApproximateIncome" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.ApproximateIncome.label}">
                <af:outputText value="#{row.ApproximateIncome}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View1.hints.ApproximateIncome.format}"/>
                </af:outputText>
              </af:column>
              <af:column sortProperty="ContactMethodCode" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.ContactMethodCode.label}">
                <af:outputText value="#{row.ContactMethodCode}"/>
              </af:column>
              <af:column sortProperty="ContactableFlag" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.ContactableFlag.label}">
                <af:outputText value="#{row.ContactableFlag}"/>
              </af:column>
              <af:column sortProperty="ContactByAffilliatesFlag" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.ContactByAffilliatesFlag.label}">
                <af:outputText value="#{row.ContactByAffilliatesFlag}"/>
              </af:column>
              <af:column sortProperty="CreatedBy" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.CreatedBy.label}">
                <af:outputText value="#{row.CreatedBy}"/>
              </af:column>
              <af:column sortProperty="CreationDate" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.CreationDate.label}">
                <af:outputText value="#{row.CreationDate}">
                  <af:convertDateTime pattern="#{bindings.Persons1View1.hints.CreationDate.format}"/>
                </af:outputText>
              </af:column>
              <af:column sortProperty="LastUpdatedBy" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.LastUpdatedBy.label}">
                <af:outputText value="#{row.LastUpdatedBy}"/>
              </af:column>
              <af:column sortProperty="LastUpdateDate" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.LastUpdateDate.label}">
                <af:outputText value="#{row.LastUpdateDate}">
                  <af:convertDateTime pattern="#{bindings.Persons1View1.hints.LastUpdateDate.format}"/>
                </af:outputText>
              </af:column>
              <af:column sortProperty="ObjectVersionId" sortable="true"
                         headerText="#{bindings.Persons1View1.hints.ObjectVersionId.label}">
                <af:outputText value="#{row.ObjectVersionId}">
                  <af:convertNumber groupingUsed="false"
                                    pattern="#{bindings.Persons1View1.hints.ObjectVersionId.format}"/>
                </af:outputText>
              </af:column>
            </af:table>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>

  • View responses - Column titles

    Please can you help me find out why the questions I have created in the form (with either multiple/drop down answers) are not appearing in the column titles within "View Responses"???
    Currently I have lots of blank column titles with answers yes or no in them and I cant see what question releates to what answer??

    Hi,
    Do you have filters set?
    If possible, please provide a screenshot showing the problem.
    Let me point you to some documentation on View Responses features, please check these out and see if they help you resolve your issue:
    http://helpx.adobe.com/acrobat-com/formscentral/help/views.html
    http://helpx.adobe.com/acrobat-com/formscentral/help/sort-filter-data.html
    http://helpx.adobe.com/acrobat-com/formscentral/help/format-response-table.html
    Thanks,
    Lucia

  • Is it possible to have an empty column title in a configTable?

    Hi all,
    is it possible to have an empty column title within a configurable table (chtmlb:configTable)? Whenever I change the title with the config tool to empty and save the changes it seems that it doesn't take effect.
    The problem is that the column width is too less to display the whole text and I don't want to have "A..." displayed there.
    Best regards
    Ben

    Hi,
    Not possible directly but possible programatically.
    The Column titles come from the data-element description. To override this, you will need to change the data element nd its fairly simple. Create a data element similar to the std. data element domain but put your description and then in GET_M method of that attribute, use this Z data type.
    For example, suppose its searhc result Displaying addresses in a table view, then for states, you get name as "Region".
    In most of asian countires, instead of region, "state" this word is used. So if i want to disply the colum header as states and not region,
    1) i will find which is the doain of std. region field.
    2) i will create a data element with this domain but i will give different description to my data element, This description would be States
    3) In the GET_M method of that particular column attribute, i will change the type to my data element.
    an i am done.
    Thus you can create your data element with shorten and more meaningful text . I think system does not allow you to save a data element or domain w/o a description hence i doubt if blank will be possible..need to check it out.
    Hope this helps
    Thanks & Regards,
    Suchita

  • Reg:bsp(mvc)

    hi to all,
    i had developed a stateful BSP application using MVC .
    in the first view iam entering a material number.
    in the second view iam displaying the records from a table based on material number.again when i make the application to stateless it is displaying the second
    view.with writing a code for a stateless application.i.e server side cookies.
    could any one help me out.
    with regards.
    gangadhar.

    Hi,
    To set data using cookies,
    call method cl_bsp_server_side_cookie=>set_server_cookie
              exporting
                name                  = 'ZF0707'
                application_namespace = str_app_ns
                application_name      = str_app_na
                username              = 'shtml'
                session_id            = str_ses_id
                data_name             = 'EMP_DATA'
                data_value            = itl_delview_tab
                expiry_time_rel       = 7200.
    To get the data using cookies,
    call method cl_bsp_server_side_cookie=>get_server_cookie
        exporting
          name                  = 'ZF0707'
          application_namespace = str_app_ns
          application_name      = str_app_na
          username              = 'shtml'
          session_id            = str_ses_id
          data_name             = 'EMP_DATA'
        changing
          data_value            = itl_delview_tab.
    here itl_delview_tab is an internal table.
    Also go through the below link,
    http://help.sap.com/saphelp_nw04s/helpdata/en/bd/4cd23a09313b37e10000000a11405a/content.htm
    Please close ur earlier thread and award points if u have got the solution,
    Re: REG:BSP(MVC)
    Regards,
    Sachidanand.B

Maybe you are looking for

  • Can't download any file

    Hai iam using iPhone 5 and I can't download any file even a text please help me

  • 5800 Casing Problem

    I've been using a Nokia 5800 since January, mostly with the casing but its suffered a few minor faults here & there. A month back i noticed long rubbery black strips protruding from underneath the casing along the side of the screen. I could barely p

  • Email button error works but gives Error message "10"

    I have "attach to email" buttons on my forms. I leave the email address blank for the person to fill in themselves. It works fine but on one form (and one form only) when clicking on the button an error message window comes up - with exclamation mark

  • Why file not got deleted ?

    why file not got deleted ? try{ File file = new File("path"); file.delete(); S.O.P(file.exists()); }catch(SecurityException e){ e.printStackTrace(); It prints "false". Yet file exists with content zero bytes. Any way to remove the file completely ?

  • Cancel Task in BPEL human workflow

    All, We have a requirement to cancel the task for the user using human work flow. The worklist should be deleted for the user. Let me know if oracle human workflow provides an opertaion option to cancel the task like reassign,initaiate etc. Regards,