How to remove a font file and its mapping from XML Publisher Administrator

Hello,
I am trying to remove a font file and its mapping from the XML Publisher Administrator. If this is not possible, is there a way to disable it?
The reason why I am asking this is because we just got a new check printer, and I was able to print just fine. However, the MICR font was not coming up properly on the check, so I went ahead and configured the font with the XML Publisher Administrator. Now my check output is coming up blank after running the XML report publisher program. The only change I did was to upload the MICR font and mapped it.
My template and rdf report file are working fine in another environment we have, so I know that's not the problem.
Any help is appreciate it.
Thanks.

This is how you do it
Font
DELETE FROM xdo_lobs
where lob_code like '<Font_name>';
Font Mapping Set
DELETE FROM xdo_font_mapping_sets_TL
WHERE mapping_code like '<MAPPING_CODE>'

Similar Messages

  • How to call the css file and its images from our application......

    hai,
    Im uploading a .css file and some images in Apex shared components ,now how to call the css file and images from my Application.... plz tell me detailed.....
    Edited by: anoo on Nov 3, 2008 12:51 AM

    Hi Anoo,
    Sorry, didn't see that you'd started a new thread, so have answered this in 'undefined' is null (or) not an object "
    Andy

  • How do I process multiple files and turn them from raw to jpeg

    How do I process multiple files and turn them from raw to jpeg. Ive tried and it seems to go through the files but doesnt seem to process them or store them in the selected folder

    Yes that was the first thing I did. Then I used the process multiple files and selected a new folder to put them in and selected use open files and selected to turn them into jpeg. The images flash on the screen like they are being processed, but the folder never appears in library. Is it possible because there are a couple 16 bit files open that this corrupts the task. Do I need to create the folder first. Will elements not create the folder on its own.
    Thanks Vince

  • Export RAW-files and its thumbnails from iPhoto

    Hi all,
    My Canon EOS 5D makes JPEG+RAW at the same time, which is great. Normally I do not need the RAW files, I work with JPEG in iPhoto 6 (OS X 10.4.11). I only want to keep the RAW-files as "negative". With Automator I want to export the RAW-files automatically to a separate folder which I will then backup to a external HD.
    Automator should do the following:
    1. Copy all RAW-files (extension is .CR2) to a folder on my HD.
    2. Delete al RAW-files and its thumbnails from iPhoto
    I have done some tests with Automator, but I did not succeed. Can some body help me?
    Roberto

    Hi, Gary. Have you tried converting to DNG, with xmp data embedded in it, then export & burn this?

  • How to create new .dat file and its contents?

    Hi There
    Can anybody let me know the procedure of how to create new .ctl or .dat file to load data to tables.
    i working on 2day dba chapter 8. it shows me how to creat table and use .dat file to load data. but doesnot giv any clue how new .dat file and its contents can be created. please help.
    thanks in advance.

    Thanks for ur help
    I ve created txt file in notepad and saved it as dat file. tried to load that data thru Enterprise manager. used load data from User files everything went well and job was showing suceeded but dont know why that data is not showing in the table. i ve tried it now for three four times. used right table and pathe but dont know. has anybody got idea why that ll be?
    Thanks

  • How to remove the standard Exit and Help buttons from the iviews

    Hi All,
    We migrated the ESS application from standalone ITS based on 4.6c to ECC 6 based Integrated one.  After converting that into ICF service and when we created the iview for it in the portal(EP 7)  It is showing two hyperlink items EXIT and HELP by default at the top of every iview.  So, Can anybody tell me how to remove them from visibility.
    And also, the iviews are not showing the table grids etc in the integrated environment.  Is there any change that need to be done, for getting the table grids and all to look as it is in the previous envoronment.
    Thanks & Regards,
    Ravi

    Hello Ravi,
    You should be aware that many of the ESS transaction are not supported on the Integrated ITS, see note 870126 for more details.
    To remove the "Exit" and "Help" you can use the ~webgui_simple_toolbar parameter, please see note 1010519. 
    Some tables have an option to show the gridlines or not.  Please see if there is a table options icon in the upper right of the table to change the configuration.  I'm not sure if what kind of table you're referring to so it may or may not be available.
    Edgar

  • How to compile other java files and run them from my own programs?

    I'm developing a unit testing tool for AspectJ, which can originally generate the stubs for aspect unit to be tested. All these stubs are java files. After generation of stubs, how can I program the code to compile this unit together with these stubs, i.e. how can I put the functionality of compilation and run, e.g. command "javac *.java" and "java *", into my own code.
    Hope you can understand what I mean.
    Thank you in advance.

    When I use Runtime.getRuntime().exec(command) for executing the AspectJ compile command "ajc", "IOException createProcess error=2" always occurs, while it is ok for Java comiple command "javac".
    Why this happens when I use Runtime.getRuntime().exec("ajc Hello.java Test.aj")? Is it the reason that Runtime.exec(String) may not support any command in DOS?
    (ajc is the compile command for the java file and aj file.)
    Thank you in advance.

  • How to remove historical of incoming and outgoing calls from a Z10 without loosing anything else

    Greetings,
    I would like to remove the history of all incoming and outgoing calls from my Z10 without reformatting the device or loosing other history like SMSs incoming and outgoing, or visited web sites etc. I havfe been looking for it in the help, but I have not found it. 
    Regards,
    Jean-Pierre

    Hub, calls, press and hold date at top, then tap delete.
    Phone, settings, call summary, tap icon at bottom middle to reset call timer.
    - Ira

  • How to get the column name and table name from xml file

    I have one XML file, I generated xsd file from that xml file but the problem is i dont know table name and column name. So my question is how can I retrieve the data from that xml file?

    Here's an example using binary XML storage (instead of Object-Relational storage as described in the article).
    begin
      dbms_xmlschema.registerSchema(
        schemaURL       => 'my_schema.xsd'
      , schemaDoc       => xmltype(bfilename('TEST_DIR','my_schema.xsd'), nls_charset_id('AL32UTF8'))
      , local           => true
      , genTypes        => false
      , genTables       => true
      , enableHierarchy => dbms_xmlschema.ENABLE_HIERARCHY_CONTENTS
      , options         => dbms_xmlschema.REGISTER_BINARYXML
    end;
    genTables => true : means that a default schema-based XMLType table will be created during registration.
    enableHierarchy => dbms_xmlschema.ENABLE_HIERARCHY_CONTENTS : indicates that a repository resource conforming to the schema will be automatically stored in the default table.
    If the schema is not annotated, the name of the default table is system-generated but derived from the root element name :
    SQL> select table_name
      2  from user_xml_tables
      3  where xmlschema = 'my_schema.xsd'
      4  and element_name = 'employee';
    TABLE_NAME
    employee1121_TAB
    (warning : the name is case-sensitive)
    To annotate the schema and control the naming, modify the content to :
    <?xml version="1.0" encoding="UTF-8" ?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb">
      <xs:element name="employee" xdb:defaultTable="EMPLOYEE_XML">
        <xs:complexType>
    Next step : create a resource, or just directly insert an XML document into the table.
    Example of creating a resource :
    declare
      res  boolean;
      doc  xmltype := xmltype(
    '<employee>
      <details>
        <emp_id>1</emp_id>
        <emp_name>SMITH</emp_name>
        <emp_age>40</emp_age>
        <emp_dept>10</emp_dept>
      </details>
    </employee>'
    begin
      res := dbms_xdb.CreateResource(
               abspath   => '/public/test.xml'
             , data      => doc
             , schemaurl => 'my_schema.xsd'
             , elem      => 'employee'
    end;
    The resource has to be schema-based so that the default storage mechanism is triggered.
    It could also be achieved if the document possesses an xsi:noNamespaceSchemaLocation attribute :
    SQL> declare
      2 
      3    res  boolean;
      4    doc  xmltype := xmltype(
      5  '<employee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      6             xsi:noNamespaceSchemaLocation="my_schema.xsd">
      7    <details>
      8      <emp_id>1</emp_id>
      9      <emp_name>SMITH</emp_name>
    10      <emp_age>40</emp_age>
    11      <emp_dept>10</emp_dept>
    12    </details>
    13   </employee>'
    14   );
    15 
    16  begin
    17    res := dbms_xdb.CreateResource(
    18             abspath   => '/public/test.xml'
    19           , data      => doc
    20           );
    21  end;
    22  /
    PL/SQL procedure successfully completed
    SQL> set long 5000
    SQL> select * from "employee1121_TAB";
    SYS_NC_ROWINFO$
    <employee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceS
      <details>
        <emp_id>1</emp_id>
        <emp_name>SMITH</emp_name>
        <emp_age>40</emp_age>
        <emp_dept>10</emp_dept>
      </details>
    </employee>
    Then use XMLTABLE to shred the XML into relational format :
    SQL> select x.*
      2  from "employee1121_TAB" t
      3     , xmltable('/employee/details'
      4         passing t.object_value
      5         columns emp_id   integer      path 'emp_id'
      6               , emp_name varchar2(30) path 'emp_name'
      7       ) x
      8  ;
                                     EMP_ID EMP_NAME
                                          1 SMITH

  • How do you transfer Several files and numerous photos from one Mac to another.

    I have a Mac Book Pro (late 2011) and a Mac Air (2013).   I know I can airdrop but I would be doing that for days - is there any way to transfer file from one computer to another. 

    If you want to transfer a large amount of files, the best way would be to use an external drive. If you do not have one, consider the option of using Target Disk mode, so you just have to get a Thunderbolt cable; this is the fastest option.
    To use Target Disk mode, connect the Thunderbolt to the MacBook Air and the MacBook Pro. Then, start up your MacBook Pro and hold the T key while it is starting up until you see the Thunderbolt icon in the display. Now, go to the MacBook Air, open a Finder window and you will see the MacBook Pro hard drive in the sidebar, so access to them and transfer the files you want to.

  • How can I restore an app and its data from an old ipad to a new ipad without restoring from backup?

    When I purachsed and iPad 2 to replace my old iPad I did not want to restore it from backup for obvious reasons.  However, there are apps that have data stored in them that I have lost the data for, what can I do to get the app and data back on the new iPad without losing the data that was already in the app?

    griffaroo wrote:
    When I purachsed and iPad 2 to replace my old iPad I did not want to restore it from backup for obvious reasons. 
    The reasons may be obvious to you, but it makes no sense to me. I would think that you would want all of the content that you had transfered onto your new iPad.
    However, there are apps that have data stored in them that I have lost the data for, what can I do to get the app and data back on the new iPad without losing the data that was already in the app?
    If you lost the data in the apps, you can't get it back unless you restore from a backup - assuming that the backup DID have that data in the apps..
    The only way that you can get the apps PLUS the app data onto the new iPad is to restore the new iPad from a backup of the original iPad and sync the apps back onto the new iPad if necessary.

  • Removal of transit stock and old inventory from SAP

    Dear All,
                How to  Removal of transit stock and old inventory from SAP.
    We had taken an approval for removal of some transit stock and old inventory (366.173 DWT) from SAP as on 31.03.2014.
    We have removed 279.509 DWT and the balance qty cannot be removed from transit/plant inventory
    removed some transit stocks ,but the major
      old inventory viz; at plant 1000 a stock of 15.693 DWT is appearing.
    Thanks
    Teknath

    Hi,
       Please follow the procedure explained in the note:  392205 - Analysis of stock in transit/correction for split valuation and  1727922 - Stock in Transit is not cleared with movement types 557/558 in the transaction MB5T
    Regards,
    AKPT

  • How can i remove a key and its value from properties file

    hi all,
    i want remove a particular key and associated value from the
    properties file. is their any standard way of doing?
    thanks inadvance
    daya

    hi,
    thanks
    i am able to remove the key,
    one more question how can avoid storing date and time
    in properties file.
    thanks
    daya

  • I have purchased a monthly subscription to Adobe PDF pack so that i can edit a PDF file, i have uploaded the file and its now in "my assets". how do i now edit this file??

    I have purchased a monthly subscription to Adobe PDF pack so that i can edit a PDF file, i have uploaded the file and its now in "my assets". how do i now edit this file??

    You can't edit a file with PDF Pack, but you should be able to convert it to a Word document, and if you are really lucky edit THAT and make a new PDF. Don't expect too much though!

  • How do I recover a .app and its file contents after osx "click and hold" "hit x button" delete

    How do I recover a .app and its file contents after osx "click and hold" "hit x button" delete.
    Accidently deleted rapidweaver and all of its content and paid plugins with it. all contain in its package contents. how do i restore.  I tried using recovery software.

    It is possible that you inadvertently corrupted the file while doing the edit.
    But it could also be possible that you moved the file? For iMovie to see it, it should be in the Movies/iMovie Projects folder.

Maybe you are looking for

  • How to transfer pics from 1 library to another iPhoto

    How can I transfer pics from one iPhoto library to another iPhoto library, without having duplicated the space on the harddrive? Will the space (GB) duplicate when I copy the pics from one library into the other and delte the 1st one or will it stay

  • Where is the refresh button now in this new version?

    I finally succumbed and downloaded firefox 4. Now I don;t have a refresh button . . . .

  • What would be the terminal command to reverse this?

    My boyfriend gave me his old computer and he used this command to disable Previous Recipients. I want it back, what can I do? defaults write com.apple.mail SuppressAddressHistory -bool true

  • How to download IMExample java application??

    Hi all, I need to research Multimedia database in Oracle. I tried to find and to download IMExample Java application. but I don't know where I can find the IMExample in Oracle database. Please, any one can help me where I can download IMExample Java

  • FileDialog does not use Windows XP L&F

    Hi, Just noticed that when using FileDialog, the buttons, combo boxes & icons along the top row are not displayed in the XP look & feel. Here's some sample code to show the problem:     public static void main(String[] args){         try{