Modification in PO_STANDARD_XSLFO.xsl

Hi,
I'm try to make a new PO_STANDARD_XSLFO.xsl.
But i have a problem with a field HEADER_SHORT_TEXT.
I have many spaces in the field.
What is the construction rules ?
Thank you in advance

OA_media definitions that worked for me after a long battle with it
for xslfo templates = src="url:{'${OA_MEDIA}/LogoxxxColorName.gif'}"
for rtf template. => url:{'${OA_MEDIA}/LogoxxxxColorName.gif'}
Try it out ..
Thank you,
Tom
www.crootpad.com

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 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.

  • 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

  • Add custom message to PO_DATA for PO_STANDARD_XSLFO.xsl

    Problem Description:
    How do Add a custom message to PO_DATA for use withing PO_STANDAR_XSLFO.xsl stylesheet?
    <fo:table>
    <fo:table-column column-width="180mm"/>
    <fo:table-body>
    <fo:table-row>
    <fo:table-cell>
    <fo:block xsl:use-attribute-sets="cover_page_text" >
    <xsl:choose>
    <xsl:when test="PO_DATA/REVISION_NUM > 0 and PO_DATA/AMENDMENT_PROFILE ='Y' and
    PO_DATA/SIGNED='T' ">
    <xsl:value-of select="PO_DATA/AMMENDMENT_MESSAGE"/>
    </xsl:when>
    <xsl:otherwise >
    <xsl:value-of select="PO_DATA/COVER_MESSAGE"/>
    </xsl:otherwise>
    </xsl:choose>
    </fo:block> </fo:table-cell>
    </fo:table-row>
    </fo:table-body>
    </fo:table>
    I have already built custom_cover_message using application_developer/message forms and generated it.
    I would like to change COVER_MESSAGE to CUSTOM_COVER_MESSAGE.
    Question: How could this be achieved? Any suggestion Please.

    Hi
    I want to know at what instances we can see the amendment message or cover message..Can you please let me know..I am not seeing this for all times..what is the reason
    kp

  • Anyone can help?Trying to know the name of a Contract Terms xsl template

    I am trying to change some of the data fields in a Contract. It is not in the Contract Terms part, but in the first page, when I view the Contract via 'Purchase Order' Form > Terms > View Contract Terms and then select Preview Contract. There appears to be three parts, the first page that has the Contractors name, address, tele and email, then the PO on the next page then the Contract Terms on the following pages. It is the address data on the first page (which is taken from the 'Bill-To' on the PO) that I am trying to get from another data source (the DFF on the PO).
    1) What is the name of the xsl template for this first page?
    2) In order to customise this first page, to bring further data into the XML, how is this possible? I understand that the XML is created 'on the fly' and its not possible to obtain this, but is there any way of customising the fields that are put into this XML?
    prasanna
    Edited by: prasamb on Jul 27, 2009 7:58 AM

    xsl template is PO_STANDARD_XSLFO.xsl
    u must know how to code in xsl also
    u can not modify seeded xsl ,so you need to create new xsl-fo template
    Thanks
    Rahul

  • XSL Mapping Query

    Dear Collegues,
    i am  doing  Simple xsl transformation ,
    source xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!Sample XML file generated by XMLSpy v2006 sp2 U (http://www.altova.com)>
    <ns0:Request xmlns:ns0="http://sap.com/xi/demo/httpxsd">
         <CARRID>LH</CARRID>
         <CONNID>0400</CONNID>
    </ns0:Request>
    XSL file
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <!-- <xsl:output method="xml" indent="yes"/>  -->
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="/">
          <ns0:ZSYNCCONNECTIONDET xmlns:ns="urn:sap-com:document:sap:rfc:functions">
             <carrid>
                 <xsl:value-of select="/ns0:Request/CARRID"/>
             </carrid>
             <connid>
                  <xsl:value-of select="/ns0:Request/CONNID"/>
             </connid>
          </ns0:ZSYNCCONNECTIONDET>
    </xsl:template>
    </xsl:stylesheet>
    when i execute the xsl progtram i am getting the output without the values ,
    output:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:ZSYNCCONNECTIONDET xmlns:ns0="urn:sap-com:document:sap:rfc:functions">
         <carrid></carrid>
         <connid></connid>
    </ns0:ZSYNCCONNECTIONDET>
    any suggestions?
    Regards
    shekar chandra

    > Hi Henrique,
    >
    > It is not the "0" alone what he missed, the
    > he namespace itself is wrong. But irrespective of
    > that, as per my above message, if he ensures that the
    > namespace of Input XML is used in the map, then it
    > would work perfectly.
    >
    > Regards
    > Vishnu
    Vishnu,
    You were right in the part that not only the 0 is missing, but the namespace is not wrong, since he needs it to define output message's namespace. The point is that he has forgot to define input namespace and has used the same prefix for input and output.
    Chandra,
    For correction, you should add that 0 to ns (so it's ns0) and add the namespace&prefix for the input message, and use this other prefix for refering to the input fields.
    In order to don't get confused, you should use prefixes that say directly which message you are refering to. Your xslt could be like (modifications in bold):
    XSL file
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" <b>xmlns:input="http://sap.com/xi/demo/httpxsd"</b>>
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="/">
    <<b>output</b>:ZSYNCCONNECTIONDET xmlns:<b>output</b>="urn:sap-com:document:sap:rfc:functions">
    <carrid>
    <xsl:value-of select="/<b>input</b>:Request/CARRID"/>
    </carrid>
    <connid>
    <xsl:value-of select="/<b>input</b>:Request/CONNID"/>
    </connid>
    </<b>output</b>:ZSYNCCONNECTIONDET>
    </xsl:template>
    </xsl:stylesheet>
    Regards,
    Henrique.

  • Customize Standard Purchase Order template

    We have requirement to customize the 'Standard Purchase Order Stylesheet', XSL template. I am trying to follow the below approach;
    1. Use standard oracle template 'PO_STANDARD_XSLFO.xsl' and customize it as per client requirements.
    2. Create a template definition 'XX Custom Purchase Order stylesheet' similar to 'Standard Purchase Order Stylesheet' in 'Purchasing' responsibility and upload my custom template.
    3. Navigate to Purchasing Super User > Setup > Purchasing > Document Types > 'Purchase Order Standard' > Update Document Type layout > replace 'Standard Purchase Order Stylesheet' with 'XX Custom Purchase Order stylesheet'.
    Please let me know if i have missed any steps.
    Appreciate your time.

    Another approach is to create a new RTF using the tags generated by the PO Output for Communication program. The tags are generated by the columns in the PO_XXX_XML views.
    Sent from my iPhone

  • How to get Information Template fields to Standard Purchase order Document.

    Hi Guy's
    I Created Information Templates to capture extra information to suit our business needs. But i dont know how to get populate those information into Standard Purchase order docuemnt. After Some research I found that we have to customize the PO_STANDARD_XSLFO.xsl. But i did not get how to get those information.
    If any one know knows or has done this type of customization let me know asap
    Thanks in advance
    Thanks & Regards
    Palakondaiah.U

    Hi,
    I resolved this as following :
    Since, i needed the Manufacturer Serial no. to be fetched in custom field at item level ( Enhanced via EEWB the item  ) , the moment there is a product  available in the sales doc header field.
    I wrote  badi implementation for definition : CRM_ORDERADM_I_BADI and utilized method  : CRM_ORDERADM_I_PRODUCT_DETERM . This method's signature if you check makes me available the header, item guids along with the product available in the field even before i save the sales document. There i fetch the serial number of product from custom table and then poulate the serial no. field in customer_i extension as follows:
      LS_CUSTOMER_I_COM-ZZCUSTOMER_I0803 = LV_MFR_SLNO.
      LS_CUSTOMER_I_COM-REF_GUID    = IV_ITEM.
      LS_CUSTOMER_I_COM-REF_HANDLE  = '0000000000'.
      LS_CUSTOMER_I_COM-MODE        = 'A'.
      APPEND LS_CUSTOMER_I_COM TO LT_CUSTOMER_I_COM.
      LS_FIELD_NAME_CUSTAB-FIELDNAME = 'ZZCUSTOMER_I0803'.
      APPEND LS_FIELD_NAME_CUSTAB TO LT_FIELD_NAME_CUSTAB.
      CALL FUNCTION 'CRM_CUSTOMER_I_MAINTAIN_OW'
        EXPORTING
          IS_CUSTOMER_I_COM    = LS_CUSTOMER_I_COM
    *        IV_EXTERNAL_CALL     = 'X'
        CHANGING
          CT_INPUT_FIELD_NAMES = LT_FIELD_NAME_CUSTAB
        EXCEPTIONS
          ITEM_CHANGE_ERROR    = 1
          ITEM_CREATE_ERROR    = 2
          ERROR_OCCURRED       = 3
          OTHERS               = 4.

  • 12.1.1 PO Output for Communication errors all POs created after upgrade

    Hi All -
    We are in the middle of upgrade testing and have encountered a critical issue with "PO Output for Communication (POXPOPDF)." All POs created after the upgrade are completing with error. We are able to generate pdf output for POs generated in 11.5.10.2 before the upgrade. This error is occurring even with seeded "PO_STANDARD_XSLFO.xsl" template as well.
    The log file has the following message towards the end.
    getArchiveOn(): APPROVE
    getArchiveOn()=APPROVE m_viewOrCommunicate=Communicate
    getArchiveOn(): APPROVE
    After calling genDocThu Jan 28 12:51:47 EST 2010
    Adding the blob to vector
    java.lang.NullPointerException
    rolling back the complete program
    PO is getting archived properly, so it is definitely an issue with document generation. We have had a SR logged for over three weeks, but there has been not much progress on this. Support has logged a new bug for this. We are unable to view bug transcript, so I am not certain as who is working this bug.
    Any help or pointers will be much appreciated.
    Thanks
    Abhishek

    Pl see if MOS Doc 433600.1 (PO Output for Communication Fails When Item Description Contains Special Characters) is relevant in your case. The error message is similar to your case.
    HTH
    Srini

  • How can we Customize  output of "PO Output for Communication" Program?

    How can We Customize Format of the output of "PO Output for Communication" Program.
    Executable is "POXPOPDF" Execution File name is "PoGenerateDocumentCP" which is a java program.
    "PO Output for Communication Program" is used to generate DRAFT PO details in pdf Format to go with Workflow Notification for PO Approval.
    Regards,
    Muhammad Usman

    Infact we need to Change Format/data of the pdf file wich comes with Workflow Notification PO "Response Required for PO Approval".
    I the pdf file attached is generated by "PO Output for Communication" Concurrent Program.
    Executable is "POXPOPDF" Execution File name is "PoGenerateDocumentCP" which is a java program.
    This prgram uses the following files to generate pdf output of draft PO output.
    DATA FILE:
    PO_STANDARD_PO.xml
    PO_STANDARD_PO.xsd
    TEMPLATE:
    PO_STANDARD_XSLFO.xsl
    I need to know any visual layout editor available to change contents/layout/data of this pdf.
    Regards,
    Usman
    Edited by: user10518960 on 01-Feb-2013 07:18

  • URLPortlet with dynamic HTML pagenames

    I'm apologize for the long message.
    We've built the set of portlets (>10) using provider.xml and URLPortlet. With this we have succeed to load fixed name files from the application server. Those portlets are shown on PageA, PageB and so. All those pages are called from separate menu portlet (not sure is it navigation bar or menu portlet, not big deal anyway).
    Provider.xml defines corresponding set of portlets as follows: PortletA calls FileA.html, PortletB calls FileB.html, etc. Like this:
    <portlet class="oracle.portal.provider.v1.http.PortletNodeHandler">
    <id>2</id>
    <name>PortletB</name>
    <title>Portlet_B</title>
    ... <renderer class="oracle.portal.provider.v1.RenderManager">
    <showPage class="oracle.portal.provider.v1.http.URLPageRenderer">
    <contentType>text/html</contentType>
    <pageUrl>http://hostname/PageB/FileB.html</pageUrl>
    <filterType>text/html</filterType>
    <filter class="oracle.portal.provider.v1.http.HtmlFilter">
    <headerTrimTag>end_of_header</headerTrimTag>
    <footerTrimTag>start_of_footer</footerTrimTag>
    <baseHRef>http://hostname/PageB/</baseHRef>
    <secBaseHRef>http://hostname/PageB/</secBaseHRef>
    <convertTarget>false</convertTarget>
    </filter>
    </showPage>
    </renderer>
    </portlet>
    Those portlets are called as pages as follows: http://simba/pls/portal30/url/page/PageA, http://simba/pls/portal30/url/page/PageB and so on.
    All this works fine so far.
    The FileA.html calls a set of html files and/or jpg-images located in same directory as the parent file. Child files are named like FileA_123456.html, FileA_126523.html, FileA_129834.html referring to FileA.html, FileB_120934.html referring to FileB.html and so on. Those files are converted to url link as follows: http://simba/pls/portal30/url/page/PageA/FileA_123456.html, http://simba/pls/portal30/url/page/PageA/FileA_126523,html and so on.
    The last one doesn't work. The URLPortlet doesn't accept wildcards at all. So, while applicating the url http://simba/pls/portal30/url/page/PageA/FileA_123456.html the result is as same as applicating the plain http://simba/pls/portal30/url/page/PageA.
    I think the URLPortlet doesn't accept parameter passing and wild cards in provider.xml at all. Is this correct? As far I know, the source code of URLPortlet is not public (jar archives includes only class files).
    Is it possible to implment this by modification of default_mit.xsl or provider.xml? Or do we have to write the whole application from scratch?
    We can't embedd html-files in to database in this phase. We can't either combine all FileA files to one flat file, like FileA.
    Names like FileA, FileB etc. are fixed but the names of child files, like FileA_126523.html are not fixed (number varies).
    I can e-mail you more detailed description when neccessary.
    Thanks,
    Jari.
    null

    Problem still living...
    Source code is available in the same package. We have to make this modification by ourselves.
    Provider.xml doesn't accept wildcards but we are going to use .../pls/portal30/schema.package.procedure?param_name=param_value URL to call modified urlportlet procedure.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jari Soininen ([email protected]):
    I think the URLPortlet doesn't accept parameter passing and wild cards in provider.xml at all. Is this correct? As far I know, the source code of URLPortlet is not public (jar archives includes only class files).
    ...<HR></BLOCKQUOTE>
    null

Maybe you are looking for