Column value & heading is not displaying in xml publisher report

Hi All,
All Inventories Value Report - Average Costing Standard report copied to cusoom report. Now in rdf I need to add few column like PO Number, Receipt Number, Supplier Number etc.. for this I need Inventory_item_id & organization_id so that I can create the new data modal. But not able to get the Inventory_item_id & organization_id column display in .xml file. Please look and let me koow the solution.
SELECT cost_group,
       item,
       category,
       description,
       uom,
       SUM(STKQTY) STKQTY,
       SUM(INTQTY) INTQTY,
       SUM(RCVQTY) RCVQTY,
       SUM(STKVAL) STKVAL,
       SUM(INTVAL) INTVAL,
       SUM(RCVVAL) RCVVAL,
        inventory_item_id,
       organization_id
FROM(        
SELECT CCG.cost_group COST_GROUP,
       &P_ITEM_SEG ITEM,
       &P_CAT_SEG CATEGORY,
       MSI.description DESCRIPTION,
       MSI.primary_uom_code UOM,
       ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) STKQTY,
       0 INTQTY,
       0 RCVQTY,
       ROUND(
         SUM(CIQT.rollback_qty) *
         DECODE(SUB.asset_inventory,1,CICT.item_cost,0) *
         :pv_exchange_rate/
         :pv_round_unit
       :pv_round_unit STKVAL,
       0 INTVAL,
       0 RCVVAL,
      CIQT.inventory_item_id,
       CIQT.organization_id
FROM   cst_inv_qty_temp CIQT,
       cst_inv_cost_temp CICT,
       mtl_parameters MP,
       mtl_system_items_vl MSI,
       mtl_categories MC,
       mtl_secondary_inventories SUB,
       cst_cost_groups CCG
WHERE  CIQT.qty_source in (3,4)
AND    CICT.cost_source = 1
AND    CICT.organization_id = CIQT.organization_id
AND    CICT.inventory_item_id = CIQT.inventory_item_id
AND    (   MP.primary_cost_method = 1
       OR  CICT.cost_group_id = CIQT.cost_group_id) -- should we split?
AND    MP.organization_id = CIQT.organization_id
AND    SUB.organization_id = CIQT.organization_id
AND    SUB.secondary_inventory_name = CIQT.subinventory_code
AND    MSI.organization_id = CIQT.organization_id
AND    MSI.inventory_item_id = CIQT.inventory_item_id
AND    MC.category_id  = CIQT.category_id
AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
GROUP
BY     CCG.cost_group,
       &P_ITEM_SEG,
       &P_CAT_SEG,
       MSI.description,
       MSI.primary_uom_code,
       DECODE(SUB.asset_inventory,1,CICT.item_cost,0),
        CIQT.inventory_item_id,
       CIQT.organization_id
UNION ALL
SELECT CCG.cost_group COST_GROUP,
       &P_ITEM_SEG ITEM,
       &P_CAT_SEG CATEGORY,
       MSI.description DESCRIPTION,
       MSI.primary_uom_code UOM,
       0 STKQTY,
       ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) INTQTY,
       0 RCVQTY,
       0 STKVAL,
       ROUND(
         SUM(CIQT.rollback_qty) *
         CICT.item_cost *
         :pv_exchange_rate/
         :pv_round_unit
       :pv_round_unit INTVAL,
       0 RCVVAL,
        CIQT.inventory_item_id,
       CIQT.organization_id
FROM   cst_inv_qty_temp CIQT,
       cst_inv_cost_temp CICT,
       mtl_parameters MP,
       mtl_system_items_vl MSI,
       mtl_categories MC,
       cst_cost_groups CCG      
WHERE  CIQT.qty_source in (6,7)
AND    CIQT.organization_ID = :P_ORG_ID
AND    CICT.cost_source = 1
AND    CICT.organization_id = CIQT.organization_id
AND    CICT.inventory_item_id = CIQT.inventory_item_id
AND    (   MP.primary_cost_method = 1
       OR  CICT.cost_group_id = CIQT.cost_group_id) -- should we split?
AND    MP.organization_id = CIQT.organization_id
AND    MSI.organization_id = CIQT.organization_id
AND    MSI.inventory_item_id = CIQT.inventory_item_id
AND    MC.category_id  = CIQT.category_id
AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
GROUP
BY     CCG.cost_group,
       &P_ITEM_SEG,
       &P_CAT_SEG,
       MSI.description,
       MSI.primary_uom_code,
       CICT.item_cost,
        CIQT.inventory_item_id,
       CIQT.organization_id
UNION ALL
SELECT CCG.cost_group COST_GROUP,
       &P_ITEM_SEG ITEM,
       &P_CAT_SEG CATEGORY,
       MSI.description DESCRIPTION,
       MSI.primary_uom_code UOM,
       0 STKQTY,
       0 INTQTY,
       ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) RCVQTY,
       0 STKVAL,
       0 INTVAL,
       ROUND(
         SUM(CIQT.rollback_qty)*
         CICT.item_cost *
         :pv_exchange_rate /
         :pv_round_unit
       :pv_round_unit RCVVAL,
      CIQT.inventory_item_id,
       CIQT.organization_id
FROM   cst_inv_qty_temp CIQT,
       cst_inv_cost_temp CICT,
       mtl_system_items_vl MSI,
       mtl_categories MC,
       mtl_parameters MP,
       cst_cost_groups CCG
WHERE  CIQT.qty_source = 9
AND    CICT.cost_source = 3
AND    CICT.organization_id = CIQT.organization_id
AND    CICT.inventory_item_id = CIQT.inventory_item_id
AND    CICT.rcv_transaction_id = CIQT.rcv_transaction_id
AND    MSI.organization_id = CIQT.organization_id
AND    MSI.inventory_item_id = CIQT.inventory_item_id
AND    MC.category_id  = CIQT.category_id
AND    MP.organization_id = CIQT.organization_id
AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
GROUP
BY     CCG.cost_group,
       &P_ITEM_SEG,
       &P_CAT_SEG,
       MSI.description,
       MSI.primary_uom_code,
       CICT.item_cost,
         CIQT.inventory_item_id,
       CIQT.organization_id
) TEMP
GROUP BY cost_group,
       item,
       category,
       description,
       uom,
        inventory_item_id,
       organization_id
