Designer6i: About Page template filename Web PL/SQL Applications

how can change the About Page template filename Web PL/SQL Applications
Thank!!!
my e-mail is: [email protected]

Hi,
Have you upgraded Apex?
I assume you use XE EPG.
Have you grant execute privilege on procedure to DAD user ANONYMOUS?
GRANT EXECUTE ON WOLF_22.HELLO_WORLD TO ANONYMOUS;Have you changed wwv_flow_epg_include_mod_local that it allow execute WOLF_22.HELLO_WORLD?
And write schema.procedure at upper case to function.
If you have not upgraded Apex, run as SYS or SYSTEM
CREATE OR REPLACE function FLOWS_020100.wwv_flow_epg_include_mod_local(
    procedure_name in varchar2)
return boolean
is
begin
    -- Administrator note: the procedure_name input parameter may be in the format:
    --    procedure
    --    schema.procedure
    --    package.procedure
    --    schema.package.procedure
    -- If the expected input parameter is a procedure name only, the IN list code shown below
    -- can be modified to itemize the expected procedure names. Otherwise you must parse the
    -- procedure_name parameter and replace the simple code below with code that will evaluate
    -- all of the cases listed above.
    if upper(procedure_name) in (
          'WOLF_22.HELLO_WORLD'
    ) then
        return TRUE;
    else
        return FALSE;
    end if;
end wwv_flow_epg_include_mod_local;
/Regards,
Jari

