Not getting empty tags in XML output

Hello,
I am using DBMS_XMLQuery.getXML function and cusor function in my select statement to generate XML documents. If the column value is null, the XML document is not generating a empty tag. How do I generate empty tags?
My query is :-
SELECT
MSG_NAME ,MSG_DATE, BATCH_ID,
cursor (SELECT ACTION_CODE,PART_NUMBER,
ITEM_DESCRIPTION,ITEM_STATUS
UOM,CONVERSIONS,INSPECTION_FLG
FROM ITEM_OUT ITEM
WHERE ITEM.BATCH_ID= ECF.MSG_BATCH_ID
) as item_header
FROM FILE_CONTROL ECF
null

You need to set the option to use a null indicator. By default, null values omit their elements. With the null indicator, they are included as empty elements with a NULL="Y" attribute flag.

Similar Messages

  • Total is not getting displayed in the ALV output.

    Hi,
    Total is not getting displayed in the ALV output.
    I m using :REUSE_ALV_BLOCK_LIST_APPEND & REUSE_ALV_BLOCK_LIST_DISPLAY
    Are  there any issues with it as the same settings are working fine with REUSE_ALV_LIST_DISPLAY
    source code:
    DATA: layout TYPE slis_layout_alv,
          IT_eventS  TYPE slis_t_event,
          fcat   TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          rec_fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    TYPES: BEGIN OF ty_tab,
          belnr TYPE dberchz-belnr,
          belzart TYPE dberchz-belzart,
          net TYPE dberchz-nettobtr,
          END OF ty_tab.
    DATA: lt_tab TYPE STANDARD TABLE OF ty_tab.
    SELECT belnr belzart nettobtr
      FROM dberchz
      INTO TABLE lt_tab[]
    WHERE belnr eq '000000000001'.
      if sy-subrc ne 0.
      ENDIF.
    *  defining layout
    layout-colwidth_optimize = 'X'.
    layout-def_status = 'X'.
    *defning event
    *event
    *defining field catalog
    fcat-col_pos = 1.
    fcat-fieldname = 'BELNR'.
    fcat-tabname  = 'LT_TAB'.
    APPEND fcat.
    fcat-col_pos = 2.
    fcat-fieldname = 'BELZART'.
    fcat-tabname  = 'LT_TAB'.
    APPEND fcat.
    fcat-col_pos = 3.
    fcat-fieldname = 'NET'.
    fcat-tabname  = 'LT_TAB'.
    fcat-do_sum = 'X'.
    APPEND fcat.
    *calling alv
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
      EXPORTING
        i_callback_program             = 'YZ_PLR'
    *   I_CALLBACK_PF_STATUS_SET       = ' '
    *   I_CALLBACK_USER_COMMAND        = ' '
    *   IT_EXCLUDING                   =
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
      EXPORTING
        is_layout                        = layout
        it_fieldcat                      = fcat[]
        i_tabname                        = 'LT_TAB'
        it_events                        = IT_EVENTS[]
    *   IT_SORT                          =
    *   I_TEXT                           = ' '
      tables
        t_outtab                         = lt_tab[]
    * EXCEPTIONS
    *   PROGRAM_ERROR                    = 1
    *   MAXIMUM_OF_APPENDS_REACHED       = 2
    *   OTHERS                           = 3
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    Thanks,
    Gaurav

    Hi
    No I don't think, this is my code (based on your code) and it works fine:
    TYPE-POOLS SLIS.
    DATA: BEGIN OF LT_TAB OCCURS 0,
           BELNR LIKE BSEG-BELNR,
           GJAHR LIKE BSEG-GJAHR,
           WRBTR LIKE BSEG-WRBTR,
           WAERS LIKE BKPF-WAERS,
          END OF LT_TAB.
    DATA: LAYOUT     TYPE SLIS_LAYOUT_ALV,
          IT_EVENTS  TYPE SLIS_T_EVENT,
          FCAT       TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          REC_FCAT   TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE.
    START-OF-SELECTION.
      FCAT-COL_POS       = 1.
      FCAT-FIELDNAME     = 'BELNR'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-REF_FIELDNAME = 'BELNR'.
      FCAT-REF_TABNAME   = 'BSEG'.
      APPEND FCAT.
      FCAT-COL_POS       = 2.
      FCAT-FIELDNAME     = 'GJAHR'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-REF_FIELDNAME = 'GJAHR'.
      FCAT-REF_TABNAME   = 'BSEG'.
      APPEND FCAT.
      FCAT-COL_POS       = 3.
      FCAT-FIELDNAME     = 'WRBTR'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-CFIELDNAME    = 'WAERS'.
      FCAT-REF_FIELDNAME = 'WRBTR'.
      FCAT-REF_TABNAME   = 'BSEG'.
      FCAT-DO_SUM        = 'X'.
      APPEND FCAT.
      FCAT-COL_POS       = 4.
      FCAT-FIELDNAME     = 'WAERS'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-REF_FIELDNAME = 'WAERS'.
      FCAT-REF_TABNAME   = 'BKPF'.
      FCAT-DO_SUM        = SPACE.
      APPEND FCAT.
      SELECT * FROM BSEG INTO CORRESPONDING FIELDS OF TABLE LT_TAB
        WHERE BUKRS = 'MAAB'
          AND BELNR = '0000000001'.
      LT_TAB-WAERS = 'EUR'.
      MODIFY LT_TAB FROM LT_TAB TRANSPORTING WAERS WHERE WAERS = SPACE.
    *CALLING ALV
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          I_CALLBACK_PROGRAM = 'ZPROVAMAX5'.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          IS_LAYOUT   = LAYOUT
          IT_FIELDCAT = FCAT[]
          I_TABNAME   = 'LT_TAB'
          IT_EVENTS   = IT_EVENTS[]
        TABLES
          T_OUTTAB    = LT_TAB[].
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'.
    I've also inserted a currency field
    Max

  • Not able to view the XML Output, after Output format changed to XML

    Hello Everybody...
    After running the concurrent program having output type of XML. Output is not getting generated.
    But getting generated when output type is changed to Text.
    Please find the below log file info. :
    BioReliance Receivables: Version : UNKNOWN - Development
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXBRAXINVNEW module: XXBio Print Selected Invoices New
    Current system time is 28-MAY-2009 05:31:28
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    p_order_by='TRX_NUMBER'
    p_trx_number_low='9859529'
    p_trx_number_high='9859529'
    p_installment_number='1'
    p_open_invoice='N'
    p_check_for_taxyn='N'
    p_choice='SEL'
    p_header_pages='0'
    p_debug_flag='N'
    p_message_level='10'
    p_userid='9092'
    XML_REPORTS_XENVIRONMENT is :
    /oraapps2/devukora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /oraapps2/devukora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    Spawned Process 14380
    REP-3000: Internal error starting Oracle Toolkit.
    MSG-00100: DEBUG: AfterPForm_Trigger +
    MSG-00100: DEBUG: Multi Org established.
    MSG-00100: DEBUG: AfterParam_Procs.Get_Country_Details
    MSG-00100: DEBUG: AfterParam_Procs.Switch_On_Debug
    MSG-00100: DEBUG: AfterParam_Procs.Get_Trx_Number_Low
    MSG-00100: DEBUG: AfterParam_Procs.Get_Trx_Number_High
    MSG-00100: DEBUG: AfterParam_Procs.Get_Tax_Option
    MSG-00100: DEBUG: AfterPForm_Trigger -
    MSG-00100: DEBUG: BeforeReport_Trigger +
    MSG-00100: DEBUG: BeforeReport_Procs.Populate_Printing_Option
    MSG-00100: DEBUG: BeforeReport_Procs.Populate_Tax_Printing_Option
    MSG-00100: DEBUG: BeforeReport_Trigger.Get_Message_Details
    MSG-00100: DEBUG: BeforeReport_Trigger.Get_Org_Profile.
    MSG-00100: DEBUG: Organization Id: 102
    MSG-00100: DEBUG: BeforeReport_Trigger.Build_Where_Clause
    MSG-00100: DEBUG: P_Choice: SEL
    MSG-00100: DEBUG: Choice is other than ADJ, setting ORDER BY.
    MSG-00100: DEBUG: BeforeReport_Trigger -
    MSG-05000: DEBUG: Trx No... 9859529
    MSG-00010: 05:31 1 Transaction: 9859529
    Report Builder: Release 6.0.8.25.0 - Production on Thu May 28 05:31:28 2009
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Enter Username:
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 14767798 on node RCKBLADE05 at 28-MAY-2009 05:31:36.
    Post-processing of request 14767798 failed at 28-MAY-2009 05:31:36 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 28-MAY-2009 05:31:36
    Please do the needful in resolving the issue.
    Thans in Advance.
    Abdul.

    Hello Hussein,
    Thanks.
    Before I could ask the DBA to chage the DIPLAY parameter, I could see error in FNDOPP*.txt file, as some issue with tag "split-by-page-break".
    Accordingly I removed the tag from the template file ( RFT File). Now the request is getting Completed with Normal status. And generating the PDF output.
    I found a hit in the metalink for this issue, which suggests a PATCH 4206181 (XDO.5.5) to get this functionality.
    Accordingly the PATCH is applied.
    Now when trying to query the template name from the XML Publisher Administrator Responsiblity, page is getting errored with the below message.
    ====================================================================
    oracle.apps.fnd.framework.OAException: Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME = TemplateFilesForViewVO2; APPLICATION_MODULE = oracle.apps.xdo.oa.template.server.TemplatesAM;
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1223)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1960)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:86)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    ====================================================================
    Please do the needful in resolving the issue.
    Thanks,
    Abdul.

  • BI Publisher Charts not getting displayed in concurrent program output

    Hi,
    I am using BI Publisher version 11.1.1.3.0 on Windows 7 with word 2007. After creating the Bar chart in RTF template of BI publisher when I load sample XML data and check it in "Preview" is displays the output correctly.
    My requirement is to print the charts in concurrent program's output on EBS version 12.1.1. (preferably HTML but PDF will also do) However when I run the concurrent program which processes the data definition and the RTF template registered for this report, the output is just an image of the chart. The XML output generated by the program is not reflected in the chart display at all. (I have verified that XML is generated properly)
    Can someone please let me know if there is some setup required to make the charts display properly in concurrent program output?
    I have also tried BI publisher version 10.1.3.2.1 for this. With this the concurrent program output is just blank. Not even an image is displayed.
    p.s. The program uses standard executable XDODTEXE (which is normally used to run BI publisher reports)
    Thanks,
    Archana

    Hi,
    I have finally found solution to this issue....
    Two setups are required to display the charts in the concurrent program's PDF output:
    1. We need to edit the variables CLASSPATH and AF_CLASSPATH. These variables should have the complete path added for the xdoparser.zip file on the server.
    2. The DISPLAY variable should be correctly setup to direct the server output.
    Also as per my findings so far, the BI (XML) publisher version 11.1.1.3.0 (or any 11g) does not work with EBS (at least for charts). We need to use BI publisher version which is XML 5.6.3 compatible for EBS. This version is 10.1.3.2.1. (patch 12395372) Now this 10g version does not work on Windows 7 so you need to use Windows XP!
    With this... finally... your charts should be getting displayed in EBS output...
    Cheers!! :-)
    Archana

  • Not inlcude empty tag while invoking service from ESB

    The ESB receives a request with input xml which contains some empty tag. while ESB invokes the actual services the empty tags should not be included. can any one help how to achieve this?

    define that tag as optional in schema and don't map that element. This should help you.
    -Ramana.

  • Header and footer of RTF template not getting carried over to Excel output

    We have Header and Footer in RTF template defined. The output of the report will be in Excel. When we run the report, the header and footer on the report are not getting carried over to excel has header and footer, instead the header and footer are printed as first line on the excel. Also, the RTF template is set to landscape but when the output is generated in excel, it is set to Portrait

    hi..
    chk this presentation...
    http://csc-studentweb.lrc.edu/swp/Berg/articles/NW2004s_what_is_new.ppt#352,3,Why NW 2004s?
    http://www.sap-hefte.de/download/dateien/1090/086_leseprobe.pdf'
    hope this helps...

  • How to remove empty tags from XML

    Hello,
    I have a XML file which contains some empty tags and some values with "?". I need to remove all empty tags and tags which have a value "?".
    Sample Data:
    <a>
    <b></b>
    <c> Hello </c>
    <d>world ?</d>
    <e>oracle</e>
    </a>
    Expected result:
    <a>
    <c> Hello </c>
    <e>oracle</e>
    </a>
    Thank you for your time.
    Thanks,
    Edited by: 850749 on Apr 7, 2011 6:25 PM

    Dear Odie,
    May I make your example a bit more complicated by adding an additional complexType, please:
    ---Original ----
    <DEPT>
    <EMPID>1</EMPID>
    <EMPNAME>Martin Chadderton</EMPNAME>
    <SALARY>??</SALARY>
    <SALARYq></SALARYq>
    </DEPT>
    ----- New ----
    <DEPT>
    <EMPID>1</EMPID>
    <EMPNAME>Martin Chadderton</EMPNAME>
    <SALARY>??</SALARY>
    <SALARYq></SALARYq>
    <EMPLMNT_HISTORY>
    <DEVISION>1</DEVISION>
    <FROM_DATE>2011-01-01 </FROM_DATE>
    <TO_DATE></TO_DATE>
    </EMPLMNT_HISTORY>
    </DEPT>
    Your solution works perfectly for <SALARY>, but how would you suggest also to deal with <TO_DATE> ?
    Massive thanks for your help!
    N.B. Just to emphasise, in my case I have 3 levels (complexType > complexType > complexType) and many elements and I would like to know if there is any generic option to say
    to remove all the empty elements from the result, as it causes to the SSJ (Systinet) Webservice to crash.

  • How to delete empty tags after xml-import

    Hello collegues,
    I'm totally new in this forum so excuse me if I make a mistake, but I've a little question.
    I've imported text and images with a xml-import but sometimes empty tags (the colored invisible blocks) are in my text, with the result that I can't Find/Change on double-returns.
    Does anybody know an awnser to this matter? I would love to write an apple-script that will find/change this so i don't have to look after all my pages.
    Thank you very much in advance.

    ThePictureCreator wrote:
    ...I can't Find/Change on double-returns.
    What's your search query? I think you should be able to, with either a grep find of "\r+" or a normal text find of "^p^p". InDesign pretends like the tag-holding characters aren't there for the purpose of search. But you will lose the empty elements along with the extra returns. Maybe that is the problem?
    Jeff

  • How can we get Empty screen as a output list

    Hi Experts,
      when executing the program I want to display an empty screen (as a output list) instead of error message . How we can do? let me know.
    Thanks in advance.
    Silviya T

    Hi Thomas,
    Is u have such a requirement either u can use a sucess message i.e. type s with no text.
    REPORT ZSAC_TEST1 message-id 00.
    message s000.
    Or try using this
    write:/ 120 '.' .
    the o/p screen looks like blank.
    Hope this helps U.
    Regards
    Sachin Dhingra

  • Getting empty namespace (xmlns="") in output of XSLT

    Hi,
    I am trying to copy data from an input XML to output using XSLT in ESB 10.1.3.4. But empty namespaces are getting added to some tags.
    Input:
    <Root>
    <Node>
    <Parent1>
    <Child1>
    <Child2>
    <Child3>
    </Parent1>
    <Parent2>
    <Child1>
    <Child2>
    <Child3>
    </Parent2>
    </Node>
    </Root>
    Expected Output:
    <NewNode xmlns="http://www.somenamespace.com">
    <Parent1>
    <Child1>
    <Child2>
    <Child3>
    </Parent1>
    <Parent2>
    <Child1>
    <Child2>
    <Child3>
    </Parent2>
    </NewNode>
    Actual Output:
    <NewNode xmlns="http://www.somenamespace.com">
    <Parent1 xmlns="">
    <Child1>
    <Child2>
    <Child3>
    </Parent1>
    <Parent2 xmlns="">
    <Child1>
    <Child2>
    <Child3>
    </Parent2>
    </NewNode>
    Below is the XSL being used:
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns="http://www.somenamespace.com"
    >
    <xsl:template match="/">
    <NewNode>
    <xsl:copy-of select="/Root/Node/*"/>
    </NewNode>
    </xsl:template>
    </xsl:stylesheet>
    How can the empty namespaces at Parent Node be removed/avoided?
    Thanks.

    just to elborate a bit:
    xml nodes' namespaces are actually stored at each node level (however, when displaying they can be displayed aggregated at the top most possible node level to improve readability)
    copy-of doesnot change the namespace when copying nodes from source to target.
    In this case you need to copy, changing the name space - so if you use for-each and copy tags to copy the Parentn and Childn nodes, you would get the result xml with the appropriate namespaces.
    Regards,
    Shanmu.

  • Ddeleting the Second Row tag in XML output

    Hi All,
    When I run the following query:
    select dbms_xmlgen.getxml('select wo.work_order_no,
    cursor(select regacc.work_order_no, regacc.work_order_task_no, regacc.regulatory_account_no
    from sa_work_orde_reg regacc
    where regacc.work_order_no = wo.work_order_no) Reg_Test
    from sa_work_order wo') xml
    from dual;
    I get the following output:
    <?xml version="1.0"?>
    <ROWSET>
    <ROW>
    <WORK_ORDER_NO>1000170</WORK_ORDER_NO>
    <REG_TEST>
    <REG_TEST_ROW>
    <WORK_ORDER_NO>1000170</WORK_ORDER_NO>
    <WORK_ORDER_TASK_NO>01</WORK_ORDER_TASK_NO>
    <REGULATORY_ACCOUNT_NO>100.2.1</REGULATORY_ACCOUNT_NO>
    </REG_TEST_ROW>
    </REG_TEST>
    </ROW>
    </ROWSET>
    Now what I need is to delete the second row tag <REG_TEST_ROW>. Is there some function or some other ways to handle this. I will be using this query in DBMS_XMLGEN.newcontext API inside my procedure.
    Thanks for your help in advance.
    Edited by: user33333 on Jun 29, 2010 1:11 AM
    Edited by: user33333 on Jun 29, 2010 1:19 AM

    Hi,
    Here are some options...
    1) Using a scalar subquery instead of the CURSOR constructor (provided it's always meant to return a single row) :
    SELECT dbms_xmlgen.getxml(
    'SELECT wo.work_order_no,
            ( SELECT XMLForest( regacc.work_order_no,
                                regacc.work_order_task_no,
                                regacc.regulatory_account_no )
              FROM sa_work_orde_reg regacc
              WHERE regacc.work_order_no = wo.work_order_no ) reg_test
    FROM sa_work_order wo'
    ) xml
    FROM dual;2) Embedding an XSL transformation (yes, again!) to copy all nodes except REG_TEST_ROW :
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="*[local-name()!='REG_TEST_ROW']">
    <xsl:copy select=".">
      <xsl:apply-templates/>
    </xsl:copy>
    </xsl:template>
    <xsl:template match="*[local-name()='REG_TEST_ROW']">
    <xsl:copy-of select="./*"/>
    </xsl:template>
    </xsl:stylesheet>3) Using a simple replace on the serialized output.

  • Report will not generate PDF only the XML output.  View XML icon disabled

    I created a PDF format report.
    When the report completes, View Output shows XML code not the PDF output.
    View XML button is disabled from Diagnostic on view request screen.
    Any thoughts. All settings are the same as when other XML to PDF reports are created. Not sure why this one is not working.
    Thanks

    I'm afraid this is not an installation issue, it rather sounds and application server one, at the operative level.
    I suggest you to post your thread at the Fusion Middleware or Developer Tools forums.
    You didn't provide any OS nor Oracle / AS version, I suggest you to specify this information when posting in future threads.
    ~ Madrid.

  • Field of a table is not getting populated correctly in xml file.

    Hi Experts,
    I have an issue.
    I transfer a ABAP table as an XML messgae on to application server.
    BUt the correct format is not comming on Server.
    Eg: i have a filed in table as /abc/def this field is getting populated on xml messgae as -abc-def
    How do i solve thi sproblem.
    Inouts are highly appreciated.
    Regards,
    Varun

    Hi,
    Check following will helpul
    http://blogs.oracle.com/jdevotnharvest/entry/how_to_programmatically_set_focus

  • Arabic characters are not getting displayed in oracle pdf output

    Hi,
    I am trying to print arabic characters in report output but junk characters are getting displayed in output.
    Using 10g report builder, added the arabic labels in report layout.
    Followed below steps:
    1. Set NLS_LANG=ARABIC_United Arab Emirates.AR8MSWIN1256
    2.Set REPORTS_PATH to the system font directoy such as C:\SYSROOT\Fonts
    3.transferred the arialbd.ttf to $ORACLE_HOME/guicommon/tk/admin/AFM
    4.Open uifont.ali under$ORACLE_HOME/guicommon/tk/admin, set the font alias
    entries at [PDF:Subset] section.
    [PDF:Subset]
    Arial...Bold.. = "arialbd.ttf"
    5. open datap462.ppd under $ORACLE_HOME/guicommon/tk/admin/ppd, set the font information like
    *Font Arial-Bold: Standard "(001.001)" Standard ROM
    6.added following entries:
    Add this under the following section
    ## setting for Reports Runtime
    REPORTS_PATH=$ORACLE_HOME/reports/templates:$ORACLE_HOME/reports/samples/demo:$ORACLE_HOME/reports/integ:$ORACLE_HOME/reports/printers:$ORACLE_HOME/
    guicommon/tk/admin/AFM:${REPORTS_PATH};
    export REPORTS_PATH
    b) Add this in the end of the Reports.sh file
    PRINTER=dds62; export PRINTER
    tk90_PRINTER=dds62; export tk90_PRINTER
    tk90_PRINT_STATUS=echo; export tk90_PRINT_STATUS
    =======================================
    After having all these steps, still my report output is coming with junk characters.
    Please help me on this and this is very urgent requirement for me and i am trying on this since 3 days.
    Thanks,
    Harini

    Hello,
    Try to set the Font Subsetting like below in the file uifont.ali
    [PDF:Subset]
    * = "arialbd.ttf"
    If it works after this modification, the problem will be related to the Font Aliasing
    Troubleshooting Guide for Font Aliasing / Font Subsetting / Font Embedding Issues (Doc ID 350971.1)
    Regards

  • IPhoto Trash can is not getting empty.

    I am trying to use iPhoto trash can method.  just click on emtpy trash can.  But it is not working. Recently, I cleaned up my library, and deleted about 13k photos.  When I click empty, shows status bar, and it appears stucked.  I need to force out iPhoto to realize, after restarting it again, that about 100 photos are deleted in about one hour.
    I have tried the sudo rm -R methods but they work only for the system trash can.  Is there any command line I can use to empty really fast the iPhoto one?  There is a lot of wasted space and I have no idea how to recover it.
    Thank you.

    IPhoto can not empty that large a trash
    Open the trash and select all. Make a album with them, right click on the photos selected in the trash and return to the library. Then using the album delete in batches of 100 or so emptying the iPhoto trash for each batch
    LN

