Infinity set up info query

HH5 arrived this morning ready for wed set up. Installed it and wired and wireles working ok.
The query I have is do I connect vision+ box  same as HH4 with the ethernet cable to HH5? and do I need to do anything else after cab visit on wednesday?
Thanks

Yes connect everything up as you had on the HH4.
If it is Infinity 1 which is now a self install just make sure that you use the micro filters if you don't already have a filtered master socket. Because you are already using it on ADSL if on the day of the change over it doesn't appear to be working you may need to do a factory reset of the homehub by pressing a pin into the recess button on the rear for about 20 seconds to get it to connect.
If it is Infinity 2 the engineer should call at your house and carry out the install for you. 

Similar Messages

  • RE: Authority checks included in the info set of the query

    Hi all,
    I am checking the program code for one of our custom tcodes and i asked ABAP team to add authority check to the program code because there is no auth check in the code and abapers told me that the authority check is included inside the info set of the query and not in the program . the program is used to execute the query in the Tcode.
    how to find the Authority checks included in the info set of the query.
    Thanks in advance,
    Sun.

    If you have the BI support roles assigned to you  and the security admin  roles please login to the BI system
    execute transaction RSECADMIN, click on the analysis tab and execute as the user who is assigned the role with restrictions.
    For variables in authorizations like ( type customer exit )
    use RSECADMIN - maintain authorization tab - Click on value authorization tab.
    Keytransaction is RSECADMIN  & infoobject maintenance details you can get from RSD1.
    Regards

  • How to export result set from mysql query browser to .sql in oracle

    Hi folks:
    I was trying to export result set from MySql query browser to Oracle. I could able to do
    File->Export Result Set-> Excel format...
    What I am trying to get is .sql file so that I can run it as a script in my oracle db. Is there any way we can get .sql file with inserts and delimeters ....?
    Did you guys get my question.?
    Please throw some light on this....
    Could be very appreciable ....
    Thanks
    Sudhir Naidu

    Hi
    Create a sql statement which generates the insert statements.
    Something like this:
    select 'insert into table1 (column1, column2, column3) values (' ||
    column1 || ', ' || column2 || ', ' || column3 || ');' from table 1;
    The || sign is the string concatenation sign in Oracle, replace it the appropriate sign in MySql. Export the result set of this query into a file, and you can run it in a SqlPlus.
    Ott Karesz
    http://www.trendo-kft.hu

  • Setting in info package

    Hi,
    When we create info package on 3.x data source, we can find the setting like Separator for Thousands and  'Character Used for Decimal Point' in info package but where can I find these setting in info package when it is created on 7.0 data source?
    Thanks in advance.

    Hi,
    You will never get such option in Infopackage level for any datasource be it 3.X or 7.0 except for Extraction tab of Flat File data source.
    The option for decimal character and separator comes in the EXTRACTION tab of the Flat File data source IP only and no where else. I think you are getting confused with this
    In the flatfile data source you require these settings to be done before hand so that while extraction system can recognize the correct field values and field sequence.
    Hope this clarifies your doubts.
    Navesh
    Edited by: navsamol on Nov 16, 2011 12:10 PM

  • Let end user to set up the query

    Hi all!
    Is there a way to let end user to set up a query/report with forms?
    = users can use a form (whit predefined values) to determine which column(s) shows in the result and can add filters before submit.
    Because a cube is stored in relational tables i think it's not an olap question.
    But here is why i asked this:
    I make an application that query an olap cube. I can make reports with apex from the cube view and from dimension views. But i want to let users to select from the available dimensons and measures and set filters on selected dimensions (on first page) using a form. When user submit the form the second page shows the result.
    Thanks
    Edited by: qenchi on 2009.08.09. 7:27

    Hi,
    This is what I've done in that application example.
    1 - I have two pages. Page 1 is the select columns and filters page and Page 2 is the report
    2 - On page 1, I have created a PL/SQL page process, called P1_CREATE_COLLECTION, that runs "Before Header". This is unconditional and has a Source Process of:
    BEGIN
    IF NOT APEX_COLLECTION.COLLECTION_EXISTS('FILTERING') THEN
      APEX_COLLECTION.CREATE_COLLECTION_FROM_QUERY('FILTERING', 'SELECT COLUMN_NAME, DATA_TYPE, ''Y'' SHOW_YN, '''' FILTER FROM ALL_TAB_COLUMNS WHERE OWNER = ''#OWNER#'' AND TABLE_NAME = ''EMP3'' ORDER BY COLUMN_ID');
    END IF;
    END;ALL_TAB_COLUMNS contains records for all columns in all tables. In this example, I'm retrieving a list of all of the columns in the EMP3 table (which is just a copy of EMP plus a few extra fields). I'm also getting the data type for the column, setting the "Show" value to Y and starting with an empty filter string for each column. The actual data is retrieved into a collection called FILTERING. In this way, I can store all of the user's selections for use on Page 2. The IF test just ensures that I don't overwrite the collection if it already exists - that is so that I can keep any settings that the user made when they were last on Page 1.
    This collection gives allows me to store the following:
    SEQ_ID - the collection's sequence ID
    C001 - The COLUMN_NAME
    C002 - The DATA_TYPE
    C003 - The Y/N flag for SHOW_IN_REPORT
    C004 - The filter to be applied to the column
    3 - I created a "SQL Query (updateable report)" report. To do this you need to create a report using the SQL Wizard - any SQL statement will do - then you can change the report type from "SQL Query" to "SQL Query (updateable report)". I haven't found another way to do this.
    The report's SQL was changed to:
    SELECT APEX_ITEM.HIDDEN(1, SEQ_ID) || C001 COLUMN_NAME,
    C002 DATA_TYPE,
    APEX_ITEM.SELECT_LIST(3, C003, 'Yes;Y,No;N') SHOW_IN_REPORT,
    APEX_ITEM.TEXT(4, C004) FILTER
    FROM APEX_COLLECTIONS
    WHERE COLLECTION_NAME = 'FILTERING'
    ORDER BY SEQ_IDThis is a "manual tabular form" and is based on the collection created by my process.
    4 - I then created a button on the page called P1_CREATE_REPORT. This is just a normal submit button - the branch for this is to Page 2. On the branch, I ticked the option to "reset pagination for this page"
    5 - Finally, on Page 1, I created a PL/SQL process, triggered by my button, and in the "On Submit - After Computations and Validations" process point. The Process code for this is:
    BEGIN
    FOR x IN 1..APEX_APPLICATION.G_F01.COUNT
    LOOP
    APEX_COLLECTION.UPDATE_MEMBER_ATTRIBUTE(p_collection_name=>'FILTERING', p_seq=>APEX_APPLICATION.G_F01(x), p_attr_number=>3, p_attr_value=>APEX_APPLICATION.G_F03(x));
    APEX_COLLECTION.UPDATE_MEMBER_ATTRIBUTE(p_collection_name=>'FILTERING', p_seq=>APEX_APPLICATION.G_F01(x), p_attr_number=>4, p_attr_value=>APEX_APPLICATION.G_F04(x));
    END LOOP;
    END;This loops through the tabular form after it is submitted and updates the collection with the Y/N Show values and the filters
    Now onto Page 2
    1 - I created a SQL Query report using *SELECT 1 FROM DUAL".  When created, I changed the report type to "SQL Query (PL/SQL function body returning SQL query)" and change the Region Source to the following code:
    DECLARE
    vSQL VARCHAR2(8000);
    vQ CHAR(1);
    vSEP1 VARCHAR2(2);
    vSEP2 VARCHAR2(6);
    BEGIN
    vQ := CHR(39);
    vSEP1 := '';
    vSEP2 := 'WHERE ';
    vSQL := 'SELECT ';
    FOR x IN (SELECT SEQ_ID, C001, C002, C003, C004 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'FILTERING' ORDER BY SEQ_ID)
    LOOP
      IF x.C003 = 'Y' THEN
       vSQL := vSQL || vSEP1 || x.C001;
       vSEP1 := ', ';
      END IF;
    END LOOP;
    vSQL := vSQL || ' FROM EMP3 ';
    FOR x IN (SELECT SEQ_ID, C001, C002, C003, C004 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'FILTERING' ORDER BY SEQ_ID)
    LOOP
      IF LENGTH(x.C004) > 0 THEN
       IF x.C002 = 'VARCHAR2' THEN
        vSQL := vSQL || vSEP2 || x.C001 || '=' || vQ || x.C004 || vQ;
       ELSIF x.C002 = 'DATE' THEN
        vSQL := vSQL || vSEP2 || x.C001 || '=TO_DATE(' || vQ || x.C004 || vQ || ',' || vQ || 'DD/MM/YYYY' || vQ || ')';
       ELSE
        vSQL := vSQL || vSEP2 || x.C001 || '=' || x.C004;
       END IF;
       vSEP2 := 'AND ';
      END IF;
    END LOOP;
    RETURN vSQL;
    END;This loops through the FILTERING collection twice. The first time to build up a SQL SELECT statement containing all of the columns in EMP3 that the user wants to show
    The second loop then builds up a WHERE clause for the statement based on any filters the user wants to apply. I have used the DATA_TYPE values stored in the C004 field to identify the format of the value in the WHERE clause - either VARCHAR2, which puts the string in quotes, DATE, which casts the string as a date using DD/MM/YYYY format and then any other value (which should be NUMBER), which just outputs the value entered.
    Note that I've used vQ to hold the quote character (CHR(39)) as I find this easier than trying to work out how many single, double or triple quotes I need to get quotes within the string.
    All of this just builds up a string (vSQL) which is returned to Apex at the end of the code so that it can build the report.
    Note that I have also ticked the option under the Region Source setting to show "Use Generic Column Names (parse query at runtime only)". This needs to be done as the columns are changeable.
    2 - I created a button called P2_BACK_BUTTON which branches back to Page 1
    Obviously, this is a very basic example. You could, for instance, go one step further and allow the user to pick the table (SELECT TABLE_NAME FROM ALL_TABLES) or view (SELECT VIEW_NAME FROM ALL_VIEWS). As the final report is being constructed as a string, it doesn't matter how the table/view name is derived. You could also add popups for calendars and calculators, where appropriate, on Page 1.
    Andy

  • Setting OBDC info on multiple reports (batch)

    Hello,
    Is there a way to set OBDC info for multiple reports at once. I have users with 100+ reports and we just changed SQL server, so that each report need to be pointed to the new server. Doing it manually by opening each report and manually pointing it to the new server is a real pain.
    If there is a way we can do it in a batch that would save us a lot of time.
    TIA!

    since you're changing servers, just editing the existing odbc connection (i.e. in the 32 Bit ODBC  Data Source Administrator) to point to the new server should be all that is required as long as the table names and field names / types within those tables remains constant.
    otherwise, there are 3rd party tools (usually cost) like 'rpt inspector' where you can do this.

  • I have a 1and1 email address but when I complete all the setting up info it says that either the imap user name or password is incorrect. I have attempted it many times since carefully putting in the correct info but still same message appears. Any ideas?

    I have a 1and1 email address but when I complete all the setting up info it says that either the imap user name or password is incorrect. I have attempted it many times since carefully putting in the correct info but still same message appears. Any ideas?

    If this is a Gmail account you might need to unlock by going here: https://accounts.google.com/DisplayUnlockCaptcha.

  • Virtual column in the result set of the query.

    Hi folks,
    I have table , let it be, EMP. It has columns ENAME,EMPNO,JOB etc.,
    My requirement is to add an extra column, not present in the table, having NULL value at the time of diplaying the results of a query. I hope you got it. So a column that does not exists in the table should get displayed in the resultant set when we query the results from that table. so my question is, how to write the SELECT statement using that virtual column.
    I'd thought of using X column in Dummy table but what if I don't have any dummy table in my particular schema.
    Please do revert back with the solution.
    Your effort'll be genuinely appreciated.
    Cheers
    PCZ

    Hi,
    If you just wany display null values you can write query like this :
    SELECT ENAME,EMPNO,JOB , NULL DUMMY_COLUMN FROM emp;
    Regrads
    Avinash

  • Followed Tiscali set up info for Thunderbird and nothing works.

    Changed from Outlook Express to Thunderbird on Win XP computer. Followed Tiscali set up info. Tiscali confirm the settings are correct but nothing works.

    I followed the Tiscali set up info to the letter. I could not send any messages. I always got the same error message. I then read the Thunderbird technical article re these error messages and found that I needed to complete the "user name" section on the Accounts settings bit, something that Tiscali did not mention at all. Doh!. Problem solved within 30 secs!
    Thanks for all the support.
    Cheers, Ian.

  • Unable to set user info

    I am creating a duplicate account(concatenated with numerics to attributes) in AD and could not figure out what was going wrong?
    <ResultItem type='message' status='error'>
    <Message id='Unable to set user info: &#39;SetInfo(): 0X80072035: , 00002016: SvcErr: DSID-031A0FC0, problem 5003 (WILL_NOT_PERFORM), data 0&#xA;, The server is unwilling to process the request.&#xD;&#xA;'>
    </Message>
    </ResultItem>
    Any suggestions please?

    Hi
    Have you found a solution to this problem?
    I am trying to create User accounts in my Windows AD, and I keep getting the error :
    *"Unable to set user info. The name provided is not a properly formed account name"*

  • How set dynamically created query in GridControl?

    How set dynamically created query in GridControl?
    Thank you

    If your dynamic query is based on an Entity object, then you can probably use RowSetInfo setQueryInfo method.
    The argument to this method is a 'Query' object. There are three flavours provided in the oracle.dacf.dataset
    package.
    oracle.dacf.dataset.QueryViewInfo
    defines an updateable SQL query based on a predefined BC4J View Object.
    oracle.dacf.dataset.QueryStatementInfo
    Creates a view object based on an arbitrary SQL statement.
    oracle.dacf.dataset.QueryInfo
    Creates a View Object from an Entity Object and additional SQL clauses. The View Object will have
    that Entity Object as its sole Entity Object base.
    If in your application you are able to specify the name of the entity, then you can use the QueryInfo method to define your
    query. Please try the following.
    SessionInfo si = ....
    void runDynamicQuery()
    RowSetInfo rsi = new RowSetInfo();
    AttributeInfo ai = new AttibuteInfo(..);
    ai.setName(..);
    rsi..addChild(ai);
    si.addChild( rsi)
    rsi.setQueryInfo( new QueryInfo( ...../* include entity name */ .... ));
    rsi.setName(....);
    rsi.open(true);
    grid.setDataItemName(...);
    Hope this helps,
    Sathish.

  • Using the Set Session Info to populate Custom Variable

    Hey everybody, I'm trying to setup a Set Session Info step so when a caller presses 1 for instance to go to a specific department I can go into the database and see how many callers pressed a certain button.
    Here's what I've done so far, I've setup a Session called session_info with the value of null.  At the very beginning of the script it shows session_info = Get Contact Info --Triggering Contact--, Session)
    Then in the menu field when a caller presses 1 I have the Set Session Info step with the Session being session_info and then in the Context tab I have "_ccdrVar3" for the name and "1" for the value.
    The script doesn't fail it's just not populating any Custom Variable with any data. 
    Also I've tried using the Set Enterprise Call Info and using a value of 1 and then Call.PeripheralVariable3 for the name.  Not sure what the proper way to do this is.  Anybody have any ideas?

    Hi
    You don't need a session var.
    You just need to use 'set enterprise data' to set a call.peripheralvariable to what you like.
    The data goes straight into the contactcalldetail table.. You can check it by doing:
    run uccx sql db_cra select * from contactcalldetail where customvariableX = 'yoursetting'
    Where 'yoursetting' is what you set the ent data to, and customvariableX is the var you use (e.g. customvariable3 if you use call.peripheralvariable3)
    Regards
    Aaron
    Please rate helpful posts..

  • CCX 7 ENH Scripting - Set Contact Info For Closed Hours

    When calls come in after hours or on weekends, how should the script be configured so the call is not marked abandoned?  I know that after the Closed step I can Set Contact Information to handled and it will be reflected in the Historical Reports, but doesn't this skew the statistics when we are really interested in what is happening during open hours?   I have looked at a number of sample scripts and docs but I can't find anything related to what I am trying to figure out.

    Hi,
    Set Contact Info Step:
    Use the Set Contact Info step to modify the context information associated with a contact. You can use
    this step at the begining of the script to mark the contact as handled in the following scenarios: redirect,
    transfer, terminate, and abandon. The default value for all of these attributes is true.
    Set Contact Info Customizer Window

  • Backup set /piece info

    Hi,
    Application guy deleted few rows.
    So I am asked to do tablespace point time recovery in 11.2.0.3 on aix using old backup(two week before taken).
    I would like to check how many backup set and piece name in a L0 backup.Is there any query?
    Most of the V$backup_* views contains the following columns
    RECID
    STAMP
    SET_STAMP
    SET_COUNT
    what is the use of it?
    We taking backup in disk on production machine.We going to do TPIR on test machine.So that we moved particular backup set to tape.Os team changed TPO file settings.
    While restoring control file,we got the following info.
    channel t1: no autobackup in
    Even we specified until time clause.
    How to check what are the control file's and backup piece aviable in a tape?
    Thanks.

    Try:
    SPOOL LOG TO rman_bkp_ts.log
    RUN {
      SET UNTIL TIME 'trunc(sysdate)-14';
      RESTORE TABLESPACE
        ORCL_DATA, ORCL_INDEX, SYSAUX, SYSTEM, UNDOTBS1, USERS
        PREVIEW;
    }:p

  • How to set input ready query to display mode and set edit mode in WAD?

    when I create A input ready query but not set query propery  start  query in change mode ,but I want to set this query in input ready mode ,how to set this in WAD?
    hope anyone can help me
    regard  by
    wenlong

    Hi,
          You can get all the info from this thread , try it out
           WAD - set data entry mode
           Hope it helps.
    Regards,
    Priya.

Maybe you are looking for

  • Multiple conditions in one

    Hi, I have to put constants values L1 or L2 or L3 into a single target field but with constants it is not working. Is their any other way of doing it? Regards, Aniruddha

  • Ipad froze up with picture of cord plugin and arrow pointing to itunes logo but wont go away when i plug into itunes

    ipad froze up when i was updating itunes with ipad plugged into computer.  now ipad just shows a picture of a cord with an arrow pointing to the itunes logo.  does anyone know how to free up my ipad.  ive tried unpluggin it and plugging it back in to

  • Aperture Vault Does Not Read Drive Space Correctly

    Aperture 3 Vault does not read the disk space correctly on my newly formatted LaCie 500GB drive, and produces an error message that says there is not enough space to update the vault. Finder and Disk Utility both indicate that the drive is completely

  • Alignment and placement

    Can someone give me the coding or help me out... I want to place my image in a specific part of the page.. I tried dragging it on the design view but it is not working.. Is there a special advanced html code I can put before it to make the image show

  • Is iphoto part of macbook 2012

    my macbook pro has a problem it does not open iphoto after an update why is that