Attachments Table (AkAttachUploadPageCO.class)

We have used the Oracle provided Attachment facility to customise the page MAAnswerQuestPG, where we have created an attachment table using personalisations. You get to this page using ManagerSelf-Service-> Appraisals-> when you try and update an appraisal of an employee by clicking Manager Ratings button. This will take you to MAAnswerQuestPG.xml page. This is where we have added the attachment table using personalisations.
You may have to do this yourself on one of your environments, it does not have to be this page. You can add the attachment table to any page -oracle docs provide full explanation on how to do this. Once the table appears you will see an Add button (to add attachment) click on it and this will open up the page that you see in the screen shot. You will notice that you can attach three types of attachments, file, url or just text. We are using file and for this we want to Hide the attachment summary information region which has the mandatory 'Description' field which we do not wish to use.
When users wish to attach a document/file they are prompted to enter a file Description which is mandatory under the region 'Attachment Summary Information' (please see screen shot). We want to hide this entire region i.e. 'Attachment Summary Information' and just have the 'Define Attachment' region on the page.
When we go to personalise this page under /oracle/apps/fnd/framework/attachments/webui/FND_ATTACH_UPLOAD_PAGE, we find this region and its fields are non-personalisable i.e these cannot be personalised to turn rendering off. We cannot even personalise the Page Layout (Add Attachment section) which is calling AkAttachUploadPageCO.class to call an customised extended class to hide this region. Seems like this has been done deliberately by Oracle development team.
Please advise on how we can render this region off or make the Description field non-mandatory
.

Hi all any inputs on this?

