How to edit PO_STANDARD_XSLFO.xsl

How to edit PO_STANDARD_XSLFO.xsl.
this is EBS12.04 purchse order seeded report. i want to edit its some of contents.
Edited by: fassi on Nov 12, 2008 3:09 AM

May be,
you can add a cuf when you stock your file signature path
and you modify the PO_STANDARD_XSLFO.xsl to used this path.

Similar Messages

  • Last CB/ HowTo prevent Page1&2 of PO_STANDARD_XSLFO.xsl showing in the pdf?

    SR: NOT GETTING CONTRACT EXACTLY AS PER THE PROCUREMENT CONTR...
    Customer:
    Apps 11i10.
    QUESTION
    ========
    Implementing Procurement contracts a Procurement contracts Template is created and approved.
    A Contract Purchase Order or a standard Contract Order created. Have the Template referred in the above CPO or SPO.
    Update the variables. Then Generate the PDF ( or preview the PDF)
    We expect that based on the template we should get the PDF but the 1st 2 pages are not requuired.
    How does one prevent Page1 and 2 from displaying in the pdf?
    Research
    =====
    Even though this looks like a customization,
    The way the application works is not desired by customer because they wouldn't like necessarily to see financial details sent to the same person.
    Hence the need to remove/hide page 1 and page2
    We have advised customer as per the Action plan below:
    Support Update ( 03-Jun-2009 10:35 BST)
    follow these steps:
    1. Please refer Note: Note 311813.1 on how to customize the stylesheet .
    - To customize stylesheet navigate to XML Publisher Administrator resp and query for existing stylesheet and make a copy of it by clicking duplicate.
    - After duplicate they can click on download to download the seeded stylesheet and make changes as per their requirement
    - Once the modifications are done, they can upload the style sheet again to XML Publisher by clicking update button.
    2.The piece of code to remove the cover page will be in PO_STANDARD_XSLFO.xsl for Standard PO is shown in the Research section above where we check if contract terms exist. If so we print the cover page.
    3. If you do not want the cover page, then you can make the test value return false so that cover page will not be printed. Some thing like this will suffice your requirement:
    <xsl:if test= " 1= 2 ">
    so that this statement returns always false and hence does not print the cover page.
    4. The same sequence of steps can be followed for each document type you want to modify.
    This is what it was like Originally:
    Filename = https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/Contract_with_PO.pdf
    Page1 and 2 needed to be removed
    BUT only one page is removed.
    Filename = https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/PO_STANDARD_XSLFO_modified.xsl
    Filename = https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/PO_TERMS_121_25431_.pdf
    One Page (page2) is still showing original - page one - is not.
    Assistance:
    We need assistance on how to help customer to remove/hide the first two pages of the pdf. (modifying PO_STANDARD_XSLFO.xsl)
    Thanks in advance.
    This is becomming urgent. Any asisstance is appreciated.
    Edited by: jgwouona on Jul 24, 2009 1:11 AM
    Edited by: jgwouona on Jul 28, 2009 3:13 AM

    Thanks for comming back to me.
    This is the file with the problem:
    https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/Contract_with_PO.pdf
    Customer wants only pages from 3 upwards ( They do not want financial info on pages 1 and 2 to display)
    They expect to see 6 pages (8 minus the first two pages they do not want users to see)
    Working with Note 311813.1 on how to customize the stylesheet
    we tried a <xsl:if test= " 1= 2 "> and only the original first page was successfully removed. The current first page is now also to be removed.
    The finance info on the page needs to be removed too.
    see: https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/PO_TERMS_121_25431_.pdf
    https://gtcr.oracle.com/gtcr-dir/gtcr_1293094812/7493468.994/PO_STANDARD_XSLFO_modified.xsl
    standard ARU original file version is: PO_STANDARD_XSLFO.xsl 115.12.11510.6

  • Need to modify Standard Purchase Order Stylesheet (PO_STANDARD_XSLFO.xsl)

    Hi
    We need to modify Standard Purchase Order Stylesheet (po_standard_xslfo.xsl) . Current stylesheet generating PO like the following.
    <FOR-EACH>
    ITEM_NUM
    ITEM_DESCRIPTION
    <FOR-EACH>
    SHIP_TO_ADDRESS_LINE1 NEED_BY_DATE QUANTITY
    </FOR-EACH>
    </FOR-EACH>
    Based on this, we are getting the output like this:
    Item Num 1
    Itme Description 1
    Ship To: Needed: Quntity
    1234. A1 Avenue JUL 200
    SomeCity, CA 90706
    1234. A1 Avenue AUG 200
    SomeCity, CA 90706
    4567 B1 Avenue JUL 100
    City2 , CA
    Itme Description 2
    Ship To: Needed: Quntity
    5689. c1 Avenue JUL 200
    SomeCity, CA 90706
    Our requirement is like this:
    Item Num 1
    Itme Description 1
    Ship To: 1234. A1 Avenue, SomeCity, CA 90706
    Month: JUL AUG SEP
    Quantity: 200 200 100
    Ship To: VVV4567 B1 Avenue , SomeCity, CA 90706
    Month: JUL AUG SEP
    Quantity: 100 200 100
    So we need to add ship_to group (ITEM/SHIP_TO) .
    How can we use group by item, ship_to..
    <fo:block> <xsl:value-of select="ITEM_NUM"/> </fo:block>
    <fo:block> <xsl:value-of select="ITEM_DESCRIPTION"/> </fo:block>
    <xsl:for-each select="/PO_DATA/LINES/LINES_ROW/LINE_LOCATIONS/LINE_LOCATIONS_ROW">
    <fo:block> <xsl:value-of select="SHIP_TO_ADDRESS_LINE1"/> </fo:block>
    <fo:block> <xsl:value-of select="substring(NEED_BY_DATE,4,3)"/> </fo:block>
    <fo:block> <xsl:value-of select="QUANTITY"/> </fo:block>
    </xsl:for-each>
    </xsl:for-each>
    In the above code I need split the data by ITEM_NUM/ SHIP_TO_ADDRESS_LINE1.
    I am new to xsl-fo. I tried different ways,but ship_to_address_line1 is generating wiith each quanty and need_by_date.
    Please guide me.
    Thank you
    Raju
    Edited by: subbaraju on May 7, 2009 2:36 PM

    Hi Chandra
    Thank you very much for your suggestion.
    I tried that way, I created some sample xml file, I created sample rtf file and I generated xsl-fo file. I copied the part of code into my PO_STANDARD_PO.XSL. I am getting some error.
    I noticed PO_STANDARD_PO.XSL is xsl version 1.0 and the generated sample data is with xsl version 2.0.
    The generated code is using “for-each_group”, “sum()”, “current-group()” etc. Is these functions will work in xslt 1? Or do we need to code different way?
    We are in Oracle APPS 12.0.4.
    Thank you
    Raju
    Edited by: subbaraju on May 26, 2009 11:56 AM

  • URGENT: help me to update PO_STANDARD_XSLFO.xsl

    Hi we need the standard PO out put with our company logo and name.
    For that I would like to insert our Company logo and name into the standard template PO_STANDARD_XSLFO.xsl, I tried to upload our own template to "Standard Purchase Order Stylesheet" in xml publisher administrator, but the update option has disabled in the template page.
    Please suggest how can I include an image and a name into the standard template PO_STANDARD_XSLFO.xsl or else please let me know how can I upload my own xsl template to "Standard Purchase Order Stylesheet" .
    We are stucked in development due to this problem, please suggest me.
    Thanks&Regards,
    Ravi.

    Extremely sorry about the earlier post.. For your device.. its only possible thru' PC..
    or you may get it done at Nokia Care I think...
    http://www.nokia.co.in/support/download-software/device-software-update#
    --------------------------------------------------​--------------------------------------------------​--------------------------------------------------​--If you find this helpful, pl. hit the White Star in Green Box...

  • How to edit template for report generator in stimulus profile editor in Veristand 2011?

    How to edit template for report generator in stimulus profile editor in veristand 2011?
    We are using Veristand 2011.When we run any sequence in stimulus profle editor,we get test results in form of ATML file.
    We want to customise the template for this test result generation as per our requirement.
    For example:
    Test case No.: Description of test case.
    Objectives: Explanation of objectives.
    Result: Passed/ Failed.
    Graph: If any.
    Please suggest how to do this.

    You cant really change too much in the report, you can customize TRML.xsl which is created every time in the Test Results\UUT 1 folder and that would give you some flexibility on what is shown. I dont know what a xsl is actually able to do in terms of composing data from multiple files (if at all possible) but it definitely allows you to change the visual format of the existing xml data.
    Otherwise I modified the xsl to customize the look of the xml report when opened in a browser to have less clutter and some coloring on the Pass/Fail but, the reports are XML files anyway so it's easy to extract data out of them and you can probably write your own report creation tool to compose the report in whatever format you like.

  • Customize PO_STANDARD_XSLFO.xsl file

    Hi,
    I have a follwing problem:
    I customized PO_STANDARD_XSLFO.xsl and created XX_PO_STANDARD_XSLFO.xsl file where I add logo company and remove some informations on Template.
    Then I change Documents Types (PO Responsability / setup / purchasing / document types / select "Standard Purchase Order") and Set my customization file (XX_PO_STANDARD_XSLFO.xsl).
    When I open PO module in English language the process load my customization Template but when I open it in Portugues language the process load core Template.
    Ex : PO_ORG_PO_NUMBER_US.pdf (load custom Template)
    PO_ORG_PO_NUMBER_PTB.pdf (load core Template)
    And when I open PO Module in both language (US and PTB) both is set the same Template (XX_PO_STANDARD_XSLFO.xsl) on Document Types/ Standard Purchase Order configuration.
    Is possible that I miss some step in this process ?
    Anybody had the same problem ?
    Could redirect answers for [email protected] email ?
    All suggestions and help are welcome.
    Thanks a lot.
    Edited by: user9054666 on 02/08/2010 07:57

    Hi,
    I have a follwing problem:
    I customized PO_STANDARD_XSLFO.xsl and created XX_PO_STANDARD_XSLFO.xsl file where I add logo company and remove some informations on Template.
    Then I change Documents Types (PO Responsability / setup / purchasing / document types / select "Standard Purchase Order") and Set my customization file (XX_PO_STANDARD_XSLFO.xsl).
    When I open PO module in English language the process load my customization Template but when I open it in Portugues language the process load core Template.
    Ex : PO_ORG_PO_NUMBER_US.pdf (load custom Template)
    PO_ORG_PO_NUMBER_PTB.pdf (load core Template)
    And when I open PO Module in both language (US and PTB) both is set the same Template (XX_PO_STANDARD_XSLFO.xsl) on Document Types/ Standard Purchase Order configuration.
    Is possible that I miss some step in this process ?
    Anybody had the same problem ?
    Could redirect answers for [email protected] email ?
    All suggestions and help are welcome.
    Thanks a lot.
    Edited by: user9054666 on 02/08/2010 07:57

  • Help formatting date on the PO_STANDARD_XSLFO.xsl page

    I am using the standard PO_STANDARD_XSLFO.xsl and PO_STANDARD_PO.xsd and I want to format the Promised By and Need By dates to be dd-mmm-yy instead of dd-mmm-yyyy and then a time stamp. How can I accomplish this?

    Hi,
    some feeling tells me that you are requesting the wrong forum. I found How to modify PO_STANDARD_PO data definition? and think that this is a better trail to follow up with. Correct me if i am wrong
    Frank

  • How to edit a PDF in Photoshop CS4

    Hi there,
    I'm having some real trouble trying to figure out how to edit a PDF in photoshop cs4. So i need to edit/change text, move things around, that type of thing.
    I work in Windows.
    Could someone give me a bit a low down on how this is done?
    Much appreciated,
    Victoria

    You can open them but you will totally rasterize everything.
    PDFs are not intended to be edited. They are a final format but as
    mentioned you can use Acrobat for some minor text edits or use it to
    extract the images to Photoshop for further editing.
    Bob

  • How to edit JVC/Panasonic/Canon .mod video in Windows Movie Maker then upload to YouTube for sharing

    Quick View:
    Part 1: How to import .mod video to Windows Movie Maker
    Part 2: How to edit the video with Windows Movie Maker
    Part 3: How to upload your video to YouTube
    Know More:
    1. Which Camcorders record video in .MOD type?
    2. What file types are supported by Windows Movie Maker?
    3. What file types are supported by YouTube? 
    Part 1: How to import .mod video to Windows Movie Maker
    Step 1: Load files
    First copy the MOD file from your video camera to your hard drive, then download, install and run MOD Converter, click the "Add Files" button to browse your computer hard disc and load the MOD/TOD video files you want to convert to the program. 
    Step 2: Output Setting
    In the bottom of the main interface, select an output format supported by Windows Movie Maker for each video file and specify a directory on your computer to save the output files. 
    Step 3: Start convert
    Click "Start" button on right bottom of the main interface, you are allowed to start conversion. 
    Step 4: Import converted video to Windows Movie Maker
    Click on "File". Then click on "Import". A window will appear. In the window, navigate to the video clip you converted just now. Then double click on the file. You'll see the icon for the file in your Windows Movie Maker "Collections". 
    Part 2: How to edit the video with Windows Movie Maker
    Step 1: Add transitions and special effects
    In the Movie Tasks pane, under Edit Movie, click View video transitions. 
     Preview transitions by double-clicking them and watching the Preview Monitor. Once you've found a transition you like, drag it from the Video Transitions pane, under Edit Movie pane to the box between two of your clips. This inserts the transition between the two clips. 
    Step 2: Add titles and credits
    If you want to add a title before, after, or on top of a clip, click the clip on the storyboard or timeline.
    In the Movie Tasks pane, under Edit Movie, click Make titles or credits. 
    Step 3: Add Music
    In the Movie Tasks pane in Movie Maker, under Capture Video, click Import audio or music. 
     In the Import File dialog box, click the name of the song you want to use in the background. Then click Import. This adds your song to your collection but does not add it to your video. Drag the song from the collection to the video clip where you want the music to start playing. 
    Step 4: Add narration
    If you have a desktop computer, connect a microphone. Microphones are available from most electronics stores. If you have a portable computer, you can use the built-in microphone. However, you will get a better-quality recording if you connect an external microphone. In Movie Maker, click the Tools menu, and then click Narrate Timeline. On the timeline, click the clip you want to narrate. You can narrate clips one at a time, or you can narrate the entire movie all at once. If you narrate individual clips, you can rearrange them later and keep your narration synchronized. If the narration is too loud or too soft in comparison to the movie, right-click the narration on your timeline, and then click Volume. 
    Step 5: To save your movie to your computer
    In the Movie Tasks pane, under Finish Movie, click Save to my computer. 
     The Save Movie Wizard appears. On the Save Movie File page, type a name for your movie. You can also choose a folder to save it in by clicking the Browse button, but My Videos (the default) is usually the best place to save your movie. Then click Next. On the Movie Setting page, click Next to accept the default setting of Best quality for playback on my computer.
    Movie Maker saves your movie, which might take several minutes. On the Completing the Save Movie Wizard page, click Finish. If Play movie when I click Finish was selected (it is selected by default), the movie will automatically play in Windows Media Player. Now you can watch your videos anytime by opening your My Videos folder and double-clicking your movie. 
    Part 3: How to upload my video to YouTube
    A video file should meet the following requirements so that it can be uploaded to YouTube site.
    1. In an acceptable format: WMV, MPEG4, MOV, AVI and MPEG.
    2. Video length is shorter 10 minutes.
    3. File size is smaller than 1GB. 
    Step 1: Sign up a YouTube account or Gmail account, then click the Upload button on any YouTube web page. See the figure below: 
    Step 2: Type in the information of your video file, including Title, Description, Category and tags. To increase the chances that your video can be easily found, you should put as much information as possible. 
    Step 3: Set this video to be public or private. 
    Step 4: Click the "Upload a video" button. When you see the next window, click the "Browse" button to select the video file you want to upload. Then click the "Upload Video" button to upload it. After the upload is finished, you will see the completion page. See the figure below: 
    Step 5: Click "My Videos" and you will see the video. 
    Know More:
    1. Which Camcorders record video in .MOD type?
    MOD is the video file type used on many digital camcorders, such as the JVC Everio, the Canon FS100 and the Panasonic D-Snap SD-card camcorders. Accompanying the MOD video file, there exists MOI file that stands for the index file for MOD. 
    2. What file types are supported by Windows Movie Maker?
    You can import files with the following file name extensions into Windows Movie Maker to use in your project:
    Video files: .avi, .wmv, .mpeg, .mpg., .asf, m1v, .mp2, .mp2v, .mpe, , .mpv2, and .wm.
    Audio files: .mp3, .wav, wma, .mp2, .aiff, .aif, .aifc,.asf, .au,.mpa, and .snd.
    Picture files:.jpeg, .jpg, .jpe, .png, .bmp, .dib, .emf, .gif, .jfif,.tif, .tiff, and .wmf 
    3. What file types are supported by YouTube?
    YouTube accepts a wide range of video file formats.The video files below are all accepted by YouTube. Some video formats work best and are most compatible with certain computers, software or devices. Windows Media Video (.WMV)
    .3GP (cell phones)
    .AVI (windows)
    .MOV (mac)
    .MP4 (ipod/psp)
    .MPEG
    .FLV (adobe flash)
    .SWF (shockwave flash)v
    .MKV (h.264) If you do not think your current video file format is recognized by YouTube, you may get the best uploading results from converting your file to MPEG4 video with MP3 audio.

    I prefer this
    iPad Manager software, with the assistance of iPad Manager, you can make iPhone ringtone, connect your PC to iPad to backup iPad files to Computer directly, import computer file or folder to iPad. 
    Furthermore, it's easy to convert DVD/video to iPad. 
    This versatile iPad Manager can help you transfer videos, songs, photos from computer to iPad and from iPad to PC in fastest speed. Have a try with this tool and manage your iPad, iPod, iPhone in a much easier way. 
    * Convert DVD/video to iPad
    * Backup iPad files to PC
    * Import computer file or folder to iPad 
    iPod Manager
    iPod Video Converter
    DVD to iPhone Converter
    iPod Mate

  • How to edit an animated GIF in CS6

    I've looked all over but have yet to find a good tutorial on how to edit an existing GIF I've found on the web. What is the best way to take an existing animated GIF and add text or images on it in CS6? BTW there are lots of tutorials on how to create a gif from scratch from a video but they don't help on editing an existing GIF.

    try this tutorials..
    " http://www.yvelledesigneye.com/2012/05/31/cs6-photoshop-tutorials-tips-tricks/ "
    " http://www.pxleyes.com/video-tutorial/photoshop/17095/Use-the-New-Timeline-in-CS6-to-Creat e-an-Animated-GIF-from-a-Video-.html "

  • How to edit a file

    Ok I probably realise that I've missed something in the literature on installing arch somewhere along the way, but I've spent the last 3 hours trying to find how get past this stage to no avail.
    I've managed to realise I have a dhcp connection.
    For DHCP IP
    For this option, you need the dhcpcd package (already available on most installations). To make use of it, edit /etc/rc.conf like this:
    eth0="dhcp"
    INTERFACES=(eth0)
    ROUTES=(!gateway)
    but when i type "edit /etc/rc.conf" I get a colon
    I presume I'm in some kind of editor, but I can't see what I'm supposed to change and what commands to use inside the editor.
    Any help gratefully received

    bzzzz Arch is for competent Linux users - not knowing how to edit a file suggests that you do not fall into this category. If you wish to persevere and use Arch as a learning tool, then you need to be aware that you will be required to do most of the work yourself.
    See the wiki: https://wiki.archlinux.org/index.php/FA … se_Arch.3F

  • How to edit the content.opf  file of a FXL EPUB?

    I'm exporting a fixed layout epub and I cannot find out where the content.opf file is and how to edit it.  I'm trying to do the same thing that was done here: Indesign CC 2014 Fixed Layout export
    Can anyone point me in the right direction? I've googled to no end!
    Thanks,

    Please follow these steps to edit your EPUB:
    1. Download Sigil https://code.google.com/p/sigil/downloads/list
    2. Open your EPUB in this editor.
    3. In the book browser view on your left, look up for content.opf file. Edit this file and save your EPUB.
    Regards,
    Pooja
    InDesign Engineering

  • How to Edit information of existing vendors

    Hi All,
    How to edit the information of existing suppliers using Supplier Open Interface Import Program. This information is exists in PO_VENDORS table.
    I have successfully imported new Supplier with Status = NEW and now I want to edit it.
    Can anyone guide/help me ?
    regards
    Sanjay

    Hi Vik & Terry,
    Thanks for your update.
    I want to update Vendor Heder Information , for example, Vendor Type or Bill To & Ship To Location, and Vendor Site Information , For Example, Vendor Address.
    Such task should be accomplished only thru API , not thu Form.
    If you have any idea, let me know.
    regards
    Sanjay

  • How to edit a report based on Stored procedure in Deski

    hi all,
    We have a report based on a stored procedure in Deski format.I can see the sp name it is using under View Data >definition but cannot figure out which database or server it is pointing to .
    Also ,please let me know how to edit/change the sp it is pointing to.
    Thanks

    Hi
    When you click on View Data, at bottom click on Edit button
    It will prompt a connection details tab wherein you can view and modify the connections
    Nik

  • How to edit the records in error stock.

    Hi Experts,
                 i have error records in error stack and the remaining records are loaded successfuly . here my doubt is how to edit the records in error stack because its not giving the edit option .
    i want to get the edit option means i need to delete the request in target r wt ?
    and there are two more targets is there below this process .
    Advance Thanks.
    Regards
    SAP

    HI
    If you have less number records in this request(which you extracted now), delete that request from all the targets and reload again with option Valid records update, reporting not possible.
    this is the option which is recommended.
    follow the below 2 docs as well.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80dd67b9-caa0-2e10-bc95-c644cd119f46?QuickLink=index&overridelayout=true
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/007f1167-3e64-2e10-a798-e1ea456ef21b?QuickLink=index&overridelayout=true
    Regards,
    Venkatesh
    Edited by: Venkateswarlu Nandimandalam on Jan 24, 2012 4:35 PM