Similar Messages

  • About Page template filename Web PL/SQL Applications

    How i change the default About Page in Web PL/SQL
    Mi e-mail is [email protected]

    Hi,
    Have you upgraded Apex?
    I assume you use XE EPG.
    Have you grant execute privilege on procedure to DAD user ANONYMOUS?
    GRANT EXECUTE ON WOLF_22.HELLO_WORLD TO ANONYMOUS;Have you changed wwv_flow_epg_include_mod_local that it allow execute WOLF_22.HELLO_WORLD?
    And write schema.procedure at upper case to function.
    If you have not upgraded Apex, run as SYS or SYSTEM
    CREATE OR REPLACE function FLOWS_020100.wwv_flow_epg_include_mod_local(
        procedure_name in varchar2)
    return boolean
    is
    begin
        -- Administrator note: the procedure_name input parameter may be in the format:
        --    procedure
        --    schema.procedure
        --    package.procedure
        --    schema.package.procedure
        -- If the expected input parameter is a procedure name only, the IN list code shown below
        -- can be modified to itemize the expected procedure names. Otherwise you must parse the
        -- procedure_name parameter and replace the simple code below with code that will evaluate
        -- all of the cases listed above.
        if upper(procedure_name) in (
              'WOLF_22.HELLO_WORLD'
        ) then
            return TRUE;
        else
            return FALSE;
        end if;
    end wwv_flow_epg_include_mod_local;
    /Regards,
    Jari

  • Designer6i:  How change About Page template filename Web PL/SQL

    Hi
    how i can change the About Page template filename on Web Pl/Sql
    Thank!!

    Hi,
    Have you upgraded Apex?
    I assume you use XE EPG.
    Have you grant execute privilege on procedure to DAD user ANONYMOUS?
    GRANT EXECUTE ON WOLF_22.HELLO_WORLD TO ANONYMOUS;Have you changed wwv_flow_epg_include_mod_local that it allow execute WOLF_22.HELLO_WORLD?
    And write schema.procedure at upper case to function.
    If you have not upgraded Apex, run as SYS or SYSTEM
    CREATE OR REPLACE function FLOWS_020100.wwv_flow_epg_include_mod_local(
        procedure_name in varchar2)
    return boolean
    is
    begin
        -- Administrator note: the procedure_name input parameter may be in the format:
        --    procedure
        --    schema.procedure
        --    package.procedure
        --    schema.package.procedure
        -- If the expected input parameter is a procedure name only, the IN list code shown below
        -- can be modified to itemize the expected procedure names. Otherwise you must parse the
        -- procedure_name parameter and replace the simple code below with code that will evaluate
        -- all of the cases listed above.
        if upper(procedure_name) in (
              'WOLF_22.HELLO_WORLD'
        ) then
            return TRUE;
        else
            return FALSE;
        end if;
    end wwv_flow_epg_include_mod_local;
    /Regards,
    Jari

  • Insert Form template filename web PL/SQL Applications

    Helpme please
    How i can change the default form insert in web PL/SQL
    Designer 6i
    Thank!!!
    e-mail [email protected]

    I am having issue loading data using Web ADI, I am getting "SQL exception occurred during PL/SQL upload" error, I tried to restart Apache, also looked into the BNE.log file for the exact error but I am still not sure about this exception, can anyone please help?Please rename the log file, reproduce the issue and check the log file then.
    bne:text="SQL exception occurred during PL/SQL upload."
    bne:cause="Database insert error"Please see these docs.
    R12 Uploading Intercompany Transactions Shows SQL Exception Occurred During PL/SQL Upload [ID 1234063.1]
    Batch Element Entry (BEE) Spreadsheet Interface > 10 Rows Fails with Error: 'SQL exception occured during PL/SQL Upload.' [ID 388012.1]
    How Do You Setup An AGIS Transaction That Has Several Transaction Lines For The Same Transaction [ID 946499.1]
    FCH: Error: "The upload process has completed with errors. Please Close to return to the document and fix the errors. - No rows uploaded - <999> rows were invalid" During WebADI Data Upload [ID 553025.1]
    R12: Legal Entity Name must be < 31 characters. [ID 472505.1]
    Oracle Payroll 'Batch Element Entry ( BEE )' Frequently Asked Questions ( FAQ ) [ID 1353021.1]
    Thanks,
    Hussein

  • Charting within Web-PL/SQL Application - advice required please

    Currently trying to enhance our Designer generated Web-PL/SQL application by including charting.
    There is no provision to do this within Designer so are exploring other solutions, specifically using a server side servlet to render a chart as a gif, returning this to the client HTML page.
    Has anyone got any recommendations on what to use to do this?
    We've tried with limited success calling the Portal servlet (called chart) due to lack of documentation and relience on certain Portal procedures. We're currently experimenting with Oracle Chartbuilder, which looks promising, but would really like to know what the recommended or favorite solution is!
    Any feedback appreciated!
    Anthony

    user645399 wrote:
    Right now, I am displaying a table in the web by selecting all the records from a particular table.
    This is how I do it.Not a great way to display a report. This is not re-usable code. Difficult to maintain. Difficult to add or change the presentation of data.
    The proper way to do it, will be to use a DBMS_SQL cursor. After the cursor is opened, you use the describe function on the cursor that returns the number of columns in the cursor, the names of the columns, and their data types.
    This data is then used to fetch a column value from the cursor, and render it (as per its data type). This can easily be extended to make use of reporting templates and defaults and even style sheets to make rendering easy and flexible.
    DBMS_SQL is detailed in the [Oracle® Database PL/SQL Packages and Types Reference|http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_sql.htm#BABEDAHF] guide.
    Should I include a search engine? or how should I go about it? Is there a way to break the table into smaller parts using the dealer id?Why not use APEX? The above method that I've described is what is employed by APEX. So instead of writing that yourself, having to deal with dynamic variable binding, pagination, web state and security and so on.. APEX does all of this, and more, for you.

  • Integegrate APEX within existing Web PL/SQL application?

    We have an old Designer-built Web PL/SQL application that we'd like to enhance by integrating new pages built with APEX - both applications reside on the same dataase, etc.
    The current application uses database authentication and consists of a couple of frames - 'menubar' contains a main menu and is a set of static HTML files, whilst 'home'  contains the web PL/SQL-generated pages. The generated pages are either holding a list of anchors to other web pl/sq pages (a 'local' menu)  or a 'real' web pl/sql page itself. I'd like to introduce APEX pages into this second frame through the use of the generated anchors.
    The application uses database authentication.
    I am planning to introduce the APEX pages at the 'anchor' level, but I need to carry across the web pl/sql authentication to the APEX application. To do this, I *think* that the anchor will call a procedure that records the current user in a table and associates a token with that entry, it  performs a redirect to the APEX page and passing the 'token' as an application variable parameter which the application uses it to find the user and deletes the table entry.
    Is there a simpler mechanism that I should be using?

    Hi,
    Have you upgraded Apex?
    I assume you use XE EPG.
    Have you grant execute privilege on procedure to DAD user ANONYMOUS?
    GRANT EXECUTE ON WOLF_22.HELLO_WORLD TO ANONYMOUS;Have you changed wwv_flow_epg_include_mod_local that it allow execute WOLF_22.HELLO_WORLD?
    And write schema.procedure at upper case to function.
    If you have not upgraded Apex, run as SYS or SYSTEM
    CREATE OR REPLACE function FLOWS_020100.wwv_flow_epg_include_mod_local(
        procedure_name in varchar2)
    return boolean
    is
    begin
        -- Administrator note: the procedure_name input parameter may be in the format:
        --    procedure
        --    schema.procedure
        --    package.procedure
        --    schema.package.procedure
        -- If the expected input parameter is a procedure name only, the IN list code shown below
        -- can be modified to itemize the expected procedure names. Otherwise you must parse the
        -- procedure_name parameter and replace the simple code below with code that will evaluate
        -- all of the cases listed above.
        if upper(procedure_name) in (
              'WOLF_22.HELLO_WORLD'
        ) then
            return TRUE;
        else
            return FALSE;
        end if;
    end wwv_flow_epg_include_mod_local;
    /Regards,
    Jari

  • Designer6i: Document Templates preference Web PL/SQL

    How change the default preference
    I want change the default by use a templete
    How use Templeate ?

    Hi!!
    I have filed an enhancement for this. The bug # is 2377499. I shall keep you updated when the feature is added.

  • Designer6i: About templates and style sheets.  Web PL/SQL

    Preference About Page template filename
    How Use this preference to identify a document template for the About Page

    Hi!!
    I have filed an enhancement for this. The bug # is 2377499. I shall keep you updated when the feature is added.

  • Designer6i: About templates and style sheets.

    How "About Page template filename (DOCTAP)" Use this preference to identify a document template for the About Page.

    The email content can be HTML content. We dont' restrict what goes in the HTML content and hence you can inline the css or refer to a hosted CSS (absolute path). There are no sample templates or style sheets shipped with the product.

  • Page templates and shortcuts

    Hi all,
    I was trying to use a shortcut in the body of my page template. The shortcut runs a pl/sql function that return different html depending on various factors. However when I run the page all I get out is the name of the shortcut.
    I have it in the template as "SHORTCUTNAME" which has worked ok in the past in region templates. Is there something about page templates that disallows this functionality?

    [Not available in page templates|http://download.oracle.com/docs/cd/B28359_01/appdev.111/b32258/bldapp.htm#CEGFCCAB]:
    >
    New shortcuts are added to the Shortcut repository and are available for use within the following locations:
    The Region Source attribute of regions defined as HTML Text (with shortcuts). See "Understanding Regions".
    Region Header and Footer Text attribute. See "Specifying a Region Header and Footer".
    Item Label attributes and Default Value attribute. See "Items".
    Region Templates attributes. See "Editing Templates".

  • Stretch height in a page Template

    Hi.
    I have already searching about this issue but I didn't find any. This is my problem:
    I have defined a Page Template to reuse in my application. This template has a PanelStrechLayout to Stretch in widht & height, but It doesnt work.
    This is the code:
    <?xml version='1.0' encoding='UTF-8'?>
    <af:pageTemplateDef xmlns:af="http://xmlns.oracle.com/adf/faces/rich" var="attrs" definition="private"
                        xmlns:afc="http://xmlns.oracle.com/adf/faces/rich/component" xmlns:f="http://java.sun.com/jsf/core">
        <af:xmlContent>
            <afc:component>
                <afc:display-name>MyTemplate</afc:display-name>
                <afc:facet>
                    <afc:facet-name>content-app</afc:facet-name>
                </afc:facet>
            </afc:component>
        </af:xmlContent>
        <af:panelStretchLayout id="pt_psl1" inlineStyle="background-color:red;" styleClass="AFStretchWidth" >
            <f:facet name="center">
                <!--<af:outputText value="outputText1" id="pt_ot1"/>-->
                <af:facetRef facetName="content-app"/>
            </f:facet>
        </af:panelStretchLayout>
    </af:pageTemplateDef>
    How can I get this?
    Jdeveloper 12c.

    Hi,
    jsp includes should be added using the f:subview tag.
    However, since the template is meant to be the blueprint for other pages. Why do you use a page fragment and don't add the searchregion directly into it ? Somehow I don't see sense in what you are doing
    Frank

  • To create a custom page template in webcentre portal

    I am trying to create my own page template in web centre portal .. may i know how can it be achieved ? is it the same way as we do in adf or we have to follow the same thing which we get  pre-built template of webcentre application (myTemplate_globe.jspx)  when we create a webcentre application.
    regards
    Mrudul

    please check http://www.oracle.com/technetwork/middleware/webcenter/portal/learnmore/pagetemplates-1438595.pdf
    WebCenter 11g PS3 Tutorial: Building a WebCenter Template | Yannick Ongena&amp;#039;s WebCenter And Enterprise 2.0 Blog
    Mastering WebCenter Portal Templates &amp;#8211; Part 1 | Peter Moskovits&amp;#039; Oracle WebCenter Blog: 2008-2011

  • Web Pl/Sql with Jdeveloper(903)

    hi all
    i am using jdeveloper to develop some pages build with web pl/sql but when i try to run it from jdeveloper it fails (the database is 9.0.1)and gives the error
    Executing PL/SQL: CALL SCOTT."JDEV_TMP_PROC_1"()
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "SYS.OWA_UTIL", line 323
    ORA-06512: at "SYS.HTP", line 860
    ORA-06512: at "SYS.HTP", line 975
    ORA-06512: at "SYS.HTP", line 993
    ORA-06512: at "SYS.HTP", line 40
    ORA-06512: at "SCOTT.MARINA_DATE", line 6
    ORA-06512: at "SCOTT.JDEV_TMP_PROC_1", line 3
    Process exited.
    Disconnecting from the database oracle9
    my question is how i can run and deploy web/plsql procedure from jdeveloper9i

    This is because when you run your SCOTT.MARINA_DATE procedure from JDeveloper like this, it is not exactly the same as when the MOD_PLSQL invokes it.
    The key difference lies in the invocation of the OWA.INIT_CGI_ENV() procedure.
    The MOD_PLSQL gateway is doing this prior to invoking your SCOTT.MARINA_DATE routine, and here when you're invoking it from JDeveloper, likely you're not initializing the OWA package with this call.
    Assuming your PLSQL code is not depending on any of the CGI environment variables that the normal MOD_PLSQL module passes to the PLSQL environment via this call, you can simulate the initialization of the web CGI environment with no arguments using code like this:
    declare
      args owa.vc_arr; -- An empty table of records
    begin
      owa.init_cgi_env(args);
    end;

  • Calling a stored workspace procedure/function in page template

    I have an unusual puzzle. I am trying to find a way to call a stored procedure or function in a page template; ie, through HTML/javascript.
    I maintain a website with several dozen applications and I currently have the page templates in all of these applications subscribed to one master template, so that changes can be made in one place and implemented across all the applications. So far, the only content I can display on every page in every application through page template subscription is static content; dynamic content (ie content generated based on data in the database) is implemented page-by-page (or application-by-application).
    I'm wondering if there is a way to call stored procedures/functions from the page template to create dynamic content (based on the :APP_USER identity, for example). htmldb_Get() doesn't seem to be helpful, because as far as I can tell it only calls on-demand application processes, not workspace procedures/functions.
    Is there any way at all that a workspace procedure/function can be called directly from the page template (eg with a javascript function of some kind)? Again, I am trying to avoid having to use any application/page-level apex entities (items, processes, etc) so that I can just put the javascript or whatever in the page template and refresh all the applications in my workspace.
    Thanks in advance!
    Jonathan Cole
    PS - I am currently using v3.1

    Just to add the owner in output :
    SCOTT@demo102> ed
    Wrote file afiedt.buf
      1  select owner, table_name, ltrim(max(sys_connect_by_path(column_name,','))
      2                     keep (dense_rank last order by position),',') as PKcolumns
      3  from
      4  (select a.owner, a.table_name, b.column_name, b.position
      5   from all_tables a, all_cons_columns b, all_constraints c
      6   where a.owner=b.owner
      7   and   a.table_name=b.table_name
      8   and   b.owner=c.owner
      9   and   b.constraint_name=c.constraint_name
    10   and   c.constraint_type='P'
    11   and   a.table_name in ('SDO_COORD_AXES','EMP'))
    12  group by owner, table_name
    13  connect by prior owner = owner and prior table_name = table_name and prior position = position - 1
    14* start with position = 1
    SCOTT@demo102> /
    OWNER                          TABLE_NAME                      PKCOLUMNS
    MDSYS                          SDO_COORD_AXES                  COORD_SYS_ID,ORDER
    SCOTT                          EMP                             EMPNO
    SCOTT@demo102> Nicolas.

  • Calling Web PL/SQL page from Employee Search Page

    Hello,
    I have a requirement where in I have to call a custom Web PL/SQL self service page from the Employee Search page (this is a page where managers search employees giving criteria as First Name, Last Name, Assignment number etc. which is a OA Framework page supplied by Oracle)
    Now situation is after search when I will click on Details button on the search results table the custom Web PL/SQL page should be called.
    But I am not able to figure out how to do it. Could anybody be able to help me on this ?

    You have to set the destination property of the button to call your WebPL/SQL page.

Maybe you are looking for

  • In what way is iTunes for 64-bit windows 64-bit?

    I keep finding conflicting info on this topic.  There appears to be a version of iTunes for 64-bit Windows, but task manager shows itunes.exe as being 32-bit. In what way is this installer 64-bit?  Does it install 64-bit drivers for iOS devices and i

  • Purchase Line Type Error

    When I click update for a line type e.g. Goods, I get the error "You have encountered an unexpected error. Please contact the System Administrator for assistance" Please guide me to fix this error. Regards Reem

  • Performance issue when trying to execute DBMS_METADATA.GET_DDL of a table

    Hello. I have a database with lots of partitioned tables and indexes and when I try to get the DDL of a partitioned table the query runs for hours and does not end. I tried do gather data dictionary statistics but it had no impact on performance. Can

  • Drawing road network

    Hi. I am developing a traffic simulation and i am having problem with the GUI. I have always been programming the logic part and i have never done a GUI. In the simulation, I have sever different types of vehicles and road network. I am using an imag

  • D5460-Problemt printing 4 x 6.

    I am printing slides one at a time from PowerPoint - the slide size [page setup] is 4" x 6", some pictures in some slides are smaller than 4 x 6 and that is a problem for the printer. I have tried 'print w/ borders' and also 'borderless'I've told it