Similar Messages

  • How to add an Attachments Table on the Page of a Single Row Region

    Dear All,
    Please help me with a tutorial or anything that help me adding a an Attachments Table on the Page of a Single Row Region.
    I took a look at the attachment in ch4 in the developer guide but it is not explained clearly how to implement it.
    Thanks,
    Mahmoud Assem
    Message was edited by:
    Mahmoud Assem

    If you follow the dev guide properly, there shouldn't be any issue. Let us know where exactly you are facing the issue.
    --Shiv                                                                                                                                                                                                                                                                   

  • How can I add a new column to an Attachments Table

    How can I add a new column to an Attachments Table??
    And I want to remove the usage column also!
    Thanks!

    I tried to remove the usage column doing this:
    OAAttachmentTableBean attachTable = (OAAttachmentTableBean)webBean.findChildRecursive("attachTable");
    if (attachTable != null)
    attachTable.findChildRecursive("UsageTypeColumn").setRendered(false);
    but I'm getting null pointer exception on "UsageTypeColumn"...
    :(

  • Attachments tables with GUID in SAP CRM 2007

    Hi,
    I have req! like from created service order after createing folloup activity.. I added 2 or 3 attchaments in activity after save the actvity.. at that time those attchments stored in preceded serviceorder under attchamnets tab...
    tell me the Attachments tables with GUID in SAP CRM 2007..Plz rply ASAP.
    Thanks! for the help!
    Thanks,
    Kooiti

    Hi Masood Imrani,
    Thanks for the reply
    I have req! like from created service order after createing folloup activity.. I added 2 or 3 attchaments in activity after save the actvity.. at that time those attchments stored in preceded serviceorder under attchamnets tab...
    Please provide database table names. that tables contain GUID.
    Thanks,
    Kooiti

  • How do i hide a column in table interface class

    Hi,
    I need to hide a column in Abap table interface class. When i tried to hide from web item properties it didn't work so i am thinking to hide first column in the table interface class
    Thanks,
    mala

    In the WebApplication Designer start Tools -> View Definition -> Based on a Query. Choose your query, change layout to your requirements and save the view. Now just use the view in your webtemplate.
    Pls assign points if answer is useful
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/u/37289">vitaliy</a>

  • How to Add Attachments table

    Hi,
    We have a requirement to show the invoice attachment(s) (i.e. scanned image of invoice) in iProc requisition/PO details page.
    eg. I want to show all the invoice attachments in PO details page (i.e. attachments of all the invoices linked to the PO)
    If anybody worked on adding a new attachments region to OA page, please let me know details about how to do the same or any pointer would be really helpful.
    Rgds,
    -Kamal

    Kamal,
    I understand you want to add a attachments table to a Standard page where you can view the existing attachments,
    Check your page data is coming from an EO Based VO, then it is very easy to get the attachments.
    To check your VO is EO based, goto about this page, and check the VO details.
    You have to add an item of type attachments(there are 3 types table, links, region) with referencing to your EO and its primary key.
    There you can mention the attachments properties also, (read only, delete allowed..etc).
    Let me know if you are not able to achieve the same.
    More details,
    http://apps2fusion.com/apps-training/apps-functional-documents/75-ame-sshr/433-attachments-self-service-oracle-apps
    http://apps2fusion.com/apps-training/apps-functional-documents/75-ame-sshr/434-oa-framework-document-upload-attachments
    Thanks,
    With regards,
    Kali.
    OSSI.

  • Export PO attachments from fnd attachments table

    Any one can give a tip on how to export documents from the Purchase orders which are stored in fnd attachments table
    thanks
    prasanna

    Duplicate post.
    How to export attachments from the Purchase orders
    Re: How to export attachments from the Purchase orders

  • RE: Hide a column in web report using table interface class

    Hi,
    I want to hide first column in web template using table interface class. Following is the code i used in CAPTION_CELL and CHARACTERISTIC_CELL. Is this correct?
    method CAPTION_CELL.
    *First column
    if i_x = 1.
    add comment tag
    move '<!-- ' to C_CELL_CONTENT.
    endif.
    endmethod.
    method CHARACTERISTIC_CELL
    First column
    if i_x = 1.
    save start-time column
    move I_CHAVL_EXT to L_STARTTIME.
    add comment tag
    move '<!-- ' to C_CELL_CONTENT.
    endif.
    endmethod.
    When i execute the web template it is still displaying the first column. Do i have to code in any other method?
    Thank you,
    Mala Venkatesh

    Hi , the implementation should look like...
    method CAPTION_CELL .
    *CALL METHOD SUPER->CAPTION_CELL
    EXPORTING
    I_X =
    I_Y =
    I_IS_EMPTY =
    I_IOBJNM_ROW =
    I_ATTRINM_ROW =
    I_TEXT_ROW =
    I_IOBJNM_COLUMN =
    I_ATTRINM_COLUMN =
    I_TEXT_COLUMN =
    I_IS_REPETITION =
    I_COLSPAN =
    I_ROWSPAN =
    CHANGING
    C_CELL_ID =
    C_CELL_CONTENT =
    C_CELL_STYLE =
    C_CELL_TD_EXTEND =
    First column
    if i_x = 1.
    add comment tag
    move '<!-- ' to C_CELL_CONTENT.
    endif.
    Second column
    if i_x = 2.
    close comment tag
    concatenate '--> '
    C_CELL_CONTENT
    into C_CELL_CONTENT.
    endif.
    endmethod.
    method CHARACTERISTIC_CELL .
    *CALL METHOD SUPER->CHARACTERISTIC_CELL
    EXPORTING
    I_X =
    I_Y =
    I_IOBJNM =
    I_AXIS =
    I_CHAVL_EXT =
    I_CHAVL =
    I_NODE_IOBJNM =
    I_TEXT =
    I_HRY_ACTIVE =
    I_DRILLSTATE =
    I_DISPLAY_LEVEL =
    I_USE_TEXT =
    I_IS_SUM =
    I_IS_REPETITION =
    I_FIRST_CELL = RS_C_FALSE
    I_LAST_CELL = RS_C_FALSE
    I_CELLSPAN =
    I_CELLSPAN_ORT =
    CHANGING
    C_CELL_ID =
    C_CELL_CONTENT =
    C_CELL_STYLE =
    C_CELL_TD_EXTEND =
    First column
    if i_x = 1.
    save document-item number
    move I_CHAVL_EXT to l_docitem.
    add comment tag
    move '<!-- ' to C_CELL_CONTENT.
    endif.
    Second column
    if i_x = 2.
    close comment tag
    concatenate '--> '
    C_CELL_CONTENT
    l_docitem
    into C_CELL_CONTENT
    separated by space.
    endif.
    endmethod.
    Activate the methods/class and add this in the Web Template!
    for example:
    <param name="MODIFY_CLASS" value="ZHCOLAPP">
    ZHCOLAPP is the table interface class in this case.
    Best,
    Michael

  • Default Table Interface Class - 0TPL_BAP_MASTER

    Hi there
    We are trying to determine which table interface class is used on the default 0TPL_BAP_MASTER web template.
    We have created our own web template, but one of the pieces of functionality delivered with the standard template is the sort (ascending/descending) functionality which is included as arrows on the table column headings. We would very much like to use this on our custom template, and believe it to be implemented in the table interface class, but are not sure what that class is.
    Anybody know the name of the class?
    Cheers,
    Andrew

    Hi Deepu,
         How are you?
    I got a error about 0TPL_BAP_MASTER, when we are exicuting webtemplates in my portal. Can you please tell me what may be the error and how to overcome with this error.
    Thanks,
    Surendra.

  • Which tables, apart from the tables of class UPC, are used by STS ?

    Hello, all,
    does anybody know which tables, apart from the tables of class UPC, are used by STS in BW-BPS?
    Merry X-Mas and best regards
    Nina

    Hi Nina,
    there are 20 tables starting with UPS_* that are used by STS.
    Regards,
    Marc
    SAP NetWeaver RIG

  • RE:  Set Table Column Class Type

    Hi, there,
    Right now I try to set column class type and in this way my table sort class can check integer column and sort like interger not string (1,3,20 not 1,20,3).
    My problem is there is no setColumnClass method in AbstractTableModel.
    How can I do it??
    Thank you very much!!
    Xin

    There probably is a better solution.
    But I overloaded the getColumnClass(int ColumnIndex) function in the Table Model and return different classes depending on the Column selected...
    javax.swing.table.DefaultTableModel model =
    new javax.swing.table.DefaultTableModel(){
    public Class getColumnClass(int columnIndex)
    if(columnIndex == 6) //or whatever column you Choose
    return Integer.class;
    if(columnIndex == 3)
    return Integer.class;
    else
    return String.class;
    TableSorter sorter = new TableSorter(model);
    javax.swing.JTable table = new javax.swing.JTable(sorter);
    I hope this helps...

  • Dictionary table for class description in tcode il03

    Hi,
    Please let me know the dictionary table where  class description is getting stored while using the transaction il03 and while i tried i came to know that it is not in  the table swor..
    Regards,
    Nikhil...

    Check IFLOTX
    Nag

  • Table JAVA$CLASS$MD5$TABLE is not created by loadjava

    When loading a class using loadjava, the table JAVA$CLASS$MD5$TABLE is not created (in the schema where the class is loaded) by the loadjava tool although it should do this according to the doc. Where is this table located?
    The class loads successfully and is skipped when loading a second time. The force option is not used.
    Version is: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit

    IN order for a registered schema to be available to other users the schema must be registered as a GLOBAL, rather than a LOCAL Schema. This is controlled by the third agument passed to registerSChema, and the default is local. Note that you will also need to explicity grant appropriate permissions on any tables created by the schema registration process to other users who will be loading or reading data from these tables.

  • How to declare a header line table in class

    Hi Experts ;
    I m writing a class.I must display a picture in class. So Im find a below code
      TYPES: BEGIN OF ZW3QUERY,
              NAME(30) TYPE C,
              VALUE(255) TYPE C,
             END OF ZW3QUERY.
      data DOCKING type ref to CL_GUI_DOCKING_CONTAINER .
      data PICTURE_CONTROL_1 type ref to CL_GUI_PICTURE .
      data:
        URL(256) TYPE C .
      data QUERY_TABLE TYPE STANDARD TABLE OF ZW3QUERY 
            INITIAL SIZE 0.
      data HTML_TABLE type W3HTML .
      data RETURN_CODE type W3PARAM-RET_CODE .
      data CONTENT_TYPE type W3PARAM-CONT_TYPE .
      data CONTENT_LENGTH type W3PARAM-CONT_LEN .
      data PIC_DATA type W3MIME .
      data PIC_SIZE type I .
      data:
        SUM(4) .
      data:
        NUM1(4) .
      data:
        NUM2(4) .
    DATA: REPID LIKE SY-REPID.
      REPID = SY-REPID.
      CREATE OBJECT PICTURE_CONTROL_1
        EXPORTING
          PARENT = DOCKING.
      CHECK SY-SUBRC = 0.
      CALL METHOD PICTURE_CONTROL_1->SET_3D_BORDER
        EXPORTING
          BORDER = 5.
      CALL METHOD PICTURE_CONTROL_1->SET_DISPLAY_MODE
        EXPORTING
          DISPLAY_MODE = CL_GUI_PICTURE=>DISPLAY_MODE_STRETCH.
      CALL METHOD PICTURE_CONTROL_1->SET_POSITION
        EXPORTING
          HEIGHT = 40
          LEFT   = 5
          TOP    = 170
          WIDTH  = 90.
      IF URL IS INITIAL.
        REFRESH QUERY_TABLE.
        QUERY_TABLE-NAME  = '_OBJECT_ID'.
        QUERY_TABLE-VALUE = 'ZBOYDAKLOGO'.
        APPEND QUERY_TABLE.
    but I must do header line decleration in code. an Error. Class not support this decleration.  . I m try create types but its not works.
    How do I traverse not can this error
    Thanks everything Regards.

    Hi Irfan,
    in ABAP-Objects you don't work with headerlines - instead you work with work-areas.
    You must define a workarea for your table like that:
    DATA:
      gw_query TYPE ZW3QUERY.
      gw_query-name ='_OBJECT_ID'.
      gw_query-value = 'ZBOYDAKLOGO'.
      APPEND gw_query TO query_table.
    Regards.

  • Defining attribute for internal table within class builder?

    Hello there,
    I use an function module that provides me an internal table which has the reference type of the DDIC object zml_output. Furthermore I call this function module within a global class that should keep the result of the function module into the attribute lt_result, that is declared as private and typed with
    lt_result TYPE zml_output.
    Even the definition of that attribute causes the following error message:
    "lt_result" is not an internal table.
    I don't have any clue how to type lt_result differently. Actually I would need the following type of typing "TYPE TABLE OF" but that does not exist within the class builder.
    Thanks for your help in advanced!
    Robert

    Hi Konstantinidis ...
    Of course I can provide it to you. The code of my methode load_data reads as follows:
    method LOAD_DATA.
        CALL FUNCTION 'ZDATAGET'
        EXPORTING
          iv_dat    = iv_dat
          iv_time1  = iv_time1
          iv_delta  = iv_delta
        TABLES
          et_result = lt_result.
    endmethod.
    Especially the lt_result causes the mentioned error message
    The compiler seems to expect something "TABLE" like for attribute lt_result. But whatever I tried it doesn't seem to work out.
    Many thanks for help...

Maybe you are looking for

  • Installing Adobe Photoshop Elements 2.0 to new pc

    This year I had to purchase a new pc/program Microsoft Windows 8 and cannot load my older version of Adobe Photoshop Elements 2.0 on it.  I wanted to use this photoshop tool to edit pictures.  Just the basic program will do for me.  I have the reg. n

  • Upload to Flickr

    When I upload to Flickr from the organizer in Elements 12, the upload stops prior to completion- I have Windows 7 and a good high speed internet connection. What to do? Thanks

  • Real Cost from WBS to Activity

    Hi, We are entering hours using Acct Assgt to a WBS elements by CAT2. I guess that some settlement or distribution process exists in order to allocate these costs to activities? Could anybody enlighten me or just give me a hint of how it works? Thank

  • Cannot access external drive ITS INVISIBLE

    I just control clicked my external hard drive and I unintentionally changed something under ownership and permissions and now I can not see or access the drive. -I attempted to use disk warrior to restore and it did nothing. -Disk Utility was able to

  • New purchase - iMac i7 or Mac Pro Quad Core

    I'm planning to purchase a new mac and most of the work i do revolves around Aperture. One option is the 27 inch iMac i7 and the other option is the 3.2GHz Quad-Core Intel Xeon "Nehalem". I'm hoping to get some advise on the speed aspects of both pro