Maybe you are looking for

  • Windows 7 Clean Install Crashing. Diagnosed Driver Issue.

    Late 2011 iMac 21" OS X 10.7.5 Fresh OEM Install of Genuien WIndows 7 Professional (Up to date) Windows crashes intermitently while using the machine. *Crash = loss of video / power The machine will run for days without issue if no user input is bein

  • Website program for mac

    Hello everybody, I'm looking for a program to make a website. I wanted to make it in flash, but I'm getting the idea that mac and flash hates each other. Are there any suggestions? I'm not at computer wiz, I'm not stupid, but lets pretend I am. An ea

  • HT1363 My 120 GB ipod classic has a white screen that I cant get off. What can I do to fix this problem

    My 120 GB ipod classic has a white screen that I cant get off. What can I do to fix this problem

  • Referencing errors

    I am getting numerous referencing errors for this class. If anyone can help to shed some light on why I am getting these errors and how I can fix them, it would be greatly appreciated. Reptile.java:44: calculateAge() in Reptile cannot be applied to (

  • Passing default parameter to WebI for SAP BW cube

    Hi All, Data Source: SAP BW BI Layer: BO 3.1 Here goes my question: We have a cube which contains HR related data. I want to query data in such a way that it gets me data for the current month and year. The time dimension contains a hierarchy called