XML is not generated.

Below is the code I've written to generate XML and map it to the RTF. When I map it RTF, data are not displayed. To see what XML is generated that I wrote the lower class and I'm not able to see all of the XML data.

Please correct me where I am missing

public class xxMain31 extends MainCO {}
public xxMain31() {}
}

private static final int DEPTH = 4;
private static final int APP_ID = 300;
private static final String APP_NAME = "ASO."
private static final String TEMPLATE_CODE = "TestXX";
private static final int BUFFER_SIZE = 32000;

' public void processRequest (OAPageContext oapagecontext, OAWebBean oawebbean)
{
Am = (OAApplicationModuleImpl) oapagecontext.getApplicationModule (oawebbean) OAApplicationModuleImpl;
PromptVOImpl PromptVOImpl = (PromptVOImpl) am.findViewObject ("PromptVO");
localHeaderVOImpl.setWhereClauseParam (0, "1466");
localHeaderVOImpl.setWhereClauseParam (1, "1466");
localHeaderVOImpl.executeQuery ();


DataObject sessionDictionary (DataObject) = oapagecontext.getNamedDataObject ("_SessionParameters");
HttpServletResponse response = (HttpServletResponse) sessionDictionary.selectValue (null, "HttpServletResponse");

ServletOutputStream os;
String s4 = oapagecontext.getParameter ("QotPrnTmplId");
If (s4.equalsIgnoreCase ("Test ASOPRTRTF")) {}
try {}
OS = response.getOutputStream ();

Set the output report file name and Content Type
ContentDisposition string = "attachment; filename is PrintQuoteReport.pdf ';.
ContentDisposition string = "attachment; filename is PrintPage.html ';.
response.setHeader("Content-Disposition",contentDisposition);
response.setContentType("application/pdf");
response.setContentType("application/HTML");

XMLNode xmlNode = PromptVOImpl.writeXML (XMLNode) (4, XMLInterface.XML_OPT_ALL_ROWS);
ByteArrayOutputStream OutputStream = new ByteArrayOutputStream();
xmlNode.print (outputStream);
System.out.println (OutputStream.ToString ());
ByteArrayInputStream InputStream = new ByteArrayInputStream (outputStream.toByteArray ());
ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();

System.out.println ("data have been written Trying to load the model");

String xmlnode1 = xmlNode.toString ();


fileDownload1 (oapagecontext, "XMLQuote.xml", xmlnode1);
Generate the report PDF
/ * TemplateHelper.processTemplate)
((OADBTransactionImpl) oapagecontext.getApplicationModule (oawebbean) .getOADBTransaction ()) .getAppsContext ();
APP_NAME,
TEMPLATE_CODE,
((OADBTransactionImpl) oapagecontext.getApplicationModule (oawebbean) .getOADBTransaction ()) .getUserLocale () .getLanguage ();
((OADBTransactionImpl) oapagecontext.getApplicationModule (oawebbean) .getOADBTransaction ()) .getUserLocale () .getCountry ();
inputStream,
TemplateHelper.OUTPUT_TYPE_HTML,
TemplateHelper.OUTPUT_TYPE_PDF,
NULL,
pdfFile) ;*/
Test ASOPRTRTF

Write the PDF report to the HttpServletResponse object and rinse.
/ * byte [] b = pdfFile.toByteArray ();
response.setContentLength (b.length);
OS. Write (b, 0, b.length);
OS. Flush();
OS. Close(); */

} catch (IOException e) {}
insertIntoTable (oapagecontext, e.getMessage () + "ERROR");
TODO
}
/ * catch (SQLException e) {}
insertIntoTable (oapagecontext, e.getMessage () + "ERROR");
TODO
}*/
/ * catch (XDOException e) {}
insertIntoTable (oapagecontext, e.getMessage () + "ERROR");
TODO
}*/
}

}


Private Sub fileDownload1 (OAPageContext oapagecontext, String, string, String xmlnode1) {}