Maybe you are looking for

  • Ipod not recognized by itunes with vista!!

    I (amid all of my other troubles with vista) have updated to itunes 7.2 but am not able to get itunes to recognize my 30 GB video ipod. I perused the other discussions and noticed others have had the same problem but never came across an answer. than

  • SAP E - Recruitment Integration with SAP PA ES Module

    Hi all, I have SAP Recruitment Application to be integrated with SAP PA_ES Module (SAP HR) through XI.. Now I have 2 questions;- 1.Does SAP recommends both the above mentioned applications on same SAP BOX ie the system will have both the application

  • CCM schedule job and OCI used

    Hi all, We are using Requisite BugsEye 4.0.5.6 with SRM 4.0.  I'm studying CCM 2.0 to replace BugsEye and need helps from all of you: Q1: I saw a screen in service marketplace presentation, schedule upload catalog job in CCM need to specify Catalog I

  • Key stroke trigger

    Hello all, Forms v 9.0.4 Win XP platform. Forms has triggers that fire at Form, Block, Record, Item level. I know that there is no trigger available that fires at keytroke level. I have a pretty good hunch that it is achievable by using Java to modif

  • HELP! I have a problem running AE CS6!!!

    Well, whenever i start AE. And and it goeas on like "loading", but when it comes on Initalizing MediaCore it stops "loading" and it doesn't start. I double click on it and it crashes. It used to work before! Thanks!