customization of report output for Communication with rtf custom model-IN.

Hi all

I'm working on the output PO for Communication report purchase R12. I have to add a custom report template. To do this, I followed the steps below...


(1) download the xml data file Standard to set data Source Data Standard purchase order (PO_STANDARD_PO.xml)
(2) model rtf created, based on the data in the xml file that I had taken the definition of data
3) has created a custom template for the definition of standard data with this provision of the rtf.

(4) makes configuration changes in the tab control purchase and the purchase of Options of Types of documents.

In the setup of purchase Super User RESP, I did the below configurations

(a) organizations-> Purchasing Options - > output Format to the Document Format in the tab control in PDF format
(b) procurement-> Types of documents--> and given of my custom here layout

When I run this report ended with error as Exceptionjava.lang.Exception: error during PDF generation: null


Please me advice how to proceed further or have you missed all the other things


Kind regards
Goussard

for this, a patch is need to apply, we have applied the patch and problem solved.

The metalink note I mentioned is * 1192234.1*

Thanks for the update and for sharing the solution!

Tags: Oracle Applications

Similar Questions

  • How to check if "PO output for communication" uses XLM or OracleReports

    I need to change the purchasing document "Exit IN. for communication", but I must first identify if it uses XML Publisher report or reports of the Oracle.
    How can I check that using the client?

    Any help is welcome.

    Rodrigo

    Hello

    OK, here's what I did to customize the presentation of PO:

    1 create new templates in BI Publisher:

    1.1 Please download the original models:
    In my evolution, I used the original models of Oracle as a starting point. If you get their first:

    Logon with respo XML Publisher administrator and navigate to 'Models' > search model whose name "Standard purchase order Stylesheet" and click on it in the result of the research. Click the download link to download the file .xls on your local drive. You can repeat that for all other models that I mentioned earlier, depending on which layout you want to change.

    I do not recommend to change the original files. In case of problems you can always return to the original version of Oracle.

    1.2 now to create your own templates:
    In XML Publisher administrator, you can create a new template. As model name, use a meaningful name with a prefix such as "XX" or something that you usually use for your own developments.

    The rest of the fields in the template definition must be equal to the standard models (so just copy & paste the values from there). And you can download the original .xsl file to the beginning.

    2 let know to use your own XML Publisher templates:

    connection with a PO administrator/super user responsibility:
    2.1 (by purchase) > Setup > organizations > Options purchases > control tab > set "Output PO Format" = PDF
    2.2 (by purchase) > Setup > purchases > Document Types > find the 'Purchase order - Standard' Document Type > define the presentation of the Document Type = "XX purchase order Stylesheet" (put the name of your custom here template!)

    Repeat step 2.2 for other Types of documents, such as agreements to cover and if necessary press coverage.

    3. test:
    Now try the PO output for communication. If everything has worked, you should see a purchase order as a PDF with the same layout as before. Now it's time to start customizing the layout.

    4 customize the page layout:
    You must change the XSL templates. You need some knowledge of XSL - FO, but with some programming experience little, you will have the concept quite easily. In fact, the XSL - FO offers many possibilities to model your page layout.

    BUT: Change the XSL template to change your "LAYOUT" only, not the data of the report part. Of course you can text coded hard and calculations in your XSL, but dramatic changes of the portion of data are not really possible with this.

    If you want to do, then search on Metalink, there is a document that explains how to customize the data for printing of PO. I don't have the Note in his hand right now...

    BTW. XML Publisher is the former name of the product, Oracle has renamed it BI Publisher. In EBS, it is still often referred to as "XML Editor". You can see the two names as synonyms. You pay more attention to the version of BI Publisher, which is integrated into EBS is different from what you can have as a stand-alone versions.

    Best regards
    David.

  • different output for max() with prescription and over-the-counter

    with t1 as 
    (SELECT 'case2' AS promo_id, to_date('8/20/2012','MM/DD/YYYY') as promo_start_dt, to_date('8/24/2012','MM/DD/YYYY') as promo_end_dt, '30' as qty from dual
       UNION
      SELECT 'case2' AS promo_id, to_date('8/26/2012','MM/DD/YYYY') as promo_start_dt, to_date('8/27/2012','MM/DD/YYYY') as promo_end_dt, '40' as qty from dual
       UNION
      SELECT 'case2' AS promo_id, to_date('8/27/2012','MM/DD/YYYY') as promo_start_dt, to_date('8/29/2012','MM/DD/YYYY') as promo_end_dt, '40' as qty from dual
      )
      select t1.*, max(promo_end_dt) over(partition by promo_id) max_val from t1
    
    promoid    promo_start_dt    promo_end_dt  qty     max_val
    case2      8/20/2012       8/24/2012           30     8/29/2012
    case2      8/27/2012             8/29/2012           40     8/29/2012
    case2      8/26/2012            8/27/2012           40     8/29/2012
    
    but why this below query is giving different output, the below query should also return the same output, adding order by promo_start_dt is giving different output
    
    with t1 as 
    (SELECT 'case2' AS promo_id, to_date('8/20/2012','MM/DD/YYYY') as promo_start_dt, to_date('8/24/2012','MM/DD/YYYY') as promo_end_dt, '30' as qty from dual
       UNION
      SELECT 'case2' AS promo_id, to_date('8/26/2012','MM/DD/YYYY') as promo_start_dt, to_date('8/27/2012','MM/DD/YYYY') as promo_end_dt, '40' as qty from dual
       UNION
      SELECT 'case2' AS promo_id, to_date('8/27/2012','MM/DD/YYYY') as promo_start_dt, to_date('8/29/2012','MM/DD/YYYY') as promo_end_dt, '40' as qty from dual
      )
      select t1.*, max(promo_end_dt) over(partition by promo_id order by promo_start_dt) max_val from t1
    
    giving output as 
    
    promoid    promo_start_dt    promo_end_dt  qty     max_val
    case2      8/20/2012       8/24/2012           30     8/24/2012
    case2      8/27/2012             8/29/2012           40     8/27/2012
    case2      8/26/2012            8/27/2012           40     8/29/2012

    Hello

    This is the expected behavior. Analytical functions still work on the lines in the order specified in the function order_by_clause and in the specified partition.

    So, when you treat the first row if ORDER BY is specified, it will calculate the function based on the first line, on the second, based on the first and the second on the third based on the three rows.

    If you do not ORDER BY then the analytical function is calculated according to the whole score.

    that is to say:

    WITH mytest AS (    SELECT 'A' p, LEVEL n
                          FROM DUAL
                    CONNECT BY LEVEL <= 10)
    SELECT p, n, MAX (n) OVER (PARTITION BY p) max_n
      FROM mytest;
    
    P          N      MAX_N
    - ---------- ----------
    A          1         10
    A          2         10
    A          3         10
    A          4         10
    A          5         10
    A          6         10
    A          7         10
    A          8         10
    A          9         10
    A         10         10
    
    WITH mytest AS (    SELECT 'A' p, LEVEL n
                          FROM DUAL
                    CONNECT BY LEVEL <= 10)
    SELECT p, n, MAX (n) OVER (PARTITION BY p ORDER BY n) max_n
      FROM mytest;
    
    P          N      MAX_N
    - ---------- ----------
    A          1          1
    A          2          2
    A          3          3
    A          4          4
    A          5          5
    A          6          6
    A          7          7
    A          8          8
    A          9          9
    A         10         10
    

    Kind regards.
    Al

    Published by: Alberto Faenza January 24, 2013 16:19

  • PO: output for Communication.

    Oracle Apps Version: R12.1.3

    We can print the attachments as well as the purchase order out of communications report.
    (The attachment contains specifications of the provider element record).
    The specification of the attachment to the category of Document type provider while attaching the document to PO.

    Concerning
    Srini

    Text type accessories of the note of the type of provider are printed.

  • no recommendation for accommodation with good customer service?

    Would love to hear any recommendations for two small business Web site hosting. They do not have forms and shopping carts. Thank you.

    Depends on what type of hosting you need to run your shopping carts.

    • Windows IIS (asp.net/msSQL) or
    • Linux (php & mySQL)

    What type of server hosting plan do you need?

    • Shared
    • VPS
    • Dedicated

    And the small details:

    • C Panel or Plesk,
    • Managed hosting
    • Web server space,
    • Broadband bandwidth & storage allotments,
    • IP addresses,
    • Internet domains,
    • e-mail accounts
    • Certificates SSL (https: sockets).

    Nancy O.

  • Using "Exit IN. for Communication" at the exit just XML?

    Hello

    I'm redrawing the existing model of the XML editor used for the formatting of the PO and I was wondering if it was possible to get the output of a purchase order system .xml? I tried to change the output format of competing demand "PO output for Communication" to XML - but when it is run this again tries to generate a PDF file. Is there a way to get this XML output or this application stores its intermediate XML data in a temporary table?

    I go about it completely the wrong way?

    Any help to this much appreciated; I couldn't see anything on Metalink.


    Thank you
    Tim

    We do it:

    1. give the user Core Apps (which needs to be a buyer) to run concurrent demand "PO output for Communications.
    2. Once you have your purchase order, do not approve it_ - leave it as incomplete
    3. go in run a new query > PO output for Communication
    4. Enter the PO number and set: Print selection = gcnew, PO number = incomplete IN. you just created, Test = Debug
    5 the application
    6. in the end, the request will be error
    7. display the wrong job log
    8 do tools > print to open the newspaper in the browser
    9. scroll down until you find the tag. Start the copy from there (including this tag).
    10 stop the copy to the tag (just before begins...
    11 copy the selection
    12 paste the selection into a new text document, but put it in the first line:
    13. at the end of the text that you pasted in (last piece should say.
    14. manually type
    at the end of the text you pasted.
    15 save in an XML file.

    You can then use this XML to connect to XML Publisher...

    I have screenshots in a word doc if you would like to you.

    Of course, I'm also about 4 weeks late on this reply, then you've probably done the job and settled on something else now!

    EDIT: Sorry - just realised it's exactly the same thing as 364177.1 Note!

    Published by: jimr on August 25, 2009 16:19

  • Simultaneous program with RTF/EXCEL output

    Hi all


    I updated java version 7. When I go to the simultaneous program with HTML/PDF output, is the opening.

    But when I display the output of the simultaneous program with RTF/EXCEL, it does not open. I think we have to put something in the Solution Explorer.

    I was able to open before the upgrade and java 6.

    Version of the EBS - 12.1.3

    DB 11.2.0.3

    OS - RHEL5 64 bit

    JRE - 7u25

    Please help me solve the problem.

    Thank you

    SAL

    Hi Sal.

    How do you set Internet Options ask confirmation for file downloads and download file?

    Octavio

  • ORS XML 7.0 report output defaults to RTF format

    Someone had this problem? After you apply the Patching, the default output for XML reports 7.0 RUP is RTF. This must be the changes manually before you run the report in PDF format, to view the report in PDF Format. Suggestions how this default to PDF?


    Thank you, Tyler.

    Hi Tyler, you can go to the definition of the report template and click on "Update" and then change the default output to PDF and save it. It is a new feature of ORS 7.0.

    Thank you!

  • PO for Communication output

    Hi guys,.

    I'm working on a RTF model for the release of PO for Communication, but I need to add a column for tax (amount of recoverable and non-recoverable tax) and a total down.

    <? xdofx:RECOVERABLE_TAX + NONRECOVERABLE_TAX? >

    But how can I get a total of this column?

    I tried to use a rollup and displays the total final at the lower part, but that uses XDOXSLT and I can't use XDOFX with it.

    Did anyone done this before? I'm really stuck.

    Please help.

    Ash.

    I used the translate function to convert text in raw numbers that I could summarize and then in a variable values. I would also check that RECOVERABLE and NON-RECUPERABLE elements exist and take account of the values of the negative income tax (in parentheses).

    Hope that helps.

    See you soon,.
    Dave

  • Script queue CM with output for allocated, running and waiting for process

    Hi all

    Could someone please share the script which gives the result as below:

    Script Manager simultaneous tail with output for allocated, running and waiting for processes within a single script.

    Thanks for your time!

    Kind regards

    You can find a lot of scripts in the old nets.

    Simultaneous treatment - what are the meanings of the Codes in the STATUS_CODE and the PHASE_CODE FND_CONCURRENT_REQUESTS Table columns? [152209.1 ID]
    ANALYZEPENDING. SQL - analyze all applications pending [134033.1 ID]

    https://forums.Oracle.com/forums/search.jspa?threadID=&q=FND_CONCURRENT_REQUESTS+and+query&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001
    https://forums.Oracle.com/forums/search.jspa?threadID=&q=FND_CONCURRENT_REQUESTS+and+time&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001
    https://forums.Oracle.com/forums/search.jspa?threadID=&q=FND_CONCURRENT_REQUESTS+and+STATUS_CODE&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001
    https://forums.Oracle.com/forums/search.jspa?threadID=&q=FND_CONCURRENT_REQUESTS+and+PHASE_CODE&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001

    Thank you
    Hussein

  • I removed Applian freecorder in my programs, but I find myself with a toolbar of community with a button for Freecorder help page. How can I get rid of this, preferably on the entire toolbar

    I installed and now have uninstalleda Applian program (freecorder I think) but find myself with a toolbar of community with a button leading to the theFreecorder help page. I don't want the additional toolbar or button. How can I get rid of him? I tried to remove and reinstall Firefox, but this has not done it.

    Hello

    Please try to go to Tools (or Alt + T) > modules, Extensions , click on the left and if it is listed on the right, delete it. Otherwise, you will need to go to Add/Remove Programs in the Control Panel of BONE and remove it from there.

  • Will be communicating with VTEP and NSX flow controller (for example the NAV VTEP) network vmkernel management?

    Hello

    I have question concerning communication with the controller VTEP and NSX.

    Will be communicating with workflows VTEP and controller within the network vmkernel management NSX?

    Alternatively, it empties the VTEP network? (Network VXLAN?)

    I think it is by the vmkernel management network, as ESXi host with controller NSX need not always have

    VTEP (or Logical switches) segment.

    I thought that it could flow within the segment of NSX controller if it is independent of the normal (communication of host of ESXi and vCenter)

    management vmkernel, but I think that there are restrictions which network of the controller must be in the same segment of layer 2.

    I tried to find some document but nothing of any document clearly states what network port group transmits VTEP and NSX flow controller.

    I'll be very happy if the experts give me answer.

    BR

    As far as I know: you're right - this traffic is via the host management network and a connection routed between controllers it is not currently supported with NSX - v.

  • Report of the Summit with the details below for a record

    Hello

    I'm looking for an answer to my problem:

    We have a report that contains many ~ 60.

    And is not very user-friendly because it is so wide table.

    It is possible to see some less important columns as information additional report below.

    for a single record in the report. For example, the user selects the radio button of the first column and details are updated for this record.

    (if it is possible to group information in tabs)

    Thank you very much for your answers.

    Hello

    Here is an example

    https://Apex.Oracle.com/pls/Apex/Apex/f?p=39006:41

    Create a hidden item which is not protected. In my case the name of the element is P41_DEPTNO

    First report query

    select
    APEX_ITEM.RADIOGROUP(1,DEPTNO,:P41_DEPTNO) AS rg,
    EMPNO,
    ENAME,
    JOB,
    MGR,
    HIREDATE,
    SAL,
    COMM,
    DEPTNO
    FROM EMP
    

    Second report query

    select LOC,
      DNAME,
      DEPTNO
    from DEPT
    WHERE DEPTNO = :P41_DEPTNO
    

    In the second region report defined the elements of the Page to submit your name for the hidden item.

    Create dynamic action

    -event: change

    -Selection Type: jQuery Selector

    -jQuery selector: input [name = f01]

    -Action: Value set

    -Set type: Expression JavaScript

    -Expression JavaScript: this.triggeringElement.value;

    -Selection Type: Item (s)

    -Article (s):

    Then add an another true dynamic action event

    -Action: update

    -Selection Type: region

    -Region:

  • See this document in different IN. from the exit of the PO output for comm

    Hi gurus,

    I created to model costume for the seeded report output po for communication and the configuration of the type of document to point to my model. then I run the simultaneous program and it provides some power, but the customer wants a review so I have applied the changes they asked on my custom template and then run concurrent program again and saw that changes are now applied in the output, but when I tried to click SURVEY > view the document in the window IN. the output always use the unupdated of my custom template version.
    What should I do for that SURVEY > view the document will use the updated model.
    I use R12.


    Thank you.

    To remove the attachment for an existing purchase order, simply open the purchase order (with display) and see > attachments and delete it.

  • Checking the status of communication with NI DAQmx or NI6143

    Hello world
     
    I'm working on checking the status of communication with NI DAQmx or NI6143 in Microsoft Visual Studio 6.0 C++ on Windows XP. The communication situation is checked between the DLL and the NOR-DAQmx/NI6143. I wonder what is the command for the control of communication for NI DAQmx or NI6143, and if there is no code available. Any suggestion or advice is greatly appreciated.

    Thanks in advance.

    There are many examples available on your computer that install with NI DAQmx. For examples in C/C++, follow the steps listed in this white paper:

    http://www.NI.com/white-paper/6999/en

    If you are new to data acquisition, that I suggest using LabVIEW. LabVIEW has several examples to begin to use a data acquisition equipment. To find them, open LabVIEW and select help > find examples... > Input and Output material > DAQmx.

    As a note of clarification, NI DAQmx is the driver used to communicate with your device (NI 6143). You do not communicate with OR-DAQmx itself, but use it to send commands and receive data from your device.

    Cameron T

Maybe you are looking for

  • Problems with AirPort Extreme and Qwest Modem/Router.

    I have a Qwest ActionTec 1000 DSL VDSL2 gateway and want to disable the functions of router wireless and those through direct AirPort Extreme. I know that in the Modem I have to disable the functions of addressing and turn them in the AirPort Extreme

  • How can I block change the names of the song in iTunes?

    Hello I want to change hundreds of names of the song at the same time.  I know that I can change the name of the album etc in INFORMATION, but I don't see an option to change the name of the song. I want to change the names of track 1, track 2, track

  • WiFi does not work after installng Windows XP on Satellite L40 15 G

    Hello My wlan is doesn't seem to work after you install Windows XP Professional on my Toshiba Satellite L40 15 G I downloaded a lot of drivers, but none of them does not seem to work. Help, please! Thanks :) Rui brands

  • Question of replacement hard drive HP s3720y

    Hello I have a HP Pavilion Slimline s3720y with Windows Vista installed.  My hard drive needs to be replaced and I have a Seagate Barracuda 7200.11.  Will this work with my computer?  My plan is to restore my computer to the new hard drive with the s

  • Bluetooth pairing problems

    Hello everyone. I hope that I chose the right place for my question. So I have a diagnostic device that works using a Bluettoth SPP. It works fine on the Android device. BUT when I try to pair it with my BlackBerry 10 device I get the following error