Try
{
DataObject dataobject = oapagecontext.getNamedDataObject("_SessionParameters");

HttpServletResponse httpservletresponse = (HttpServletResponse) dataobject.selectValue (null, "HttpServletResponse");

ServletOutputStream servletoutputstream = httpservletresponse.getOutputStream ();

httpservletresponse.setContentType("text/html");
fileLength int = xmlnode1.length ();
httpservletresponse.setContentLength (fileLength);
httpservletresponse.setHeader ("Content-Disposition", "attachment; (Filename ="+ new StringBuilder () .append (xmlnode1).append(".txt").toString ());

servletoutputstream. Print (xMLNode1);
servletoutputstream. Flush();
servletoutputstream. Close();
} catch (Exception XM) {}
System.out.println (XM.getMessage ());
}
}
}

See link below (I myself remember that I already shared this link with you):

http://apps2fusion.com/at/51-PS/260-integrating-XML-Publisher-and-OA-framework

As per step 3 mentioned in the link: generate XML data in the JDeveloper local system log window.

RTF to create file based on XML data. Register with responsibility of XML editor.

Now depending on the code that is mentioned in step 7, in the extended controller you can generate report.

Example of code I used in one of my requirements:

package abs.oracle.apps.per.selfservice.appraisals.webui;
import oracle.apps.per.selfservice.hierarchy.webui.HierarchyCO;

import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
import oracle.apps.fnd.framework.OAException;
import oracle.apps.fnd.framework.server.OADBTransactionImpl;
import oracle.apps.fnd.framework.webui.beans.nav.OAButtonBean;
//import oracle.apps.fnd.framework.webui.beans.OAImageBean;
//import oracle.apps.fnd.framework.webui.beans.table.OAHGridBean;
//import oracle.apps.fnd.framework.webui.beans.message.OAMessageCheckBoxBean;
//import oracle.apps.fnd.framework.webui.OAHGridQueriedRowEnumerator;
import oracle.apps.fnd.framework.webui.beans.message.OAMessageChoiceBean;
//import oracle.jbo.Row;

import oracle.apps.per.selfservice.hierarchy.server.HierarchyAMImpl;
import abs.oracle.apps.per.selfservice.appraisals.server.xxEmpInfoVORowImpl;

import oracle.xml.parser.v2.XMLNode;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
//import oracle.apps.xdo.XDOException;
import oracle.apps.xdo.oa.schema.server.TemplateHelper;
import oracle.cabo.ui.data.DataObject;
import oracle.jbo.XMLInterface;
import oracle.jbo.ViewObject;

public class xxHierarchyCO extends HierarchyCO
{

private static final int DEPTH = 4;
private static final int APP_ID = 20035;
private static final String APP_NAME = "PER"; // application short name
private static final String TEMPLATE_CODE = "GCDPGroupReport"; // this is the code of the template
private static final int BUFFER_SIZE = 32000;

public void processRequest(OAPageContext pageContext, OAWebBean webBean)
  {

  super.processRequest(pageContext, webBean);

  HierarchyAMImpl am = (HierarchyAMImpl) pageContext.getRootApplicationModule();

      int empId = 0;
      empId = pageContext.getEmployeeId();
      String empNo = "" ;

      try
      {
      ViewObject empvo =am.findViewObject("xxEmpInfoVO");
      if(empvo==null)
      empvo=am.createViewObject("xxEmpInfoVO", "abs.oracle.apps.per.selfservice.appraisals.server.xxEmpInfoVO");
      if(empvo != null)
      {
      empvo.setWhereClause(null);
      empvo.setWhereClauseParams(null);
      empvo.setWhereClauseParam(0,Integer.toString(empId));
      empvo.executeQuery();

      xxEmpInfoVORowImpl emprow = (xxEmpInfoVORowImpl) empvo.first();
      if(emprow != null && emprow.getOracleEmpNumber() != null)
      empNo = emprow.getOracleEmpNumber() ;
      pageContext.putTransactionValue("EmployeeNum",empNo);
      }

      ViewObject vo =am.findViewObject("xxGCDPGrpVO");
      if(vo==null)
      vo=am.createViewObject("xxGCDPGrpVO", "abs.oracle.apps.per.selfservice.appraisals.server.xxGCDPGrpVO");
      if(vo!=null)
      {
      vo.setWhereClause(null);
      vo.setWhereClauseParams(null);
      vo.setWhereClauseParam(0,empNo);
      vo.executeQuery();
      }

      }
      catch(Exception e)
      {
      throw new OAException("System encountered some error while fetching Hierarchy data for Generating Group Report. Please contact System Administrator.", OAException.ERROR);
      }

      OAButtonBean buttonbean = (OAButtonBean)webBean.findChildRecursive("RunReports");
      if(buttonbean != null)
      buttonbean.setFireActionForSubmit("GenerateReport",null, null,false, false);

  }