- <CSTRAIVA> 
- <LIST_G_COST_GROUP> 
- <G_COST_GROUP> 
<COST_GROUP>100191</COST_GROUP>  
- <LIST_G_CATEGORY> 
- <G_CATEGORY> 
<CATEGORY>Not Assigned</CATEGORY>  
- <LIST_G_ITEM> 
- <G_ITEM> 
<ITEM>82557653</ITEM>  
<DESCRIPTION>BEARING LINING (GLACIER 100KSA075)</DESCRIPTION>  
<UOM>EA</UOM>  
<STKQTY>6</STKQTY>  
<STKVAL>38934.7</STKVAL>  
<RCVQTY>0</RCVQTY>  
<RCVVAL>0</RCVVAL>  
<INTQTY>0</INTQTY>  
<INTVAL>0</INTVAL>  
<CF_ITEM>82557653</CF_ITEM>  
<TOTQTY>6</TOTQTY>  
<TOTVAL>38934.7</TOTVAL>  
<CF_STKVAL_DSP>38,934.70</CF_STKVAL_DSP>  
<CF_INTVAL_DSP>0.00</CF_INTVAL_DSP>  
<CF_RCVVAL_DSP>0.00</CF_RCVVAL_DSP>  
<CF_TOTVAL_DSP>38,934.70</CF_TOTVAL_DSP>  
</G_ITEM>
</LIST_G_ITEM>
<CF_ORDER />  
<CF_CATEGORY>Not Assigned.</CF_CATEGORY>  
<SUMSTKVALPERCATEGORY>38934.7</SUMSTKVALPERCATEGORY>  
<SUMINTVALPERCATEGORY>0</SUMINTVALPERCATEGORY>  
<SUMRCVVALPERCATEGORY>0</SUMRCVVALPERCATEGORY>  
<SUMTOTVALPERCATEGORY>38934.7</SUMTOTVALPERCATEGORY>  
<CF_SUM_STKVAL_CAT_DSP>38,934.70</CF_SUM_STKVAL_CAT_DSP>  
<CF_SUM_INTVAL_CAT_DSP>0.00</CF_SUM_INTVAL_CAT_DSP>  
<CF_SUM_RCVVAL_CAT_DSP>0.00</CF_SUM_RCVVAL_CAT_DSP>  
<CF_SUM_TOTVAL_CAT_DSP>38,934.70</CF_SUM_TOTVAL_CAT_DSP>  
</G_CATEGORY>
</LIST_G_CATEGORY>
<SUMSTKVALPERCOST_GROUP>38934.7</SUMSTKVALPERCOST_GROUP>  
<SUMINTVALPERCOST_GROUP>0</SUMINTVALPERCOST_GROUP>  
<SUMRCVVALPERCOST_GROUP>0</SUMRCVVALPERCOST_GROUP>  
<SUMTOTVALPERCOST_GROUP>38934.7</SUMTOTVALPERCOST_GROUP>  
<CF_SUM_STKVAL_CG_DSP>38,934.70</CF_SUM_STKVAL_CG_DSP>  
<CF_SUM_INTVAL_CG_DSP>0.00</CF_SUM_INTVAL_CG_DSP>  
<CF_SUM_RCVVAL_CG_DSP>0.00</CF_SUM_RCVVAL_CG_DSP>  
<CF_SUM_TOTVAL_CG_DSP>38,934.70</CF_SUM_TOTVAL_CG_DSP>  
</G_COST_GROUP>
</LIST_G_COST_GROUP>
<SUMSTKVALPERREPORT>38934.7</SUMSTKVALPERREPORT>  
<SUMINTVALPERREPORT>0</SUMINTVALPERREPORT>  
<SUMRCVVALPERREPORT>0</SUMRCVVALPERREPORT>  
<CS_DUMMY>1</CS_DUMMY>  
<SUMTOTVALPERREPORT>38934.7</SUMTOTVALPERREPORT>  
<CF_SUM_STKVAL_REP_DSP>38,934.70</CF_SUM_STKVAL_REP_DSP>  
<CF_SUM_INTVAL_REP_DSP>0.00</CF_SUM_INTVAL_REP_DSP>  
<CF_SUM_RCVVAL_REP_DSP>0.00</CF_SUM_RCVVAL_REP_DSP>  
<CF_SUM_TOTVAL_REP_DSP>38,934.70</CF_SUM_TOTVAL_REP_DSP>  
</CSTRAIVA>

