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?

Similar Messages

  • ABAP WEBDYNPRO - Table Columns Buttons

    Hi Experts.
    I have a table and the last colum is a button.
    I would like to know, how do I get the index when starts the event of button?
    Tks a lot

    hi
    post your question in webdynpro ABAP forum.you'll get the solution there.
    regards
    Aakash Banga

  • The "J2EE process table" node not visible  in the SAP MMC

    For Netweaver 7.0 - The "J2EE process table" node not visible  in the SAP MMC.
    Details for below
    SAP Systems Manager
    SAP AG
    Version: 7100.109.15.8983
    Window Xp
    Any suggestions would be apperecited.
    Thanks
    Srini

    It's hard to say without seeing the code for TreeTable. But they probably have something like an addNode mothod for the TreeTableNode which will take care of all the updates for you. If you want to do it youself, you will probably have to get the data Model (tree.getModel()???)behind the TreeTable and use one of the fire... methods on it like fireRowChanged(???) or fireTableChanged(???). I would suspect Sun would do it this way.

  • 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.

  • External Table error: KUP-04043: table column not found in external source

    I am trying to get the syntaxc correct for an external table.
    I keep getting this error:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04043: table column not found in external source: SITE
    29913. 00000 - "error in executing %s callout"
    *Cause:    The execution of the specified callout caused an error.
    *Action:   Examine the error messages take appropriate action.
    Data looks like: (some of one of many files, where the character field widths are variable)
    ZZ,ANYOLDDATA,77777,25002000,201103,12,555.555,11.222
    ZZ,ANYOLDDATA,77777,25002300,201103,34,602.162,8.777
    ZZ,ANYOLDDATA,77777,25002400,201103,12,319.127,9.666
    ZZ,OTHERDATA,77121,55069600,201103,34,25.544,1.332
    ZZ,OTHERDATAS,77122,55069600,201103,22, 1.011,0.293
    External table def I have:
    CREATE TABLE MY_INPUT (
    FIRST_CODE VARCHAR2(10),
    SECOND_CODE VARCHAR2(20),
    MY_NUMBER VARCHAR2(20),
    THIRD_CODE VARCHAR2(20),
    YEARMO VARCHAR2(6),
    N NUMBER,
    MEAN NUMBER,
    SD NUMBER
    ORGANIZATION EXTERNAL (
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY INPUT_DIR
    ACCESS PARAMETERS (
    RECORDS DELIMITED BY newline
    BADFILE INPUT_LOGDIR:'bad.bad'
    LOGFILE INPUT_LOGDIR:'log.log'
    DISCARDFILE INPUT_LOGDIR:'discards.log'
    fields terminated by ',' LRTRIM
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    ( THIRD_CODE,N,MEAN,SD) )
    LOCATION ( 'myfile.rpt')
    NOPARALLEL
    REJECT LIMIT UNLIMITED;
    I have the directories INPUT_DIR and INPUT_LOGDIR defined, and read/write access granted to the user who creates the table and tried to query from it.
    I have tried various combinations of VARCHAR2 lengths and NUMBER vs VARCHAR2 for some of the numeric fields.
    I am not getting any Bad, Log or Discard files.
    I can do a GET from the SQL prompt, and see the data:
    SQL> GET 'C:\temp\input_dir'myfile.rpt'
    and I see the data.
    Windows 7
    Oracle 11.2
    I am not positive of the newline record delimiter - these files are generated by an automated system. Probably generated on a UNIX machine.
    Any suggestions on what to try would be helpful.
    KUP-04043 error message says to check the syntax .. .I am running out of thigns to check.
    Thank you - Karen

    And the get ( I created the sanitized file, so we have a real working, failing, santiized example):
    SQL> get c:\Inputfiles\myfile.rpt
    1 ZZ,ANYOLDDATA,77777,25002000,201103,12,555.555,11.222
    2 ZZ,ANYOLDDATA,77777,25002300,201103,34,602.162,8.777
    3 ZZ,ANYOLDDATA,77777,25002400,201103,12,319.127,9.666
    4 ZZ,OTHERDATA,77121,55069600,201103,34,25.544,1.332
    5* ZZ,OTHERDATAS,77122,55069600,201103,22, 1.011,0.293
    So the full series is:
    CREATE DIRECTORY INPUT_DIR AS 'C:\InputFiles';
    -- grant READ and WRITE
    GRANT READ ON DIRECTORY INPUT_DIR TO ILQC;
    GRANT WRITE ON DIRECTORY INPUT_DIR TO ILQC;
    -- As SYS, create the bad/log/discard directory:
    CREATE DIRECTORY LOGDIR AS 'C:\InputFiles\Logs';
    -- grant READ and WRITE
    GRANT READ ON DIRECTORY LOGDIR TO ILQC;
    GRANT WRITE ON DIRECTORY LOGDIR TO ILQC;
    CREATE TABLE MY_INPUT (
    FIRST_CODE VARCHAR2(10),
    SECOND_CODE VARCHAR2(20),
    MY_NUMBER VARCHAR2(20),
    THIRD_CODE VARCHAR2(20),
    YEARMO VARCHAR2(6),
    N NUMBER,
    MEAN NUMBER,
    SD NUMBER
    ORGANIZATION EXTERNAL (
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY INPUT_DIR
    ACCESS PARAMETERS (
    RECORDS DELIMITED BY newline
    BADFILE INPUT_LOGDIR:'bad.bad'
    LOGFILE INPUT_LOGDIR:'log.log'
    DISCARDFILE INPUT_LOGDIR:'discards.log'
    fields terminated by ',' LRTRIM
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    ( THIRD_CODE,N,MEAN,SD) )
    LOCATION ( 'myfile.rpt')
    NOPARALLEL
    REJECT LIMIT UNLIMITED;
    SELECT * FROM my_input;
    and GET is as above.

  • WebDynpro 中Table的column的换行.

    dear all.
            WebDynpro 中Table的column的长度太长了,有没有换行属性?
    Edited by: Leo Wang on Jan 19, 2009 7:31 AM

    首先要把Table的width属性设备成一个定值,或者将TableColumn的width属性设成一个定值,然后再将Column中的TableCellEditor设成TextView,然后再将TextView的wrapping属性设成true,当TextView中的文本长度超过了Column的长度后,TextView就会自动换行,这样就可以达到换行的目的了。

  • Webdynpro for ABAP treeBynesting table column Usage

    Hi Experts,
    I am trying to use treeByNesting table column in webdynpro for ABAP.
    Can anyone please share me the code.
    I am not getting how to use the recursive node.
    I need to develop a tree structure whose leaf if determined at run time, so thought to use this UI element. But right now I am getting an error like : ASSERTION FAILED.
    Please suggest how to use recursive node and how to load the child.
    Regards,
    Kalyani.

    Hello friend,
    I think these links will help you much in solving your error.
    Please visit these links,
    http://wiki.sdn.sap.com/wiki/display/WDABAP/WebDynProABAPApplicationusingTreeand+Frame
    http://www.****************/Tutorials/WebDynproABAP/Tree/Page1.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/21/ad884118aa1709e10000000a155106/content.htm
    Thanks,
    Sri Hari

  • ABAP Webdynpro Table Control

    Hi all,
    I am a Webdynpro beginner, I am developing a ABAP Webdynpro program. I have a table in my View, And I want to the Row became READ ONLY based on the context.
    For Example, there is a user name field in the table, if the user name is equal to the user who run the program, this row will be modifiable. if not, the row will be Read Only.
    I don't know which function can do so. Could anyone help me?
    I can use VIEW->GET_ELEMENT to get the table. but I didn't find the method in the CL_WD_TABLE helpful.
    Thanks
    Ming

    For further description,
    the table is binded to a ( 0 ... n ) context node.  There are 6 columns in the table. 3 of them are textviews and the others are inputfield. I want two of the inputfields in each rows became Read_Pnly or not base on the value in the same row in a textview field.
    For example, there are six column, col1 col2 col3 col4 col5 col6.
    if col = 'MM'.
    col1 col2  are editable.
    else.
    col1 col2 are read_only.
    Thanks in advance.
    Ming

  • Currency Key Reference field in WebDynpro Table Column

    Hi Experts,
    I am using a WebDynpro table (not ALV) showing multiple currency fields in a single row - each one potentially referencing a different currency key e.g. Japanese Yen and USD in a single row.
    My currency context attributes are already defined as currency types, but how can I assign different currency key references to each of my currency context attributes? Or is this somehow done as a property of the table column UI element?
    Thanks for your help,
    Peter

    Hi Kris,
    You answer is very helpful, but I do have a question about going the DDIC route. So you are saying that if I take a DDIC structure into my context with multiple currency keys as reference fields for multiple currency fields, then my WebDynpro context will know exactly which currency key is the reference for which currency field without having do do this programatically as you described? If that's true, can I bring a whole DDIC structure over to the context and then delete the 'Dictionary Structure' refrence from my context node, so that I can add my own additional fields to the context node?  E.g. in the case of DDIC structure VBAP can I get all my currency fields and their reference fields from the DDIC from VBAP and then delete 'VBAP' as a 'Dictionary Structure' from my context node and add my own custom fields. The fields I would have brought in from VBAP still retain their type and everything after the deletion of 'VBAP' as a 'Dictionary Structure', so my question is will it also retain the node_info of what currency key goes with what field?
    Please let me know if you happend to have done this before.
    Thanks,
    Peter

  • OAF Attachment Table is not visible

    Hi Experts,
    I am trying to add the standard attachment region to a page. Have created Attachment Region using Personalization and
    Entity name : custom entity name
    View : Standard VO used in the page
    Primary Key : Unique column from the VO
    When I added the attachment table, the table is not appearing in the page, only the Text given while creating the Attachment Table item is being shown.
    The page is:
    Sourcing -> RFI -> Online Discussions -> Create New Message
    The strange thing is if I give any other (validation VO or summary VO) then the Attachment Table is appearing, but I can not use them because they don't have the primary key columns.
    Could you help me in finding the issue. Thanks in advance.
    Regards,
    Pavani

    Hi,
    *Entered a unique value for entity in entity map
    How did you accomplished this task ?
    have you creates a entity using AK HTML Forms responsibilty ,check FND_DOCUMENT_ENTITIES table whether your entity exists or not ?
    More details can sought in Jdev guide .
    Also if attachement not to be added as column in table , use attachment link instead of attachment table
    Thanks,
    Ashish

  • Doc Uploaded by ABAP Class CL_SA_DOC_FACTORY= UPLOAD_DOC not visible

    I am uploading a document in Solution manager through the below code.
    CALL METHOD CL_SA_DOC_FACTORY=>UPLOAD_DOC
      EXPORTING
        I_DOC_TITLE              = 'TEST'
        I_DOC_TECH_NAME          = 'TEST'
        I_DOC_TYPE               = 'AD'
        I_DOC_STATUS             = 'RELEASED'
        I_DOC_BLUEPRINT_RELEVANT = 'X'
       I_FOLDER_ID              = 'DF1223E3C88613F1BDD70011258C9477'
       I_FOLDER_TITLE           =
        I_FOLDER_TECH_NAME       = 'TCLSUPPORT'
        I_FOLDER_RESPONSIBLE     = SY-UNAME
      RECEIVING
        E_IOBJECT                =  eobj
    EXCEPTIONS
       CANCELLED                = 1
       FOLDER_ERROR             = 2
       ERROR                    = 3
       others                   = 4
    CALL METHOD eobj->SAVE
    EXPORTING
      RECEIVING
        E_LOIO             = eresult
    EXCEPTIONS
       CANCELLED          = 1
       ERROR              = 2
       others             = 3
    eresult structure gives:
    CLASS      SOLARGEN
    OBJID       DF1BC08D3D729FF1BDD70011258C9477
    But when I go to SOLAR01 and then to my project document in not visible there.
    Tables SA01PHIO  and SA01LOIO are getting updated with OBJID but document not visible through SOLAR01

    Hi Abhinav,
    Did you perhaps every find the document that you uploaded?
    I am experiencing the same problem and would be interested in your solution.
    Thanks,
    Miguel

  • ABAP WebDynpro: Table cells with different values.

    Hello,
    I am not sure how the following can be achieved.
    I have a table with 10 rows in it. First column should have different values in cells (static value that do not come from anywhere). For example, colors: black, green, yellow, etc.
    I inserted a table column. In that column I inserted a Cell Editor of type TextView. If I define a 'text' property of this element than it marks all cells in this column with this text. I need to assign different values to each cell.
    How can this be done?
    Thank you.

    Probably you should post this the Web Dynpro Forum
    Web Dynpro Java
    Regards,
    Ravi
    Note : Please close this thread.

  • Webdynpro Layout Icons-- Not visible

    Hi Experts,
    We are having ECC6.0 implemented in our Organisation.
    I need to develop ABAP webdynpro Object.The layout is ready but Im not able to drag and drop the icons in the layout.
    What can be the problem?? Expecting your reply at the earliest.

    Hi,
    Check this blog
    Using DDLB in Interactive Forms in Webdynpro for ABAP
    Hope it helps.
    Regards,
    Mona

  • Two different system in ESS ABAP Webdynpro

    Hi Experts,
                Is it possible to connect two different system (ECC 6.0) in ESS with ABAP Webdynpro Technology (EHP5)? I know it is possible in Java Webdynpro (EHP4). Please advice.
    Thanks
    Jacob

    Hello Jacob,
    I would recommend to configure the Jcos to access your second system which will be much more used as the standard ones:
    ○     SAP_R3_HumanResources
    ○     SAP_R3_HumanResources_MetaData
    ○     SAP_R3_Financials
    ○     SAP_R3_Financials_MetaData
    ○     SAP_R3_SelfServiceGenerics
    ○     SAP_R3_SelfServiceGenerics_MetaData
    As for the Leave Request framework, this parameter is configured on the Iview via the Application Parameters. You can go on this via Content Admin as this is a field on the property on the iview.
    You should create a new JcO to the destination system of the Leave Request framework and to parameters add the
    sap-wd-arfc-useSys = JcoName.
    Please refer to the following link on how to create the Jco.
    http://help.sap.com/saphelp_rc10/helpdata/en/8c/cb3042366c0521e10000000a155106/frameset.htm
    Regards,
    Bentow.

  • 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

Maybe you are looking for

  • Posting Inbound Delivery Without Reference using IDOC_INPUT_DESADV1

    Hello Experts, We have a scenario wherein we are required to post an IDoc into SAP which represents an Inbound Delivery without any reference. We tried using standard FM IDOC_INPUT_DESADV1 with below details to post an IDoc for an Inbound Delivery wi

  • I've not found the option to increase shared memory of intel hd graphics card in BIOS

    Hi! I don't find that option. I have the 2.08 version, but the 3.01 is out there. The graphics performance is not very well now. Is there a way to increase this memory to 256 mb or more? Thanks in advance

  • Formula in Crystal Report

    hi can anyone tell what is the error in this formula if  not isnull {GetDataTable.MARK_PRICE_RATE} then (({GetDataTable.mark_price_rate} * {GetDataTable.BILL_DET_COUNT})  -  {GetDataTable.JARIMEH } ) it is displaying the error like this The keyword '

  • Transferring music on the ipod back to a Mac

    I am using a Shuffle and love it. I have all my data on my IBM PC and now am using a G4. I really want to just download my shuffle playlist into the established iTunes on the Mac but it doesn't seem quite as easy as plug and play. Any suggestions for

  • IN clause help

    Hello, Could someone please give me an example of how to handle the following with a IN clause: IN ('Jim O'Grady', 'Vinny D'Esponosso') The ' in the last name is causing problems in my where clause. Any help would be greatly appreciated. Thanks, Tim