  public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
  {
//  pageContext.writeDiagnostics(this, "Before processFormRequest", 1);
  super.processFormRequest(pageContext, webBean);
//  pageContext.writeDiagnostics(this, "After processFormRequest", 1);
  HierarchyAMImpl am = (HierarchyAMImpl) pageContext.getRootApplicationModule();

      XMLNode xmlNode = null ;
      String event = pageContext.getParameter("event");

      String choiceValue = "" ;
      String EmployeeNum = "";

     if("GenerateReport".equals(event))
      {

      // Get the HttpServletResponse object from the PageContext. The report output is written to HttpServletResponse.
      DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
      HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
      try {
      ServletOutputStream os = response.getOutputStream();

      // Set the Output Report File Name and Content Type
      String contentDisposition = "attachment;filename=GCDP_Group_Report.xls";
      response.setHeader("Content-Disposition",contentDisposition);
      response.setContentType("application/vnd.ms-excel"); 

      // get emplyee number
      if(pageContext.getTransactionValue("EmployeeNum") != null)
      EmployeeNum = pageContext.getTransactionValue("EmployeeNum").toString();

      // Get the Data XML File as the XMLNode
      ViewObject vo =am.findViewObject("xxGCDPGrpVO");
      if(vo==null)
      vo=am.createViewObject("xxGCDPGrpVO", "abs.oracle.apps.per.selfservice.appraisals.server.xxGCDPGrpVO");
      if(vo != null)
      {
      xmlNode = (XMLNode) vo.writeXML(4, XMLInterface.XML_OPT_ALL_ROWS);
      }

      ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
      xmlNode.print(outputStream);
      ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
      ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();

      //Generate the PDF Report.
      TemplateHelper.processTemplate(
      ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
      APP_NAME,
      TEMPLATE_CODE,
      ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
      ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
      inputStream,
      TemplateHelper.OUTPUT_TYPE_EXCEL,
      null,
      pdfFile);

      // Write the PDF Report to the HttpServletResponse object and flush.
      byte[] b = pdfFile.toByteArray();
      response.setContentLength(b.length);
      os.write(b, 0, b.length);
      os.flush();
      os.close();
      }
      catch(Exception e)
      {
      response.setContentType("text/html");
      throw new OAException(e.getMessage(), OAException.ERROR);
      }
      pageContext.setDocumentRendered(false);

    }

  }

  public xxHierarchyCO()
  {
  }
}

-Anand

Tags: Oracle Applications