Thanks for your reply.
I did below changes in the CQWP but no luck. Please let me know if any further modification needed.
Thank you!
        <property name="DataMappingViewFields" type="string">{b9e6f3ae-5632-4b13-b636-9d1a2bd67120},Computed;{543bc2cf-1f30-488e-8f25-6fe3b689d9ac},Image;{94f89715-e097-4e8b-ba79-ea02aa8b7adb},Lookup;{fa564e0f-0c70-4ab9-b863-0177e6ddd247},Text;{33f34208-1553-4361-b3ff-26f5da1ae591},Text;{b7ff04a4-a33a-429a-99bd-0ac5367bd189},User;{37cb0520-3169-4bca-9941-1886a5a73f92},DateTime;{6b2c772c-a130-4814-bfd0-d84efb061e3b},TaxonomyFieldType;{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},User;{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f},DateTime;</property>
        <property name="DataMappings" type="string">Editor:{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},Editor,User;|Actors:|Modified:{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f},Modified,DateTime;|Input:|Title:{fa564e0f-0c70-4ab9-b863-0177e6ddd247},Title,Text;|LinkUrl:{94f89715-e097-4e8b-ba79-ea02aa8b7adb},FileRef,Lookup;|ExpiryDate:{37cb0520-3169-4bca-9941-1886a5a73f92},ExpiryDate,DateTime;|Author:{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},Editor,User;|Approver:{f30275e3-0638-451f-bb1f-b5c74ac432ef},Approver,User;|PreRequisites:|DocumentOwner:{b7ff04a4-a33a-429a-99bd-0ac5367bd189},DocumentOwner,User;|Trigger:|RelatedtoGeneralTopic:{6b2c772c-a130-4814-bfd0-d84efb061e3b},RelatedtoGeneralTopic,TaxonomyFieldType;|OpenInNewWindow:|Frequency:|Image:|Output:|Body:|Locallyvalidfor:{31a5c887-10a3-49ca-afa0-97c5679bbda9},Locallyvalidfor,TaxonomyFieldType;|ProcessOwner:|ShortDescription:{33f34208-1553-4361-b3ff-26f5da1ae591},ShortDescription,Text;|Description:{691b9a4b-512e-4341-b3f1-68914130d5b2},ShortComment,Text;|Created:|LinkToolTip:|Mandatory:|ProcessManager:|ImageUrl:{b9e6f3ae-5632-4b13-b636-9d1a2bd67120},EncodedAbsThumbnailUrl,Computed;{543bc2cf-1f30-488e-8f25-6fe3b689d9ac},PublishingRollupImage,Image;|</property>

