Text Box issue - displays XML tag instead of the value in EBS

I need to use a textbox (or a autoshape with text) to place a data element in a specific position on the page in an RTF template. I tried using tables and it didn't help. This layout needs some elements to be placed at specific location and using an autoshape or a text box is easy. When I preview the pdf output on my desktop, it works fine. Once I upload the template into EBS XML Publisher, the value in the text box shows up as an XML Tag instead of the value in that tag. The same XML data when loaded and previewed locally shows the data instead of the tag.
Any thoughts on this? Is there a patch or something we might need for this in EBS?
Thanks,
Vinay

Thanks Tim for the quick response.
Yes - the versions are same. Also, I tried giving the complete path. The issue is that it is not even reading the text in the text box as an XML tag. It seems to think the whole text box is an object and hence just display that text as is. If it was reading and not able to resolve it, I guess it would have displayed blank (and not the tag as is). Again as I mentioned it works fine in local preview on my machine.

Similar Messages

  • InputComboboxListOfValues : How to display a label instead of the value ?

    Hi,
    I have a page containing a inputComboboxListOfValues component. This works fine but when I select a value, the field then takes the item code (not displayed in the combo bos LOV model) instead of the label.
    How can I do the same as http://myadfnotebook.blogspot.com/2010/09/getting-string-value-or-item-code-of.html but with inputComboboxListOfValues since the list may be very long ?

    Hi,
    Create a view object that is based on two entities (e.g. EmployeeVO based on Employees entity and Departments entity). Then choose the descriptive attribute (e.g. Department name from Departments entity) to be included in the query. Build the table dragging the EmployeeVO and then deselect e.g. departmentId so that department name remains
    Frank

  • Rich Text Box Issue - Expand to show all Text

    Hi everyone
    I'm having a pretty frustrating issue with the rich text box when viewing a line item (not when editing the item, but viewing the item)
    I want my rich text box to expand with the text, which I have changed in the options on InfoPath with the "Expand to show all text" scrolling option. However, in IE, the table row will expand, but the actual rich text box will not and I'll have
    a scroll bar there and you cant see all of the text at one time. If I look in Chrome, then it works the way I want and I can see all of the lines of text that were entered into the rich text box.
    The only solution for IE to work correctly is to change the Display settings to "Enable enhanced rich text content...". But the big issue with that is now you can no longer highlight the text (the highlight disappears right after highlighting it),
    and the users will need to copy text from the text box, so it renders the "enhanced" rich text box useless for us
    It's kind of a lose-lose situation that I'd love to find the solution for

    I guess a better solution would be how can you highlight text from an enhanced rich text box, because changing these to "rich text box" gets rid of font colors in the pre-existing data.
    The original problem was that they couldn't highlight text unless they went into edit mode

  • I just updated to 10.8.4 and my mail program is showing a series of boxes with AAAAs inside them instead of the email addresses. Also when on Safari web pages are displaying the same AAAAAs instead of type. Firefox displays fine. Can someone help me?

    I just updated to 10.8.4 and my mail program is showing a series of boxes with AAAAs inside them instead of the email addresses. Also when on Safari web pages are displaying the same AAAAAs instead of type. Firefox displays fine. Can someone help me?

    Restart your Mac and immediately hold down the Shift key when you hear the startup chime to boot into Safe Mode. Keep holding the Shift key until you see a progress bar towards the bottom of the screen. You can let go of the Shift key at that point.
    OS X asks you to log in (you will get this screen on a Safe Mode boot even if your Mac is set to automatically log in). Let the Mac finish booting to the desktop and then restart normally. This will clear Font Book's database and the cache files of the user account you logged into in Safe Mode.
    Next, close all running applications. From an administrator account, open the Terminal app and enter the following command. You can also copy/paste it from here into the Terminal window:
    sudo atsutil databases -remove
    Terminal will then ask for your admin password. As you type, it will not show anything, so be sure to enter it correctly.
    This removes all font cache files. Both for the system and the current user font cache files. After running the command, close Terminal and immediately restart your Mac.

  • Text Box issues with a poster template

    This sounds stupid and all but, I am trying to type lowercase in a text box in one of the poster templates and it will only type caps. I cannot seem to find anything to clikc or unclick. It seems like this shouldn't be so difficult.

    Hi there,
    I too am having problems with the text box. I have a line at the beginning of each sentence, I can't seem to get rid of. Now this problem does not exist on the first page, but any other pages I try to edit the text on I get this line. I've looked everywhere, but can't seem to find the solution. Any help out ther? Or if you need further clarification to the issue, just let me know!
    Bryan

  • How can I replace a text/range of text enclosed in a XML tag

    I want to replace a piece of text enclosed inside a XML tag in a text frame.
    In my input parameters, I have the In-design document page number, text frame UID in that page and the XML tag name inside that text frame
    which encloses my old text.
    what command/function/interface can I use which can help me to replace the existing text with the input text ?
    eg:
    [old text]  -----> [new text]
    where [ ] is XML tag with name tag1.

    After some trail and POC, I was able to write the below piece of code.
    This detects the starting and ending position of the marker and based on that we can replace the text inside it. Hope it helps.
    InterfacePtr<IDocumentSignalData> data(signalMgr, UseDefaultIID());
            if (data == nil)
                break;
            UIDRef docRef = data->GetDocument();
            InterfacePtr<IDocument> doc(docRef, IID_IDOCUMENT);
      IDataBase *db = docRef.GetDataBase();
      //Get the spread
      InterfacePtr<ISpreadList> spreadList(doc, UseDefaultIID());
      int32 spreadCount = spreadList->GetSpreadCount();
      for ( int32 spreadIndex = 0; spreadIndex < spreadCount; spreadIndex++ )
      // Get the spread reference
      UIDRef spreadUIDRef(db, spreadList->GetNthSpreadUID(spreadIndex));
      // Get the spread object
      InterfacePtr<ISpread> spread(spreadUIDRef, UseDefaultIID());
      int32 numberOfPages = spread->GetNumPages();
      for (int32 nPage = 0; nPage < numberOfPages; nPage++ )
      UIDList pageItemList(db);
      spread->GetItemsOnPage(nPage, &pageItemList, kFalse, kFalse);
      // Iterate the page items and save off the UIDs of frames.
      int32 pageItemListLength = pageItemList.Length();
      for (int32 j = 0; j < pageItemListLength; j++ )
      UIDRef pageItemRef = pageItemList.GetRef(j);
      InterfacePtr<IFrameType> frame(pageItemRef, UseDefaultIID());
      if( frame->IsTextFrame() )
      //Now trying to get the marker position for XML tag
      TextIndex startPos=0,endPos=0;
      IXMLReferenceData *xmlReferenceData= Utils<IXMLUtils>()->QueryXMLReferenceData(pageItemRef);
      XMLReference ref = xmlReferenceData->GetReference();
      //IIDXMLElement *element = ref.Instantiate();
      InterfacePtr<IIDXMLElement> element(ref.Instantiate());
      UID tagUID = element->GetTagUID();
      WideString elementName = element->GetTagString();
      for(int32 i=0; i < element->GetChildCount(); i++)
      XMLReference childRef = element->GetNthChild(i);
      InterfacePtr<IIDXMLElement> child_element(childRef.Instantiate());
      tagUID = child_element->GetTagUID();
      elementName = child_element->GetTagString();
      int32 index=0;
      Utils<IXMLUtils>()->GetElementMarkerPositions(child_element,&startPos,&endPos);
      startPos += 1; // move forward to exclude the starting tag
      } // iterate pages in spread

  • Image on top of text box issue

    I'm attempting to create my own message window that will appear when a text box is full.  I have script in the "full" section of the text box that makes the presence of the image and a few text boxes visible when full.  In design view, I have placed the image on top of the text box.  However, during testing, when the text box is full, the image appears but the text from the text box below also appears on top of the image.  I have tried to setFocus to the image as well, but this didn't help.
    What's odd is that if I navigate to a different page and then navigate back, the image appears correctly.
    Any ideas?  Thanks.

    Thank you very much. I didn't even know how to look up the solution.
    Now I understand what those buttons do and their usefulness.

  • Displaying the current users information instead of the value of the person who completed the form in the first place.

    I found this fantatic post regarding querying the user profile service 
    http://blogs.technet.com/b/anneste/archive/2011/11/02/how-to-create-an-infopath-form-to-auto-populate-data-in-sharepoint-2010.aspx?pi47623=2#comments 
    However i have an issue whenever the form is opened again either to view or edit, it displays the current users information
    instead of the value of the person who completed the form in the first place.
    Please help me, I'm turning more grey each minute

    I think it is how the current user information is stored based on your logic.
    You might be quering current value again when loading the form (Form load Rule).
    you have to tweak your logic, after the user submits the form you can set the username to the one who saved it.
    or in form load, write a logic to see if the form was not saved before and then query the username( by using internal field like "formstatue")
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if the reply helps you

  • Is there a way to either run a "Score" thing in Keynote, or a text box that can be typed in during the presentation?

    Is there a way to either run a "Score" thing in Keynote, or a text box that can be typed in during the presentation?

    Keynote does not have this function.
    The only way to do this is to use an annotation application. Google and find the cost and functionality you need, many have trial downloads.

  • Exception Description: Unable to process XML tag [driver-class] with value

    Hi
    I'm newbie with TopLink. I try to write a litle application with TopLink:
    - First, I create a session.xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <toplink-sessions version="11g Technology Preview 3 (11.1.1.0.0)" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <session xsi:type="database-session">
    <name>dbsession</name>
    <event-listener-classes/>
    <logging xsi:type="toplink-log"/>
    <primary-project xsi:type="xml">META-INF/tlMap.xml</primary-project>
    <login xsi:type="database-login">
    <platform-class>oracle.toplink.platform.database.oracle.Oracle10Platform</platform-class>
    <user-name>dev</user-name>
    <password>F6A3DA7BA187330D4E11A713C42FF833</password>
    <sequencing>
    <default-sequence xsi:type="table-sequence">
    <name>Default</name>
    </default-sequence>
    </sequencing>
    <driver-class>oracle.jdbc.OracleDriver</driver-class>
    <connection-url>jdbc:oracle:thin:@//10.10.10.31:1521/devdb1</connection-url>
    <bind-all-parameters>false</bind-all-parameters>
    <struct-converters/>
    </login>
    </session>
    </toplink-sessions>
    - Second, I create a Java Application ( Application1.java):
    package project2;
    import java.sql.ResultSet;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.Vector;
    import oracle.toplink.queryframework.DataModifyQuery;
    import oracle.toplink.queryframework.SQLCall;
    import oracle.toplink.queryframework.StoredProcedureCall;
    import oracle.toplink.sessions.DatabaseSession;
    import oracle.toplink.sessions.Session;
    import oracle.toplink.tools.sessionconfiguration.XMLSessionConfigLoader;
    import oracle.toplink.tools.sessionmanagement.SessionManager;
    import oracle.toplink.util.SessionFactory;
    public class Application1 {
    public Application1() {
    public static void main(String[] args) {
    // new Application1();
    String statement = "SELECT motdepasse,login FROM bou_courtier";
    SessionManager sessionmanager = SessionManager.getManager();
    System.out.println("test");
    // SessionFactory sessionfactory = new SessionFactory("META-INF/sessions.xml","dbsession");
    DatabaseSession session = (DatabaseSession)sessionmanager.getSession(new XMLSessionConfigLoader(),"dbsession",Thread.currentThread().getContextClassLoader());
    // Session session = sessionfactory.acquireSession();
    System.out.println("test");
    SQLCall sqlcall = new SQLCall(statement);
    session.executeNonSelectingCall(sqlcall);
    ResultSet rs = sqlcall.getResult();
    try {
    while(rs.next()){
    String strPass = rs.getString(1);
    String strLogin = rs.getString(2);
    System.out.println("Password :"+strPass+"---"+"Login :"+strLogin);
    } catch (SQLException e) {
    // TODO
    - Third, I build and run Application1.java in Jdevelopper 11g preview 3. Sadly, the result is a error:
    Exception in thread "main" Local Exception Stack:
    Exception [TOPLINK-9003] (Oracle TopLink - 11g Technology Preview 3 (11.1.1.0.0) (Build 071207)): oracle.toplink.exceptions.SessionLoaderException
    Exception Description: Unable to process XML tag [driver-class] with value [oracle.jdbc.OracleDriver].
    Internal Exception: java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
         at oracle.toplink.exceptions.SessionLoaderException.failedToLoadTag(SessionLoaderException.java:83)
         at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildDatabaseLoginConfig(TopLinkSessionsFactory.java:408)
         at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildLogin(TopLinkSessionsFactory.java:336)
         at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildDatabaseSessionConfig(TopLinkSessionsFactory.java:182)
         at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildSession(TopLinkSessionsFactory.java:168)
         at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildTopLinkSessions(TopLinkSessionsFactory.java:117)
         at oracle.toplink.tools.sessionconfiguration.XMLSessionConfigLoader.load(XMLSessionConfigLoader.java:239)
         at oracle.toplink.tools.sessionmanagement.SessionManager.getSession(SessionManager.java:448)
         at oracle.toplink.tools.sessionmanagement.SessionManager.getSession(SessionManager.java:311)
         at project2.Application1.main(Application1.java:33)
    Caused by: java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildDatabaseLoginConfig(TopLinkSessionsFactory.java:405)
         ... 8 more
    Process exited with exit code 1.
    Can you help me to debug this error. Many thanks
    user615555

    The internal error: "java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver"
    is stating it can't find your driver jar file on the classpath. You'll need to check that you've included your Database driver in the list of libraries on your classpath.
    Best Regards,
    Chris

  • I am trying to fit information in a text box. Is there way to move the information further up. There is a lot of wasted space on the top.

    I am trying to fit information in a text box. Is there way to move the information further up. There is a lot of wasted space on the top.

    Shane's psychic powers are amazing..... I would have asked 'what text box?'
    ...and so, yet another inquisition begins!
    The Mystic North

  • Looking for some help on emailing results using the drop down Label instead of the value

    DWMX / SQL / ASP
    I have a very simple form... 4 fields
    1 - Textbox to enter name
    2 - Drop downs to select location and type of issue
    1 - Comment box to describe in more detail the issue....
    I have notification setup to email the results to the
    appropriate person
    upon submission.. the issue im having is the following.. the
    email will go
    to the department that needs to get it based on the Issue
    drop down... the
    drop down is populate from a table containing 2 fields (
    Issue Name and
    Email )
    My question is how can i capture the label name instead of
    the value which
    in this case is the email address?
    I want the email to be sent to the email address, but i want
    the email to
    display the label name....

    Try this,
    <%=(rsCombo.Fields.Item("issue").Value)%>
    <%
    if recordset("fieldname") then
    response.write "Your Lable Name"
    end if
    %>
    Dave
    "Daniel" <[email protected]> wrote in message
    news:elporq$pd1$[email protected]..
    > forgot to add this bit
    >
    > this is what im using to get the data for that
    > <%=(rsCombo.Fields.Item("issue").Value)%>
    >
    >
    >
    > "Daniel" <[email protected]> wrote in message
    > news:elpns1$o80$[email protected]..
    > > DWMX / SQL / ASP
    > >
    > > I have a very simple form... 4 fields
    > > 1 - Textbox to enter name
    > > 2 - Drop downs to select location and type of issue
    > > 1 - Comment box to describe in more detail the
    issue....
    > >
    > > I have notification setup to email the results to
    the appropriate person
    > > upon submission.. the issue im having is the
    following.. the email will
    go
    > > to the department that needs to get it based on the
    Issue drop down...
    the
    > > drop down is populate from a table containing 2
    fields ( Issue Name and
    > > Email )
    > >
    > > My question is how can i capture the label name
    instead of the value
    which
    > > in this case is the email address?
    > >
    > > I want the email to be sent to the email address,
    but i want the email
    to
    > > display the label name....
    > >
    >
    >

  • IWDDropDownByKey - Key is shown instead of the value in View

    Hi,
    we found some strange behaviour when we dynamically generate some IWDDropDownByKey UI-Elements in an IWDTransparentContainer. In IExplorer and Firefox all data looks well. The values in the IWDDropDownByKey-Elements are shown as expected.
    In one case with Internet Explorer 7 (and only on one Client-PC) we have an issue, that instead of the value (normal text) the key is shown in the dropdown-field in the view!
    Do you know about some bugs regarding to the IWDDropDownByKey-Element with IExplorer 7?
    Thanks in advance for your help!

    Hi Danwesel
    Please check the browser compatibility with portal :
    /community [original link is broken];jsessionid=(J2EE5212300)ID1732745050DB01763421920660234924End;saplb_*=(J2EE5212300)5212350?messageID=7607207
    /message/8840993#8840993 [original link is broken]
    Hope it helps'
    Regards
    Arun

  • When I receive text messages, it displays phone number instead of contact name.

    I updated to iOS 5 on my iPhone 4 over the weekend. Since updating to iOS 5, all of my text messages show up with a phone number listed instead of the contacts name. I checked my contact info and all the contact information is listed and the numbers under the contact are correct. Has anyone else had this issue and if so have you discovered any resolutions?

    Following a tip from another poster, I was able to fix the issue (temporarily).
    This worked for me on Verizon.
    I dialed *228 on my Verizon phone. I pressed "1" to activate it over the air. I then went into task manager and killed all the running apps.. Waited a few minutes.
    The next text I got displayed the number correctly!.. Until I rebooted, that is.
    Ps. PLEASE, call Apple and speak with a senior engineer on this. They can't fix it if they don't know it's a problem! (800) MY-IPHONE

  • XML report output displays xml code instead of pdf

    Hi,
    My Release is R12.1.1, An xml report whose output is set as pdf. when running this report output is coming as xml code instead of pdf
    another xml report ouput is coming in word instead of pdf
    is there any additional settings required to display in pdf format
    eventhough i configured pasta.csg & ixlib.cfg files
    Thanks,
    Alig
    Edited by: user12257829 on Jun 2, 2010 11:41 PM
    Edited by: user12257829 on Jun 2, 2010 11:41 PM

    Hi,
    Helios
    Even i tried both MOS documents u have referenced, as both reports compeleting normally without any error
    one thing i want to know can application use the same pasta.cfg file for pdf and text format
    as i have a single pasta.cfg configured
    Thanks
    Alig
    Edited by: user12257829 on Jun 3, 2010 1:18 AM
    Edited by: user12257829 on Jun 3, 2010 1:18 AM

Maybe you are looking for

  • Adobe Customization Wizard X doesn't set Adobe Reader X to be default when customizing Acrobat X

    I've recently started working with Adobe Customization Wizard X. I've got Adobe Reader X customized and it's already installed all computers. Now, I'm working on customizing Adobe Acrobat X. During the customization, I only have the following 2 optio

  • Something in 10.4.6 doesn't honour DNS case insensitivity

    Something in MacOS 10.4.6 Server doesn't honour DNS case insensitivity, and this is preventing users from logging into MacOS 10 clients of a 10.4.6 server. Is there an update to 10.4.6 to fix this yet? Does Apple plan on releasing a fix? I sure hope

  • HFM Cluster configuration is failing in distributed environment

    Hi Gurus, I am configuring HFM 11.1.2 on windows 2008 server with sql server 2005.This is a distributed installation. Server 1: Financial Management Server Server 2: Financial Management Web Services Web Application Financial Management Web Services

  • Image Processor type Script Request

    I would like to get a jsx that acts much like the image processor, with more options. Here is what i need to be able to do to an individual folder containing 500+ jpgs. I need to: -open the image -resize via pixels w/h -save in a selected folder (new

  • Error: Remove and Check cartridge on right

    I have removed the right cartiridge and check it, but the error message will not go away? I have not tried putting in a differnet cartridge yet. Suggestions???? It is the black and white cartridge. This question was solved. View Solution.