Similar Questions

  • Air SDK 22 - windows ADT could not generate timestamp

    I'm not entirely sure that this is related to the 22 sdk, but after I updated and used my adt on windows script to generate a windows application, I got the following error message:

    Could not generate timestamp: java.lang.RuntimeException: could not generate keypairs DH

    Note that when I use adt on the same windows machine to generate apk or ipa, it works very well. When I use adt on mac to generate mac app, it works very well. It's just at the point where I use adt on windows to generate a windows application. The computer is connected to the internet.

    ADT.bat - package - stores pkcs12 - keystore cert.p12 - target bundle AppName AppName - app.xml AppName.swf icons

    I could solve this problem by updating to the latest version of java on windows.

  • JHS 10.1.3.1.26 not generate beans folder Page

    I generate all checkboxes except tab checked 2 level for all pages in the application, but JAG does not generate the page <>- beans.xml file controller for some groups; renamed copies of groups that do not generate bean file that sometimes generate bean file (the first time they are generated after copying it seems).

    Idea: The application has more than 100 pages and I notice a single line entry in common beans file that contains the name of each of them. This line for us is 12 000 characters. Is there maybe a limit on the length of the line for the ADF Scanner?

    Any other ideas?

    Thank you
    Peter

    Peter,

    I can't reproduce this behavior. Are you sure that you are not looking bean xml files that no longer have a corresponding group of JHeadstart?

    For the long line, I assume you mean the javax.faces.CONFIG_FILES - param in web.xml context?

    This is a standard feature of JSF and unrelated to the generation of JHeadstart. If this line is too long, it would mean that you get errors when running because some beans is not found.

    Steven Davelaar,
    JHeadstart team.

  • When deploying Shared Library, my Trinity - config.xml is not included

    Hello

    I've implemented my own Skinning in a little project I will deploy as a shared library.

    I defined my xml/css files
    custom.css
    trinidad-config.xml
    trinidad-skins.xml
    I created my deployment profile and set it as the library of the ADF.

    My only problem when I look at the generated jar, my Trinity - config.xml was not included?

    Any reason?

    Context passing:
    I intend to deploy it as a shared library in WLS so that I could drop it in my Webcenter portal.
    I posted the question to the JDeveloper forum because I thought it's more Jdev problem and not that of the webcenter.

    Any thoughts?

    Thank you

    Neliel,

    According to the literature [url http://docs.oracle.com/cd/E16162_01/user.1112/e17456/adfsg_apply.htm#BGBCDGGA], trinidad - config.xml doesn't get packed in a JAR library for skin.

    John

  • Reconstruction of .xml - do not keep my tags

    I love to sort the albums in my library by artist, and then the date, and to display this way on my iPod.  To do this, I wrote a Python script that is supposed to add tags "make Album" in the file of exported xml iTunes Library, with the format "artist-Album of the YEAR.

    It's a primitive script, but I can tell this should work at least.  But when I rebuild my iTunes library since the updated xml file, it rebuilt just as it was before, without my Album out new tags.

    Here is an example of the updated xml file the:

    < key > 1645 < / key >
    < dict >
    Track ID < key > < / key > < integer > 1645 < / integer >
    < key > name < / key > < String > Tombstone Shadow < / string >
    < key > artist < / key > < String > Creedence Clearwater Revival < / string >
    < key > Album artist < / key > < String > Creedence Clearwater Revival < / string >
    < key > composer < / key > < String > John Fogerty < / string >
    < key > Album < / key > < String > Green River < / string >
    < key > type < / key > < String > Rock < / string >
    < key > type < / key > < channel audio file > MPEG < / string >
    < key > size < / key > < integer > 7129216 < / integer >
    < key > total duration < / key > < integer > 218644 < / integer >
    < key > disc number < / key > < integer > 1 < / integer >
    < key > disk count < / key > < integer > 1 < / integer >
    < key > track number < / key > < integer > 3 < / integer >
    < key > track count < / key > < integer > 14 < / integer >
    < key > year < / key > < integer > 1969 < / integer >
    < key > update < / key > < date > 2014-03-05T 02: 43:58Z < / date >
    < key > Date added < / key > < date > 2016-06-11T 15: 35:16Z < / date >
    < key > bitrate < / key > < integer > 256 < / integer >
    < key > sampling rate < / key > < integer > 44100 < / integer >
    < key > standards < / key > < integer > 5690 < / integer >
    < key > County work < / key > < integer > 1 < / integer >
    < key > Album sort < / key > < String > Green River Creedence Clearwater Revival 1969 < / string > < key > Persistent ID < / key > < String > 3962D1A1CF08D178 < / string >
    < key > track Type < / key > < String > file < / string >
    < key > location < / key > < channel er%20Revival/Green%20River/03%20Tombstone%20Shadow.mp3 > file://localhost/E:/Music/iTunes/Creedence%20Clearwat < / string >
    < key > statement of case file < / key > < integer > 4 < / integer >
    < key > folder County Library < / key > < integer > 1 < / integer >
    < / dict >

    As you can see, the Album and Persistent ID sort keys share a line.  I don't know if this is important; I think I could solve this problem if that's the problem.  However, I tried manually add a line break after the tag Album fate and then rebuild the library again, and he didn't keep the custom tags.  Indeed, when I check "XML part" in preferences, it exports the xml without any of the tags New Album out (which makes sense, since they do not appear on the securities themselves).

    Can someone tell me what I am doing wrong?  I have found surprisingly little documentation in-depth on exactly how the iTunes library xml is parsed, so I really don't know how picky, it's command, line breaks, etc.

    Reconstruction from the XML does not update the tags in the songs. As soon as iTunes reads the tag of the file in question any external change you make is rejected. A better approach would be a modified version of my script KeywordsToAlbum wrote in SortAlbum instead, which interprets < SortAlbum > to mean the current value of the Album of the sort. The following input string would be set the values you want:

    -< SortAlbum > < artist > < year > < Album >

    You can fix it yourself if you want. I'm just on my way, but I'll post a new script later in the day.

    TT2

  • Flatten XML does not record the names of the ListBox element to the XML file.

    On my front, I have a ListBox indicator that has strings that the user can select. Also, the user can edit items in the drop-down list to add new items. After that the user selects one and pushes my "Save" button, I use the flatten XML function to save the selection in an XML file. But Flatten XML saves only the value (the index of the selected items to the XML file and not the names of items in ListBox.) This is enough information to reconstruct from the string of data that the user has selected.

    A ListBox where a user is to select from a list of strings, flatten function XML should not also store the strings that have been selected?


  • value of property not generating a signal event node

    I have a sample program that uses a property node > Value (Signaling) to generate an event.  The property looks like this:

    When I create a VI to do the same thing, the property node looks like this:

    I click with the right button on the Boolean control, create, node, value property (Signaling) to create the node.

    My VI does not generate an event when a value of TRUE is passed to the property node.  Is it possible to change the Boolean Data Type?  What is the problem?

    shall12 wrote:

    My VI does not generate an event when a value of TRUE is passed to the property node.  Is it possible to change the Boolean Data Type?  What is the problem?

    If the data type of the property value node does not resemble boolean (i.e. purple instead of green), you must change the mechanical action of the Boolean because it is currently latch action. Change the mechanical action to switch the action and you should be OK.

    Also note that a value property (sgnl) fires the event to change value unconditionally, even if a new value of the former are the same.

    (If you want to be able to raise Boolean lock action events as you describe here, consider a vote for this idea. )

  • When I insert a compatible game must be installed and the alert arrives to allow another comes in and says "the file 'Localization.xml' could not be loaded."

    When I insert a compatible game must be installed and the alert arrives to allow another comes in and says "the file 'Localization.xml' could not be loaded."

    Hi Scarface0721,

    Welcome to Microsoft Answers Forums.

    We would like to get a better understanding of this issue, so we can better help not only you but other users with similar problems.

    (a) game in which you try to read?

    (b) have you been able to install and play the game before?

    (c) you are trying to install the game to your computer from the disk or directly trying to play from the disc?

    Method 1:
    Try to install and play the game in a different computer.

    Method 2:
    Try another disc and verify if you are able to install the game.

    Method 3:
    You can also post your request in the following forums site.

    http://forums.gamesforwindows.com/

    Thanks and regards.

    Thahaseena M
    Microsoft Answers Support Engineer.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Try to activate Windows XP, but it does not generate an installation ID to activate it?

    Hello
    I'm trying to legitimately re - install XP pro on a build machine that is free because of various programs such as IE and AVG works don't not after a period not being don't not under tension.
    I deleted the partition via the disc to install and re-installed, but then the activation it would not go online so I'll have to do the option "Activate Windows by phone".
    Unfortunately, it does not generate an installation ID and so I can't enter a confirmation ID.
    Of course the help line have been extremely useful and intuitive, and so I wore the recommended feeding cycle, but nothing helped.
    I also tried to change the product key but it's the same. Just a space where the installation ID should be.
    Any ideas would be most appreciated.
    Thank you
    John

    original title: no installation id

    Here are the appropriate measures on how to solve this problem:

    (1) download windows xp service pack 3 from a work computer and save it on a USB flash drive

    http://www.Microsoft.com/download/en/details.aspx?displaylang=en&ID=24

    (2) start the computer xp in "SafeMode only.

    (3) install the SP3 that you saved on the usb to the computer flash drive

    (4) restart the computer in "normal mode" and now you have an installation ID

  • Vista is not generate video thumbnails

    Vista is not generate thumbnails for one of my new video files.  The oldest are very good, but something new (mpeg, flv, avi, no matter) just takes the form of icon.

    Hi omegaangel,.

    Thanks for posting on the Forum of answers.

    As a general rule, Windows Media Player should be able to play the format and the correct codec to form the tile.

    You can check that you have the right codecs for movies in Media Player.
    Here's a thread that processes the download of codecs:

    http://social.answers.Microsoft.com/forums/en-us/vistaprograms/thread/a3a097c9-7a80-4de2-9466-9a45eabcb98c

    Give that a try and let us know how it works.

    Chris
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • SwipeDown event is not generated.

    In my application, I want to display the application on one menu to the bottom of the event. When I add the following code to my application on device beta1 (10.0.4) I am able to do swipeDown() event, but when I run the application on beta2 device (10.0.6) swipeDown() event is not generated. After a search on the forum and release note I just know that it does not limit the swipeDown() event is not generated.

    URL for realeasenote: https://developer.blackberry.com/cascades/download/releasenotes/ and number: 5347148.

    Code:

    main.cpp

    int main (int argc, char * argv)
    {
    App app (argc, argv);

    QTranslator translator;
    QString locale_string is QLocale () .name ();.
    QString file = .arg QString (SampleNavigation_ '%1') (locale_string);
    If (translator.load (filename, "app/native/qm")) {}
    app.installTranslator (& translator);
    }

    MainApp App;

    QObject::connect (& app, SIGNAL (swipeDown ()), & mainApp, SLOT (swipeDownMenu ()));

    Return Application::exec();
    }

    We also tried with the event of navigation but that not working.

    Is there no workaround solution to generate the event swipeDown() on device (10.0.6) of beta 2.

    The corresponding Issue Tracker question is https://www.blackberry.com/jira/browse/BBTEN-182

    See http://supportforums.blackberry.com/t5/Cascades-Development/Issue-to-do-a-quot-swipe-down-quot-menu/...

    In many cases, the Menu is what you want, in which case this issue does not affect you.

    Also https://www.blackberry.com/jira/browse/BBTEN-192

    Stuart

  • Why sometimes Eclipse do not generate alx file and cod?

    Hello everyone, I have a strange question, sometimes, when I'm programming and to run my applications in the Simulator, everything seems fine, but sometimes after making some changes in my source (add new classes) and running againg the application simply don't change absolutely nothing, I saw my files and I have notice that when this happens because the alx file and cod are not generated by eclipse why this, happen is because of the way of programming?

    Thanks for your time!

    See the link below:

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/796557/800738/800901/...

    And also check out the link in my signature for some basic tips on the installation program.

  • Smartphones blackBerry how can I fix this error: "The XML is not well-formed."

    What is this error?  "The XML is not well-formed."

    I was always able to access the site of ringing in the AT & T Mall until today.   All of a sudden, I get the error XML, as shown above.

    What is it?  How should I do?

    You change the option in the configuration of the browser for something other than blackberry.  You can change it to Internet Explorer or Firefox.  I've noticed this problem when I try to access my Bank Web site and the web address think that it is accessed from a blackberry browser and not a general public.  Now when you download things like themes that you get from a site of third party... where they send you a txt message to click on a link you must replace blackberry.  Here are the instructions for how to do this:

    Open the browser

    Click the button (Menu) Blackberry

    Scroll down to Options

    Click on the browser Configuration

    Under the browser Indentifcation change to Internet Explorer or Firefox

    Then try again ringtone site.

    Let me know if it works

    Thank you

    PBKolsun

  • Code for web fonts might not generated

    Hello

    I can't publish my Web site, because it is an alert: "intended for one or more web fonts could not generated Code.

    It worked fine before and I don't have new and fonts or so.

    Could you please help!

    Thank you

    Wolfram

    Hello Wolfram,

    Please try the steps mentioned in this post - ﷯Error: could not generate code to activate one or several web fonts on the page and let us know if it works.

    Kind regards

    Ankush

  • Error: Could not generate the code to activate one or several web fonts on the 'Home' page [Error 400: font not available]

    Good afternoon

    I hope someone can help me.

    I use Lato standard on my site. I donloaded the police, it is installed. But when I try to publish the site on businesscatalyst I get this error after 13%

    Error:

    Could not generate code to activate one or several web fonts on the 'Home' page [Error 400: font not available]

    I do not see the police, please see the attached file.

    Can someone tell me what I have to hurt.

    Thank youSchermafbeelding 2016-08-20 om 13.26.13.png

    Hello Dutchybert,

    You must ensure that you do not use any other font on the page. You can use several fonts but not missing fonts.

    There is probably a box/image/text that you forgot to change the font.

    Be sure to use web fonts that are in your font library.

    I hope this helps

Maybe you are looking for