Similar Messages

  • Displaying xml publisher report from adf page.

    I am using jdev 10.1.3.3
    I have an requirment of displaying an xml publisher report on click of command button.
    any suggestion.how this can be achived.
    according to my understanding.
    if we create a folder in our web server which oc4j in our case.and we transfer the xml report through FTP in that folder.can we able to pick the report from that folder.
    can we display or call that report.please let me know??
    Is that possible.????????????
    any help would be helpfull

    Really appreciate your response. Can you pls give little more details.
    1] Are there any standard API's which I can use to submit XML publisher report from the JSP pages
    2]Is there any sample code snippet for any of the options that I can refer to..or pls let me know the API's, I will check on them
    Appreciate any help

  • How to Insert Image in XML publisher Report

    Hi Forum,
    I have created rtf file for xml report and in this i inserted one Image. When run the request from apps environment and while checking the output in excel format, Image is not displaying..
    Please advice me.
    Thanks & Regards,
    Nag.CH

    Hi;
    What is your EBS and Os?
    Please check below note:
    Image Does Not Display In XML Publisher Excel Output [ID 736897.1]
    Regard
    Helios

  • Can I filter by value which is not displayed in grid columns?

    In excel it is possible to filter by value of measure which is not displayed in the report.
    How can I possibly do this in Performance Point Grid? (in filter by value there I only see the measures in columns).
    Please advise
    Namnami

    I found it is possible to filter by value by changing the MDX in the query tab.
    (I filtered by certain existing value in design, then switched to Query and changed to the measure which is not displayed). I shows up correctly.
    The problem is, once I change the query, I get an error when tring to connect a filter on a grid column:
    "consumer parameter no-longer exists in the consumer webpart"
    The grid looks "frozen"- cannot drill up / down etc.
    How can I filter by value which is not displayed without loosing the ability to attach a filter to the grid?
    Namnami

  • XML Publisher report output in RTF format does not display full page

    Hi,
    We have one XML Publisher report, the output of report in RTF format is not getting displayed in Full Page in normal way (MS Word -->View menu --> Print layout) but we can see full page display when we do MS Word -->View menu --> Outline.
    Appreciate your valuable inputs on this.
    Is this a template issue or any profiles needs to be set.
    Thanks
    Vijay

    Do you have any header and footer on your template?
    If you have any header and footer then try to adjust it as of to display full page.
    Thanks
    Yasar

  • How can i reorder the columns in the do not display section of the interactive report.

    Hi,
    My interactive report contains 185 columns, and the user requieres to build his customized reports with some columns, but the he gets lost between this amount of columns, this would be easier if the columns in the do not display section of the interactive report would be sorted automaticaly, Is this possible?
    Thanks a lot,

    Hi Eva,
    One solution would be to order the column names alphabetically. You can create a JavaScript dynamic action to handle the sorting.
    The shuttle of the IR attribute "Select Columns" have the ID's "apexir_SHUTTLE_LEFT" or the Hidden colums and "apexir_SHUTTLE_RIGHT" for the displayed columns.
    The function you'd need to create would look like:
    var options = $('select#apexir_SHUTTLE_LEFT option');
    var arr = options.map(function(_, o) { return { t: $(o).text(), v: o.value }; }).get();
    arr.sort(function(o1, o2) { return o1.t > o2.t ? 1 : o1.t < o2.t ? -1 : 0; });
    options.each(function(i, o) {
      o.value = arr[i].v;
      $(o).text(arr[i].t);
    var options = $('select#apexir_SHUTTLE_RIGHT option');
    var arr = options.map(function(_, o) { return { t: $(o).text(), v: o.value }; }).get();
    arr.sort(function(o1, o2) { return o1.t > o2.t ? 1 : o1.t < o2.t ? -1 : 0; });
    options.each(function(i, o) {
      o.value = arr[i].v;
      $(o).text(arr[i].t);
    You'd need to find the propper timing for the dynamic action to run, I guess click of the button "Select Columns" would do the trick.
    Regards,
    Vincent
    http://vincentdeelen.blogspot.com

  • My xml publisher report not display chart/graph in r12 apps

    dear all
    my xml publisher report is not showing chart/graph in oracle apps r12.1.1, but it's locally preview fine in MS word
    when i register rtf template in apps it just show data in xml not apply template without chart/graph it's work fine in apps
    please guide me.
    thanks
    Adnan zafar goraya

    Hello Adnan,
    To have the XML Publisher graphs display when started from Concurrent request, the DISPLAY environment variable must be specified.
    Please review the following Note on how to setup the Xserver
    Configuring VNC Or XVFB As The X Server For Applications 11i (Doc ID 181244.1)
    After this is done, you can run once again the concurrent program and check the output.
    Bogdan

  • Div header tag - not displaying correctly

    I thought I had resolved an issue with a div header tag, but - as per a reply in my 'text as gif' thread, possibly not!
    The header contains three images; a logo, a banner (text), and a picture of a castle.  These should display in a  line.
    When I first set it up, I realised that the castle picture was normally ending up below the other two on smaller screens etc. 
    So I changed the dims for my div container from min 760px/max 1260px, to a set width (960px).  I then rejigged the three images so the widths were within 960px, with some to spare for the spacing (total widths of the three are 900: hspacing another 20 pixels).  There is no padding/borders defined.  Therefore the total should be well within the 960 width (?).
    It looks fine on my PC (widescreen); in 3 browsers, using the restore down menu command (ie to make it not full screen), and by  using the Dreamweaver multiscreen preview (phone, tablet, smaller desktop).  It wasn't ideal (as scrolling required), but at least meant the header (and the rest of the screen) displayed correctly, ie in a horizontal line (and then sidebar - content - sidebar).
    If I set my container width much smaller, most of the screen will be green (the body) in big screens.
    If I rejig the dimensions, it's all a bit hit and miss (and why don't the current dimensions work?).
    Do I need to define the width of the header (as well as the container)?
    Help!  Thank you
    http://hertfordcarnival.org.uk/dev/Index.html

    Hi there, I started off using one big image, but it didn't look right with regards to size and placing (ie I wanted the logo on the left edge, the castle on the right edge, etc). When you say slice, what do you mean?  One image in from fireworks, and then ... ? Thanks again
    Date: Wed, 7 Dec 2011 01:37:10 -0700
    From: [email protected]
    To: [email protected]
    Subject: Div header tag - not displaying correctly
        Re: Div header tag - not displaying correctly
        created by osgood_ in Dreamweaver - View the full discussion
    Datafan55 wrote: I thought I had resolved an issue with a div header tag, but - as per a reply in my 'text as gif' thread, possibly not!  Why not just use one big image  then you wont have a problem of with the alignment. Certainly don't use 'vspace' and 'hspace' to position the images. If you want to use 3 seperate images start by setting them us as one complete image then slice it into 3 images. Then use the following css to position the images side by side. #header img If the total sum of the width of the images is the same or does not exceed 960px then the images should be in a nice row side by side. They will actually sit side by side without using 'float' but you'll get a small gap between them which will be added to the sum of the width which will exceed 960px causing the third image to drop onto the next line.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4068499#4068499
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4068499#4068499. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Check box in XML Publisher report not displaying

    Hi,
    In my XML Publisher report , my template contains a checkbox, using forms tools i create that check box and run the report
    but output of check box is not comming becoz,The XML Publisher default PDF output font does not support checkbox.
    can any one give idea to solve this who face same problems;
    Regards,
    venkat

    Hi Venkat
    What version of XMLP are you using ?
    Check the user guide, there is an entry in there describing how to specifiy the check box glyph to be used for checks and unchecked.
    Its will either be set using the UI or thru a config file depending on your version.
    Tim

  • XML publisher report works fine in English environment but NOT in Dutch

    We are using Oracle Reports to generate XML file which will be input for XML Publisher report . Our requirement is to generate report in Dutch (Netherlands) language.
    We developed a report which is working fine in English. Then we copied this RDF file to NL directory also registered concurrent program in dutch language but then it stopped working and gives error.
    Basically it doesn't create any XML output .
    Please help . Its URGENT.
    Thanks in Advance.
    Manoj

    Hi Norman,
    Thanks for the reply, actually my query was failing as it was trying to compare English date format (1-MAY-2007) which was stored in a DFF with Dutch date (1-MIE-2007) database format ,so it was not generating any xml output.
    We have resolved this issue but now we are facing few other issue which are ,
    I have created a template which has a current date field. I inserted current date in Dutch format i,e, (1-juni-2007), but concurrent program output appears with english date format (1-June-2007).
    Same template has the customer name with 'Title' and this also appear in english i.e.Sir , in place of dutch title (Dhr.)
    Is it possible to display .pdf output with
    portrait (first page - Letter to customer)
    and landscape(second page - Invoice data details) styles for multiple customers in one request?
    We can do it for one customer by passing customer id so letter part (portrait output) is out of grouping and only data details (landscape) appear with multiple lines , but when we try to run it for multiple customers in one go , WITHOUT specifying a customer , it FAILS .
    Any help will be highly appreciated.
    Thanks - Manoj, Utrecht

  • XML Publisher Report:how to disappear the column if no data found

    Hi,
    I have a XMl publisher report requirement , the format is tabular lets say with the structure of 4 columns and 10 rows.requirement is to if suppose there is no data for row number 6 the row itself should not appear over the report and the immediate next row should come in place.
    please help me if any one of u has implemented the same.
    Ankit

    Ankit,
    This is almost hard to work although NOT impossible to achieve on the template.
    A little big of PL/SQL genius where all the columns are selected into variables may be used to achieve this, although you will have to manage them accordingly.
    I don't any other way round it.
    Rgds

  • If employee id is the same should not print on the xml publisher report

    Hi Dear,
    I met with one problem and needs some suggestion on the best approach on it. It is a xml publisher report.
    We have multiple rows for the same employee , but for the same employee only the first row needs to print the emplid.
    Do we need to write the if statement , how to get the value of the last row emplid ?
    For example :
    EMPLID EMP_RCD STATE
    1001 0 CA
    1 TX
    Any suggestion is appreciated.
    Thanks,
    Dennis

    I understand your requirement is as follows:
    Requirement:_
    The data is this ->
    EMPLID COLUMN 1 COLUMN 2 COLUMN 3
    EMPLID_01 DATA_01_01 DATA_02_01 DATA_03_01
    EMPLID_01 DATA_01_02 DATA_02_02 DATA_03_02
    EMPLID_01 DATA_01_03 DATA_02_03 DATA_03_03
    EMPLID_02 DATA_01_04 DATA_02_04 DATA_03_04
    And you need report in this format:
    EMPLID_01 DATA_01_01 DATA_02_01 DATA_03_01
    DATA_01_02 DATA_02_02 DATA_03_02
    DATA_01_03 DATA_02_03 DATA_03_03
    EMPLID_02 DATA_01_03 DATA_02_04 DATA_03_04
    Solution:_
    If my understanding is correct, then you can make use of variables
    at start of template set the variable to 0
    *<?xdoxslt:set_variable($_XDOCTX,'PREV_EMPLID',0)?>*
    at the end of each data row, reset the variable
    *<?xdoxslt:set_variable($_XDOCTX,'PREV_EMPLID',EMPLID)?>*
    while printing emplid in that row use IF condition
    *<?if:(xdoxslt:get_variable($_XDOCTX, 'PREV_EMPLID'))!=EMPLID?>*
    The above If condition will print emplid on the row only when there is change in EMPLID, so effectively printing emplid only on the 1st row of data for each employee id.
    Also, you need to ensure that you group by employee id before you print each row.
    Let me know if this works for you.

  • XML Publisher report not printing excel output due to special characters

    Hello,
    I am trying to create a xml publisher report which should display the output in excel. But the program completes with a warning status and the output is displayed as XML instead of excel, with some errors "An invalid character was found in text content. Error processing resource " and i think these errors are due to the special characters(eg: city/province - A Coruña, Cáceres). If i give rownum < 10 in my query, where there are no such characters it works fine and i am getting an excel output.
    Tried changing the XML encoding and it doesn't help (both mentioned below)
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <?xml version="1.0" encoding="UTF-8"?>
    Do anyone have a solution for this
    Thanks in advance
    Edited by: user10317098 on Jan 16, 2012 10:58 AM

    Hi,
    Check this links that might help you..
    https://forums.oracle.com/thread/1018488
    http://docs.oracle.com/cd/E10091_01/doc/bip.1013/e05000/toc.htm
    Here the Exact solution from Oracle
    In the XML PUBLISHER ADMINISTRATOR Resp..
    Click the administration..
    then Click HTML Output
    Then in the Base Image URI Give the url of your application for example
    http://Test.Test.com:8000/OA_MEDIA/
    And then
    Image File Directory give this as per your application setup
    /u01/app/oracle/apps/apps_st/comn/java/classes/oracle/apps/media/
    Thanks & Regards
    Srikkanth.M

  • XML Publisher Report not generating the PDF output.

    Hi,
    I am trying to develop a XML Publisher Report in R12 Vision Instance.
    I have developed the rdf report and concurrent program with XML as output format. Ran the concurrent program and I got the XML output. Based on XML output I have created the rtf template. Using both the template and xml output I have created in Data Definition and Template in XML Publisher Administrator Responsibility. Now I am comming to the concurrent program and running the program, here instead of generating the PDF output it is generating again the XML output and concurrent program completing with warning status.
    When I am trying to do the same in 11i Vision Instance, Concurrent Program completing with normal status and when trying to view the output it is saying "Unable to Publish output for the Processed Request".
    Kindly please help me out in this issue.
    Thanks,
    Manasa.

    Hi Mahesh,
    Here the concurrent programs are not erroring out. It is completing with Warning status and when we click on View Output the output is coming in XML format instead of PDF, this is in R12 Vision Instance.
    In 11i Vision Instance, concurrent program is completing with Normal Status but when we click on View Output it is saying "Unable to Publish output for specified request".
    Thanks,
    Manasa.

  • Pages not displaying properly in Publisher instances as we activated the page from Author

    HI All,
    Pages not displaying properly in Publisher instances as we activated the page from Author. In author it is working well but in Pulisher it is showing first 2 lines of the page and then showing error as
    Apache sling/2.2 Hot Spot ****** Sun OS error
    Please help me on this.IS this issue with the templates or components are we using?

    Ok, then let's go the long way and try to reduce the number of possible root causes:
    1) Is your problem reproducible on this publish? (I suppose it is)
    2) Is it reproducible on other publishs as well, which have received the same page with the same application?
    3) Can you reproduce it on other replicated pages as well?
    4) When you upload a page to such an affected publish via a content package, does this page render correctly?
    5) Does this problem appear on other environments as well?
    6) Do you use dispatcher when you get this result? Or do you get it when you request the page directly of CQ5?
    7) What's the HTTP statuscode when you render this page? You can see it in the request.log of CQ5.
    If you change logging via Felix Console, you don't need to restart the instance.
    kind regards,
    Jörg

