Nested html-tags in JTextPane not possible?

Hi.
Why does JTextPane not support contents like this:
<p align="center">
  <h2>Hello, world!</h2> <!-- nested tag -->
</p>This code is parsed and changed into:
<p align="center">
</p>
<h2>Hello, world!</h2>Is there any possibility to get around this?
Cheers,
kelysar

I do not know about how to treat HTML by JTextPane.
According to http://www.w3.org/TR/html4/sgml/dtd.html,
<!ENTITY % block
"P | %heading; | %list; | %preformatted; | DL | DIV | NOSCRIPT |
BLOCKQUOTE | FORM | HR | TABLE | FIELDSET | ADDRESS">
So you cannot use h2 element in p element.
Regards,

Similar Messages

  • Error in Smartform:  Nested output of tables is not possible....

    Hi ,
      I am getting the below error while executing the smartform.
    Nested output of tables is not possible
    Message ID: SSFCOMPOSER
    Message Numer : 171
    could any one plese help me?
    Thanks & Regards,
    surendra

    Dear
    AS i reply in thread ,
    this error comes  with  some problem in functional Module .
    as we know that two FM use in smartforms -
    SSF_function_mudule
    call   funcion .
    so you check both and  i hope you handle this problem .
    Regards,
    Ravi

  • Extract text file with HTML tags from JTextPane

    hello world
    I have a big problem !
    I am creating an applet with a JTextPane ...
    so I can write text, (bold, italic etc), i can insert images.
    Now i want to create a text file with all the HTML tags
    corresponding to what I wrote in my JTextPane.
    I want to have and save the HTML file corresponding to what i wrote ...
    Is it possible ? Help me please ....
    Jeremie

    writing to a file from an applet is going to take a fair amount of work on your part.
    in order to write to a file from your applet, you have to use servlets or jsp to write to a file on your server. if you wish to write locally, look into signing your applet or policy settings of your browser.
    for writing to a file to the server, i suggest you look into servlets and tomcat to run the servlets.
    i just finished a project that used servlets and they take some time to figure out, but its definitely worth your time.
    here are some websites...
    http://www.j-nine.com/pubs/applet2servlet/Applet2Servlet.html
    http://jakarta.apache.org
    other websites have tutorials that you can look at too
    Andy

  • HTML Tags appear in Notes : how to removing display HTML Correctly.

    Hi the Notes section of HTML CLient for service request, we are seeing HTML Tags appearing in the following format.
    <html><b>Some message/b></html>
    We want to make it appear in HTML format. Not with the HTML Tags. Is there some way to get rid of the HTML Tags ?
    Appreciate you inputs.
    Rgds

    I guess you need to explain your page structure and actions you are doing in a more detailed way. You mentioned a table Jtf_NOTES_B, is it a OAF page or a JSP page ?
    --Shiv                                                                                                                                                                                                                                                                                                                                                               

  • How to insert row in usercreat table(useing HTML tags)in jtextPane

    hi all
    i creat userdefined table in JTextPane like this
    tableBody.toString() -- iam passeing table tags
    htmlKit.insertHTML(htmlDoc, caretPos, tableBody.toString(), 0, 0, HTML.Tag.TABLE);
    i want to insert a row in table.. i did like this
    htmlKit.insertHTML(htmlDoc, caretPos, sRow.toString(), 0, 0, HTML.Tag.TR); it working..
    but it inserting in current location.. i want to insert ending of table...
    pls help me

    Hi,
    Follow the below logic,
    PROCESS BEFORE OUTPUT.
      MODULE STATUS_0001.
      MODULE POPULATE_TABLE_CONTROL. --> Get the data from table store in 
                                                                          ITAB
      LOOP AT GT_CTRL_LP_D516 INTO GS_WA_CTRL_LP_D516
           WITH CONTROL CTRL_LP_D516
           CURSOR CTRL_LP_D516-CURRENT_LINE.
      The following module moves data to control
        MODULE MOVE_TO_CONTROL.--> Move data from ITAB to table control
      ENDLOOP.
    PROCESS AFTER INPUT.
      LOOP AT GT_CTRL_LP_D516.
      ENDLOOP.
      MODULE EXIT AT EXIT-COMMAND.
      MODULE USER_COMMAND_0001.  --> Here you have to take out the values from table control and update database table
    Reward points if helpful.
    Thanks and regards,
    Mallareddy Rayapureddy,
    Munich, Germany.

  • Custom HTML tags in JTextPane

    Hi all,
    I have seen this topic broached before but, in spite of many hours searching, haven't found the answer I'm looking for...
    I jave a JTextPane containing an HTMLDocument and want to render elements within my own custom tag 'Custom' outlined in red.
    I have subclassed HTMLEditorKit as follows:import javax.swing.text.ViewFactory;
    import javax.swing.text.html.HTMLEditorKit;
    public class HTMLEditorKitForCustom extends HTMLEditorKit{
         public ViewFactory getViewFactory(){
              return htmlFactoryForCustom;
        private static final ViewFactory htmlFactoryForCustom = new HTMLFactoryForCustom();
    }I have subclassed HTMLEditorKit.HTMLFactory as follows:import javax.swing.text.View;
    import javax.swing.text.Element;
    import javax.swing.text.html.HTMLEditorKit;
    import javax.swing.text.StyleConstants;
    public class HTMLFactoryForCustom extends HTMLEditorKit.HTMLFactory{
         public View create(Element element){
              Object object = element.getAttributes().getAttribute(StyleConstants.NameAttribute);
              if(CustomView.CUSTOM_KEY_TAG.equals(object)){
                   return new CustomView(element);
              return super.create(element);
    }And, I have subclassed LabelView as follows:public class CustomView extends LabelView{
         public CustomView(Element element){
              super(element);
         public void paint(Graphics g, Shape a){
              super.paint(g, a);
              Rectangle rectangle = a instanceof Rectangle ? (Rectangle)a : a.getBounds();
              Graphics2D g2d = (Graphics2D)g;
              g.setColor(Color.RED);
              g.drawRect(rectangle.x, rectangle.y, rectangle.width, rectangle.height);
         public static final String CUSTOM_KEY_TAG = "Custom";
         public static final String CUSTOM_TYPE_TAG = "ccVarType";
         public static final String CUSTOM_NUMERIC_TYPE_TAG_VALUE = "Numeric";
    }The JTextPane in question has its EditorKit set to my HTMLEditorKitForCustom throughtextPane.setEditorKit(new HTMLEditorKitForCustom();In combination, these classes ensure that when a <Custom>...</Custom> set of tags is encountered, the text between is rendered with a red outline.
    This works fine when the custom tags and text are inserted but, as soon as a change is made that affects the paragraph containing the custom tags (for example, change alignment, font size, etc.), the content disappears. However, the underlying HTML still shows the <Custom> tag, but with no closing tag and without the text the tags once contained.
    E.g. <Custom>Fred</Custom> becomes simply <Custom>.
    Any help in solving this problem will be greatly appreciated!
    Chris.

    Stas, thanks for your response!
    I did try registering the tag, and associating it with a SpecialAction then with a CharacterAction (I want the user to be able to change the font style, etc. of these Custom items).
    I did this by creating HTMLDocumentForCustom (original name, huh!), subclassing HTMLDocument and inner HTMLReaderForCustom:// (Within HTMLDocumentForCustom)
    public class HTMLReaderForCustom extends HTMLReader{
      public HTMLReaderForCustom(int pos){
        super(pos, 0, 0, null);
        registerTag(new HTML.UnknownTag(CustomView.CUSTOM_KEY_TAG), new SpecialAction());
    }Then I created a new HTMLDocumentForCustom and did textPane.setDocument(document). Now, when I inserted the text between Custom tags, I got this exception:javax.swing.text.BadLocationException: Invalid insert;
         at javax.swing.text.GapContent.insertString(GapContent.java:109);
         at javax.swing.text.AbstractDocument.handleInsertString(AbstractDocument.java:722);I was using the following code to insert the text:SimpleAttributeSet attributes = new SimpleAttributeSet();
    attributes.addAttribute(StyleConstants.NameAttribute, CustomView.CUSTOM_KEY_TAG);
    try{
      document.insertString(1, "Custom Here!", attributes);
    catch(BadLocationException ble){
      ble.printStackTrace();
    }Inserting at position 1 was working fine before trying to subclass HTMLDocument and HTMLReader, and there's already text in the document before trying the insert -- in fact it didn't matter what the insert location was set to, the exception kept occurring.
    Can you see anything obvious I've missed or am I barking totally up the wrong tree?
    Chris.

  • Problem with accessing parameter in HTML client, Access is not possible before created.

    I have one Screen in which I set a date.
    I pass the date to another Screen. In this screen I have a tile list showing all the busses and I want to show the current number of orders of the passed date for each bus.
    So I created a custom field in the tile for showing the amount of orders,  and it workes fine for a hardcoded date.
    But I have no access to the passed parameter, because it is to early.
    I get access after Screen.created to the Parameter, but there it is too late, because the list is already created with 0 as order Count.
    myapp.freieBusse.bkz1_render = function (element, contentItem) {
    var querybus = contentItem.value;
    // var querydatum = new Date(); <=== This works fine for today
    var querydatum = screen.queryDatumScreen; <== queryDatumScreen = Null at this Moment.
    myapp.activeDataWorkspace.wksqlData.QueryDispoByDatAndBus(querybus,querydatum).execute().then(function (results) {
    var countDispo = CountDispo(results);
    element.innerHTML = countDispo;
    function CountDispo(disposaetze) {
    var totalDisp = 0;
    var dispos = disposaetze.results;
    dispos.forEach(function (dispo) {
    totalDisp = totalDisp + 1;
    return totalDisp;
    How can I get an eralier Access to the Parameter. Or how can I manipulate the order Count of each row in the created of the Screen?
    Helmut

    The result is as slow that you can count the order with your fingers, but it works.
    If you use a
    WCF RIA Service the result will be fast. The calculations are performed inside SQL server and returned to the LightSwitch client in a single call per page.
    You can also use a Web API call but for a table of data it actually takes a lot of careful JavaScript code and you lose the drag and drop and strong typing in the HTML designer.
    Unleash the Power - Get the LightSwitch 2013 HTML Client / SharePoint 2013 book
    http://LightSwitchHelpWebsite.com

  • URL defined in formula column not converting as proper HTML tags

    We are migrating a report to 10Gr2 (10.1.2.0.2) from reports 9i (9.0.2.03); This report has to route to a different web page. For this we have a formula column with meta tag call to refresh;its Contains HTM property set to Yes. But when run, the view source of HTML shows as if the tag is truncated and put in <tt> tag around it.
    Any help on this is very much appreciated.

    Hi svee,
    Thanks for the reply.
    For an example i tried with the bold option in the edit formula inorder to portray the html tags problem while exporting it to the pdf inspite of using the default bold option within the column properites like u said.
    Suppose if i used html tags like
    <br>, </br>
    in the edit formula section or if i used any other html tags which is not present as a default option in bi like bold. At that time while exporting the report to pdf i can face the issue.
    And also i need ur suggestion regarding with the values disappearing for the numeric column if a tooltip is used in it while exporting it to the pdf.
    Regards,
    Saro

  • HTML tags showing up in the pages also in 2.0?

    Hi,
    After a 5 minutes test of our application after an upgrade to 2.0 I found 3 places where html tags is showing in the bottom of the page. Normally it’s a html tag that is not getting closed. The examples look like this:
    &#60;/
    &#60;INPUT TYPE="hidden" NAME="p_min_row" VALUE
    &#60;script language="JavaScript1.1" type="text/javascript"
    We have been telling the customer that these problems would disappear with the new version, but it have not. I know that we were not the only ones with these problems on 1.6. How are you dealing with this? I can not imagine what our customer is going to say when we tell them that we can’t use htmldb for the project, especially since we were the ones pushing htmldb.
    In release 1.6 the problems were normally only in Internet Explorer and not in Mozilla. I have not been able to check on 2.0, because since the upgrade it is only possible to logon using Internet Explorer. Mozilla gives a script error. :-)

    Hello,
    I have a feeling all your problems are related take a look at this thread. I found it in 10 seconds of searching the forum.
    strange tags
    It's always best to do a quick search first most likely you are not the first person to have this problem.
    Carl

  • Replacing html tags in a htmldocument

    Hi Java Gurus
    I have a htmldocument which has the bacjground set to black and foreground to white.
    When i print the document i see the text in white color ( rather invisible).
    I thought the foreground color of the document needs to be changed.
    How can i do this ?
    Thanks in advance
    Naveen

    rest_in_peace wrote:
    You'll get a faster, more effective response to your questions by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB version and edition
    <li>Web server architecture (EPG, OHS or APEX listener)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s)
    Read the FAQ and forum sticky threads for more information on using the forum effectively.
    With APEX we're fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues.
    I have created a form on a table. Now one of the fields in the form is a display only field and its datatype is varchar2.There are a number of different ways of "creating a form on a table" and of making "display only fields". Describe exactly what you mean using actual APEX terminology of regions, items, and their attributes.
    The data in the database column of the field contains html tags which is getting displayed as it is without being parsed. It is not possible for me to edit the data in the table itself since there are thousands of data. So I need a way to display the data with the html tags parsed and not displayed as it is. Please any help would be grealy appreciated. How this is achieved is version-dependent: provide the full APEX version.

  • Can method declared in JSP have HTML tags?

              Hi all,
              Can a method in JSP page have a HTML tags? (e.g. <td> or <tr>
              etc)?
              Can anybody just give a small example for the same?
              Thanks,
              Amar
              

              Thanks Gary,
              The session bean which is invoked from the JSP page, returns a collection of objects. And each object can have child objects also. In the JSP page i want to iterate through the collection to display the data and that's why the method required is recursive. What would be the better approach for this scenario?
              Regards,
              Amar
              "Gary Keim" <[email protected]> wrote:
              >Yes, that will work fine. However, you might want to strive to reach a
              >place where your JSPs are only "looking" at data held by JavaBeans. That
              >is, if you're going to have your JSP doing ANYTHING other than simply being
              >the face on other data, you might as well make it a plain ol' servlet.
              >
              >A common pattern is to have a master servlet do any logic processing, then
              >it redirects to a JSP for the presentation.
              >
              >-Gary
              >
              >"Amar" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >> Gary Thanks for your reply.
              >>
              >> In the recursive function which i was trying to write, i wanted to display
              >HTML, so that the function is responsible for display of the HTML also (it
              >was not possible to send the HTML back to the calling function and print it
              >in the scriplet, as the function is recursive). But we can use out.print
              >statement in that recursive function by passing the "out" (JSPWriter) object
              >to that function. So instead of putting static text in the function, we can
              >use out.print statements and acheive the same.
              >>
              >> Any suggestion? Any other better way to acheive the same?
              >>
              >> Regards,
              >> Amar
              >>
              >> "Gary Keim" <[email protected]> wrote:
              >> >I responded to Amar privately on this.
              >> >
              >> >-Gary
              >> >
              >> >"Amar" <[email protected]> wrote in message
              >> >news:[email protected]...
              >> >>
              >> >> Hi Gary,
              >> >>
              >> >> Thanks for ur interest. I wanted to write a method (function,
              >procedure)
              >> >in a JSP page, in that i want to write a HTML tags. I tried that but JSP
              >> >compiler throws error for that. Is it that i have to include some other
              >tag?
              >> >Am i missing something.
              >> >>
              >> >> <%!
              >> >> private void displayProxy(ArrayList ObjectsInfo, BaseLW aObj)
              >> >> {
              >> >> ProxyObjectDisplayInfo ObjInfo =
              >> >(ProxyObjectDisplayInfo)ObjectsInfo.get(0);
              >> >> int Cnt = ObjInfo.mColumnNames.size();
              >> >> String Str = new String();
              >> >> for(int j = 0; j < Cnt; j++)
              >> >> {
              >> >> Str = Str + aObj.getColumnValue((String)ObjInfo.mColumnNames.get(j)) +
              >" ,
              >> >";
              >> >> }
              >> >> Str = Str.substring(0, Str.length()-3);
              >> >> String StrHRef = new String();
              >> >> StrHRef = "<a href=\"client?client_id=";
              >> >> StrHRef = StrHRef + aObj.getColumnValue("ClientCode");
              >> >> StrHRef = StrHRef + "\">";
              >> >> try
              >> >> {
              >> >> %>
              >> >> <tr bgcolor=\"#eeebcc\">
              >> >> <td>
              >> >> <%=StrHRef%>
              >> >> <%=Str%>
              >> >> </a>
              >> >> </td>
              >> >> </tr>
              >> >> <%
              >> >> }
              >> >> }
              >> >> %>
              >> >>
              >> >> Regards,
              >> >> Amar
              >> >>
              >> >> Gary Keim <[email protected]> wrote:
              >> >> >Amar,
              >> >> >
              >> >> >I don't think anyone is answering your question because we don't
              >> >> >understand what you are asking. Can you rephrase the question using
              >> >> >standard terminology? For example, what do you mean by "a method in
              >JSP
              >> >> >page?"
              >> >> >
              >> >> >-Gary
              >> >> >
              >> >> >Amar wrote:
              >> >> >
              >> >> >> Hi all,
              >> >> >>
              >> >> >> Can a method in JSP page have a HTML tags? (e.g. <td> or <tr>
              >> >> >> etc)?
              >> >> >>
              >> >> >> Can anybody just give a small example for the same?
              >> >> >>
              >> >> >> Thanks,
              >> >> >> Amar
              >> >> >>
              >> >> >>
              >> >> >
              >> >>
              >> >
              >> >
              >>
              >
              >
              

  • HTML Tags escape while exporting to PDF

    Hi friends,
    I have two columns in my BI report like
    Business Group(BG) and OU
    Since in the BG column under the edit formula i used the html tags to show each and every BG column value in bold like below
    '<b>' || "D1.Company"."Business Group Full Name" || '</b>'
    Now the report is appearing fine in answers and dashboard but when i export the same report to PDF i can see the html tags in each and every name of the BG group.
    Is there anything to be done to escape these html tags in PDF while exporting.
    And also if we give the tooltip for the numeric columns like below under the column properties-->Data format-->Custom like
    [html]<p title=\""Employee Count" \">#
    And after that if i tried to escape the same report with the tooltip on the numeric column to pdf means, the number values are missing for the entire column in the PDF, but this case is not appearing while exporting the report to pdf if i set the tooltip to the text column, as the values is missing only for the tooltip of the numeric column. What could be the fix for this problem.
    Thanks
    Regards,
    Saro

    Hi svee,
    Thanks for the reply.
    For an example i tried with the bold option in the edit formula inorder to portray the html tags problem while exporting it to the pdf inspite of using the default bold option within the column properites like u said.
    Suppose if i used html tags like
    <br>, </br>
    in the edit formula section or if i used any other html tags which is not present as a default option in bi like bold. At that time while exporting the report to pdf i can face the issue.
    And also i need ur suggestion regarding with the values disappearing for the numeric column if a tooltip is used in it while exporting it to the pdf.
    Regards,
    Saro

  • HTML TAGS in messages

    Hi -
    We have requirement where we want to add some HTML Tags i.e. Bold Wording, URL with HREF etc. in Application Message and they should appear as expected on HTML Quoting Messages i.e. Bold Word, URLs etc.
    I am working on HTML Quoting application to have these changes in messages. (Application Developer Resp. Application --> Messages. Application is Oracle Quoting.
    The sample message could be...
    Please note that this action is <b>not allowed</b>.
    In this message not allowed should appear in Bold. As I am referring to the Message for my PageStatus component.
    I tried adding html tags but could not see any effect. I see those tags in the message on the screen. When checked the source of the page I can see that those tags are replaced by &lt and &gt.
    Does anyone know how to achieve this?

    Hi,
    what is the technology you are using?
    Frank

  • HTML Tag Closing

    I have been given the task of updating several web pages (and
    learning Dreamweaver) and have a general question about code
    Some of the pages (created by different people over time)
    will have open and closed HTML tags, such as (not using angle
    brackets brackets here since I don't know if they will show) (li)
    and (/li) in a list, while other pages just have the (li) at the
    beginning of each line
    Plus some pages just have the (p) paragraph marker, other
    have (p) with (/p) at the end of the paragraph
    I don't see any difference on the pages in my web browser, so
    is it really necessary to have these kinds of HTML tags closed?
    Also, DWCS3 has a function to show me unbalanced or unneeded
    code, but it is rather cumbersome to use... does anyone know of a
    utility program to read a file and show me an analysis of the code?
    (I prefer free, since getting the organization to buy anything that
    is not on the vendor list is difficult)
    Thanks, John

    > Some of the pages (created by different people over
    time) will have open
    > and
    > closed HTML tags, such as (not using angle brackets
    brackets here since I
    > don't
    > know if they will show) (li) and (/li) in a list, while
    other pages just
    > have
    > the (li) at the beginning of each line
    Any block tag occuring after <li> will implicitly close
    the <li>, but it's
    invalid markup to omit that closing tag.
    > Plus some pages just have the (p) paragraph marker,
    other have (p) with
    > (/p)
    > at the end of the paragraph
    Ditto.
    > I don't see any difference on the pages in my web
    browser, so is it really
    > necessary to have these kinds of HTML tags closed?
    If you want a) valid code, and b) reliable rendering, yes.
    Try this -
    http://validator.w3.org
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "John T Smith" <[email protected]> wrote in
    message
    news:[email protected]...
    >I have been given the task of updating several web pages
    (and learning
    > Dreamweaver) and have a general question about code
    >
    > Some of the pages (created by different people over
    time) will have open
    > and
    > closed HTML tags, such as (not using angle brackets
    brackets here since I
    > don't
    > know if they will show) (li) and (/li) in a list, while
    other pages just
    > have
    > the (li) at the beginning of each line
    >
    > Plus some pages just have the (p) paragraph marker,
    other have (p) with
    > (/p)
    > at the end of the paragraph
    >
    > I don't see any difference on the pages in my web
    browser, so is it really
    > necessary to have these kinds of HTML tags closed?
    >
    > Also, DWCS3 has a function to show me unbalanced or
    unneeded code, but it
    > is
    > rather cumbersome to use... does anyone know of a
    utility program to read
    > a
    > file and show me an analysis of the code? (I prefer
    free, since getting
    > the
    > organization to buy anything that is not on the vendor
    list is difficult)
    >
    > Thanks, John
    >

  • HTML Tags not moved in PDF

    Hello,
    I would like to print a report as a PDF and use the BI Publisher.
    This functions so far also quite well, only I have the problem
    I pass a HTML formatted text from a field CLob
    and with the PDF output the HTML tags are not moved.
    In the PDF document the HTML tags stands instead of a formatted heading,
    e.g.
    <*h1> This is the heading <*/h1> (without stars)
    What I must set / make with it I also a formatted one
    Heading agrees?
    Somebody an idea?
    Edited by: user10460383 on 14.09.2009 06:16
    Edited by: user10460383 on 14.09.2009 06:17

    True - a PDF isn't going to support HTML encoding. HTML will just be seen as more text, and displayed that way.
    You can strip out HTML tags fairly easily with a regular expression in your query SQL - this simply looks for text between < and > characters, and removes it. That should work for basic HTML formatting tags, but it isn't 100% (it won't handle <script> blocks correctly, for instance).
       select regexp_replace(myHTML, '<[^>]*>', '') as myText
       from myTable... Implementing a method to convert the HTML formatting into RTF formatting is also possible, but not a trivial task - you'd effectively have to replace each HTML tag with an RTF equivalent -- eg, replace <H1> with the RTF code to make a larger font, replace </H1> with RTF code to return the font to normal... etc...

Maybe you are looking for

  • Roads don't appear in maps for Israel

    Hi, I just moved from the US to Israel and I noticed that the street names don't appear on the maps program in my iphone. The streets are perfect on google maps but don't appear on the iphone maps program. I can't use the directions feature. Why?

  • JDeveloper Prerelease 10.1.3 and toplink

    Hello, I know ADF is not supported but could someone tell me please if the new prerelease of JDeveloper supports toplink and if so how well is it supported? I mean by that does it have many quirks because it is a prelease. If anyone out there using i

  • ExportToDisk as PDF scales report

    Hi all. I've developed a little system service using Visual Studio pro 2008 with CR 2008 Basic for VS2k8 that shall export a small list of reports as PDF files at night. When I open the reports in Crytsal Reports 9 the reports are shown correctly, wh

  • Parameterized message in SO Business Rules

    HI We are trying to implement custom rules in sales order form using processing constraint. Rule to implement : When the order quantity for an item is less than the minimum order quantity defined in the price list then it should display an error mess

  • Interfaces to Finanacial systems using OWB 9i

    Hi, We are in the process on designing a datawarehouse. Please let me know if Oracle ware house builder provides interfaces to the follwing financial systems :- 1)Great Plains V6.0 2)Sun 4.2.6 3)Oracle Financials 11.5.8 4)Navision 2.6 5)Sage Line 100