Make a clob field as an editable column in a report

Hello,
I have a CLOB field column in my report and want to make this as an editable item. Can anyone please tell me what would be the best approach to deal with these kind of issue.
Thanks,
Orton

Dan McGhan wrote:
There is no "out of the box" solution for this. You'd have to do a bit of work. However, before we go down that road, I'm curious as to why you'd want to put a password field in a tabular form.
It's a multi row insert/update/delete (tabular) form, and one of the columns represents a password.
One row represents "an application". The column represents the application password.
I actually have two of them (columns) + a process that verifies that the same value was entered in both.
I'm suprised that this is not out-of-the box possible...
It would be a very easy to just support the 'password field' type in the dropdown list that I have now used to make it a simple text field. No?
Appreciate any assistance...
Edited by: Toon Koppelaars on Jul 14, 2010 1:20 PM

Similar Messages

  • Make the currency field in SOCO editable

    Hi All:
    PDP Scenario
    I have a requirement to make the currency field in SOCO. I did try to control it in SPRO > SAP SRM > Cross-App > Extensions and Field Control > Configure Control for Fields on Item Level > Metadata for Fields on Item Levels, but did not work.
    Configuration Entries:
    Field Name: Currency
    Object Type: BUS2121
    Transaction Type: " "
    Field Visible: Checked
    Field Enable: Checked
    Field Required: Unchecked
    Any input is appreciated.
    Thanks: Mike

    Hi Mike,
    You were almost at the right spot:
    SPRO >  SAP SRM > Cross-App > Extensions and Field Control > Configure Field Control > Configure Control for Fields of Substructures > Metadata for Fields of Substructures and Table-Like Enhancements
    Entries:
    Set type: SI
    Field name: Currency
    Obj Type: AO_SOCO
    Set level: ITEM
    Field Visible: Checked
    Field Enable: Checked
    Field Required: Unchecked
    Perhaps you also need to check the "post-editable" field...
    Hope that works!
    Best regards,
    Jos

  • How to make a field in non Editable mode

    Hi All:
    Now i created one form through wizard method this consists of following details
    Table name:T1
    Fields:No,Name
    here my requirement is how to make this "No" field in non editable mode after the insertion of the first record.

    You can make it a display item, you can disable the item, or you can set the update property to No. See the set_item_property in the Help documentation.

  • How to make the message choice as non-editable thru personalization

    Hi,
    I have one requirement to make the messageChoice field as non-editable, how to do this thru personalization for particular page.
    because the same region available in some other pages also, so i need to do only for that page.
    How to do?
    Thanks in advance,
    SAN

    Hi Shanthi,
    If you want to make some rows editable and some as read-only, then the best thing to do is use an iterator. It is basically a class that implements interface IF_HTMLB_TABLEVIEW_ITERATOR and allows you to change properties of each cell of your table. You can do the following:
    1. Create an iterator class that implements this interface.
    2. Code method RENDER_CELL_START( ) to set all elements of a given row as read-only or editable as required.
    3. Leave other two methods empty but do activate them.
    4. Declare a public reference in your view implementation class of same type as this iterator class.
    5. Pass this iterator class to 'iterator' attribute of your <chtmlb:configTable> in view htm.
    In the iterator class, you also need to access your table node to decide which rows to make editable and which row to make readonly. To do this, you can declare an attribute in this class of type CL_BSP_WD_CONTEXT_NODE_TV and instantiate it from the CONSTRUCTOR. And you can instantiate this iterator class from DO_VIEW_INIT_ON_ACTIVATION( ) of your view controller.
    Regards,
    Shiromani

  • How do I set a maximum length (in characters) of a CLOB field

    Hi,
    I've seen some questions like this around, but I did not find a clear answer.
    This is my problem: I want to make my CLOB field to accept a maximum of 32768 characters. This is because I need other data manipulation tools to receive an ORA error when they try to insert or update text larger than 32768.
    I tried with an Insert/Update trigger, but I received ORA error that actually means that LOB fields can not be used in update trigger(or something).
    Please, help!

    Maybe, Not a neat way to do things, but seems to work.
    Others may be able to suggest better solutions.
    SQL> create table test_lob(lob clob) ;
    Table created.
    SQL> CREATE OR REPLACE FUNCTION getlength(p_lob CLOB) RETURN NUMBER DETERMINISTIC IS
      2  BEGIN
      3      IF (dbms_lob.getlength(p_lob) > 32768)
      4      THEN
      5          raise_application_error(-20100,
      6                                  'Text may not be greater than 32768 characters!');
      7      ELSE
      8          RETURN NULL;
      9      END IF;
    10  END;
    11  /
    Function created.
    SQL> create index idx_test_lob on test_lob(getlength(lob)) ;
    Index created.
    SQL>
    SQL> declare
      2    l_lob CLOB ;
      3  begin
      4    insert into test_lob values (empty_clob()) returning lob into l_lob ;
      5    dbms_lob.writeappend(l_lob, 32767, rpad('*', 32767, '*')) ;
      6  end ;
      7  /
    PL/SQL procedure successfully completed.
    SQL> declare
      2    l_lob CLOB ;
      3  begin
      4    insert into test_lob values (empty_clob()) returning lob into l_lob ;
      5    dbms_lob.writeappend(l_lob, 32760, rpad('*', 32760, '*')) ;
      6    dbms_lob.writeappend(l_lob, 8, rpad('*', 8, '*')) ;
      7  end ;
      8  /
    PL/SQL procedure successfully completed.
    SQL> declare
      2    l_lob CLOB ;
      3  begin
      4    insert into test_lob values (empty_clob()) returning lob into l_lob ;
      5    dbms_lob.writeappend(l_lob, 32760, rpad('*', 32760, '*')) ;
      6    dbms_lob.writeappend(l_lob, 9, rpad('*', 9, '*')) ;
      7  end ;
      8  /
    declare
    ERROR at line 1:
    ORA-20100:
    ORA-06512: at "SYS.DBMS_LOB", line 789
    ORA-06512: at line 6
    SQL> select count(*) from test_lob ;
      COUNT(*)
             2
    1 row selected.
    SQL>

  • Disabling fields(Make the field as non-editable)  in webdynpro ALV

    HI All,
    I have a requirement in the ABAP webdynpro where I have to disable(Make the field as non-editable) the field(or that ALV cell alone)  in the ALV after the user has inputed in that field.
    Is it possible, if yes, could you please give me some sample code , or links to which I can refer to.
    Thanks for your help.
    Regards,
    Subash M

    Hi,
    Use the following approach :
    1. Create an ALV and create an inputfield cell editor for the column that you want to make editable/disable.Refer this tutorial for creating an [Editable ALV|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3133474a-0801-0010-d692-81827814a5a1]
    2. Now under the same node create an attribute EDITABLE type boolean and bind this to the readonly property of the input field. Include the following code while creating Input field for binding.
    lr_input_field->set_read_only_fieldname( 'EDITABLE' ).
    3. Now implement the onDataCheck event or OnCellAction event and pass abap_true to this attibute to make the cell readonly/disable.Refer this tutorial for [Events in ALV|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/bd28494a-0801-0010-45a3-fc359d82d3e8]
    Hope this helps.
    Regards,
    Radhika.

  • Make CLOB field as an textarea item and also provide update option

    Hello,
    Can anyone please help me out with this issue. I have clob field column in my table and I wanted to make this column as an Textarea item in my form so that the users can update this column item. Can anyone please provide a possible approach for this issue.
    thanks,
    orton

    Hi Orton,
    As far as I know it is a limitation of mod_plsql - variable size can't be more then 32K.
    I think that you have to split the value of text area in javascript in chunks less then 32K in length and submit them
    with AJAX one by one.
    Regards,
    Lev

  • Make the 'ASSIGNMENT FIELD' of particular financial Doc type non-editable

    Hi Experts,
    We have an done an Z development, where we are populating critical data in the 'ASSIGNMENT FIELD OF gl account' of a newly created  financial document type (ZD).This document is created through BAPI.
    Now our requirment is to make this 'Assignment field' non-editable .
    Thanks & Regards,
    Vishal

    Go to OB32
    Select Account type and select table with field name ZUONR and double click
    Uncheck the check box Field can be changed
    Srinivas

  • Make Item level field Non-Editable in VA01

    Dear Experts,
            I have a requirment to make ITEM Category field in item level of VA01
            make Non-editable based on the value of Sale order Type in the main screen
      i am using Program MV45AFZZ to make necessary changes i am able change any thing on the header level but i am not geting the control of item level Please suggest me how to change or make fields non-editable in Item level.

    Hi,
    Try writing code in FORM userexit_field_modification.
    *** Lock field pricing date in SO if delivery occured
      IF   screen-name = 'VBAP-PSTYV'  AND
           sy-tcode NE 'VA01' AND l VBAK-AUART EQ 'your document type'.
          screen-input = 0.
      ENDIF.
    ENDFORM.                    "USEREXIT_FIELD_MODIFICATION
    KR Jaideep,

  • User Exit to make Payment Term field non editable in item level .

    Hi all,
    User wants to make the Payment Term field in sales order as non editable and  Payment terms is copied from Customer Master to Sales order.
    I use user exit MV45AFZZ (USEREXIT_FIELD_MODIFICATION) to make Payment Term field non editable in header level.
    I am not able to do it in item level. Pl help to to make Payment Term field non editable in item level.
    Thanks,
    sunil

    Hi,
    You can try implicit enhancement in the include MV45AF0T_TCTRL_U_ERF_AUFTRAG_I
    use below code.
    DATA: WA_COLS LIKE LINE OF TCTRL_U_ERF_AUFTRAG-COLS.
       LOOP AT   TCTRL_U_ERF_AUFTRAG-COLS INTO WA_COLS.
       IF WA_COLS-SCREEN-NAME = 'VBAP-ZTERM'. " Check the field name
       WA_COLS-SCREEN-INPUT = 0.
       WA_COLS-SCREEN-OUTPUT = 1.
      MODIFY TCTRL_U_ERF_AUFTRAG-COLS FROM WA_COLS.
       ENDIF.
    ENDLOOP.
    It better to control it via a custom authorization object.
    put a authorization create a custom authorization object so that you can restrict it for a certain users.
    AUTHORITY-CHECK OBJECT 'ZTERM'
             ID 'ACTVT' FIELD '02'.
    IF SY-SUBRC NE 0.
       LOOP AT   TCTRL_U_ERF_AUFTRAG-COLS INTO WA_COLS.
    ENDLOOP.
    ENDIF.
    Regards
    Aromal

  • How to make selective fields of VD03 editable?

    Hi all,
    In VD03 transaction, if i press the Display -> Change option in Customer menu all the fields of the tabstrip sales, Billing Documents and Partner functions gets enabled, i.e ready for change. But I need to make only certain fields editable and the remaining fields need to be grayed out. How to achieve it?
    Thanks in Advance,
    Aravindan.

    hi,
    For this you can use screen Variant(Using Transaction SHD0) and assign this screen variant to all user
    Regards,
    Alpesh

  • Is it possible to make OINV.CardName field on Sales Invoice Editable?

    Hi Forum,
    Sales Invoice has cardcode and cardname. Is it possible to make the cardname editable  on the form to be able to change the name on invoice.
    Thank you.

    Hi,
    Unfortunately, it is not possible in the application window where you can change the cardname which has been defiined for a cardcode field in the OINV table.
    The field is not editable .
    However, you can check and option of having a UDF to define and have the value appear which you want. Purpose for change name requirement is unknown to me but if it is required in the Print out then you can check the display of the UDF field in the print layout.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • How to make a particular field editable in a Form/Empty View

    Hi All,
    I want make a particular field editable in a Form View. Means i have 5 fields in the Form View and out of 5 fields i want to make one field editable or input field. Can you plz tell me how to do that?
    thanks & regards
    Madhusudan

    Hi,
    You can achieve the same by two methords.
    1) Goto configuration of the view in which you want to make fields editable/ non editable. Click on your field. Click on field properties. On the menu you can click on Display only. It will make your field non editable. If you remove the check, it will be editable.
    2) Goto Get_I_fieldname methord of your field. There write code rv_disable= 'FALSE'. Field will become editable. rv_disable= 'TRUE' will make field non editable.
    Best regards
    Pankaj Kumar

  • Is there a way to Search (List search) for more then one field text from a column for Bulk uploading?

    I've been trying to find more information on this and I apologies if this has already been answered. I just don't know the correct way to ask this. We have a SharePoint List at the company that we have people input information into different columns. The
    problem is most of those information are very repetitive. Is there a way for me to search more then one field text in the column and just input that same information in?
    ex:
    Column 1
    Column 2
    Date:
    883851
    MidWest
    User input 
    8831518
    MidWest
    User input
    On the search field in the SharePoint List, I would need to search for 883851, 8831518 etc,  would view those requested numbers, then I would click edit and change dates to those rows. Does that make sense? I'm sorry I'm fairly new at sharepoint.

    I think what you're asking is about having repetitive options in a list, show up easily for new items being created.
    This can be done by setting the columns that contain repetitive information to Choice fields.  In the configuration of the Choice field, check the box for "Allow custom values".  Now as users are entering data into the list, the dropdown of options
    for a given field grows and users can quickly see and select previously entered and thus repetitive values for the given fields.
    I trust that answers your question...
    Thanks
    C
    |
    RSS |
    http://crayveon.com/blog |
    SharePoint Scripts | Twitter |
    Google+ | LinkedIn |
    Facebook | Quix Utilities for SharePoint

  • Multiple clob fields in a single table

    Are there any known performance issues associated with having 4 CLOB fields in a single table... the table as such will be relatively small.. like 100 MB... with most rows being << 50k.

    Not really. If you need 4 CLOB columns and it makes sense to have alll the columns in a single table, go for it.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

