Can an unknown font will failed when generating BIP in siebel application?

Thanks! :)

ohhhh, Thanks for answering, may BIP failed because of the configurator in Siebel
by the way, your answer is exactly what will I ask now :)
now I see why it is printed in ???
Thanks!!! :)

Similar Messages

  • SDM failed when deploying a Web Dynpro application

    SDM failed when deploying a Web Dynpro application - I get the following error message:
    Sep 19, 2006 2:25:34 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : eix-blade-011
    SDM port : 50118
    URL to deploy : file:/D:/DOCUME1/AMRM1.AZI/LOCALS1/Temp/temp43621sap.comwelcome.ear
    Deployment exception : Server eix-blade-011 did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server eix-blade-011 at port 50118: eix-blade-011
    Inner exception was :
    Server eix-blade-011 did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server eix-blade-011 at port 50118: eix-blade-011

    Amr Azim,
    You must have logged in thru a dedicated connection to any server through say VPN before deploying.This way the sdm uses the same login as that of already establised connection.
    So 'sign of'  all connections to any servers before deploying and redeploy your application.Here you will be prompted to supply the sdm password and deployment shall proceed.

  • [SOLVED] PKGBUILD for a font - xset fails when X not running

    I am working on my second PKGBUILD -- this time for a simple raster font I use.  The PKGBUILD uses a post_install() which does an "xset -fp rehash" after installing the font files, because it seemed like otherwise the font wouldn't show up in X.  Then in tests I found that the install died with errors when I installed my package without X running.  How is this situation normally handled?
    Last edited by scottfial (2010-07-09 08:04:21)

    xset will fail if X isn't running.  Font packages generally have an install file like this:
    # arg 1: the new package version
    post_install() {
    echo -n "Updating font cache... "
    fc-cache -f > /dev/null
    mkfontscale /usr/share/fonts/local
    mkfontdir /usr/share/fonts/local
    echo "done."
    # # arg 1: the new package version
    # # arg 2: the old package version
    post_upgrade() {
    post_install $1
    # # arg 1: the old package version
    post_remove() {
    post_install $1
    The user can then either run xset manually or logout/login after installation.

  • Can I specify font size=1 when printing HTML?

    I want print my HTML report in font size = 1. I don't know how to do it?
    When using report builder, there seems no special control for printing HTML?
    Hope experts here broaden my mind
    Richard

    This is possible
    1) In Builder paper layout select the object for which you want to change the font size
    2) In menu
    Format --> Font
    You can change the font and its size
    Then generate to html/htmlcss . I have verified this
    Thanks
    The Oracle Reports Team

  • Font substitution failing when printing PDF to Non Postcript Printer

    I have a problem with PDFs that do not have fonts properly embedded.
    For example:
    http://www.wlv.ac.uk/PDF/uow-direct-app-home.pdf
    If I open the above file, it views on screen ok (using the substitute Adobe Serif MM and Adobe Sans MM) and prints to my postscript printer ok. But... if I print it to the basic office laserjet (Epson c1900), it fails to print any of the type.
    Any ideas?

    No worries - thought you were from Wolverhampton University - know some
    people there ;-)
    You might want to ensure all your print drivers are up-to-date since
    this can seriously affect output - especially with Acrobat 8 printing
    issue. Don't forget to update to 8.1.2 through the 'Check for Updates'
    option under HELP.
    Another idea might be to use the PRINT AS IMAGE option under the print
    menu, this will spool an image file to the printing device which might
    also help ...
    Jon

  • Can't import schemas in classpath when generating JAXB

    I'm trying to create schemas that are used to provide basic components for more complex schemas, using the same design idea behind creating abstract Java classes and then extending them. I'm having trouble referring to classes in different modules, though. Below is the start of a schema that refers to a schema that is stored in another jar file:
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        targetNamespace="http://xml.kitfox.com/schema/tw/ts"
        elementFormDefault="qualified"
        xmlns:tns="http://xml.kitfox.com/schema/tw/ts"
        xmlns:cmn="http://xml.kitfox.com/schema/common">
        <xsd:import schemaLocation="/com/kitfox/common.xsd" namespace="http://xml.kitfox.com/schema/common"/>
        <xsd:complexType name="sourceType">
            <xsd:attribute name="uid" type="cmn:uidType"/>
        </xsd:complexType>I'm generating my JAXB with the following task:
        <target name="bind-preferences" depends="init">
            <taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask">
                <classpath>
                    <pathelement path="${javac.classpath}"/>
                </classpath>
            </taskdef>
            <xjc destdir="gen" extension="true" removeOldOutput="true">
                <schema dir="src">
                    <include name="**/*.xsd"/>
                </schema>
                <produces dir="gen">
                    <include name="**/*.java"/>
                </produces>
            </xjc>
        </target>Unfortunately, this causes the following error:
    [WARNING] schema_reference.4: Failed to read schema document '/com/kitfox/common.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.
      line 9 of file:/C:/dev/kitfox.com/gameEngine/proj/tileWorld/src/com/kitfox/tw/ts.xsd
    [ERROR] src-resolve: Cannot resolve the name 'cmn:uidType' to a(n) 'type definition' component.
      line 24 of file:/C:/dev/kitfox.com/gameEngine/proj/tileWorld/src/com/kitfox/tw/ts.xsd
    [ERROR] src-resolve: Cannot resolve the name 'cmn:uidType' to a(n) 'simpleType definition' component.
      line 24 of file:/C:/dev/kitfox.com/gameEngine/proj/tileWorld/src/com/kitfox/tw/ts.xsdI know that the classpath passed into the xjc task contains the jar with my original schema. What can I do so that JAXB finds it? Also, how would I tell JAXB to extend the classes already generated for common.xsd in my original jar rather than regenerating them in the jar I'm compiling?

    Thanks. I've looked into using a catalog (the ant task allows you to specify a catalog), but don't think I've got the syntax right. Does the following look right to you?
    <!DOCTYPE catalog
      PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN"
             "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd">
    <catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"
             prefer="public">
      <uri name="common.xsd"
       uri="../gb/src/com/kitfox/common.xsd"/>
    </catalog>I've changed my schema to look like:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        targetNamespace="http://xml.kitfox.com/schema/tw/ts"
        elementFormDefault="qualified"
        xmlns:tns="http://xml.kitfox.com/schema/tw/ts"
        xmlns:cmn="http://xml.kitfox.com/schema/common">
        <xsd:import schemaLocation="common.xsd" namespace="http://xml.kitfox.com/schema/common"/>
        <xsd:complexType name="sourceType">
            <xsd:attribute name="uid" type="cmn:uidType"/>
        </xsd:complexType>I'm still getting errors:
    [WARNING] schema_reference.4: Failed to read schema document 'common.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.
      line 9 of file:/C:/dev/kitfox.com/proj/tw/src/com/kitfox/tw/ts.xsd
    [ERROR] src-resolve: Cannot resolve the name 'cmn:uidType' to a(n) 'type definition' component.
      line 24 of file:/C:/dev/kitfox.com/proj/tw/src/com/kitfox/tw/ts.xsd
    [ERROR] src-resolve: Cannot resolve the name 'cmn:uidType' to a(n) 'simpleType definition' component.
      line 24 of file:/C:/dev/kitfox.com/proj/tw/src/com/kitfox/tw/ts.xsdI've tried some variations such as leaving out the import/@schemaLocation attribute and hoping that the catalog could resolve that with the namespace alone or creating a fake http:// url for the schemaLocation, but none of that works. Would you know what I'm doing wrong with this catalog? The catalog and ant file are in the same directory and the relative path to the common.xsd file is correct.

  • TS1398 My wifi is working absolutely correct, I can browse to the Internet , but when ever I download an application, a message appears that cannot connect to the iTunes.

    I cannot connect to the apps stores. Whenever I download an app a message appears that cannot connect to iTunes. Please help.

    iTune is not available in certain countries. You can check below.
    http://support.apple.com/kb/TS3599

  • How can I preview fonts?

    I would imagine this has been asked over and over, but couldn't find an answer googling the questiion.  How can I preview fonts in LR4 when I'm selecting one?  Thanks!

    On the one hand, a regular font management application such as the ones you mention, or my employer's own Suitcase Fusion (http://www.extensis.com/en/products/suitcasefusion2/index.jsp), will do the job really well... except that they prefer to work with fonts on your hard drive rather than on a non-writeable removeable disk. I *think* any of them can be set to work with the fonts in place, but you may need to adjust app preferences so they don't copy all those fonts to your hard drive when you bring them into the app. These also offer a lot of other features, but are retail programs that cost a bit of money. If you need the other features of font management, then they can be great. If you don't, they may be overkill. (If you don't know what font management is, see the second paragraph of my blog post on Windows font management, here: http://blogs.adobe.com/typblography/2007/10/win_font_mgmt.html.
    Have you completely exhausted all the OS preview options? Any chance you'll upgrade to Leopard? This article offers some useful tips for font previewing in Leopard, not sure if they work in Tiger:
    http://www.macworld.com/article/131466/2008/01/105previewfonts.html
    Otherwise, you might want to look at a dedicated inexpensive or free utility that really just does previewing of uninstalled fonts. I can't comment on the quality of these, but I gather FontCat, Font Pilot and FontThing.
    Regards,
    T

  • Condition value load it will fails

    Hi friends,
    I have load the data for  0sd_c15 delta up load and run the dtp also ,
    the data will come sucessfully datasouce to ods , then data will fail when executeing the dtp ( ods to cube )
    some error are come
    1 Process Request
    2 Data Package 1: Errors During Processing
    3 Updating to InfoCube 0SD_C15 : 328 -> 325 Data Records
    4 Messages for data records saved; request is red acc. to configuration
    5 No SID found for value 'TAB ' of characteristic 0SALES_UNIT     BRAIN     70     
    plz give me solution step by step

    Hi,
    This is the issue related to master data for this characteristics 0SALES_UNIT the values which are getting populated through the transaction data is not maintained in the master data and therefore it is failing.
    Chk is there any change run pending for this infoobject 0SALES_UNIT...
    rgds,

  • Getting error while generating report from Siebel (Siebel/BI Publisher)

    Dear,
    I have completed the integration of siebel and BIP according to the oracle document, I successfully upload the sample template from siebel application to BIP server.
    But now I am facing two issues,
    I am getting error "Unauthorized access, Please contact the administrator."  when I open report on BIP which I have uploaded from siebel.
    When I try to generate report from siebel=>application=>Tables=>S_Contact I am getting the below error when click on table report from Report button.
    (httptransport.cpp (1635)) SBL-EAI-04117: HTTP Request error during 'Submitting Data SendHTTP request': 'Status code - 500'
    (httptransport.cpp (983)) SBL-EAI-04117: HTTP Request error during 'Submitting Data Send HTTP request': 'Status code - 500'
    (soapbinding.cpp (675)) SBL-EAI-04304: Unknown Part ':oracle.xdo.webservice.exception.InvalidParametersException'  for operation 'runReport' exists in SOAP message.
    (outdisp.cpp (247)) SBL-EAI-04308: Operation 'runReport' of Web Service 'http://xmlns.oracle.com/oxp/service/PublicReportService.PublicReportServiceService' at port 'PublicReportService' failed with the following explanation: "oracle.xdo.webservice.
    Invalid User Name and Password for BIP Server
    (xmlpadaptersvc.cpp (2287)) SBL-RPT-50529: Verify BI Publisher Server Userid and Password.
    Error in generating Report Output file /siebel8/sea81/siebsrvr/siebel8/sea81/siebsrvr/xmlp/reports/Rept11-3U7M403.PDF in the XMLP Engine
    (xmlpadaptersvc.cpp (2983)) SBL-RPT-50524: BI Publisher engine failed to generate report.
    Object manager error: ([0] BI Publisher engine failed to generate report.(SBL-RPT-50524) (0x95c55c))
    ( (0) err=2818155 sys=9815388) SBL-OMS-00107: Object manager error: ([0] BI Publisher engine failed to generate report.(SBL-RPT-50524) (0x95c55c))
    (bsvcmgr.cpp (1392) err=2818251 sys=0) SBL-OMS-00203: Error 9815388 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    (bsvcmgr.cpp (1236) err=2818251 sys=0) SBL-OMS-00203: Error 9815388 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    (smireq.cpp (425) err=2818251 sys=0) SBL-OMS-00203: Error 9815388 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    Please help to resolve this issue.
    Regards,
    Soahil

    This specifically means that the destinations have not been configured in the Crystal Job Server.  If you're running 4.x, this may be part of the "Adaptive Job Server" instead of or in addition to a Crystal Job Server.  If you're using 3.1 or earlier, you'll also have to set up the destination in the Destination Job Server.
    You'll have to log in to the CMC, go to Servers, right-click on the correct job server and go to "Destinations".  You'll then add something like "File" or "Unmanaged Disk" to the available destinations and save.  Stop the job server, start it again, and your error should go away.
    Please be aware that unless you're using specific credentials to schedule the report or you're saving to the server where BO is installed, you'll need to make sure that the BO services are running under a network "Services" account that has access to the folder you're scheduling the report to. By default during installation it's set to run under the "Local Services" account that doesn't have access to the network.
    -Dell

  • Preflight method to identify fonts which will fail tagging/extraction

    Hello,
    I've run accross several PDFs that contain problematic fonts -- examples are:
    1.  Adding tagging to the document adds strange characters around the fonts (i.e. "@" or "É")
    2.  Copying and pasting the text to word creates strange boxes, question marks, garbled letters.
    I've been investigating this problem and it seems to have something to do with a failure to convert characters to Unicode values --- I've noticed some of hte problematic text has custom/identity-h encoding, and doesn't contain a Cmap reference to unicode.
    However, I've seen several instances of text that is missing a unicode encoding, but copying it to word seems to work fine?
    Is there a custom preflight profile that could proactively identify text that will fail copying + pasting / will produce strange characters when accessibility tagging is added?
    Alternatively, is there a check that will at least flag text that is likely to fail in this way?
    using acrobat 9 pro
    Thanks,
    Andrew

    There's a "text cannot be mapped to Unicode" check in Preflight but it won't give you exactly what you want. Acrobat has no way of knowing if the glyph maps are corrupted, as only a human can recognize the character shapes aren't correct. Internally, all Acrobat sees are lists of character code numbers.

  • Generated Script fails when attempting to drop Foreign Key Constraint

    I made some changes to my database.  I used the generate script process to generate a drop and create script to these tables.  The generated script first ran Alter Table Drop Constraints to drop the Foreign Key constraints and then did Drop tables
    and then did create table to construct the script with the proper changes.
    However, when we attempted to run the script, all of the Drop constraint statements failed reporting that there was no such constraint.  Then the drop table scripts failed because of the existence of the very foreign key constraints  that SQL Server
    had just stated did not exist.
    BOL states that the statement "DROP { [ CONSTRAINT ] constraint_name | COLUMN column_name } " is  "Used in a CHECK, FOREIGN KEY, UNIQUE, or PRIMARY KEY constraint."  So why couldn't I drop those specified Foreign
    Key constraints in a script generated by SQL Server itself.
    Edward R. Joell MCSD MCDBA

    Are you sure there are no Constraints on other tables which are causing your issue?
    If a foreign key from table abc refences table def it will cause the drop to fail.
    If your script is already attempting to drop such constraints, have you checked that they are dropping from the correct table (and not the table that would be the target of the drop)?
    I discovered two things yesterday and one thing today about generated scripts.
    When you generated a script to drop and create a set of tables and you mark it to include foreign keys, the generated script will first create a set a scripts to drop the foreign keys , then will create a set of statements for each table that will,
    first, again drop the same foreign keys that it did earlier, then drop the table.  If there is no "if exists" statement for each statement, the drop constraint will fail.
    The script generated by the generate scripts wizard, even when you set the Drop and Create option in the advanced tab, unlike the scripts generated when you right click a table and select Drop and Create from the context menu, does not by default create
    an "If Exists" statement before the attempt to drop anything.
    You can make the generate Scripts wizard generate an "if exists" statement by changing the "Include if NOT EXISTS" option on the advanced tab to true. However, while the script generator will find all of the foreign keys that show that
    table as the parent_id, it will not show the FK constraints on tables which are not being dropped and created.  Nor can you find them by querying the sys.foreign_keys view using the standard type of Foreign Key "If Exists" statement because
    it would do a query like
    SELECT *
    FROM sys.foreign_keys
    WHERE object_id = OBJECT_ID(N'[dbo].[FK_prc_ContractSubLines_prc_PRSubLines]')
    AND parent_object_id = OBJECT_ID(N'[dbo].[prc_ContractSubLines]')
    And the script generator does not care even if you show an option like "Generate Scripts For Dependent Objects", it will not generate a drop script for the foreign constraints on other tables that reference your table.  I have not even found
    a way to get back the results of a query on the sys.foreign_keys view that will show those keys that reference your table. The only thing I been able to do is to open the table in design and check out the list of relationships in your table and see open each
    relationship and see which table is the "foreign key table" rather than the primary key table. This will make writing drop and create scripts very very long and tedious. As you would have to  create addional Alter tables scripts to do a drop
    and create foreign keys on each table referencing yours and manually place them into your scripts at correct locations. This is almost as bad as the Oracle SQL Developer's generate script results which (at least in 2010) so screws up the order of the generated
    script that it is trying to create foreign keys on tables it has not created yet.
    So Patrick I see that you thought about the foreign keys on other tables.  I wish I had read your post before spending the morning troubleshooting this issue based on this morning's script that ran and crashed embarrassingly. 
    I would like to know if someone has a query to reveal all of the foreign keys that reference your table from another table using the sys views.  As it is I have to open each table in design to get a list of FKs that reference it.
    Edward R. Joell MCSD MCDBA

  • Sign in failed - Unknown server error (-2) when trying to sign in to new playbook

    I get the message "Sign in failed - Unknown server error (-2)" when I try to login to the Blackberry ID page of a new playbook during initial setup. This prevents me from continuing and using my device. A similar error message appears when I tap "Forgot password?" which is An unknown error has occured. Please try again (-2)
    I have tried what others have done when they have unknown error (-6) which is turn off playbook and plug into desktop manager then update to reflash, but I continue to get the same error.
    I know my BB ID username and password are correct because I can login to the web with them. Not sure what to do next.

    Just to test the simple things first, did you try to sign in using another credential?
    If only yours fails, then is a RIM issue, otherwise is indeed your Playbook failure.
    --- Catalonia, next state in Europe ----
    Use the "solved" or "Like" icons if my answer helped you.
    BES10 administrator for several customers.
    "SMPTE Calculator" timecode APP developer for BB10

  • More than maximum 5 filtered album lists trying to register. This will fail,Why i am getting this error when i pick video from Photo library.

    I am able to pick 4 videos from the Photo library in my iPhoneAPP but when i try to pick 5th one it throws an error:
    "More than maximum 5 filtered album lists trying to register. This will fail,Why i am getting this error when i pick video from Photo library."

    Hello Tate r Bulic
    I don't have any idea how to remove this error,can i pick more than 5 videos from the photo library...
    If it's then please help me and gimme idea..Thanks

  • What product can I buy that will provide portable power to my MacBook Pro and iPhone and iPad when I am flying?

    What product can I buy that will supply portable power to my MacBook Pro, iPhone and iPad when I am flying?
    I recently was on an extended trip and the port for charging at my seat was not working.

    Unfortuntly you can't.
    The Apple Airline adapter is only meant to keep a fully charged battery from draining, however with newer computers requiring more power, they tend to drain the battery AND the power at the same time, thus require more power hook up without the computer running to charge the battery.
    Since your iPhone and iPad charge off USB, that's going to drain the MacBook Pro battery as well.
    To generate enough power to charge all three will require a portable generator which of course can't be used on a plane.
    The best you can do is have all three charged up before you board the plane, and use each for as long as you can.

Maybe you are looking for

  • Is there a log of what updates i just installed on my mac 10.8.2

    I automatically performed an update and now I can not print to my HP 4700 printer (from any programs: CS3, Word, Entourage, PDF). Is there a list of what updates where downloaded, so that I could have a better idea of what I changed that resulted in

  • Tried to download trial version of Photoshop CC and got an error message A12E5 what does it mean and what should I do.

    Tried to download trial version of Photoshop CC and got an error message A12E5 what does it mean and what should I do.

  • Data Guard Info

    I have a simple question - using Dataguard 10gR2 is it possible to open the standby database and perform queries requiring sorting? I mean is the temporary tablespace available for writing?

  • Printer for Mac

    Hey guys, I am trying to establish what the best HP color printer will be for what I need. I have already checked all the reviews on the HP site, and I have not been able to figure out which is the best. I want to find out from anyone on this forum t

  • 1 SATA + 3 IDE Config help please

    Hi, I have an 865PE - Neo2 - LS. Currently I have 1 SATA HD configured as the first boot device  + a CDRW and a DVD on IDE2. I would like to add a second standard IDE HD for some extra storage but try as I might I cannot get the bios to recognise the