Maybe you are looking for

  • Page incorrectly displayed in browser (Was: Please Help)

    Hello all. I have been working on a website in DW CS6 and everything was working well, when all of a sudden, I went to view the pages in a browser and they are completely screwed up.  It looks as though they are not connected to the Styles sheet, but

  • Z77A-GD65 ram and DR. mos problem after 2 years without any HW change or OC!

    Hi guys, i have three Z77A-GD65 from 2 years with the same hardware config, no overclock or others OC settings ....simply default bios settings;  in this last 2 months, not at the same time, all of my 3 mainboards  have the same identical problem. On

  • Help me - Select a Access DB

    Can i execute a query in MY FORM application to anouther DB that is not my? Exemple: I want to make a select to a DB in Access, to put some collumns in my variables in FORMS. How i do that? I'm portuguese, i'm sorry mya written english

  • Ora-6512 error in string appending , plz guide to soleve this.

    declare x varchar2(4000); y varchar2(10000); cursor c is select ename||'----'||to_char(empno) from emp; /*( to_char or no to_char it did not matter)*/ begin open c; loop fetch c into y ; exit when(sql%notfound); --if c%rowcount = 1 then -- x:=y; -- e

  • Some session attributes lost

    hi traversing between different jsp pages, I find that three of the session attributes are lost. While it is set, I can print it and verify that it exists in the session. Is there any limit on the #, or is it something else. thanks in advance babu