Maybe you are looking for

  • Can't restore my iPhone 4. Please help me fix it!

    Hello! This is my first post in the Apple community forum so if I mess up somehow please, just bear with me. So, yesterday (1-11-12) I woke up with my iPhone 4 working perfectly fine, no problems whatsoever. I use it a couple of times during the day,

  • Jdev 11G (11.1.1.3.0) ADF BC: Weblogic Server Samples

    I installed the JDeveloper Studio Edition 11.1.1.3.0 from http://www.oracle.com/technetwork/developer-tools/jdev/downloads/index.html. From what I'm gathering, the WebLogic server that's installed (embedded?) with this is not the same server that's i

  • HT4682 Sony HDR-CX230/B compatible with FCP X

    I see that the HDR-CX230 and HDR-CX230E are listed as compatible.  Is the Is the HDR-CX230/B also compatible?

  • Widescreen Displays

    I am planning on buying a Mac Mini Intel Core Solo cpu, and purchasing with it one of the following monitors from NewEgg. http://www.newegg.com/Product/Product.asp?Item=N82E16824021045 http://www.newegg.com/Product/Product.asp?Item=N82E16824197014 ht

  • Editing fields on output of alv report format

    Dear friends, I created on report in alv format but user wants to edit the field on the output of that format also it's  effect is on the next field should br done. e.g. if in first field is 10  in next field user edit and enter the value 20 then aut