doubts about the result in short 3.1 table

Hi all

I created the table of results short 2.4 using the box for query using EQL and motions, but I do not see the possibility to enter the eql short 3.1.Has that something has changed, or I missed something?

and to allow drilling down short 2.4 I added an action column to retrieve the ID of event available on a particular line. Clicking on the button Add an Action column on the Configuration tab and added the action but can not see samething in short 3.1.

Can you get it someone please let me know how the above things is possible in short 3.1

Thanks in advance.

Unfortunately, you cannot rename it. It is standard to have the label the name of the attribute followed by the subset of date / time used.

Tags: Business Intelligence

Similar Questions

  • Doubt about the Index

    Hi all

    Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    "CORE 11.2.0.2.0 Production."
    AMT for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production

    I have a question about the index. Is - this required that the index will be useful if we have a "WHERE" clause I tried to find myself there but do not.
    In this example I haven't used where clause used but group. But it gives a comprehensive analysis. Is it possible to get the scan interval or something else using Group by?
    SELECT tag_id FROM taggen.tag_master GROUP by tag_id 
    
    Explain Plan:
    Plan hash value: 1688408656
     
    ---------------------------------------------------------------------------------------
    | Id  | Operation             | Name          | Rows  | Bytes | Cost (%CPU)| Time     |
    ---------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT      |               |  4045 | 20225 |     6  (17)| 00:00:01 |
    |   1 |  HASH GROUP BY        |               |  4045 | 20225 |     6  (17)| 00:00:01 |
    |   2 |   INDEX FAST FULL SCAN| TAG_MASTER_PK |  4045 | 20225 |     5   (0)| 00:00:01 |
    ---------------------------------------------------------------------------------------

    Hello

    SamFisher wrote:
    Since I was on what they do full scan. Is it possible to restrict of fullscan without using where clause?
    I guess having limit clause but not quite know.

    Why?
    If this query is producing good results, then you need a full analysis.
    If fool you somehow the optimizer by doing a scan of interval, it will be slower.

  • I have a doubt about the file .folio and publications

    Hello, I m new here.

    I want to start working with DPS, but I have a doubt about which version to buy.

    At the moment I have one customer just wants to publish a magazine, but my intention is to have more customers and publish more magazines.

    If I buy the unique edition of DPS, I read that I can publish a single file .folio. What it means? Each folio file represents a publication?

    Please, I need help to understand this before you purchase the software.

    Thank you very much

    Paul

    Here's a quick blog I wrote to compare the simple edition and

    multifolio apps:

    http://boblevine.us/Digital-Publishing-Suite-101-single-Edition-vs-multi-Folio-apps/

    Bob

  • Doubt about the expression of postfix

    That is the question

    public class {Twisty
    {index = 1 ;}
    int index;

    Public Shared Sub main (String [] args) {}
    new Twisty (.go ());
    }

    void getCurrentCard {}
    int [] [] dd = {{9,8,7}, {6,5,4}, {3,2,1,0}};
    System.out.println (DD [index ++] [index ++]);
    }
    }

    What is the result?
    How the postfix ++ operator works here?

    >

    What is the result?
    How the postfix ++ operator works here?

    Result = 4
    index = 1

    System.out.println(dd[index++]
    

    index = 2

    System.out.println(dd[index++][index++]);
    

    index = 3

    index is increased after treatment

  • Some doubts about the topology, interfaces and security modules

    Hello

    Below, some questions about the ODI:


    1. to use an LKM ODI always ask to use two different DATASERVERS (one for the SOURCE) and another to the TARGET?

    2. what would be the best way to create a new IKM with GROUP BY clauses?

    3. What is the required minimum PROFILE for developers users could import projects created in other ODI environments?

    4. If a particular WORK_REP is lost, it is possible that retrieve projects from version control information stored in the MASTER_REP?

    1.) Yes. LKM always loads data from one root to another.
    More than once I saw that even if there is a single physical server, several servers are configured in the topology Manager. This would lead to the use of a LKM because ODI consider 2 different servers.
    If the physical server is set only once, LKM won't be necessary.

    2.) IKM automatically adds a GROUP BY clause if it detects an aggregation function in the Interface implementation.

    3.) try to use the profile of the creator of NG.

    4.) this is not an easy task. But all the versioned objects are compressed and stored in a BLOB field in the master repository.
    You will need to know the names and versions you need to recover.
    SNP_VERSION and SNP_DATA have this information. Retrieves the field BLOB SNP_DATA and unpack using a zip utility. This will give you the XML property of the object that was transferred.
    Now, you can import this xml file and retrieve the object.

    You will need to loop through all the records in order of I_DATA, then extract to .xml file, and then import them to build the work rep.

  • doubt about the update

    Hi all

    Three statements to update, I need to run on a single table.
    Is there a way I can update instructions executed all three in a single statement?
        UPDATE xxops_forecast_extract b SET territory_id = (SELECT a.territory_id
             FROM fdev_hier_node_mv a
             WHERE a.shr_node_id = b.shr_node_id
              AND NVL(end_dt,SYSDATE) > SYSDATE) ;
        COMMIT;
    
        UPDATE xxops_forecast_extract b SET position_id = (SELECT a.row_id
            FROM s_postn a
            WHERE a.name = 'TD-'||UPPER(b.am_id))
            WHERE position_level = 7
            AND b.am_id IS NOT NULL;
        COMMIT;
      
        UPDATE xxops_forecast_extract b SET position_id = (SELECT a.row_id
            FROM s_postn a
            WHERE UPPER(a.desc_text) = UPPER(TRIM(B.POSITION_NAME)))
            WHERE position_level = 7
            AND b.am_id IS NULL;
     Below are the sample data for the tables. 
    
     xxops_forecast_extract 
     shr_node_id am_id position_name  position_id  territory_id
     2231211     Dave     (null)        (null)       (null)
     2231211     Michele  (null)        (null)       (null)
     2231211     (null)   COMM WEST 230 (null)       (null)
     2231211     (null)   COMM ISAM 110 (null)       (null)
    
     fdev_hier_node_mv
     shr_node_id territory_id 
      2231211      5694
    
    
     s_postn
     row_id    name       desc_text
     12122   TD-Dave     (null)
     12123   TD-Michele  (null)
     89381   (null)          COMM WEST 230
     89382   (null)          COMM ISAM 110
    
     Resulting table after update
    
     xxops_forecast_extract 
     shr_node_id am_id position_name  position_id  territory_id
     2231211     Dave     (null)        12122       5694
     2231211     Michele  (null)        12123       5694
     2231211     (null)   COMM WEST 230 89381       5694
     2231211     (null)   COMM ISAM 110 89382       5694
    Thank you all.

    Hello

    You can combine the statements by combining subqueries.
    No logic not apply to all the the original updates must be out of the WHERE clause and put in a CASE statement.
    The CASE statements should "update" column to itself if none of the conditions apply.

    For example, your final two statements UPDATE, that have subqueries on s_postn, both can be combined like this:

    UPDATE     xxops_forecast_extract     b
    SET     position_id =
         (
         SELECT     CASE
                   WHEN     (     b.am_id          IS NOT NULL
                        AND     UPPER (a.name)     = 'TD-' || UPPER (b.am_id)
                        )
                   OR     (     b.am_id          IS NULL
                        AND     UPPER (a.desc_text)     = UPPER (TRIM (b.position_name))
                        )
                   THEN     a.row_id
                   ELSE     b.position_id
              END
         FROM     s_postn     a
            WHERE     UPPER (a.name)          = 'TD-' || UPPER (b.am_id)
         OR     UPPER (a.desc_text)     = UPPER (TRIM (b.position_name))
         )
    ;
    

    There seems to be some mistakes in the statemnts UPDATE that you posted. For example, the last two refer to a column called position_level that does not exist in the other table.
    The above statement produces the results you want with the data you've posted.

    As you can see, the code is much harder to understand, debug and maintain.
    If the performance gain (if any) justifies the addional complexity is debatable in this case.
    I'm sure that combining all three queries would be useful.

    Consider using the MERGE: it is sometimes easier to use, even if, as in this case, you're never insert.

  • Doubt about the Performance

    Dear all,
    I'm running a procedure, and it should update the 8 million records.
    It uses a packaged procedure which is going on in another data base using the link of database to get certain values based on certain parameters.
    If the procedure doesn't return any data (in THE settings) then it must be inserted into a table of newspaper.
    If the procedure returns some data then it must be applied to the record in the database, like that it must update all records of 8 million

    But my procedure takes more than 14 hours to run.

    The following procedure is that I'm getting.
    It seems very simple, but I really don't understand why she's taking a lot of time.

    Guess aside.
    1 > to fill the lack of recording in the JOURNAL Table I use a PRAGMA AUTONOUMOUS_TRANSACTION procedure in the procedure itself and commit the data to see the results of the PAPER while still it runs the procedure. This will cause this procedure got COMMIT inside.

    2 > or it's because we use an external DB which is present in another data base package.

    The procedure seems very simple, but I don't know why it takes a long time.

    Appreciate any feed back.

    Thanks and greetings
    Madhu K

    create or replace procedure pr_upd_pb2_acctng_trx_gl_dist is

    cursor cur_pb2_acctng_trx_gl_dist is
    Select

    PATGD.patgd_id, patgd.company,

    PATGD.profit_center, patgd.department,

    PATGD. Account, patgd.sub_account,

    PATGD. Product, patgd.project

    of pb2_acctng_trx_gl_dist patgd;

    -where patgd_id in (4334663,227554); *


    v_r12_company varchar2 (100);
    v_r12_profit_center varchar2 (100);
    v_r12_department varchar2 (100);
    v_r12_account varchar2 (100);
    v_r12_product varchar2 (100);
    v_r12_project varchar2 (100);
    v_r12_combination_id varchar2 (100);
    v_error_message varchar2 (1000);
    number of v_patgd_id;

    procedure pr_pb2_acctng_dist_error -> THIS PROCEDURE IS USED to COMMIT for THE JOURNAL DATA TABLE. (THIS HAS GOT TO COMMIT) (WHAT IS THE REASON)
    *(*
    number of v_patgd_id

    v_company varchar2,

    v_profit_center varchar2,

    v_department varchar2,

    v_account varchar2,

    v_product varchar2,

    v_project varchar2
    *)*
    is
    pragma autonomous_transaction;
    Start
    insert into pb2_acctng_trx_gl_dist_error
    *(*
    patgd_id,

    company,

    profit_center,

    Department,

    account,

    product,

    project
    *)*
    values

    *(*
    v_patgd_id,

    v_company,

    v_profit_center,

    v_department,

    v_account,

    v_product,

    v_project

    *);*

    commit;
    end;


    Start

    run immediately 'truncate table pb2_acctng_trx_gl_dist_error;


    for rec_pb2_acctng_trx_gl_dist loop cur_pb2_acctng_trx_gl_dist
    v_patgd_id: = rec_pb2_acctng_trx_gl_dist.patgd_id;
    CGL.mis_mapping_util_pk_test1.get_code_combination@apps_r12 -> THIS IS THE DB LINK EXTERNAL PROCEDURE.
    * ('SQLGL', *)
    *'GL # », *
    NULL,
    rec_pb2_acctng_trx_gl_dist.company,
    rec_pb2_acctng_trx_gl_dist.profit_center,
    rec_pb2_acctng_trx_gl_dist. Department,
    rec_pb2_acctng_trx_gl_dist. Account,
    rec_pb2_acctng_trx_gl_dist.sub_account,
    rec_pb2_acctng_trx_gl_dist. Product,
    rec_pb2_acctng_trx_gl_dist. Project,
    v_r12_company,
    v_r12_profit_center,
    v_r12_department,
    v_r12_account,
    v_r12_product,
    v_r12_project,
    v_r12_combination_id,
    v_error_message
    *);*


    If (v_r12_company is null or v_r12_profit_center is null or v_r12_department is null
    or v_r12_account is null or v_r12_product is null or v_r12_project is null) then


    pr_pb2_acctng_dist_error (rec_pb2_acctng_trx_gl_dist.patgd_id,
    rec_pb2_acctng_trx_gl_dist.company,
    rec_pb2_acctng_trx_gl_dist.profit_center,
    rec_pb2_acctng_trx_gl_dist. Department,
    rec_pb2_acctng_trx_gl_dist. Account,
    rec_pb2_acctng_trx_gl_dist. Product,
    rec_pb2_acctng_trx_gl_dist. Project);

    on the other

    Update pb2_acctng_trx_gl_dist
    define society = v_r12_company,

    profit_center = v_r12_profit_center,
    Department = v_r12_department,
    account = v_r12_account,

    sub_account = null,
    product = v_r12_product,.
    project = v_r12_project
    where patgd_id = rec_pb2_acctng_trx_gl_dist.patgd_id;

    end if;


    end loop;

    -commit; *

    exception

    while others then

    mis_error.log_msg (0,
    NULL,
    * 'Patgd ID =' *.
    *|| v_patgd_id *.
    *|| '. SQLCODE ='*.
    *|| SQLCODE *.
    *|| '. SQLERRM ='*.
    *|| SQLERRM *.
    *);*

    end;

    Sins:

    (i) treatment of line by line - especially with a dblink.
    (II) in the course of committing
    (III) unnecessary use of an autonamous transaction.

    Looks like you need to rethink this approach and use SQL directly instead.

  • doubt about the choice of the appropriate method

    I have 2 tables with the same columns.
    say

    TABLE1:

    COL1
    COL2
    COL3


    TABLE2
    COL1
    COL2
    COL3

    I want to transfer data from table2 to table1 under certain conditions.

    which method is the fastest

    option 1

    Insert into table1 (col1, col2, col3)
    Select col1, col2, col3 from table2 where...

    or

    option 2:

    Select the lines of table2 to a table to aid as a cursor structure and bulk insert into table1.

    or any other good metod?


    There may be affected lines from 1 to 10.

    Hello

    INSERT INTO SELECT will be best option if your data are not very large. It is benefecial as you would use SQL and PL/SQL, which will ensure that there is no context switching.

    If the data in the table are very large, then batch insert by using the cursor and bulk insert and then commit is advisable.

    Concerning
    Ameya

    Published by: Ameya on April 19, 2011 03:19

  • Doubts about the line of the error

    Hello

    I have the following schema:

    A publication, "P_REA", which has 15 points of publication.
    And 15 steps associated with this publication.

    Another publication, "P_REA_2010", which has 17 publishing points.
    And 17 sequences associated with this publication.

    Each publication element, P_REA, points to the same table as P_REA_2010.
    Example:

    X: part of publication in P_REA
    Y: element of publication in P_REA_2010
    T: table

    X and puts at the same table "T".

    A customer who had associated with P_REA, is associated with P_REA_2010 without uninstalling with WebToGo.

    By synchronizing this client appears in the queue of the error without any warning and duplicates of publishing points.
    Example:

    X (part of publication in) P_REA 0
    Y (part of publication in) P_REA_2010 0


    Is someone can tell me this error?

    Thank you very much.

    What is the error which is fiven in the queue of the error and how. Table c$ EQ is the error queue header and the first point of failure for a transaction will be the details of the problem in the message.

    When you configure the second request, is
    (a) designed as a replacement for the old man, that is to say: the user will be transferred from P_REA to P_REA_2010
    (b) are completely separate to know: each application uses the same objects, but has elements of different publication their SEO
    (c) two separate requests/publications, but using the same elements of effective publication
    (d) to make two sets of sequences have different names, and you have the starting points, so they could not overlap

    Oracle has normally say that you can't have the same objects in several applications, but it tends to work well if they are published separately (but be careful with the changes that the effect on their triggers and tables of the CEQ/CVR/CLG will happen on a change for each application).

    If you share the publication to fast refresh items you could get some issues such as the data of the COP/MOP$ tables set up in the MGP deal and used as the key for download can be inconsistent that two applications will try and set it and download it.

    If you switch users from one application to another, then remove a user of an application does not automatically deletes the customer odb file, and several application odb files can be there at the same time

  • A question about the count of several lines of table in a PL/SQL block

    Hi all




    I have a problem on counting the rows from several tables in a PL/SQL block, and I would be grateful if you could kindly give me a helping hand. Here's my problem: file in Microsoft Excel (one column) I have a list of several names of tables. For each table, when the number of rows is equal to 10000 I have to call a procedure. Here's how I tried to do:
    DECLARE
         CURSOR tb_cursor IS
              WITH my_table_names AS
                   (
                        SELECT  'table1'  AS tbname  FROM  DUAL  UNION
                        SELECT  'table2'  AS tbname  FROM  DUAL  UNION
                        SELECT  'table3'  AS tbname  FROM  DUAL  UNION
                        SELECT  'table4'  AS tbname  FROM  DUAL  UNION
                        .
                        .  Here I continue writing one line for each table in order
                        .  to have the table names stored in my Excel file as a table 
                           to be queried by SELECT statement
                        .
                   )
              SELECT *
              FROM my_table_names;
    BEGIN
         -- Here I verify that for each table having more than 10000 lines
         -- I call the specified procedure which is needed
         
         FOR I IN tb_cursor LOOP
              DECLARE
                   -- Here I declare a cursor for counting the number of rows
                   CURSOR currentTableRowCounter IS
                        SELECT COUNT(*) AS rowsNum
                        FROM I.tbname;
                        
                   numberOfRows currentTableRowCounter%ROWTYPE;
              BEGIN
                   OPEN currentTableRowCounter;
                   FETCH numberOfRows INTO numberOfRows;
                   CLOSE currentTableRowCounter;
                   
                   IF (numberOfRows.rowsNum > 10000) THEN
                        -- And here I will call the procedure which has to be run
                   END IF;
              END;
         END LOOP;
    END;
    /
    I already checked this code with tables inividual and it works. The only problem is
    . . .
    SELECT COUNT(*) AS rowsNum
    FROM I.tbname;
    . . .
    Indeed, oracle considers "I.tbname" as an unknown table name (although he refers to by its exact name).
    SQL> @script.sql
    
                                    FROM I.tbname;
                                           *
    ERROR at line 99:
    ORA-06550: line 99, column 12:
    PL/SQL: ORA-00942: table or view does not exist
    How can I solve this problem? I mean, how to use a variable (in my example, I.tbname) as the table name in the FROM clause to query a table instead of explicitly write the name of the table?





    Thanks in advance,
    Dariyoosh

    Replace the following code:

              DECLARE
                   -- Here I declare a cursor for counting the number of rows
                   CURSOR currentTableRowCounter IS
                        SELECT COUNT(*) AS rowsNum
                        FROM I.tbname;
    
                   numberOfRows currentTableRowCounter%ROWTYPE;
              BEGIN
                   OPEN currentTableRowCounter;
                   FETCH numberOfRows INTO numberOfRows;
                   CLOSE currentTableRowCounter;
    
                   IF (numberOfRows.rowsNum > 10000) THEN
                        -- And here I will call the procedure which has to be run
                   END IF;
              END;
    

    By the following:

    Declare
      numberOfRows number;
    begin
      EXECUTE IMMEDIATE 'select count(*) from '||I.tbname into numberOfRows;
    
      IF (numberOfRows.rowsNum > 10000) THEN
        -- And here I will call the procedure which has to be run
      END IF;
    end;
    

    Max
    [My Italian blog Oracle | http://oracleitalia.wordpress.com/2010/01/10/crittografia-in-plsql-utilizzando-dbms_crypto/]

    Published by: Massimo Ruocchio, January 12, 2010 15:25
    Added Variable Declaration

  • Some doubts about the navigation in unifying

    Hi all

    I had a few questions about unifying navigation.

    Is it possible to move the admin mode user mode access level?

    I mean, if a particular feature as Manager of the shell I can only access from admin mode is it possible to provide access even in user mode?

    If so, how?

    My 2nd question of doubt is, currently, we can access company BPs level "Journal of society" or "Resource Manager" under shell 'Company Workspace'.

    Is it possible to move the "journal of the society" or "Resource Manager" in the folder? If yes how?

    I tried in "navigation user mode" to move the company BPs level at shell of the House, but I can't do it.

    To answer your questions:

    (1) User-Mode browser can have the user feature included. You cannot change the view mode Admin or move functions admin for user mode.

    (2) you cannot move these on the Home tab.

  • Doubts about the speed

    Hello gentlemen;

    I have a few questions, I would like to ask more experienced people here. I have a program running on a computer that has a processor i7 processor. In this computer that I have programmed in LabVIEW, meanwhile in another lab, we have another PC, a little older, a dual core 2.3 Ghz, in this pc, we perform a testing platform for a couple of modems, let us not get into the details.

    My problem is that I discovered recently that my program, I programmed in the computer, i7, much slower work in the other machine, the dual core, so the timings are all wrong and the program does not run correctly. For example, there is a table with 166 values, which, in the i7 machine are filled quickly, leaving almost without delay, however, the double machine heart, it takes a few milliseconds to fill about 20 values in the table, and because of the timing, it can fill more values and so the waveform that I use is all wrong. This, of course, live of the whole program and I can't use it as a test I need to integrate.

    I have create a .exe program in labview and try it in the different PC that's how I got to this question.

    Now, I want to know if there is actually a big problem due to the characteristics of the computer, the program is slow in one machine. I know that, to ensure the eficiently program, I need to use States, sub - vi, idea of producer-consumer machines and other things. However, I discovered this is not a problem of the speed generated by the program, because, if that were the case, the table would eventually fill it completely, however in slow computer, it is not filled more with 20 values.

    Else, helps to hide unnecessary variables in the front panel?, because the time beeing I have keep track of lots of variables in the program, so when I create the .exe I still see them runing to keep this follow-up. In the final version, that I won't need them so I'll delete some and hide front panel some. It helps that require less condition?

    I would like to read your comments on this topic, if you have any ideas in machines to States, sub - vi, etc., if there is a way to force the computer to use more resources in the Labview program, etc.
    I'm not add any VI because, in the current state, I know you will say, state machines, sub.vi and so on, and I think that the main problem is between the difference in computers, and I'm still working in the things of the State/sub-VI/etc

    Thank you once again, we just let this hollow.

    Kind regards

    IRAN.

    Get started with, using suitable as a machine for States stream you can ensure that your large table would be always filled completely before moving on, regardless of how long it takes. Believe it or not add that a delay to your curls will do more all the program run faster and smoother, because while loops are eager and can consume 100% of CPU time just a loop waiting for a button press, at the same time all other processes are fighting for time CPU.

  • Doubt about the persistent object

    Hi friends,

    I've stored data object persistent after that some time, my Simulator has taken a lot of time to load the application so I run clear.bat do fast Simulator. But after I run clear.bat. The values of what I stored in the persistent object had disappeared. Someone at - he said, therefore, it is the persistent object data are parties to cause of the performer, the clear.bat or any other reason. pls clarify my doubt friends...

    Kind regards

    s.Kumaran.

    It is b'caz of clean.bat. Clean.bat will remove all applications and unnecessary files, etc...

  • Doubts about the migration parallel to Lync 2013-> Skype4B 2015 on VCS - C (not clustered)

    Hello everyone!

    As I saw on Cisco documents, applying "B2BUA/Microsoft Interoperability" on VCS can "communicate" with just an instance Microsoft Lync pool servers, but we need to migrate the Lync server on parallel to the servers of Skype, we need to have a few "maintenance window" to migrate all users!

    Can we keep 'UP' communication for VCS (lync and Skype) pool of two servers until the end of the migration? The lync Server legacy 2013 (shared resources) with VCS today can communicate with users (migrated) for 2015 of Skype with trunk Lync existing TLS today?

    I think we generate another certificate for TLS and affecting some Skype server on the option "host approved", that's okay, I forgot something? Or I have other ways to communicate two pools Microsoft server with a VCS - C with the application "B2BUA/Microsoft Interoperability?

    Thanks for help me!

    To see some possible examples of deployment options, refer to Appendix 3 of the infrastructure Microsoft (X8.8) Deployment Guide and totalled, suggest that you also look over the guide in full as it might answer some of your questions about what is supported.

  • doubts about the css class...

    I tried to load a background image in the theme universal apex 5 in the login page.

    and I used the code found in the following link and got it works

    Apex 5.0: Theme Roller and background image

    But I doubt that can be very simple for the css professionals.

    .t-PageBody-.t-body connection

    {

    Background: URL("Sports.jpg") repeat top center white scroll;

    Color: #000000;

    do-family: Arial, Helvetica, Sans-serif;

    do-size: 12px;

    line-height: 17px;

    }

    .t - PageBody.t - body

    How do you know .t-PageBody - .t-body connection was the main class to change...

    Let me know if my interpretation is correct

    .t-PageBody - login is the main class

    and .t-Body is the upper class?


    pauljohny100 wrote:

    I tried to load a background image in the theme universal apex 5 in the login page.

    and I used the code found in the following link and got it works

    Apex 5.0: Theme Roller and background image

    But I doubt that can be very simple for the css professionals.

    .t-PageBody-.t-body connection

    {

    Background: URL("Sports.jpg") repeat top center white scroll;

    Color: #000000;

    do-family: Arial, Helvetica, Sans-serif;

    do-size: 12px;

    line-height: 17px;

    }

    .t - PageBody.t - body

    How know .t-PageBody-.t-body connection was the main class change...

    Let me know if my interpretation is correct

    .t-PageBody - login is the main class

    and .t-Body is the upper class?

    .t-PageBody--login .t-Bodyis a descendant selector. It matches any element with a class attribute that contains a t-Body value having an element ancestor with a class attribute that contains a t-PageBody--login value. There is no concept of 'main' class or 'slot' in CSS. The required selector is likely to have been determined on the supplement page using a web Inspector.

    It is advisable to take some tutorials to get at least a basic understanding of web technologies when you work with APEX.

Maybe you are looking for

  • Portege R500-124: where to get DVD Reovery

    Hello Just got a Portege R500-124 and they wanted to establish themselves. They just asked asked on a recovery DVD, as none came with it. I have looked at the manual and see you can use F8 at startup upward to get to the recovery partition and do a c

  • Distance index & scale on 100mm f/2.8 L

    Once development manual of the EF 100 mm f/2.8 L USM macro lens (or no matter what lens, incidentally), is recommended in order to align the distance index | periods on the scale of distances (e.g. 0. 30 m) or by central semicolons of reports of magn

  • Windows Vista Icon Dock

    recently my computer crashed and now my dock of icons on my desktop disappeared and I was wondering how can I get it back?

  • D drive formatted by mistake. Need to do the recovery with recovery disks

    My laptop HP G 61 CNF 94202NN gives weird problems so I want to make a recovery. My D drive has been formatted by mistake, but I have recovery disks. I can back up my user files and electronic data (.pst files) and you will have to re - install other

  • Popup causing problems "sometimes".

    I am once in awhile on obtaining the device... "Eception exception: MyApp Application (263) does not; process is completed. I think I just need to restructure abit of things... Here is a snippet of the code. Any help would be appreciated! final MyPop