How to parameter BAPI_REPPROV_GETVARIABLES ??

Hi Gurus
I want to retrieve the selection variables of a query in an OLAP  BADI
I think the way to do this is to call BAPI_REPPROV_GETVARIABLES .
But  : How to find the SESSIONID it needs ?
And : if we need the REPORTID to find the SESSIONID, how to find the REPORTID of the query ?
thanks for any help
James

Hi Gurus
I want to retrieve the selection variables of a query in an OLAP  BADI
I think the way to do this is to call BAPI_REPPROV_GETVARIABLES .
But  : How to find the SESSIONID it needs ?
And : if we need the REPORTID to find the SESSIONID, how to find the REPORTID of the query ?
thanks for any help
James

Similar Messages

  • How give parameter to jasper report form sun studio

    hi master
    sir i use ireport that run well but sir how call that report with parameter
    how give parameter and datasource to japer report
    please give me idea
    thank's
    aamir

    Hello,
    THIS IS NOT WORKING ...SHOWING AN ERROR CANNOT FIND MENU ITEM .This error means you are not giving the correct menu name and item name.
    Open the menu and select the menu which you want to enable/disable dynamically then press F3 (for calling object navigator). You will find the menu name and item name (selected). Note that menu name and item name then use as below...
    SET_MENU_ITEM_PROPERTY('MENU_NAME.ITEM_NAME',ENABLED,PROPERTY_TRUE);-Ammad

  • How return parameter ref Cursor from procedure using dynamic SQL?

    I sorry, but i very need help.
    I using Oracle 8.0.6
    I need to return parameter of type ref Cursor from procedure.
    create or replace package PlanExp is
    type cursortype is ref cursor;
    procedure ShowPlan (cursorparam out
    cursortype.............);
    end PlanExp;
    create or replace package body PlanExp is
    procedure ShowPlan (cursorparam out cursortype,
    .............) Is
    sql_str varchar2(1000);
    sql_str_select varchar2(100);
    sql_str_from varchar2(100);
    sql_str_where varchar2(500);
    Return_Code integer;
    Num_Rows integer;
    cur_id_sel integer;
    tSum_Plan DBMS_SQL.NUMBER_TABLE;
    tSum_Plan_Ch DBMS_SQL.NUMBER_TABLE;
    tSum_Plan_Day DBMS_SQL.NUMBER_TABLE;
    begin
    /* calculating string variables ........... /*
    sql_str := 'select ' || sql_str_select ||
    'from ' || sql_str_from ||
    'where ' || sql_str_where ||
    'group by ' || sql_str_select;
    cur_id_sel := dbms_sql.open_cursor;
    dbms_sql.parse(cur_id_sel, sql_str, dbms_sql.native);
    dbms_sql.define_array(cur_id_sel, 1, tSum_Plan, 20, 1);
    dbms_sql.define_array(cur_id_sel, 2, tSum_Plan_Ch, 20, 1);
    dbms_sql.define_array(cur_id_sel, 3, tSum_Plan_Day, 20, 1);
    Return_Code := dbms_sql.execute(cur_id_sel);
    delete from TEMP_SHOWPLAN;
    Loop
    Num_Rows := dbms_sql.Fetch_Rows(cur_id_sel);
    dbms_sql.column_value(cur_id_sel, 1, tSum_Plan);
    dbms_sql.column_value(cur_id_sel, 2, tSum_Plan_Ch);
    dbms_sql.column_value(cur_id_sel, 3, tSum_Plan_Day);
    if Num_Rows = 0 then
    exit;
    end if;
    Exit When Num_Rows < 20;
    End Loop;
    dbms_sql.close_cursor(cur_id_sel);
    end;
    end PlanExp;
    How return cursor (cursorparam) from 3 dbms_sql.column_value-s ?

    I am using Oracle 8.1.7, so I don't know if this will work in
    8.0.6 or not:
    SQL> CREATE TABLE test
      2    (col1                    NUMBER,
      3     col2                    NUMBER,
      4     col3                    NUMBER)
      5  /
    Table created.
    SQL> INSERT INTO test
      2  VALUES (1,1,1)
      3  /
    1 row created.
    SQL> INSERT INTO test
      2  VALUES (2,2,2)
      3  /
    1 row created.
    SQL> INSERT INTO test
      2  VALUES (3,3,3)
      3  /
    1 row created.
    SQL> CREATE TABLE temp_showplan
      2    (tSum_Plan               NUMBER,
      3     tSum_Plan_Ch            NUMBER,
      4     tSum_Plan_Day           NUMBER)
      5  /
    Table created.
    SQL> EDIT planexp
    CREATE OR REPLACE PACKAGE PlanExp
    IS
      TYPE CursorType IS REF CURSOR;
      PROCEDURE ShowPlan
        (cursorparam    IN OUT CursorType,
         sql_str_select IN     VARCHAR2,
         sql_str_from   IN     VARCHAR2,
         sql_str_where  IN     VARCHAR2);
    END PlanExp;
    CREATE OR REPLACE PACKAGE BODY PlanExp
    IS
      PROCEDURE ShowPlan
        (cursorparam    IN OUT CursorType,
         sql_str_select IN     VARCHAR2,
         sql_str_from   IN     VARCHAR2,
         sql_str_where  IN     VARCHAR2)
      IS
        sql_str                VARCHAR2 (1000);
        cur_id_sel             INTEGER;
        return_code            INTEGER;
      BEGIN
        DELETE FROM temp_showplan;
        sql_str := 'INSERT INTO   temp_showplan '
               || ' SELECT '   || sql_str_select
               || ' FROM '     || sql_str_from
               || ' WHERE '    || sql_str_where;
        cur_id_sel := DBMS_SQL.OPEN_CURSOR;
        DBMS_SQL.PARSE (cur_id_sel, sql_str, DBMS_SQL.NATIVE);
        return_code := DBMS_SQL.EXECUTE (cur_id_sel);
        DBMS_SQL.CLOSE_CURSOR (cur_id_sel);
        OPEN cursorparam FOR SELECT * FROM temp_showplan;
      END ShowPlan;
    END PlanExp;
    SQL> START planexp
    Package created.
    Package body created.
    SQL> VARIABLE g_ref REFCURSOR
    SQL> EXEC PlanExp.ShowPlan (:g_ref, 'col1, col2,
    col3', 'test', ' 1 = 1 ')
    PL/SQL procedure successfully completed.
    SQL> PRINT g_ref
    TSUM_PLAN TSUM_PLAN_CH TSUM_PLAN_DAY
             1            1             1
             2            2             2
             3            3             3

  • Test Stand: How does parameter's value is passed as command line argument?

    Hi All,
    This is my 1st Q on this board.
    I'm using Test Stand Sequence to call a subsequence where I call an executable file and passing few arguments to it.
    SuperSequence.seq => SubSequence.seq
    In SuperSequence.seq I have 3 parameters and their values are specified
    Parameters
    Name      Type    Value
    ==============================
    Name      string    "Nirvana"
    Address  string    "London"
    Tel           Number "123456"
    In SubSeq.seq I call and EXE with following parameters
    Executable Path Name: myApp.exe
    Argument Expressxion:  "Parameters.Name  Parameters.Address  Parameters.Tel"
    In the application I receive parameter names instead of their values?
    E.g. I recevie Parameters.Name  Parameters.Address  Parameters.Tel in myApp.exe as arguments.
    How do I make the values to be passed to myApp.exe instaed of parameter names?
    Cheers
    Nirvana

    Hi,
    You have to make a string containing the arguments that you require
    Try the following expression
    Parameters.Name  + " " + Parameters.Address + " " +Str( Parameters.Tel)
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • How send parameter in prerender() function for query

    Sir I use requestbean for sending data to next page
    Because want use this parameter in query
    I get data as per this parameter
    But when I call next page not pass parameter value to next page and query use blank parameter
    I write code in prerender()
    See my code
    public void prerender() {
    try {
    getSessionBean1().getTripRowSet().setObject( 1, parameter1..getValue());
    tripDataProvider.refresh();
    } catch (Exception e) {
    error("Cannot switch to person " + &#8220;no record &#8220;);
    log("Cannot switch to person " + &#8220;no record , e);
    Please give me idea how I send my parameter in prerender() function for query
    Thank&#8217;s
    aamir

    sir i try SessionBean but same as result
    sir you see my full problem
    I use studio creator
    I create two page first for sending data to other page such as user login page
    I add property in SessionBean, RequestBean and bind to data with my user name textfield
    and in next page I bind to data with other textfield
    after this I try to use this textfield use in
    public void prerender() {  
    try {
    getSessionBean1().getChartofaccRowSet().setObject(1, textfield1.getValue());
    chartofaccDataProvider.refresh();
    } catch (Exception e) {
    error("Cannot switch to person " + �noooo�t);
    log("Cannot switch to person " + �noooo�, e);
    In this line I use that textfiled that bind to data form login page
    getSessionBean1().getChartofaccRowSet().setObject(1, textfield1.getValue());
    but sir this public void prerender() {   function t not get textfield1 value in this function textfield give me null value
    but when page complete run then show value in textfield
    it mean this public void prerender() { function run befor  SessionBean, RequestBean and not get SessionBean, RequestBean value
    please give me idea how I pass value in public void prerender() { function form other page and I use this value in query
    such as example
    getSessionBean1().getChartofaccRowSet().setObject(1, textfield1.getValue());
    this is my sessionbean query
    SELECT ALL FNET.CHARTOFACC.PARENT,
    FNET.CHARTOFACC.CHILD,
    FNET.CHARTOFACC.ACCID,
    FNET.CHARTOFACC.TITLE,
    FNET.CHARTOFACC.CAMPID,
    FNET.CHARTOFACC.ACTIVE,
    FNET.CHARTOFACC.FSTATUS,
    FNET.CHARTOFACC.COMHEADID,
    FNET.CHARTOFACC.FIX_VARIABLE,
    FNET.CHARTOFACC.VARI_PER
    FROM FNET.CHARTOFACC
    WHERE FNET.CHARTOFACC.CAMPID = ?
    please give me idea
    thank�s
    aamir
    SELECT ALL FNET.CHARTOFACC.PARENT,
    FNET.CHARTOFACC.CHILD,
    FNET.CHARTOFACC.ACCID,
    FNET.CHARTOFACC.TITLE,
    FNET.CHARTOFACC.CAMPID,
    FNET.CHARTOFACC.ACTIVE,
    FNET.CHARTOFACC.FSTATUS,
    FNET.CHARTOFACC.COMHEADID,
    FNET.CHARTOFACC.FIX_VARIABLE,
    FNET.CHARTOFACC.VARI_PER
    FROM FNET.CHARTOFACC
    WHERE FNET.CHARTOFACC.CAMPID = ?

  • How result_cache_max_size parameter works

    Can you please explain the result_cache_max_size parameter in oracle 11g. If we increase or decrease this paramater value what will be the result in terms of performance..
    sga is 3GB
    result_cache_max_size is 5mb
    result_cache_mode is manual
    OS is AIX5.3
    Oracle version is 11.2.0.1

    Our presnt size is 5mb and if we increased it to 250mb will it work, how to calculate the size? pls guide. it should work,by default it use below.
    When using the MEMORY_TARGET initialization parameter to specify the memory allocation, Oracle allocates 0.25% of memory_target to the result cache.
    When you set the size of the shared pool using the SGA_TARGET initialization parameter, Oracle allocates 0.5% of sga_target to the result cache.
    If you specify the size of the shared pool using the SHARED_POOL_SIZE initialization parameter, then Oracle allocates 1% of the shared pool size to the result cache.
    http://docs.oracle.com/cd/B28359_01/server.111/b28274/memory.htm#BGBBIACC
    and check "7.3.4.1.3 Allocating Additional Memory to the Result Cache"
    Thanks
    Kuljeet Pal Singh
    Edited by: Kuljeet Pal Singh on May 17, 2012 12:14 PM

  • How pass parameter to report?

    i want to have a report which show the orders of a certain customer
    select order_date , customer_name , order_value from orders
    where customer_id = my_variable
    my variable is the parameter to be passed to the report
    How can i pass the value to the report where parameter name is my_variable
    help
    Best Regards
    Mohamed Hammed

    Hi all,
    Finally i got succeed
    here is a sample code
    and here is how to call a report from a form
    1-Form
    Create Button Action
    Custom
    declare
    input_MEMBERSHIP_NUMBER number;
    l_url varchar2(2000);
    begin
    input_MEMBERSHIP_NUMBER:= p_session.get_value_as_number( p_block_name => 'DEFAULT',
    p_attribute_name => 'A_MEMBERSHIP_NUMBER');
    l_url :=
    'http://servername:7778/pls/portal/PORTAL_DB.SPECIALIZATION_REMOTE.show?p_arg_names=input_MEMBERSHIP_NUMBER&p_arg_values='||input_MEMBERSHIP_NUMBER;
    portal.wwa_app_module.set_target(l_url);
    end;
    2-report
    SQL Used in the report:
    select * from PORTAL_DB.SPECIALIZATION_tab where
    SPECIALZATION_DELETE_DATE IS NULL
    AND MEMBERSHIP_NUMBER = :input_MEMBERSHIP_NUMBER
    order by DEPARTMENT_CODE

  • How pass parameter to function

    I have created function name is 'Funsepratecolumvaue'
    and I took one parameter, I want to pass this parameter out put of below variable, how can i do
    declare @para varchar(500);
    set @para='select rawRow from sepratecolumvaue'
    I tried like this  
    select * from Funsepratecolumvaue (@para)
    but directly passed select query

    Is this something you are looking for?
    Yes, you can with the help of apply clause.
    CREATE FUNCTION dbo.fnSplit(
    @sInputList VARCHAR(8000) -- List of delimited items
    , @sDelimiter VARCHAR(8000) = ' ' -- delimiter that separates items
    ) RETURNS @List TABLE (item VARCHAR(8000))
    BEGIN
    DECLARE @sItem VARCHAR(8000)
    --declare @sDelimiter varchar(8000) = ' '
    WHILE CHARINDEX(@sDelimiter,@sInputList,0) <> 0
    BEGIN
    SELECT
    @sItem=RTRIM(LTRIM(SUBSTRING(@sInputList,1,CHARINDEX(@sDelimiter,@sInputList,0)-1))),
    @sInputList=RTRIM(LTRIM(SUBSTRING(@sInputList,CHARINDEX(@sDelimiter,@sInputList,0)+LEN(@sDelimiter),LEN(@sInputList))))
    IF LEN(@sItem) > 0
    INSERT INTO @List SELECT @sItem
    END
    IF LEN(@sInputList) > 0
    INSERT INTO @List SELECT @sInputList -- Put the last item in
    RETURN
    END
    GO
    create table table1
    id int,
    name char(10),
    dept varchar(20))
    insert into table1 values(1,'aa','1,2,3,4,5')
    insert into table1 values(3,'bb','1,2,3')
    select * from table1
    OUTER APPLY dbo.fnSplit(dept,',') p
    --Prashanth

  • How to parameter F4IF_INT_TABLE_VALUE_REQUEST?

    Hi experts,
    could u explain, what are the parameters in this function? I tried to parameter the function, but no value found and nothing was displayed.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
           ddic_structure         = '
          retfield               = '  '
        PVALKEY                = ' '
        DYNPPROG               = ' '
        DYNPNR                 = ' '
        DYNPROFIELD            = ' '
        STEPL                  = 0
        WINDOW_TITLE           =
        VALUE                  = ' '
        VALUE_ORG              = 'C'
        MULTIPLE_CHOICE        = ' '
        DISPLAY                = ' '
        CALLBACK_PROGRAM       = ' '
        CALLBACK_FORM          = ' '
         TABLES
           value_tab              =
        FIELD_TAB              =
        RETURN_TAB             =
        DYNPFLD_MAPPING        =

    hi,try this code
    SELECT-OPTIONS: s_f4 for wa_tab-f1.
    INITIALIZATION.
    PERFORM get_search_hlp_values.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_f4-low.
    PERFORM get_f4help CHANGING s_f4-low.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_f4-high.
    PERFORM sub_get_f4help CHANGING s_f4-high.
    FORM get_search_hlp_values.
    fill itab with values here
    ENDFORM. " sub_get_search_hlp_values
    FORM sub_get_f4help_for_user CHANGING p_bname TYPE char10.
    DATA: l_i_field TYPE STANDARD TABLE OF dfies INITIAL SIZE 0,
    l_wa_field TYPE dfies,
    l_i_return TYPE TABLE OF ddshretval,
    l_wa_return TYPE ddshretval.
    CONSTANTS: c_feild TYPE dfies-fieldname VALUE 'BNAME',
    c_dynprg TYPE sy-repid VALUE 'RSSYSTBD',
    c_dynpnr TYPE sy-dynnr VALUE '1000',
    c_dynfeild TYPE help_info-dynprofld VALUE 'S_BNAME-LOW',
    c_stepl TYPE sy-stepl VALUE '0',
    c_valueorg TYPE ddbool_d VALUE 'C'.
    Populate the Field table
    l_wa_field-tabname = 'QMFE'.
    l_wa_field-fieldname = 'FECOD'.
    APPEND l_wa_field TO l_i_field.
    IF NOT i_data[] IS INITIAL.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield = c_feild
    dynpprog = c_dynprg
    dynpnr = c_dynpnr
    stepl = c_stepl
    value_org = c_valueorg
    TABLES
    value_tab = i_tab
    field_tab = l_i_field
    return_tab = l_i_return
    EXCEPTIONS
    parameter_error = 1
    no_values_found = 2
    OTHERS = 3.
    READ TABLE l_i_return INTO l_wa_return
    WITH KEY fieldname = 'FECOD'.
    IF sy-subrc EQ 0.
    p_bname = l_wa_return-fieldval.
    ENDIF.
    ENDIF.
    ENDFORM. " get_F4help
    thanks

  • How pass parameter from Form to Graphics through Report?

    I wrote a Report called by a Form and pass a parameter from the
    Form to the Report, successfully! But I imported a Graphic in
    the Report, and the Graphic could not get the parameter...(the
    parameter in the Report and Graphic should both pass from the
    Form).
    I call the Report by " Run_Product( REPORTS, :V_PRTNAME,
    SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id,NULL); " in the Form.
    and I imported the image from file for the Graphic in the Report.
    Thanks for your help!
    null

    Meilan (guest) wrote:
    : I wrote a Report called by a Form and pass a parameter from the
    : Form to the Report, successfully! But I imported a Graphic in
    : the Report, and the Graphic could not get the parameter...(the
    : parameter in the Report and Graphic should both pass from the
    : Form).
    : I call the Report by " Run_Product( REPORTS, :V_PRTNAME,
    : SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id,NULL); " in the Form.
    : and I imported the image from file for the Graphic in the
    Report.
    : Thanks for your help!
    Meilan,
    This forum is for Headstart related questions and experiences
    only. Please go to metalink.oracle.com to get more information on
    your problem.
    Regards,
    Ton
    null

  • How Pass parameter with Activex Viewer

    Developper enviroment:
    - Crystal Report XI
    - Visual Basic 6.3
    - Access 2007
    Installa library : CRAXDDRT, CrystalActiveXReportViewerLib11_5
    I need to pass some Value to the parameter  field of my reports.
    I use this code that working well to show the report and I need to add the right code to pass some parameter to the Report.
        Dim CRXApplication As CRAXDDRT.Application
        Dim CRXReport As CRAXDDRT.report    
    Private Sub Form_Load()
        Set CRXApplication = CreateObject("CrystalRuntime.Application")
        Set CRXReport = CRXApplication.OpenReport("C:\GR&A_Trend\R1_analisi.rpt", 0)   
        CrystalActiveXReportViewer4.ReportSource = CRXReport      
        CrystalActiveXReportViewer4.ViewReport   
        CrystalActiveXReportViewer4.EnableSearchControl = True   
        CrystalActiveXReportViewer4.Zoom (100)    
    End Sub
    Can You help me  to add the right code to pass some parameter to the Report.
    Thank's
    Regards
    Giovanni Roi

    Giovanni,
    I would love to help you on this however I only work under 2008 environment. Saying that, I am sure if you can re-arrange your coding you will get the desired result.
    Here is the code which I used in my VS2008 to set the parameters under VB.net
    'declaring all the parameter value fields
                Dim crParameterFieldDefinitions As ParameterFieldDefinitions
                Dim crParameterFieldDefinition As ParameterFieldDefinition
                Dim crParameterValues As New ParameterValues
                Dim crParameterDiscreteValue1 As New ParameterDiscreteValue
                Dim crParameterDiscreteValue2 As New ParameterDiscreteValue
                'the two text boxes which will carry the discrete parameter value
                crParameterDiscreteValue1.Value = TextBox1.Text
                crParameterDiscreteValue2.Value = TextBox2.Text
                crParameterFieldDefinitions = _
        cryRpt.DataDefinition.ParameterFields
                'Start code parameter value
                crParameterFieldDefinition = _
           crParameterFieldDefinitions.Item("startcode")
                crParameterValues = crParameterFieldDefinition.CurrentValues
                crParameterValues.Clear()
                crParameterValues.Add(crParameterDiscreteValue1)
                crParameterFieldDefinition.ApplyCurrentValues(crParameterValues)
                'End code parameter value
                crParameterFieldDefinition = _
           crParameterFieldDefinitions.Item("endcode")
                crParameterValues = crParameterFieldDefinition.CurrentValues
                crParameterValues.Clear()
                crParameterValues.Add(crParameterDiscreteValue2)
                crParameterFieldDefinition.ApplyCurrentValues(crParameterValues)
    Hope this helps
    Regards
    Jehanzeb

  • How can  Parameter passing Form 6i to Report 6i

    Hi,
    I want to send a parameter from the Form 6i to run a report 6i which is used in where clause of a query. Who can I send this parameter???
    Please send me solution of this problem.
    Shahzad

    There are dozens of threads on this site regarding this topic.
    Did you bother to search first?
    Try pass parameter to report paramater form from a form

  • UserControl in MV4 - How send parameter for get property?

    Guys, good night! 
    Build a User Control in MVC 4, I'm having trouble sending the values ​​for compomente. ASPX create the SET functions to assign values ​​in userControl. How to do this with MVC. 
    Example 
    <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
    <div class="mini-stat clearfix">
        <span class="mini-stat-icon green"><i class="fa fa-gavel"></i></span>
            <div class="mini-stat-info">
                <span>320</span>100 - Pedido  
            </div>
    </div>
    Where has value 320 and 100 - Order, let me make dynamic by calling the parent page. 
    . Aspx I consummated compomente Label to include this <asp: Label ..... /> 
    [] 's

    Tks.
    Post on link 
    http://forums.asp.net/p/1967471/5627909.aspx?p=True&t=635279781887247454&pagenum=1

  • How to Parameter WRT54GS to connect to Internet through Livebox-2 ?

    I intend to connect a network built around the WRT54GS to Internet by passing through a second network who is already connected to Internet through the Orange Livebox-2 (French).
    I have a traditional home network with basic shares on the French Orange Livebox-2 and its WiFi.
    The computers runs XP - Pro .
    My ADSL access is normally through the Livebox-2
    (Range of addresses 192.168.1.xxx) and I run DHCP
    Working Group "WORKGROUP".
    It works without problem (Internet and VoIP telephony) except the Wifi of the Livebox which is known as poor (range and stability).
    I also manages a small "pedagogical workshop" for the school who visit my mill.
    This network is available to my young visitors based on a (tower) server containing the libraries and teaching materials and its printer. It’s XP - Pro machine. and to allow a maximum of two laptops be WiFi connected.
    The second network is built around the Linksys router (wich integrates no modem, simply a router).
    The WRT54GS router (rev 6) whose firmware is original Linksys up to date.
    I am setting the two Wi-Fi (Livebox 6 Cnl) and Cnl 4 on WRT54GS and different keys (this is manageable without difficulty).
    It has its server DHCP and Wi-Fi to connect their machine.
    What about the name of this second network group ? Currently “WORKGROUP” as well.
    I am setting a range different on the router WRT54GS (192.168.2.xxx) and enabled the DHCP.
    This "educational" network works perfectly when alone and separated from the "home" network and doesn’t get connected to Internet…
    I want to connect this router Linksys WRT54GS rev6 cascading through the Livebox-2.
    Share Internet via the Livebox-2 access.
    What about functionality?
    What is the connection to setup ?
    Should it be simple physical connection with a cable between the yellow ethernet port "2" of the Liveboxbox and the "Internet" connector of the Linksys router?
    Is this a good track to explore? I have searched extensively on the Internet but found proposals who are very old and refer to old Livebox... I did test and is not satisfactory...
    I have described as well as possible the needs and the config!
    It is the experts to speak now !
    I am available for further information.
    HOW CAN I ACHIEVE THE INTER CONNECTIVITY?

    From what I understand, you want to extend your internet connection - from the Orange Livebox-2  to your WRT54GS. You can actually do this by cascading the linksys router to your livebox. There are tow ways in cascading routers: LAN-LAN and LAN-WAN. For more information about cascading routers, you may refer to this link: http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=785463d9ecaf4cac84aed245b08d615f_3733.xml&pid=104&....

  • Component loader & external swf : how send parameter ?

    hello all,
    I have a simple problem I have not been able to solve.
    I use a compnent loader to load an external swf.
    I need to pass a parameter to the swf to make it run
    properly, which I named 'url_xml' and in which I provide the name
    of an XML file.
    the component loader is named 'diaporama'.
    the following code works :
    _root.diaporama.contentPath = "my_swfplayer.swf";
    BUT I need to send a parameter, so I tried :
    _root.diaporama.contentPath =
    "my_swfplayer.swf?url_xml=filexml.xml";
    It does not work. It tries to load a file named
    my_swfplayer.swf?url_xml=filexml.xml
    instead of loading my_swfplayer.swf with the param url_xml
    whose value is filexml.xml.
    Can somebody help ?
    Many thanks.

    I would place some code in the loaded movie to look for the
    variable and then start.
    Cheers,
    Gorka
    www.AquiGorka.com

Maybe you are looking for

  • How to download the latest adobe flash

    Everytime I try to dowbload the latestversion of adobe flash; I can't: Blocked Plug-in shows instead of the program. What does blocked plug-in mean? How do I download the latest version of adobe flash? Thanks

  • Strange font problem in Safari, only in one account

    Hi, Safari (3.2.1) renders small fonts on some pages incorrectly, but does so only on one user account. On nytimes.com, for example, the headlines are all fine, but the text is thin and hard to read. I have cleared caches, deleted User/Library/Prefer

  • Reminders won't let me create anything

    I can't make lists, I can't set reminders. When I ask Siri to remind me of something it says sorry I can't create that reminder. How do I fix the app if I can't uninstall and reinstall is?

  • 3D Mark 03 CPU scores are poor, espically Troll's Lair

    3D Mark 03 CPU scores are poor, espically Troll's Lair...that is compared to my P4 3.0ghz set-up I just came off of. The best score my P4 3.0ghz did non-OCed was 780, in fact it was almost always right in there. The best I have done with my Athlon 64

  • Shared libraries - what for?

    can anyone offer a reasonable explanation for the following. iphoto has the ability to share libraries - great! i can share the library on my MacMini - good. i can see it fine on my MBP and copy/paste pictures into my MBP library - cool but, i cannot