To Mr Kubicek

I was looking around some of your excellent examples and i saw that
your demo apps "Croc Order Form" is no longer running, it have an
"table or view does not exists" error.
Probably you may want to fix it.
Thx & continue having success !

You should use this application:
http://www.oracle.com/technology/products/database/application_express/packaged_apps/packaged_apps.html#MATRIX
it uses the same principals as mine only the setup is much better.
Denes Kubicek
http://deneskubicek.blogspot.com/
http://htmldb.oracle.com/pls/otn/f?p=31517:1
-------------------------------------------------------------------

Similar Messages

  • Ajax Autocomplete (Denes Kubicek)

    Hi,
    I am using Denes Kubicek examples for Ajax Autocomplete:
    http://htmldb.oracle.com/pls/otn/f?p=31517:53:2727115168911885::NO
    The example works great for one text field, but I am trying to see if it works for two text fields.
    I added this to the region footer.
    <script language="javascript" type="text/javascript">
    <!--
    register("P3_ENAME", "EMP", "ENAME", "blue", "red");
    register("P3_DEPT", "DEPT", "DNAME", "blue", "red");
    //-->
    </script>
    But that didn't work.
    Can this be done?
    Thanks
    VC

    Hi Denes,
    Forget my previous post.
    Here is the javascript code I placed in the Page Header:
    <script language="JavaScript" type="text/javascript">function f_register(p_this){
              var p_this_name = $x(p_this).id;                    
              //alert(p_this_name);                    
              if (p_this_name == 'P3_ENAME')                         
              alert(p_this_name);                         
              register("P3_ENAME", "EMP", "ENAME", "blue", "red");
              else { register("P3_DEPT", "DEPT", "DNAME", "blue", "red");
    }</script>I can't enter any data in the text field with the onFocus element.
    Not sure what I am doing wrong.

  • JavaScript Show Hide Items (Shuttle) (Denes Kubicek)

    Hello
    I was looking at a great example from Denes Kubicek on this link (http://htmldb.oracle.com/pls/otn/f?p=31517:129:495210338999346::NO:::) Guest Apex_demo and have managed to get it to work.
    However, I would like to show/hide a shuttle item. Any ideas how I could achieve this? It only seems to hide the selected values part of the shuttle and not the buttons/LOV.
    Thank you in advance

    Hello,
    In case of a shuttle item you need to use a label with ID, and use that ID as the parameter to the $x_HideItemRow() or $x_ShowItemRow().
    The following post describe how to create a proper template for that purpose: Re: Hide and show item as per the value of select list .
    Regards,
    Arie.

  • File Mass upload (Denes Kubicek?) - Need help to find my schema

    Hi,
    I've been looking at the excellent example on Denes Kubicek site on how to Mass file upload (http://htmldb.oracle.com/pls/otn/f?p=31517:218).
    I'm not sure how to complete the first part of this example
    EXEC dbms_java.grant_permission( 'YOUR_SCHEMA', 'java.io.FilePermission','d:\datapump','read' ); How do I find my schema that this needs to be grants. I installed XE and upgraded it to APEX 3.1.1.00.09.
    I've opened SQL plus and typed: conn sys as sysdba and then entered in the password and it connect. I'm a bit confused on how to find my schema. The rest of it seems to be quiet self explanatory.
    Many Thanks and Happy New Year to all.

    Hi Denes,
    Thanks I logging into the "Internal" workspace and went to Home>Manage Workspaces>Manage Workspace to Schema Assignments. I see my workspace "BILLY" is assigned to schema "BILLY".
    So I logged into sqlplus using "conn sys as sysdba" and entered in the following:
    exec dbma_java.grant_permission('BILLY','java.io.FilePermission','d:\WebPix','read');I then get
    ERROR at line 1:
    ORA-06550: line 1, column 7:
    PLS-00201: identier 'DBMA_JAVA.GRANT_PERMISSION' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignoredAny ideas why this maybe failing?
    Also would this be a valid directory string 'd:\My Pictures\Website' or should this be the string 'd:\My_Pictures\Website' ?
    Thanks for your help.

  • Need help in completing Denes Kubicek code: cascading lov in tabular form

    Hi, I have been working off of Denes Kubicek demo for cascading lovs and have finally (!) gotten it working....sort of.
    Denes's instructions indicate that you must request an account in order to receive the code. I have done so, but have not had a response....can anyone help me on what needs to be done in oder to complete his instructions?
    thanks!!
    here is his helpful code:
    http://htmldb.oracle.com/pls/otn/f?p=31517:176:2537143614094776

    sorry. my query is now:
    select
    apex_item.hidden(11,seq_id) seq,
    apex_item.hidden (12,seq_id)||
    apex_item.select_list_from_query_XL(13,c013,'select distinct s.common_name d, s.species_itis r
    from species s, species_qc c
    where partner_id = '||:f200_issuing_agency||' and
    c.species_itis = s.species_itis order by s.common_name',
    'style="width:220px" '
    || 'onchange="f_set_casc_sel_list_item(this,'
    || 'f16_'
    || LPAD (seq_id, 4, '0')
    || ')"',
    'YES',
    '0',
    '- Select Species -',
    'f13_' || LPAD (seq_id,4, '0'),
    NULL,
    'NO'
    ) SPECIES_ITIS,
    apex_item.select_list_from_query(14,c014,'select disposition_desc d, disposition_code r
    from dispositions
    where displayed = 1 order by disposition_desc') DISPOSITION_CODE,
    apex_item.text(15,c015) reported_quantity,
    apex_item.select_list_from_query(16,c016,'SELECT DISTINCT unit_desc ,unit_of_measure
    FROM species_Qc s, units_of_measure u
    WHERE s.unit_of_measure = u.unit_measure
    AND species_itis = '||c013||'AND partner_id = '||:F200_ISSUING_AGENCY,
    'style="width:220px"',
    'YES',
    '0',
    '- Select Unit -',
    'f13_' || LPAD (seq_id, 4, '0'),
    NULL,
    'NO' ) UNIT_MEASURE,
    apex_item.SELECT_LIST_FROM_LOV(17,c017,'SALE_DISPOSITION') SALE_DISPOSITION_FLAG,
    apex_item.text(18,c018) PRICE,
    apex_item.text(19,c019) PERMIT_ID,
    apex_item.select_list_from_query(20,c020,'select market_desc d, market_code r
    FROM market_categories
    where market_code in (select distinct market_code
    from species_qc
    where species_itis = '||c013||'
    and partner_id = '||:F200_ISSUING_AGENCY||')',
    'style="width:220px"',
    'YES',
    '0',
    '- Select Market -',
    'f13_' || LPAD (seq_id, 4, '0'),
    NULL,
    'NO' ) MARKET_CODE,
    apex_item.text(21,c021) GRADE_CODE,
    apex_item.text(22,c022) trip_id
    from apex_collections c
    where collection_name = 'CATCH_C' and
    c.c022 = :F200_CURRENT_TRIP_ID
    UNION ALL
    select
    apex_item.hidden(11,null) seq,
    apex_item.hidden (12,null)||
    apex_item.select_list_from_query_XL(13,0,'select distinct s.common_name d, s.species_itis r
    from species s, species_qc c
    where partner_id = '||:f200_issuing_agency||' and
    c.species_itis = s.species_itis order by s.common_name',
    'style="width:220px" '
    || 'onchange="f_set_casc_sel_list_item(this,'
    || 'f16_'
    || LPAD (9900 + LEVEL, 4, '0')
    || ')"',
    'YES',
    '0',
    '- Select Species -',
    'f13_' || LPAD (9900 + LEVEL,4, '0'),
    NULL,
    'NO'
    ) SPECIES_ITIS,
    apex_item.select_list_from_query(14,null,'select disposition_desc d, disposition_code r
    from dispositions
    where displayed = 1 order by disposition_desc') DISPOSITION_CODE,
    apex_item.text(15,null) reported_quantity,
    apex_item.select_list_from_query(16,null,'SELECT DISTINCT unit_desc ,unit_of_measure
    FROM species_Qc s, units_of_measure u
    WHERE s.unit_of_measure = u.unit_measure
    AND species_itis = '||0||'AND partner_id = '||:F200_ISSUING_AGENCY,
    'style="width:220px"',
    'YES',
    '0',
    '- Select Unit -',
    'f13_' || LPAD (9900 + LEVEL, 4, '0'),
    NULL,
    'NO' ) UNIT_MEASURE,
    apex_item.SELECT_LIST_FROM_LOV(17,null,'SALE_DISPOSITION') SALE_DISPOSITION_FLAG,
    apex_item.text(18,null) PRICE,
    apex_item.text(19,null) PERMIT_ID,
    apex_item.select_list_from_query(20,null,'select market_desc d, market_code r
    FROM market_categories
    where market_code in (select distinct market_code
    from species_qc
    where species_itis = '||0||'
    and partner_id = '||:F200_ISSUING_AGENCY||')',
    'style="width:220px"',
    'YES',
    '0',
    '- Select Market -',
    'f13_' || LPAD (9900 + LEVEL, 4, '0'),
    NULL,
    'NO' ) MARKET_CODE,
    apex_item.text(21,null) GRADE_CODE,
    apex_item.text(22,null) trip_id
    FROM DUAL
    WHERE :request = 'ADD'
    CONNECT BY LEVEL = 2
    I have two issues:
    1. the item tab_cascading_item is not populated when the value of c013 (species) is changed.
    2. I receive an error when trying to add a row to the collection. My code for doing so is:
    begin
    for i in 1..1 LOOP
    apex_collection.add_member (p_collection_name => 'CATCH_C',
    p_c013 => null,
    p_c014 => null,
    p_c015 => null,
    p_c016 => null,
    p_c017 => null,
    p_c018 => null,
    p_c019 => null,
    p_c020 => null,
    p_c021 => null,
    p_c022 => :F200_CURRENT_TRIP_ID );
    end loop;
    end;
    I am so close on getting this....any help would be appreciated.

  • Error when running  Denes Kubicek auto complete

    First off, Denes is a genius for creating this site: http://apex.oracle.com/pls/otn/f?p=31517:53:2299218646945201::NO:RP:: This is by far the best Application Express site I've ever seen.
    Second, I'm having an issue with the Ajax Autocomplete (which is like the most awesome thing I've ever seen). Currently I'm running the 10g version so I'm not sure if that is causing the issue or what.
    When I click on the search box and type something in, I'm getting the following error returned in firefox. The list is also empty. If I click on the list, I get the second error.
    Error: html_GetElement(p_TextFieldName).parentNode is undefined
    Source File: http://www.internalwebsite.com/s_htmldb/phap/wwv_flow_file_mgr.get_file?p_security_group_id=625114739298344&p_flow_id=217&p_fname=textfield_autofilter.js
    Line: 20
    Error: pColor is undefined
    Source File: http://www.internalwebsite.com/s_htmldb/phap/wwv_flow_file_mgr.get_file?p_security_group_id=625114739298344&p_flow_id=217&p_fname=textfield_autofilter.js
    Line: 111
    Thank you for any suggestions anyone has.

    The instruction says:
    In the footer of the region where your search item
    is placed, enter the following:
    <script language="javascript" type="text/javascript">
    <!--
    register("P53_ENAME", "EMP", "ENAME", "blue", "red");
    //-->
    </script>
    My assumption is that some of the five parameters of the register function is not matching to whatever they should. You need to have those
    five and the item, table and column names have to match to the existing item, table and column. Also, blue and red are colors. The color your specified needs to be a valid color. Check your sintax.
    Thanks for calling me a genious but I am definitelly not one. The site you praise (once again thanks) is primarily a lot of work.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Drill Down Report (Denes Kubicek)

    Hi Denes and everyone
    I would like to create a drill down report.
    I have 5 tables namely:
    1. Method (method varchar2(60) PK)
    2. Category (cat varchar2(60) PK, method varchar2(60) FK)
    3. Skill_type (type varchar2(60) PK, cat varchar2(60) FK, method varchar2(60) FK)
    4. Skills (type varchar2(60) FK, empno NUMBER FK, status char(1))
    5. Emp (fname varchar2(60), lname varchar2(60), empno NUMBER PK)
    and a view between Skills and Skill_type: (type varchar2(60) FK, empno NUMBER FK, status char(1))
    The user should select a method he/she obtained the skills (e.g. Internally or externally) then after selecting it drills down to skill category (e.g. systems, softskills, technical or HR) then the user should click a category and drills down to skill type (e.g. microsoft word, conflict management or A+) here the user should click a checkbox or Y to indicate which skills he/she have and then click a submit/save button which updates/insert the view/skills table(4).
    Example
    Surname     Name     softskills                                                   Microsoft               
              Leadership Change_Management Motivation Conflict_Management    MS_Projects MS_Word MS_PowerPoint MS_Excel
    james     pete          Y               Y                                  Y          Is there anyway I can use a drill down report, tabular form or anyother options.
    Your guidance will be appreciated.
    Kind regards
    Mel

    I got a solution for drill down, all i need is updating the skills table
    here the user should click a checkbox or Y to indicate which skills he/she have and then click a submit/save button which updates/insert the view/skills table(4).
    Example
    Surname     Name     softskills                                                   Microsoft               
              Leadership Change_Management Motivation Conflict_Management    MS_Projects MS_Word MS_PowerPoint MS_Excel
    james     pete          Y               Y                                  Y     Thanks

  • A question to Denes Kubicek (Repeating Calendar)

    Hi Denes!
    I've an issue with the calendar function you've posted on the blog...I was using it preety much and it was working fine until I've modified it with some if clauses...
    It looks like this now...
    create or replace FUNCTION return_table_fn
    RETURN session_table_type
    AS
    v_data session_table_type := session_table_type ();
    v_cnt NUMBER DEFAULT 0;
    v_date DATE;
    v_days NUMBER;
    v_count1 NUMBER := 1;
    v_count2 NUMBER := 1;
    BEGIN
    FOR c IN (select
    EMPLOYEE_ID,
    CUSTOMER_ID,
    SERVICE_ID,
    START_DATE,
    END_DATE,
    DAY_START_HOUR,
    DAY_END_HOUR,
    CYCLIC,
    WITH_SATURDAY,
    WITH_SUNDAY,
    CALL_PRIORITY,
    WITH_HOLIDAY
    from WORKSHOP.PMS_SCHEDULE)
    LOOP
    v_days := c.END_DATE + 1 - c.START_DATE;
    FOR i IN v_count1 .. v_days + (v_count1 - 1)
    LOOP
    v_date := (c.START_DATE - 1) + v_count2;
    IF TO_CHAR((v_date),'fmD') < 6 THEN
    v_data.EXTEND;
    v_data (v_data.COUNT) := session_rectype (v_date, c.EMPLOYEE_ID,c.CUSTOMER_ID,c.SERVICE_ID,c.DAY_START_HOUR,c.DAY_END_HOUR,c.CYCLIC,c.WITH_SATURDAY,c.WITH_SUNDAY,c.WITH_HOLIDAY,c.CALL_PRIORITY);
    ELSIF c.WITH_SATURDAY = 'Y' and TO_CHAR((v_date),'fmD') = 6 THEN
    v_data.EXTEND;
    v_data (v_data.COUNT) := session_rectype (v_date, c.EMPLOYEE_ID,c.CUSTOMER_ID,c.SERVICE_ID,c.DAY_START_HOUR,c.DAY_END_HOUR,c.CYCLIC,c.WITH_SATURDAY,c.WITH_SUNDAY,c.WITH_HOLIDAY,c.CALL_PRIORITY);
    ELSIF c.WITH_SUNDAY = 'Y' and TO_CHAR((v_date),'fmD') = 7 THEN
    v_data.EXTEND;
    v_data (v_data.COUNT) := session_rectype (v_date, c.EMPLOYEE_ID,c.CUSTOMER_ID,c.SERVICE_ID,c.DAY_START_HOUR,c.DAY_END_HOUR,c.CYCLIC,c.WITH_SATURDAY,c.WITH_SUNDAY,c.WITH_HOLIDAY,c.CALL_PRIORITY);
    END IF;
    v_count1 := v_count1 + 1;
    v_count2 := v_count2 + 1;
    END LOOP;
    v_count2 := 1;
    END LOOP;
    RETURN v_data;
    END;
    My point for the code was not to show sunday or saturdays...but it doesnt show fridays...its very weird..if i delete the if clauses then calendar works preety fine again...
    Do you maybe by any chance know why ??
    With regards,
    PsmakR

    Thank you Denes for y our quick reply...unfortunately it doesnt work for me...
    I work on SQL Develoepr and when I type there ALTER SESSION... my calendar still dont show fridays...If I add ALTER SESSION.. in to the function my calendar is not showing anythiing at all ..there is an error - Cannot perform DML and so on..
    To your information in POLISH nls saturday and sunday is 6th and 7th day of week...
    Maybe I'll paste you also my calendar query:
    SELECT
    session_date,
    TO_CHAR((SESSION_DATE),'fmD') day,
    employee_id,
    (SELECT SURNAME || ', ' || FIRST_NAME from PMS_EMPLOYEES) EMPLOYEE,
    customer_id,
    (SELECT CUSTOMER_NAME FROM PMS_CUSTOMERS) CUSTOMER,
    service_id,
    (SELECT SERVICE_NAME FROM PMS_SERVICES) SERVICE,
    (SELECT (EXTRACT(HOUR FROM DAY_END_HOUR) - EXTRACT(HOUR FROM DAY_START_HOUR)) from PMS_SCHEDULE) HOURS,
    cyclic,
    with_saturday,
    with_sunday,
    call_priority PRIORITY,
    with_holiday
    FROM TABLE (SELECT return_table_fn () AS session_table_type
    FROM DUAL)
    Maybe you have some other ideas ??
    With regards,
    PsmakR

  • Multiple Reports In One Region - Question For Denes Kubicek

    Denes,
    I looked at what you've done on your demo app 31517, Page 152
    (http://htmldb.oracle.com/pls/otn/f?p=31517:152), in which you place several reports in the same region. It is nicely done and a great example of something I
    need to do at my work place.
    I have two questions.
    1) In your explanation link (takes me to your blog) you say you made changes to a copy of the Report Template and placed this copy into a copy of the Standard Page Template. However, I see that your reports are set to "No Template".
    I've probably missed something here, but don't know what.
    2) A more general question ... I'm intrigued in how you get tab item in, say, your Section 4 Tab Set (or any of the other Tab Sets) to "Stand Out" in bold letters
    when clicked on. How are you doing this?
    Thanks very much for your help. Yours is one of the great sites to learn from.
    Elie

    Apex v4. has parent and child regions (subregions) where child regions display inside the parent. If you make the child regions with no template, they will probably appear as if it's just two reports in one region.
    Problem is, they display one above the other, not side by side. But there's been a recent thread on working around this just in the past few days on this forum.

  • Export_to_excel_pkg problems Denes Kubicek

    Anyone else having problems downloading this pkg?
    page 108?

    Hello Denes.
    Excuse me for send you a message in this way , but I dont find other way to contact with you.
    Im using the export_excel_pkg, and really it work good.
    I have only one problem, I tell you.
    When, in one item, data is very long and numeric, by example a EAN code, without any class of format, by default it give me the value ###, Im studing the package and trying to resolve this, but if you can send me any idea it can help me a lot.
    Thanks in advanced.
    You are doing a great work for us.

  • Need help - Denes Kubicek's Autocomplete

    I followed Denes autocomplete instructions but having a problem.
    I'm using Apex v3.1.2.00.02
    In FF (3.0.4): When I type in a letter into the text box, the text box is getting extended as a select list but it's blank and
    in IE (6.0) as I type in the letters they are turning 'Red' and no list is being displayed.
    When I ran the getSearchList on Demand process code in SQL Workshop it is displaying the values.
    It seems something is missing but I'm not able to figure it out, any help is greatly appreciated.
    Thanks
    Pradeep
    Edited by: psanjeev on Dec 4, 2008 11:30 AM

    You should ask this question in the forum for APEX: Oracle Application Express (APEX)

  • How to create multi-folders in a single folder in numbers

    how do you create multi-folders in a single folders. I have multi files orginized by month, but now i need to group it into a single folder by year.

    See this link:
    http://apex.oracle.com/pls/otn/f?p=31517:107
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Issue with adding a new value to the Default Login Page

    Hopefully this is an easy one guys, I've added a select list item to the standard login page (P101) to allow the user to select a DOMAIN as well as entering their username and password.
    When the next page is displayed and I try to retrieve the value held in the new field it has been cleared, but the values entered into items
    P101_USERNAME and P101_PASSWORD are still present.
    I can't figure out why the values held in items P101_USERNAME and P101_PASSWORD are still present but P101_DOMAIN has been cleared.
    I've tried creating a value on page zero and writing the domain value to it using pl/sql and javascript but as soon as the next page is requested the value is cleared.
    Any Ideas how to get around this????
    Thanks in advance

    I suppose your login page contains a process like this:
    BEGIN
       wwv_flow_custom_auth_std.login (p_uname           => v ('P101_USERNAME'),
                                       p_password        => :p101_password,
                                       p_session_id      => v ('APP_SESSION'),
                                       p_flow_page       => :app_id || ':1'
       :t_random_number := :p101_random_number; /* this is something I added to my code */
    END;Now, if you go to this page:
    http://apex.oracle.com/pls/otn/f?p=31517:1
    please note the random number assigned to you. Once you login, the same number will appear on the page 1 (near to the top).
    So, that is how you could solve your problem.
       :t_random_numberis an application item.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Refresh APEX_ITEM.TEXT Value when Interactive Report Page Changes

    I use an APEX_ITEM.TEXT column in an IR where the user can enter some number date.
    to make this data persistent while paginating the ir, i use some DA . Via ajaxthis DA call an onDemandProcess to save the entered data in a collection.
    works great; the input is stored in the collection.
    To show the already entered data, the ir sql statement joins the collection.
    select  APEX_ITEM.hidden(2,artikelnr)||
            APEX_ITEM.TEXT(1
              ,COL_artikel.preis
              ,3
              ,3
              ,'autocomplete="off" onfocus="javascript:f_set_last_val(this);" onchange="javascript:f_validate_integer(this);"'
              ,'INPUTBESTELLEN'
             ) Inputbestellen,
    article.*
    from article
    left outer join COL_artikel on COL_artikel.nummer = artikelnr where col_artikel is a view for better access on the collection
    Now the issue:
    On the first Page i add some data, then i go head to page 2 and 3 of the ir. The collection is filled withe the entered data.
    But when i navigate back to page 1 the entered data is not shown in the input field unless i relload the whole page . I guess because the query is not re-executed when paginating foreward/backward.
    ist there any way to overcome this tiny small issue?
    regards
    peter

    It looks like you are trying to combine apex_item function with a standard tabular form and as far as I know this won't work. You will need to create a manual tabular form in that case. See this and other examples as a refference:
    http://htmldb.oracle.com/pls/otn/f?p=31517:170
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

  • How to secure a PL/SQL procedure that is called from the web browser

    If you have ever seen the sample document management application, and tried to download a file that was stored in the system, you are probably familiar with the apex_util.count_click URL that is used to download the file. If you copy that URL and paste it into a new browser, you will not be prompted to login to download the requested file. I'm using SSO with Apex as a partner application. How can I secure a pl/sql procedure like this to redirect to the login page before beginning the download?
    Thanks,
    Kris

    You can use the second method described here:
    http://apex.oracle.com/pls/otn/f?p=31517:15
    You would use an application process instead of pasting the procedure call in the browser. In the case I describe, you don't need to grant execute to public on the download procedure.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

Maybe you are looking for

  • JTAPI

    Hi friends I want to use Voice modem with JTAPI is it possible. I have downloaded following code but it gives me error �cant get provider� What I have to do plz reply me soon [email protected] CODE =============PlacingPhoneCallGUI===== import java

  • How to use Stored Procedures in JDBC sender side and receiver side

    Hello, Can anyone explain how to use stored procedures in configuring the scenario using JDBC adapter at bothe sides sender nad receiver.. Thanks, Soorya

  • Is it worth getting the airport extreme in your experience?

    hi all, my first wireless setup was the original airport base station eight or nine years ago, and the reliability was fantastic - plug it in and forget it. but when newer, faster protocols came out, i went with a netgear, then got fed up with having

  • Regarding BW report

    Hi Experts   I have a Req:one BW Report is avilable in a repository in the form of excel.   How can i port that one into portal.   Plz give me the solution as step by step procedure.   Iam new for EP adninstration   Thanks & Regards   Hazrath.G

  • How to connect xMII 11.5 and MaxDB?

    Hi All, Someone know how to connect xMII 11.5 and MaxDB (7.6 or 7.7)? Thanks in advance, Vinicius Martins Axia Consulting São Paulo - Brasil