In ALV the columns not visible, shows

Hi experts!
I have a problem, my WD show an ALV, which has some columns not visible, but the column is shown!!! And i don't know what happen. I set in WDDOINIT method which columns a want see and that set is OK. I have two WD Applications.When a fire one, in the browser i see the selected columns, that's ok. But when a fire the other one, i see all columns.
Can you help me please?
Thanks for advance.
Matías.

Hi,
Rather writing it in the WDODINIT, write that piece of code in Component controller and call the same method in the
Inbound pulgs handlers of the respective view.
When you are in the same session. WDOINIT is called only once. To avoid this write it in handlers.
Regards,
Lekha.

Similar Messages

  • OBIEE  Detail record with all the columns not showing up in drill down

    Hi
    When i drill down in the hierarchy it only shows me the key rather than the full detail record
    M heirarchy is
    Dim
    total
    reckey
    detail
    detailkey
    name
    type
    When i drill down on reckey, it shows only the detailkey and not oher columns. Is there something i am missing here. The physical and logical table has detailkey as the primamykey

    You have a beautiful example in the Oracle By Example Series here :
    http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/bi_admin/biadmin.html#t2s7
    If you follow the instruction on the Channels Detail_Key in this example, you will succeed
    Success
    Nico

  • Columns not visible in Web dynpro ALV

    Dear Experts,
    I m having a dynamic alv display based on the Input values.
    I wrote code on method "On Action"(My action name) for dynamic alv and comp table is also filling but it is displaying 'No Columns are visible'.
    Please help to solve this ...
    Regards,
    Zakir Appas A

    Hi,
    Are you using method cl_abap_structdescr=>create to create dynamic structure and creating node dynamic too?
    I have same problem, because I forgot to bind table.
    regards

  • Name of the column not displayed

    Hi,
    My query is made on the Data Provider that has the following fields:
    - Notification Numbers(which I get directly from the Data Provider)
    -Status ('ACT' for Active and 'INACT' for Inactive)
    Now, my report should show:
    - Count of all Notification Numbers(which I have avhieved through replacement path)
    - Count of non-confimed Notification Numbers; which is the 'Count of all Notification Numbers' for which the status is INACT.- I have tried achieveing this by making a Restricted KF on the  'Count of all Notification Numbers'. However, the problem is that when this is displayed in the Report, it does not show the name of the column.
    Need help!
    Thx!

    Hi,
    Just select your restricted keyfigure and hit general tab under that description will be there---Enter your desired description there.
    I hope it helps.
    Regards
    AL

  • Changes made in the table not visible in the AM

    Hi,
    I have few validation that i need to conduct on the data that is modified in the table. The problem is that when i create a new VO instance in the AM method it does not show me the updated VO. Instead it shows me the VO before update.
    However, if i use gettransaction.postchanges, i am able to see the changes in the new VO instance i create. Can you please tell me if that is the right way of doing this or do i need to change some property to make the updated VO visible in the new instances i create.
    Thanks,
    Ankit

    Ankit,
    Just to extend to what Ankur said, any VO instance stores cache in JVM when u execute query for the first time....., now when when do some changes... these are there in cache, till u do transaction.commit(). After that they are gone in DB.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • ESS- ABAP Webdynpro- table column not visible

    Hi,
    We are using SAP travel management for expense approvals. In the package PTRM_WEB_UI, you will find the component FITE_VC_RECEIPTS. In the VIEW - RECEIPTS_VIEW you will find in the table that there is a column called "Short Info". However this column in not visible in the portal.
    There is no personalization done to hide this column.
    The visible property of this column  is set to "visible".
    In portal content directory if i right click....this column is not even available to be added/removed.
    Please help me understand why this column in not visible and how can i make it appear in portal.
    Thank You!

    Any input?

  • BOM Item category column not visible into CS01

    Hi,
    Till yesterday we create BOM for FG component with item category L,
    But today while creatting BOM ,item category column is not visible so that it is not possible to create BOM.
    we have not make any changes into SPRO Regarding BOM,
    What will be the possible reason?
    Regards,
    Devendra

    Hi,
    Item category column was make invisible by someone during processing CO02 through SHD0.
    now it it makes visible.
    Regards,
    Devendra

  • Root Handles (icons next to the node) not visible in TreeTable

    Hi i am using the example provided at www.java.sun.com for TreeTable. I have a tree table and when i add new nodes the data is visible in the table but the handles are not visible. I don't know how to resolve this problem. Below is my code where i'm adding new data.
    private void addNewNode(MyNode _root) {
    NodeInfo info = new NodeInfo();
    info.order= "Pending";
    info.qty = "200";
    info.price = "20,000";
    MyNode node = new MyNode(info);
    _root.add(node);
    tree.expandPath(new TreePath(_root.getPath()));

    Sorry my mistake...i was not returning TreeTableModel.class in getColumnClass() of my custom treetable model class.

  • Waveform not visible / showing in tracks returned from Audition

    I have a sequence I sent out to Audition to be edited. When I return it to Premiere, it produces a newly added track, but no wave forms are visible. Can't find how to turn them on or why they are not visible. Any suggestions?
    Thanks.

    With your Sequence active in the Timeline Panel...
    Try:
    Sequence > Render Audio

  • The columns not appear

    Here i want to get the columns names in the table "employee" in my database so i used databaseMetaData.getColumns(); but give me this error:
    java.sql.SQLException: Column not found
    at sun.jdbc.odbc.JdbcOdbcResultSet.findColumn(JdbcOdbcResultSet.java:1850)
    why this ?
    code:
    import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.DriverManager; import java.sql.ResultSet; public class ColumnNamesTest {     private static final String DRIVER = "sun.jdbc.odbc.JdbcOdbcDriver";     private static final String DRIVER_URL = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};" +             "Dbq=D:\\my _works\\my_works_2010\\JDBC-work\\employeedb\\Database2.mdb";     public ColumnNamesTest() {         Connection connection = null;         //  Statement statement = null;         ResultSet resultSet = null;         try {             Class.forName(DRIVER);             connection = DriverManager.getConnection(DRIVER_URL);             DatabaseMetaData databaseMetaData = connection.getMetaData();             resultSet = databaseMetaData.getColumns(null, null, "Employee", null);             while (resultSet.next()) {                 String colName = resultSet.getString("Column Names");                 System.out.println(colName);             }         } catch (Exception e) {             e.printStackTrace();         }     }     public static void main(String[] args) {         new ColumnNamesTest();     } }
    Thanks

    A combination of this
    getColumnsResultSet getColumns(String catalog,
    String schemaPattern,
    String tableNamePattern,
    String columnNamePattern)
    throws SQLException
    Retrieves a description of table columns available in the specified catalog.
    Only column descriptions matching the catalog, schema, table and column name criteria are returned. They are ordered by TABLE_CAT,TABLE_SCHEM, TABLE_NAME, and ORDINAL_POSITION.
    Each column description has the following columns:
    1. TABLE_CAT String => table catalog (may be null)
    2. TABLE_SCHEM String => table schema (may be null)
    3. TABLE_NAME String => table name
    4. COLUMN_NAME String => column name
    5. DATA_TYPE int => SQL type from java.sql.Types
    6. TYPE_NAME String => Data source dependent type name, for a UDT the type name is fully qualified
    ...>
    And this
    getStringString getString(int columnIndex)
    throws SQLException
    Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
    >
    Learn to use the API docs.

  • Trouble with webmail - left navigation column not visible???

    Email visible, but left navigation column to compose, inbox, options, etc. not visible.  Any suggestions?

    Having same EXACT problem.  Whazzupp?

  • When using the gradient tool to move a gradient why does the do not symbol show up beside the cross that usually rotates it and how do I get rid of it?

    I've tried restarting the tool and the program and it did not work. Here is an example of the do not symbol:  Warning, stop and DO NOT symbol | PSDGraphics

    You have not provided any system info or details about your document structure, so nobody can know. their could simply be another element or a specific appearance setting preventing this or you have an issue with your input device. Similar behavior has been reported for some Wacom tablets for instance.
    Mylenium

  • Need to use Group By but only want to group some of the columns not all

    Hello all! I am having some issues here. I am rather new to SQL and I am getting stuck with grouping. I have the query below but I only want to group by these columns, instead of all the columns in my select statement.
    ah.fund,
    ah.dept,
    ah.org,
    ah.acct,
    t.fund,
    t.dept,
    t.org,
    t.acct
    This will eventually go into Oracle reports builder. Is there any way I can archive this at all? The query will return all the t for a given time period, but they need to be grouped by the fully qualified account number which consists of the fund, dept, org and acct columns.
    Thanks in advance!
    SELECT ah.fund,
         ah.dept,
         ah.org,
         ah.acct,
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||SUBSTR(ah.acct,1,2) acct_no,
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||ah.acct acct_no1,
         t.fund,
         t.dept,
         t.org,
         t.acct,
         t.ACTIVITY_DATE,
         t.TYPE,
         t.AMT,
         t.description,
         t.TRANS_NO,
         t.RECEIPT_NO,
         DECODE(t.PO_NO,NULL,t.JOURNAL_NO,t.PO_NO) J_NO,
         DECODE(t.WARRANT_NO,NULL,t.WIRE_NO,t.WARRANT_NO) W_NO,
         t.VENDOR_NO,
         v.name||' ' ||v.first_name name,
         MIN(ah.eod_date)
    FROM ah,
         t,
         v
    WHERE ah.fund BETWEEN SUBSTR(:p_acct_from,0,3) AND SUBSTR(:p_acct_to,0,3)
         AND ah.dept BETWEEN SUBSTR(:p_acct_from,4,2) AND SUBSTR(:p_acct_to,4,2)
         AND ah.org BETWEEN SUBSTR(:p_acct_from,6,4) AND SUBSTR(:p_acct_to,6,4)
         AND ah.acct BETWEEN SUBSTR(:p_acct_from,10,5) AND SUBSTR(:p_acct_to,10,5)
         AND FLOOR(ah.acct/10000) IN (6,8)
         AND SUBSTR(ah.acct,3) != '000'
         AND ah.eod_date BETWEEN :p_from_date-1 AND :p_to_date
         AND t.fund (+) = ah.fund
         AND t.dept (+) = ah.dept
         AND t.org (+) = ah.org
         AND t.acct (+) = ah.acct
         AND TO_DATE(t.activity_date, 'dd-mon-yy') >= TO_DATE(:P_FROM_DATE,'dd-mon-yy')
         AND TO_DATE(t.activity_date, 'dd-mon-yy') <= TO_DATE(:P_TO_DATE,'dd-mon-yy')
         AND t.type IN( 'PI','JE','PR','VD','VU','AC','AD')
         AND (
              (:p_year = TO_CHAR(CURRENT_DATE,'YYYY')
              AND (t.po_no IS NULL
              OR (select TO_CHAR(open_date,'YYYY') FROM r WHERE po_no = t.po_no ) = TO_CHAR(CURRENT_DATE,'YYYY') ) )
              OR ((select TO_CHAR(open_date,'YYYY') FROM r WHERE po_no = t.po_no ) = :p_year )
    AND v.vendor_no (+) = t.vendor_no
    GROUP BY ah.fund,
         ah.dept,
         ah.org,
         ah.acct,
         t.fund,
         t.dept,
         t.org,
         t.acct,
         t.ACTIVITY_DATE,
         t.TYPE,
         t.AMT,
         t.description,
         t.TRANS_NO,
         t.RECEIPT_NO,
         DECODE(t.PO_NO,NULL,t.JOURNAL_NO,t.PO_NO),
         DECODE(t.WARRANT_NO,NULL,t.WIRE_NO,t.WARRANT_NO),
         t.VENDOR_NO,
         v.name||' ' ||v.first_name
    ORDER BY LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||SUBSTR(ah.acct,1,2),
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||ah.acct;

    In reports builder you can group the columns without having to group it in your query. It is also known as the break report which contains multiple groups in its data model.
        |            Q_1               |
                      |
                      |
        |       GRP_department         |
        | dept_no                      |
        | dept_name                    |
                      |
                      |
        |         GRP_employee         |
        | emp_no                       |
        | emp_first_name               |
        | emp_last_name                |
        | emp_middle_name              |
        | emp_date_of_birth            |
        | ...                          |
        ------------------------------

  • TIME column not visible in PLAN_TABLE output

    Hi
    I got following output after executing --> SELECT plan_table_output FROM TABLE( DBMS_XPLAN.DISPLAY());
    | Id | Operation | Name | Rows | Bytes | Cost |
    | 0 | SELECT STATEMENT | | 1 | 7 | 18 |
    | 1 | SORT UNIQUE | | 1 | 7 | 18 |
    | 2 | VIEW | MTC EXCPN COMPANY V | 1 | 7 | 12 |
    | 3 | SORT ORDER BY | | 1 | 91 | 12 |
    |* 4 | TABLE ACCESS FULL| MTC_CD_LKUP | 1 | 91 | 6 |
    Predicate Information (identified by operation id):
    4 - filter ***************
    Note: cpu costing is off
    I am not getting TIME column as following (below o/p is from a different database):
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 36 | 6 (17)| 00:00:01 |
    | 1 | HASH UNIQUE | | 1 | 36 | 6 (17)| 00:00:01 |
    |* 2 | TABLE ACCESS FULL| MTC_CD_LKUP | 1 | 36 | 5 (0)| 00:00:01 |
    1) I believe the total of values in TIME column shows total time that will be taken by query. Please correct me if I am wrong.
    2) Please tell me how can I get TIME also in first case. Is is because of "cpu costing is off" ?
    Select * from v$version;
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    PL/SQL Release 9.2.0.8.0 - Production
    "CORE     9.2.0.8.0     Production"
    TNS for IBM/AIX RISC System/6000: Version 9.2.0.8.0 - Production
    NLSRTL Version 9.2.0.8.0 - Production
    Thanks a lot in advance.

    I hope you are looking for below link:
    Oracle included time column in version 10g.
    So if you currently run 9i, and use your own SQL scripts to report execution plans (instead of using dbms_xplan.display()) you may want to add a time column to your output. The following pl/sql block is all you need to get going:
    http://jonathanlewis.wordpress.com/2006/12/11/cost-is-time/
    Regards
    Girish Sharma

  • Why on my screen is the text not all showing, it is overlapped by other txt or graphics?

    on some windows the graphics are out of place and over lap text, in other cases text overlaps text as if the entire page is not showing as it should, it makes reading the window, page impossible.

    If a page specifies absolute positions for text and other elements then any change from what is specified can cause text to overlap. A missing font can be enough to cause that to happen.
    Can you post a link to a web page where you see this happening?
    I assume that you have set the Minimum Font Size to none and are allowing pages to use their own fonts.<br />
    If you use full page zoom to zoom a web page instead in increasing the minimum font size then Firefox can increase the full page and such issues are less likely to happen.

Maybe you are looking for

  • Config Setps for Trex in CRM 5.0

    Hi All, How to config Trex for CRM5.0 ? Thanks, Nagesh

  • Performance problems to generate PDF files using CR

    Hi, I develop an application that read TXT files and uses this information to generate PDF files, but I'm having problems with performance to generate this PDF, each files are taking at least 1 minute to create the file. I realized that some TMP and

  • Will a wireless Mouse/Presenter work with SWF/CP output?

    I see on the market lots of wireless presenters. Some boast multi-functionality, where they become effectively a wireless mouse. Will these work within a SWF, so that you can navigate a tutorial that is nothing more than a glorified PPT show? It's no

  • Forms that start in enter query mode freeze on exit

    When a headstart form is called from a menu and the first thing it does if go into enter query mode the form will not exit properly, causing the orginal form to hang. Is there any work around for this apart from taking enter_query out of the when_new

  • XPath Node Selection not seeing children nodes

    Hello All, I have a question regarding XPath and when it returns a node (via the Expression) Lets say, I have this document: <person>   <name>someName</name>   <location>someLocation</location> <person>I have setup my XPath Expression to return the <