AGS_WORK_INCIDENT_MAN - add field as input field

Hi experts!!
I would like to customize a bit the WD AGS_WORK_INCIDENT_MAN, so as to have the "created at" field as an input field on message edit mode. I have never again done this..
Could anyone please guide me a bit????
Thank you all in advance!!!
Edited by: Grigoria Koutsogianni on Oct 19, 2009 2:54 PM

Hi,
Call SE80. Select Web Dynpro Comp and search for the object AGS_WORK_INCIDENT_MAN. You can customize using the options displayed below. Select the reqired option say View .You will get the detailed view at the right side and go ahead with your changes.
Hope this helps.
Rajeev

Similar Messages

  • Quantity field as input field in purchase templates

    Hi SDN,
    we are on WAS 700, SRM 5.0. SRM Server 5.5
    I am facing an urgent change request, which is a modification of standard templates and dynpros.
    The Task:
    When I create a shopping cart via "Old Purchase Orders and Templates" I want the quantity field as an input field, so that I can change quantities right here, when adding items from the public template to the shopping cart.
    The Business Case:
    We get tons of bad user feedback, as the process as it is, is really time consuming, because first you chose items from the template and in the next step you have to change the quantities.
    The html template involved is the:
    SAPLBBP_PDH_SEARCH 4001
    The corresponding dynpro is:
    4001 in function group BBP_PDH_SEARCH
    In the dynpro I see a quantity-field in the creen painter:
    -QUANTITY in Table Control TC_SUBLIST_SC
    in the html template I have:
    `if (SUBLIST-ITM_TYPE[n].value != "HIER")`
                  `SUBLIST-QUANTITY[n].value` `SUBLIST-UNIT[n].value`
    I guess I need something like:
    <input type="text" name="<SUB_WA>-QUANTITY" value="`SUBLIST-QUANTITY[n].value`">
    How do I set up the input field? Help greatly appreciated!!!
    Kind regards, Matthias Kasig
    Message was edited by:
            Matthias Kasig

    Hi,
    in perform mark_read_from_web you have something like that:
    MODIFY <sublist> FROM <lfs_sub_wa>.
    this modifies your sublist with new values.
    All you have to do is add to <lfs_sub_wa> quantity field.
    in code:
    lv_index = lv_index + 1.
          field-get 'SUBLIST-MARK' lv_index lt_mark lv_leng.
          IF sy-subrc <> 0.
            CONTINUE.
          ELSE.
            READ TABLE lt_mark INDEX 1.
            IF sy-subrc EQ 0.
              MOVE lt_mark TO <lfs_sub_mark>.
              MODIFY <sublist> FROM <lfs_sub_wa>.
              IF <lfs_itm_type> EQ c_hier AND
                 <lfs_exp> is initial And
                 lt_mark EQ gc_yes.
                MOVE <lfs_itm_guid> TO lt_sel_hier-guid.
                APPEND lt_sel_hier.
              ENDIF.
            ENDIF.
          ENDIF.
    add something like this:
    lv_index = lv_index + 1.
          field-get 'SUBLIST-MARK' lv_index lt_mark lv_leng.
          field-get 'SUBLIST-QUANTITY' lv_index lt_mark lv_leng.
          IF sy-subrc <> 0.
            CONTINUE.
          ELSE.
            READ TABLE lt_mark INDEX 1.
            IF sy-subrc EQ 0.
              MOVE lt_mark TO <lfs_sub_mark>.
              MODIFY <sublist> FROM <lfs_sub_wa>.
              IF <lfs_itm_type> EQ c_hier AND
                 <lfs_exp> is initial And
                 lt_mark EQ gc_yes.
                MOVE <lfs_itm_guid> TO lt_sel_hier-guid.
                APPEND lt_sel_hier.
              ENDIF.
            ENDIF.
          ENDIF.
    Regards,
    Marcin Gajewski

  • Want to display report output field as input field

    hi, all.
    In my report i am displaying output field which is blank, i want that field to be converted into input field for the same report.
    Give proper decision ASAP.
    Thanks & Regards,
    Sandip Sonar.

    Hi,
    you need to use this following statement, before your write statement, with INPUT ON as per the following syntax.
    FORMAT [COLOR       {{{color [ON]}|OFF}|{= col}}]
           [INTENSIFIED [{ON|OFF}|{= flag}]]
           [INVERSE     [{ON|OFF}|{= flag}]]
           [HOTSPOT     [{ON|OFF}|{= flag}]]
           [INPUT       [{ON|OFF}|{= flag}]]
           [FRAMES      [{ON|OFF}|{= flag}]]
           [RESET].

  • Add data to table view from input fields in a page

    Hi
            I am developing a BSP page which will be called from SRM shop transaction. After user enters the line item data, data will be passed back to shop transaction using OCI interface and the page attributes (URL).
       (1) How can I add data from input fields to table view on a page on a button click? I am able to add first line but I could not retain first line data when I try to add the second line.
          I am able to add multiple lines to table view if I use view and controller by adding to the line data to static attribute of the controller. I can’t use the controller and view because I can not set the attribute to Controller automatically.
       (2) Is there a way to pass an attribute (URL) to controller from SPRO? Like we pass an attribute to page automatically (Automatic page attribute).
       (3) How can I call a controller and view and pass the page attribute to the controller on a button click from a page with out controller?
    Thanks
    Sreenivas

    I'm trying to test the merge with the following data in a test.txt file:
    ZZZZZ114923000004
    1234Z400660000001
    ZZZZZ114923000010
    Getting an error:
    SQL> @C:\dataformats\sql\pc12seriesMerge.sql
    Directory created.
    SP2-0552: Bind variable "17" not declared.
    SQL>
    here it the pc12seriesMerge.sql file
    set serveroutput on
    create or replace directory user_dir as 'c:\dataformats\incoming\';
    DECLARE
    v_filename VARCHAR2(100); -- Data filename
    v_file_exists boolean;
    v_file_length number;
    v_block_size number;
    f utl_file.file_type;
    s varchar2(200);
    lineString varchar(200);
    v_account varchar(5);
    v_IDN varchar(6);
    v_quantity varchar(6);
    BEGIN
    v_filename := 'TEST.TXT';
    DBMS_OUTPUT.PUT_LINE(v_filename); --shows filename
    utl_file.fgetattr('USER_DIR', v_filename, v_file_exists, v_file_length ,v_block_size );
    IF v_file_exists THEN
    dbms_output.put_line('File Exists');
    create table ext_table (
    account varchar2(5),
    idn number(6),
    quantity varchar2(6)
    organization external (
    type oracle_loader
    default directory user_dir
    access parameters (
    records delimited by newline
    fields (
    account position(1:5) char(5),
    idn position(6:11) char(6),
    quantity position(12:17) char(6)
    location ('test.txt')
    reject limit unlimited;
    MERGE INTO id_req_stg t
    USING (
    SELECT account,
    idn,
    decode(quantity, '-', 0, to_number(quantity)) as quantity
    FROM ext_table
    ) v
    ON ( t.account = v.account AND t.idn = v.idn )
    WHEN MATCHED THEN
    UPDATE SET t.quantity = v.quantity
    DELETE WHERE t.quantity = 0
    WHEN NOT MATCHED THEN
    INSERT (account, idn, quantity)
    VALUES (v.account, v.idn, v.quantity);
    ELSE
    dbms_output.put_line('File Does Not Exist');
    END IF; -- file exists
    EXCEPTION
    WHEN UTL_FILE.ACCESS_DENIED THEN
    DBMS_OUTPUT.PUT_LINE('No Access!!!');
    WHEN UTL_FILE.INVALID_PATH THEN
    DBMS_OUTPUT.PUT_LINE('PATH DOES NOT EXIST');
    WHEN others THEN
    DBMS_OUTPUT.PUT_LINE('SQLERRM: ' || SQLERRM);
    END;
    /

  • CRM_IC - add input field

    Hello,
    I'm trying to add a new input field to a view in CRM_IC. I'm following the Cookbook and have created a copy Z_CRM_IC with the corresponding Views and Controllers, updated the profile and also placed it in the view, no problem. But how do I take care of the database update/search? The field does not exist in the context node. Any hint would be appreciated!
    Regards,
    Henrik

    Hi Orlando,
       Check this thread on date selector in tableview.
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=198839">Tableview</a>
    Hope it helps.
    Regards,
    Saravanan

  • Modify HREIC_VP to add new input fields

    Hi All,
    I need to add new custom input fields to the EEContact2Search.htm view of the HREIC_VP bsp application. Can anyone help me on how to do this?
    Thanks.

    Hi,
    You can have multiple options.
    Either you create a custom web part for new form and add your logic accordingly.
    Another option is to create the custom form using SharePoint designer 2013 and add your JavaScript Code to add the controls dynamically.
    Use InfoPath to create the custom form
    Some of the useful links are as follows
    https://support.office.com/en-us/article/Customize-a-SharePoint-list-form-c1f9283d-f704-4bbe-a8aa-827425ab31ae?ui=en-US&rs=en-US&ad=US
    http://community.bamboosolutions.com/blogs/sharepoint-2013/archive/2012/09/20/how-to-create-custom-forms-using-sharepoint-designer-2013.aspx
    Please don't forget to mark it answered, if your problem resolved or helpful.

  • BADI or User-Exit for Adding New Input Field in 0VTC

    Hi Experts,
    Has any of you worked on enhancing transaction 0VTC (Define Routes and Stages)? I have a requirement right now to add two new input fields in New Transport Routes screen. Could anyone provide a BADI or customer exit that I could use to modify the screen of the transaction?
    Thanks!
    Cross post locked
    Edited by: Rob Burbank on Mar 8, 2009 2:58 PM

    I'm concerned about the layout of the screen. Also, I didn't find any documentation about BADI_SD_ROUTE. Can anyone provide me the documentation for this BADI?
    Thanks!

  • Create dynamically a number of Input Fields

    hi all,
    one issue about creating dynamically a range of Input fields:
    i have one sap.ui.layout.form.FormContainer.
    at first i want to have one Input field in it. if this field is filled, i want to have a new one below, which is empty, and the cursor should be set to the new field.
    so i know that there is an function addContent for the formcontainer, so i can listen to the changeEvent of the Input field, if this is filled i will add a new Input field.
    at first: is this a good solution or is there any recommended way from SAP?
    second: if i will implement it this way, how can i read the data from this "array" of input fields?
    third: how can i set focus on input field in sapui5?
    thanks for help!
    Regards,
    Alex

    1) Solution sounds good to me
    2) You can do it in multiple ways:
    you can use content aggregation from FormContainer
    you can access Input field by id (you would need to follow some kind of convention when giving id to newely created field, like "inputField" + count, count ++)
    you can use RowRepeater (not sure though how it looks in FormContainer) and use a model for bining
    3) SAPUI5 SDK - Demo Kit From my experience element.focus() works just fine

  • User can not enter value in INPUT field.

    hi experts,
    i have a table control on the screen which have one input field which user needs to fill. But as per he business req. we don't want him to enter any value, values should be enter from the search help only.
    If i make input field Read only it comes in gray color and user get confused. tell me some way so i can create white input field in which user can not enter values from key board.
    Please suggest...
    points will be awarded...

    >
    ashish gupta wrote:
    > hi experts,
    >
    > i have a table control on the screen which have one input field which user needs to fill. But as per he business req. we don't want him to enter any value, values should be enter from the search help only.
    >
    >
    > If i make input field Read only it comes in gray color and user get confused. tell me some way so i can create white input field in which user can not enter values from key board.
    >
    >
    > Please suggest...
    >
    > points will be awarded...
    This you cannot control. because if it is enabled only in that case you can see it white.
    do that thing as suggested by basakar to add a new input field just besides first one with zero padding.
    One workaround is use an image instead of real input field. the image should have the input field as image.
    and besides it create the input field with width 0 and padding also zero.
    i think this can fulfill the requirement.
    Thanks
    sarbjeet singh

  • How to enable/disable the input fields based on the data entered/user action in the web dynpro abap?

    How to enable/disable the input fields based on the data entered in the web dynpro application abap?  If the user enters data in one input field then only the next input field should be enabled else it should be in disabled state. Please guide.

    Hi,
    Try this code.
    First create a attribute with the name readonly of type wdy_boolean and bind it read_only property of input field of which is you want to enable or disable.
    Next go to Init method.
    Set the readonly value as 'X'.
    DATA lo_el_context TYPE REF TO if_wd_context_element.
         DATA ls_context TYPE wd_this->element_context.
         DATA lv_visible TYPE wd_this->element_context-visible.
    *   get element via lead selection
         lo_el_context = wd_context->get_element( ).
    *   @TODO handle not set lead selection
         IF lo_el_context IS INITIAL.
         ENDIF.
    *   @TODO fill attribute
    *   lv_visible = 1.
    *   set single attribute
         lo_el_context->set_attribute(
           name =  `READONLY`
           value = 'X').
    After that Go to the Action  ENTER.
    First read the input field ( first input field, which is value entered field) , next give a condition
    if input value is not initial  then set the readonly value is '  '.
    DATA lo_nd_input TYPE REF TO if_wd_context_node.
         DATA lo_el_input TYPE REF TO if_wd_context_element.
         DATA ls_input TYPE wd_this->element_input.
         DATA lv_vbeln TYPE wd_this->element_input-vbeln.
    *   navigate from <CONTEXT> to <INPUT> via lead selection
         lo_nd_input = wd_context->get_child_node( name = wd_this->wdctx_input ).
    *   @TODO handle non existant child
    *   IF lo_nd_input IS INITIAL.
    *   ENDIF.
    *   get element via lead selection
         lo_el_input = lo_nd_input->get_element( ).
    *   @TODO handle not set lead selection
         IF lo_el_input IS INITIAL.
         ENDIF.
    *   get single attribute
         lo_el_input->get_attribute(
           EXPORTING
             name =  `VBELN`
           IMPORTING
             value = lv_vbeln ).
    if lv_vbeln IS not INITIAL.
        DATA lo_el_context TYPE REF TO if_wd_context_element.
        DATA ls_context TYPE wd_this->element_context.
        DATA lv_visible TYPE wd_this->element_context-visible.
    *  get element via lead selection
        lo_el_context = wd_context->get_element( ).
    *  @TODO handle not set lead selection
        IF lo_el_context IS INITIAL.
        ENDIF.
    *  @TODO fill attribute
    *  lv_visible = 1.
    *  set single attribute
        lo_el_context->set_attribute(
          name =  `READONLY`
          value = ' ' ).

  • Pressing tab key within table not scrolling to next input field

    Hi All,
    I have a table with editable and read only fields. I have more than 20 columns. When the tab Key is pressed it scrolls only to the editable fields that are in the visible screen. It does not scroll the table to the right to the next input field.
    However if I change the screen size so that the scroll bar is required for the browser then it will scroll across moving the browser scroll bar, moving the cursor to the input field that was not visible. Again it does not go further moving the scroll bar within the table to the next editable field to the right.
    The table has been set to scrollable with the scrollable column count set to 8.
    We are using explorer 8 on 7.01
    Is it possible to have the tab key move from input field to input field scrolling the table to the next input field if it is not visible yet?
    Thanks
    Bruce

    What you describe sounds like the correct functionality.  If you set a scrollable column count, only the visble rows are actually rendered on the client side.  When you use the horizontal scroll bar, you are triggering a server side event to retrive the next set of visible columns.  Therefore the browser doesn't actually know anything about non-visible columns and hence the tab can't go to them.
    When you increase the number of visible columns (or don't set anything for visible column) you render al the columns on the client side and use the browser scrolling.  Therefore the tab works.

  • HIdidng input field depeding on radio button selected

    Hello Experts,
    Can any let me know  or point to a tutorial ?
    how I can hide a input field another input field depending on the selected radio button.
    The radio button I have are fax and email.
    If Fax is selected I want to dispaly input field for fax and vice versa.
    Thanks,
    Raj

    Hi raj,
    (1)Create two context attribute of type "Visibility".
        (a) faxVisible
        (b) emailVisible
    (2)And bind the "visible" property of inputfields to these attributes.
    (3)On radio button selection in the action handler do following thing  for fax selection and vice versa.
    wdContext.currentContextElement().setFaxVisible(WDVisibility.VISIBLE);
    wdContext.currentContextElement().setEmailVisible(WDVisibility.NONE);
    Regards,
    Praveen

  • How to add an input field in the web UI of CRM 2007

    Hi everybody.
    I want add an Input field in the Web UI Screen. How it is possible.
    I want get the information with detailed descriptions if possible with screen shorts.
    What type of methods it will be generated and what are the code we entered in those methods.
    Take according to any example. But with detailed description.
    I am new for the CRM 2007. So, please give the screen shorts with proper data.
    Not only adding the field. If any data i entered in the adding field then that will be stored in the tables otherwise no use by adding the field.
    So, Can anybody please send a proper information according to this.
    Here another one How to Add our own table (Ztable) field in the Web UI Screen.
    How to add the same field in the BOL.
    Please expalin about those concepts with full of screen shorts messages.
    Thank You.
    Regards,
    Krishna.

    If you want to add extra standard fields (like one you mentioned), you can use Component Workbench and Copy the configuration and create your own configuration and make the "Available Fields" appear there.
    If the standrd field is not available, you can Add Context Node using wizard and make it visible.
    If its a custom field (a new one); you will have to use EEWB and add the fields and then make it visible in the UI using Component Workbench.
    Regards,
    Alin

  • How to Add Input Field in IC Webclient

    Dear Experts,
           I want to add one Input field in Interaction Center Webclient(IC Webclient).Is it Possible?If Possible Kindly Send me the Step by step Procedure.
    It is Urgent Requirement.Please Help me.
    Helpful Answers Will be rewarded.
    Regards,
    Ashok.

    Dear Albert,
      I have read the Blog "IC Web Client - Modifying View Layout - I".I am realy Impressed.I got the similar kind of requirement from my Client.In this Blog they are not clearly Explained about Adding the functionality for that Input Field.
         could you Please Explain me about how to add the functionality For that input Field.It is Very Urgent.Please Help me.
    Thanks & Regards,
    Ashok.

  • Add input field to PO header

    Hi all,
    In the purchase order header, the customer made subscreen "Customer data" has already been added with a few fields from the EKKO_CI structure. The screen is named SAPLXM06 0101, and I can see that the user exits EXIT_SAPMM06E_006 and EXIT_SAPMM06E_008 from enhancement MM06E005 have been implemented. This all works fine.
    Now I have to add a new field to this screen, and I don't know how to go about it. Can anybody provide me with an instruction on how to do this?
    Thanks
    - Mari Virik

    Hi,
    Add a new field in structure EKKO_CI which will get added to the table EKKO..
    Then go to se51..Give the program name SAPLXM06 and give the screen number 0101..
    Press change..
    Press layout button..
    Then create a new input field and give the fieldname as EKKO-ZZxxxx..
    So that it will refer the DDIC properties..
    Thanks,
    Naren

Maybe you are looking for

  • Firefox new install on XP, problems trying to get same-version-Firefox old W2K profile to run.

    I'm moving from a W2KproSP4 (Win2000, Windows 2000) machine to an XPproSP3 (WinXP) machine. I was running AVG 9.0 and Firefox 3.6.7 with FireFTP, NoScript, WOT, and screengrabber(?). I installed Firefox on the XP machine, launched it to create a prof

  • Appleworks crashes w/Exc_Bad_Access Kern_Protection_Failure

    On a set of eMacs running 10.3.9 and for a specific group of teachers, when they open Appleworks and select from the palette (say Word Processing) the following error occurs. Other groups do not have this problem. The same said teachers can go on oth

  • Oracle RTD Integration Point Invoke: Read Timed Out Error

    Hi All, We are getting the Read Timed Out Exception while invoking the integration points in Oracle RTD after running the batch job. Till the model doesnt have any data or very less data, we are able to invoke the integration points. But after execut

  • JSTL  Condition Evaluation for single character string

    I am facing a weird problem. For example my JSP code is like this: <c:set var="myString" value="S"> <c:if test="${myString=='S'}"> MyString value is S </if> When i execute this code it suppose to display: MyString value is S But it is not displaying

  • Explorer doesn't refresh when moving/deleting

    Hello, I recently started using W8 and at the moment when i change the name of a file or add a new file to a folder i have to manually refresh the folder in order to view the change. I have read about similar problems in W7 but the solutions dont see