How to put a long HTML body in a blank page?

Hi group,
I have done a home page in Word :), after that, I want to put the HTML header and body code in the blank page (APEX blank page).
HTML header is accepted without any problem, but when I try to paste the "html body" which was created very long APEX is not allowing me.
The next error is displayed:
ORA-20505: Error in DML: p_rowid=89, p_alt_rowid=ID, p_rowid2=116, p_alt_rowid2=FLOW_ID. ORA-01461: can bind a LONG value only for insert into a LONG column
Is there any way to put my code in a blank page inside of APEX, or how can I put it like my home page?
Any advice or help will be really appreciated.
Thanks in advance.
Kind regards,
Francisco

Francisco Martínez Oviedo wrote:
Hi group,
I have done a home page in Word :)That's not :), it's very :(
Word-generated HTML and CSS is non-standard, bloated and incomprehensible.
Learn some basic HTML and CSS so you can author the content properly.
after that, I want to put the HTML header and body code in the blank page (APEX blank page).
HTML header is accepted without any problem, but when I try to paste the "html body" which was created very long APEX is not allowing me.Where are you putting this?
The next error is displayed:
ORA-20505: Error in DML: p_rowid=89, p_alt_rowid=ID, p_rowid2=116, p_alt_rowid2=FLOW_ID. ORA-01461: can bind a LONG value only for insert into a LONG columnThe code is too big for whatever APEX container you are trying to use. Did I say that HTML from Word is bloated junk? This will be 3 times bigger than it needs to be.
Is there any way to put my code in a blank page inside of APEX, or how can I put it like my home page?If you must persist with these crimes against mark-up, split the body code across several HTML regions on the page.

Similar Messages

  • I just downloaded Lion.  Now when I open Safari, it automatically opens to the last page visited.  How do I reset it to open to a blank page as it did previously?

    I just downloaded Lion.  Now when I open Safari, it automatically opens to the last page visited.  How do I reset it to open to a blank page as it did previously?

    Dealing With The Resume Feature of Lion
    Managing Mac OS X Lion's application resume feature.
    If you shutdown your computer you should get a dialog asking if you want applications to resume on the next startup. Simply uncheck the box to prevent that from occurring. Open General preferences and uncheck the option to Restore windows when quitting and re-opening apps. You can also install a third-party utility to control resume features on individual applications: RestoreMeNot or Application State Cleaner.
    It is possible to completely stop the Resume feature although I'm unconvinced that it is that annoying. Nevertheless see the following:
    If you have not yet done so you must first make your /Home/Library/ folder visible. Open the Terminal application in the Utilities folder. At the prompt paste the following command line:
    chflags nohidden ~/Library
    Press RETURN. Quit the Terminal application.
    In the Finder navigate to the /Home/Library/Saved Application State/ folder. Delete the contents of the folder. Back up to the /Home/Library/ folder. Select the Saved Application State folder. Press COMMAND-I to open the Get Info window. In the Sharing and Permissions panel at the bottom click on the lock icon and authenticate. Set each of the listed entries to Read Only. Close the Get Info window.
    Quit all open programs except the Finder (this is very important.) Next, navigate to the /Home/Library/Preferences/ByHost/ folder. Look for a .plist file with "com.apple.loginwindow." in the file name followed by some numbers in hexadecimal. Select the file. Press COMMAND-I to open the Get Info window and in the Sharing and Permissions panel click on the lock icon and authenticate. Set each of the listed entries to Read Only. Close the Get Info window. If you also find a file with the same filename but with a last extension of ".lockfile," then you should delete it.
    The above should eliminate the Resume feature system-wide. Note that any future system updates or upgrades will likely undo these changes. You will then need to repeat this procedure assuming there are no major changes in OS X related to it.

  • How to put a long tab canvas on 2 or more lignes

    I have 15 basic tables ( 2 or 3 fields).
    I would like to manage tese tables from one page.
    When I generated the page I got a long tab canvas that I should scroll at rigth to see the rest of the tabs;
    My question is : can I put these tabs under 2 or more lines
    Thanks in advance

    Monta,
    This is more a UIX question - well, I assume you are using UIX - than a JHeadstart question. It is not something you solve in a pre-generation way.
    The easiest way to address this might be to edit the generated <app>TabBar.uit file. It includes a single tabBar element that stretches along the full length of the page. What you can do is include a second or even more tabBar elements, each having a subset of your tabs. Include the tabBar elements in a flow layout: as long as they fit on the page, they will be displayed a single line, when that does not fit anymore it starts to wrap.
    <flowLayout>
    <contents>
    <tabBar selectedIndex="${uix.rootAttr.selectedIndex}">
    <contents>
    <link text="Departments1" destination="javascript:doNavigate('StartDepartments1.do');"/>
    <link text="Employees1" destination="javascript:doNavigate('StartEmployees1.do');"/>
    </contents>
    <attributeMap>
    <rootAttributeMap/>
    </attributeMap>
    <childMap>
    <rootChildMap/>
    </childMap>
    </tabBar>
    <tabBar selectedIndex="${uix.rootAttr.selectedIndex}">
    <contents>
    <link text="Extra Tab" destination="javascript:doNavigate('StartDepartments1.do');" />
    <link text="Nog een tab" destination="javascript:doNavigate('StartEmployees1.do');"/>
    <link text="Salesteam" destination="javascript:doNavigate('StartSalesteam.do');"/>
    </contents>
    <attributeMap>
    <rootAttributeMap/>
    </attributeMap>
    <childMap>
    <rootChildMap/>
    </childMap>
    </tabBar>
    </contents>
    </flowLayout>
    However, there is an issue with setting the correct selected index on the tabbars. You will probably have to write some JavaScript to get that exactly right; right now, selecting the first tab in any of the tabBar elements will highlight the first tab in all tabbars...
    regards
    Lucas

  • How to put links (name anchors) in a dynamic generated page

    I have a page (results.asp) that gets dynamically generated
    from a db using a DW and MySQL app. The page (a table) looks
    sometihng like this:
    Year Card #
    1951 01
    1951 02
    1951 03
    1952 01
    1952 02
    1953 01
    1953 02
    1953 03
    and so on
    I've made the "Year" column a text link and added a Pop-Up
    Menu behavior so that users could select a year and jump directly
    to a specific section of the page (table). However, I'm not sure
    how to put a <a href> name anchor in for each of the years.
    For instance calling :
    <a name="1951">1951</a>
    from a declaration of:
    <a href="#1951">Go to year 1951</a>
    I would want to call each year (1951, 1952...1973) using name
    anchors. But again, I'm not sure how to put all the named anchors
    in a document that gets dynamically generated. It is a a table that
    gets its data generated via a Repeated Region. Hope this question
    makes sense. Any suggestions/comments appreciated. Thanks.

    If you year card allways follows that format then you could
    use the
    following code on the page.
    Outside of the repeat region have this statement
    <%
    Dim TestYear, CurrentYear, ThisYearCard
    TestYear = "0000"
    %>
    Then in the repeat region where you want the anchor to appear
    use this code
    <%
    ThisYearCard = recordset.fields.item("YearCard").value
    CurrentYear = Left(ThisYearCard, 4)
    If TestYear <> CurrentYear then
    response.write("A name='") & CurrentYear & "'>"
    TestYear = CurrentYear
    End if
    %>
    Where you want the Year card to appear you would then use
    <%=ThisYearCard%>
    rather than the recordset element.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "obcbeatle" <[email protected]> wrote in
    message
    news:e67pg5$rp0$[email protected]..
    >I have a page (results.asp) that gets dynamically
    generated from a db using
    >a
    > DW and MySQL app. The page (a table) looks sometihng
    like this:
    >
    > Year Card #
    > 1951 01
    > 1951 02
    > 1951 03
    > 1952 01
    > 1952 02
    > 1953 01
    > 1953 02
    > 1953 03
    > and so on
    >
    > I've made the "Year" column a text link and added a
    Pop-Up Menu behavior
    > so
    > that users could select a year and jump directly to a
    specific section of
    > the
    > page (table). However, I'm not sure how to put a <a
    href> name anchor in
    > for
    > each of the years. For instance calling :
    >
    > <a name="1951">1951</a>
    >
    > from a declaration of:
    >
    > <a href="#1951">Go to year 1951</a>
    >
    > I would want to call each year (1951, 1952...1973) using
    name anchors.
    > But
    > again, I'm not sure how to put all the named anchors in
    a document that
    > gets
    > dynamically generated. It is a a table that gets its
    data generated via a
    > Repeated Region. Hope this question makes sense. Any
    > suggestions/comments
    > appreciated. Thanks.
    >

  • How to put smartform in mail body

    Hi colleagues,
    I would like to send a mail with content build from a SMARTFORM.  I call the smartform function module and get the corresponding OTF file,  but I did not succeed to put it in a readable way in the mail body.
    How ot get the smartform as mail body?
    My body contains this kind of data, if I do the conversion to PDF:
    ═䑆ⴱ⸳ഊ◢팍ਲu2030扪ഊ⽗楮䅮獩䕮捯摩湧ഊ敮摯扪ഊ㌠〠潢樍਼㰍ਥ䑥癴祰攠南䥎u2020u2020⁆潮琠䍏啒䥅删潲浡氠䱡湧⁅不ਯ呹灥 䙯湴ഊ⽓畢瑹灥 呹灥ㄍਯ䉡獥䙯湴 䍯畲楥爍ਯ乡浥 䘰〱ഊ⽅湣潤楮朠㈠〠刍ਾ㸍੥湤潢樍਴u2030扪ഊ㰼ഊ⽌敮杴栠㔠〠刍ਾ㸍ੳ瑲敡洍ਠ⽆〰ㄠㄲ⸰〠呦u2030⁧⁂吠
    㜰⸸㔠㜵㤮
    and the pdf itself (I also try to attached it to the mail for test) cannot be open.
    I already check a lot of thread, but cannot find any to solve this issue.
    Thanks for your help.
    Barbara

    Hi,
    Refer to this link..Send an smartform as body of a mail

  • How can I get the html BODY marginwidth/leftmargin-rightmargin to work?

    I am developing some web pages where I want both a left and a right margin. I DO NOT want to play with CSS. There are html attributes MARGINWIDTH, LEFTMARGIN, and RIGHTMARGIN for the BODY element. The first works with IE, while the last two work with NS. I have all three set for Firefox and see no visual margin in the browser. A little help on this would be great

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Try this First... You will Not Lose Any Data...
    Turn the Phone Off... ( if it isn’t already )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear and then Disappear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    Turn the Phone On...
    If that does not help... See Here:
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

  • How to put namespace into soapenv:Body with UTL_DBWS?

    We are trying to make the following SOAP call from Oracle.
    Outside Oracle (SoapUI v 3.6.1), the following call, generated by the tool, works:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ebp="http://www.sap.com/EBPPBillDelivery" xmlns:ebp1="http://www.sap.com/EBPPTypes">
    <soapenv:Header/>
    <soapenv:Body>
    <ebp:BillerDataMsg>
    <!--Optional:-->
    <ebp1:Authorization>
    <ebp1:UserName>uid</ebp1:UserName>
    <ebp1:Password>pwd</ebp1:Password>
    </ebp1:Authorization>
    </ebp:BillerDataMsg>
    </soapenv:Body>
    </soapenv:Envelope>
    With UTL_DBWS, I have
    l_service UTL_DBWS.service;
    l_call UTL_DBWS.CALL;
    l_service := UTL_DBWS.create_service (
    wsdl_document_location => URIFACTORY.getURI('file://appl/pc_files/spool/Wsdl/EBPPBSPServices.wsdl')
    ,service_name => UTL_DBWS.to_qname('http://www.sap.com/EBPPBSPServices','EBPPBSPServices')
    l_call := UTL_DBWS.create_call (
    service_handle => l_service
    ,port_name => UTL_DBWS.to_qname('http://www.sap.com/EBPPBSPServices', 'EBPPBSPServicesPort')
    ,operation_name => UTL_DBWS.to_qname('http://www.sap.com/EBPPBSPServices', 'getBillerData')
    utl_dbws.set_property(l_call, 'OPERATION_STYLE', 'document');
    utl_dbws.set_property(l_call, 'SOAPACTION_USE' , 'TRUE');
    utl_dbws.set_property(l_call, 'SOAPACTION_URI', 'http://www.sap.com/EBPPBSPServices/getBillerData');
    vx_xml_out := UTL_DBWS.invoke(
    call_Handle => l_call
    ,request => XMLType('<?xml version="1.0" encoding="utf-8"?><ebp:BillerDataMsg xmlns:ebp="http://www.sap.com/EBPPBillDelivery" xmlns:ebp1="http://www.sap.com/EBPPTypes"><Authorization><UserName>uid</UserName><Password>pwd</Password></Authorization></ebp:BillerDataMsg>'));
    *ORA-29532: Java call terminated by uncaught Java exception: port: {http://www.sap.com/EBPPBSPServices}EBPPBSPServicesPort does not contain operation: BillerDataMsg*
    If I could manage to put namespaces xmlns:ebp="http://www.sap.com/EBPPBillDelivery" and xmlns:ebp1="http://www.sap.com/EBPPTypes" into soapenv:Envelope or soapenv:Body attributes, as I do in soapUI, it would work.
    But I have found no fuhction with such functionality in UTL_DBWS.
    Is using UTL_HTTP and making SOAP message manually the only way to call SAP web services? Normally, Oracle people advices to use UTI_DBWS over UTL_HTTP, but in this case it does not work.
    Igor

    I prefer using UTL_HTTP directly for SOAP calls - and not UTL_DBWS that IMO has a very clunky interface. SOAP is simply a XML payload over HTTP. Not that complex to do natively using UTL_HTTP.

  • How to put String with html tags as it is into xml

    I am using apache dom API to create xml from java.
    I have a string with html tags in it .when I add the string to xml, its replacing all the "<"; with &lt and ">" with > I would like the html tags to look as it is instead of the > and & lt;. How can I acheive that
    this is the code snippet of what I am doing
    In java class
    String titleString = "<font color=red>This Is an Example of a Red Subject</font>"
    Document doc = new DocumentImpl();
    Element root = doc.createElement("bulletin");
    Element item = doc.createElement("title");
    item.appendChild(doc.createTextNode(titleString));
    In Xml it looks like below
    <title><font color=red>This Is an Example of a Red Subject</font></title>
    but I would like to have the xml like below
    <title><font color="red">This Is an Example of a Red Subject</font></title>
    Can you please suggest me whats the best way to acheive this.
    I appreciate all your help
    Thank you
    Suma

    One problem is that you don't understand escaping. If you re-read what you posted you'll see that what you say you get, and what you say you want, are identical. That's because you didn't escape one of the two properly. So your first step should be to find the section about escaping in Chapter 1 of your XML book and read it carefully. Figure out what you should have done here (yes, the same rules apply).
    However, to attempt to answer what I think your question is: if you have a String which contains markup, and you want to convert that String to XML elements, then you have to feed the String into an XML parser.

  • How do I get LONG RAW from Oracle with ASP page designed in Dreamweaver

    Hello,
    I have a single entry field the user enters a SSN to search a database, the query searches one table which returns the data.
    Unfortunately one of the fields in the table is a LONG RAW field.
    How do I create the ASP page to display the LONG RAW data correctly?
    Thanks,
    Adam

    You can use XSU with Oracle 8.1.6:
    xsu12_816.jar: for Java 1.2
    xsu111_816.jar: for Java 1.1
    Please refer to the following link to download the XDK for Java:
    http://otn.oracle.com/software/tech/xml/xdk_java/content.html
    For XSU document:
    http://otn.oracle.com/docs/tech/xml/xdk_java/doc_library/Producti
    on9i/java/xsu/readme.html
    XSU provide both JAVA and PL/SQL APIs.

  • How do I add an html link/banner to a page in my flash website?

    I purchased a flash website template and am in the process of editing my main.fla file.  In order to get listed on an advertising website with a higher rating, I have to place a reciprocal link to them on my site.  However, I cannot figure out how to place an html link/banner on my site for other businesses.  If I paste the html code in a text box, all that shows up is the html code rather than the image and link it is meant to generate.  Please help!

    Flash only supports a small amount of html in text areas.  If what you re trying to include is within what it supports, then you assign the text to the textfield using the htmlText property of the TextField...
    tfield.htmlText = "<a href="...">link</a>"; // will display "link" as a link

  • How do I see the HTML code of my web page?

    How do I see my web page's HTML code? I want to install Google Analytics and I have to insert the tracking code into a certain part of the web page's HTML code, but iWeb doesn't show me the code to manually manipulate it.
    Is this even possible? I am looking for a view that shows me all the code and can't find it.

    You'll see the HTML after publishing the pages.
    Here's a way to add Google Analytics :
    [Adding Google Analytics without editing the webpage|http://www.wyodor.net/blog/archives/2010/05/entry_316.html]
    And if you search this forum you'll also find answers : [google analytics|http://discussions.apple.com/search.jspa?objID=c188&search=Go&q=googl e+analytics]

  • How to put Total Amount only on the section last page?

    I have been working on oracle purchasing report. I have used <?for-each@section:G_HEADERS?>. So report is paged based on new PO number. However, I have put a total amount on footer section. If the report with one specific PO number haas more than one page, for example, total page as 3, I'd like total field shows "Continued" on page 1 and 2, only list the total number on page 3. Does anyone know how to do that? The logic will be something like:
    if (currentPageNum < sectionTotalPage), then 'Continued', else <?TOTALAMT?>. However, I don't know how I can get currentPageNum and how to get sectionTotalPage.
    Edited by: user638845 on Apr 20, 2010 12:38 PM
    Edited by: user638845 on Apr 20, 2010 12:47 PM

    Hello,
    thank you for your reply, but the situatiation is the following:
    I have a dynamic form with two tabels, both of them are included into two separated subforms. And because I do not know how many lines will have each of them I have no clue how to force Designer to display the footer (or any object) at the very buttom on the last page only. I already included the footer into separated subform before I asked the question, but the problem is, that the footer is not displayed at the very buttom of the page, but directly behind the second tabel (subform). So it can happen that the second tabel will end at the top of the last page, it can have only 5 lines on the last page and in this case the footer will be displayed at the top or in the middle of the last page, not at the very buttom. This is my problem.
    Thank you once again for any suggestions.
    Best regards,
    Jan Zahradnicek

  • How to put a solid bottom border for table at page break - XML Publisher

    Hi There,
    In XML Publisher Invoice report template, I have table with hidden lines. It repeat for each invoice item.
    However I need to close the table with a solid line at the page break, when the table is extended to multiple pages.
    How can we know if its a page break. I think we can use an if condition if we know the tag for page break( for example like this <?if:@page-break="true"?> ).
    Thanks in Advance.
    Vishnu.

    You can declare two variables, to hold the previous and current LOCATION values and break the page when it differs.
    Or just before your end-for-each, have this code.
    <?if:position()!=1 and position()!=last() and LOCATION!=following::LOCATION[1]?><xsl:attribute name="break-before">page</xsl:attribute><?end if?>
    Ensure that its placed in a form field.
    This will have a page break when LOCATION changes.

  • How to put a push button in the top of page of ALV

    Hi at all,
    I need to put a push button in TOP OF PAGE .
    My code is below and i'd like to put a push button to do something.
    FORM top_of_page USING r_ddoc TYPE REF TO cl_dd_document.
      DATA: text TYPE sdydo_text_element.
      DATA: text_table TYPE sdydo_text_table.
      CALL METHOD r_ddoc->initialize_document.
    Title
      text = text-301.
      CALL METHOD r_ddoc->add_text
        EXPORTING
          text          = text
          sap_style     = 'HEADING'.
      CLEAR text.
    endform.
    Thanks at all.
    ENDFORM.

    Hi Domenico,
    For pushbuttons on Dynamic Documents please refer to this link:
    http://help.sap.com/saphelp_nw70/helpdata/EN/b6/ab3a7503ac11d4a73f0000e83dd863/frameset.htm
    Regards
    Marcin

  • "pdf's" no longer appear; I get a blank page!

    Web site that provide a menu item that results in sending a "pdf" file simply shows a white page instead of the requested item. In a few instances, if I minimize the screen the pdf file will appear. I can then go to full screen and the page displays as it's supposed to. In some instances, however this doesn't work either.

    Hi....
    Quit Safari.
    Go  to /Library/Internet Plug-Ins
    Move the Adobe PDF Browser plugin to the Trash.
    Relaunch Safari.
    See if that helped...

Maybe you are looking for

  • How can I create a array with all files from a directory

    How can I create a array of files or varchar with all files from a directory?

  • Problem with Photoshop tutorial

    I'm trying to follow this tutorial here, http://www.layersmagazine.com/photoshop-cs4-a-picture-worth-a-thousand-words.html Which is turning a portrait into a portrait of words, and i'm having a problem with step 9. "9 PASTE INTO A LAYER MASK Show all

  • Page-based localization currency not working in crystal report.

    Hi, I was trying to test out the page-based localization. [https://boc.sdn.sap.com/node/8501|https://boc.sdn.sap.com/node/8501]. All is well datetime, numeric formatting but the currency symbol is not changing. It always get the symbol in the regiona

  • KE30 - UOM Value Field required

    Hi, We have some FG Materials which are sold in PAC and EA. and PAC is Base Unit of Measure while EA is Alternative Unit of Measure. In PA Report - KE30, system is accurately showing Sales Quantity but business wants to see UOM of Sales Quantity as w

  • Problems with Fullscreen viewing

    I was viewing a trailer for a movie and at first I watched it at the size it opened as. I thought the trailer was good so I wanted fullscreen of it. So I click View>FullScreen. It opens up with the Green "This preview has been approved for all audien