Urgent -Need to Add new values for the LOV field in forms

HI,
I am customizing an existing form. In that i need to add some values for the LOV fied which can be used during run time.
Please Can some one help me in doing this?
Thanks
Suresh P

Go to Navigator and edit the LOV or create a new one.
hope that helps!

Similar Messages

  • Need to set default values for the fields plant and location in ME21N

    Hi All,
    i need to set default values for the fields plant and location in ME21N tcode.
    In accout assignment if we give 'A' then we need to create asset by clicking the Asset tab,there you have the fields plant and location.
    How to resolve this?
    Thanks in Advance

    hi .
    i needed to set default strorage location and plant in personal setting  in me21n.
    i solve it with this way.
    go to program SAPLMEPERS in se38.
    create new function in output with the sample name :MODULE ZTEST_001 OUTPUT.
    in this module write:
    if MEPOITEM_PROP-WERKS is INITIAL and  MEPOITEM_PROP-LGORT is INITIAL.
    MEPOITEM_PROP-WERKS = '1000'.
    MEPOITEM_PROP-LGORT = '0032'.
    endif.
    this is the solution.
    best regards.
    maryam

  • How to get the value for the LIT_Withheld field in the city tax form?

    I am trying to get the value for the LIT_Withheld field on the city tax form , PAYUSEET.. This is not a database column but is generated based on some conditions.. Appreciate the help. Thanks, Suguna

    Hi Abhmanyu,
    Thanks for your response.
    Search Help Name : ZZ_MG_MARITAL_VH
    Selection Method  : T502T
    Search help parameters are SPRSL, FAMST, FTEXT,
    Can u provide me a sample code to fetch the value of corresponding text.
    Thanks,
    Hari

  • Add New value to the special reference indicator on the TO field

    Can you please tell me how to add a new value to the special reference indicator dropdown which is on the transfer order. 
    LTAK->SPEZI  ?  Currently it is displaying values  A & B in the drop down and want to add a new value to the indicator.
    Thanks
    John

    Hi,
    I dont think you will be able to add more values to this field from configuration.
    If you check the data element and domain associated with this field (LTAK_SPEZI) in SE11. You can see that the value range for the domain has been defined there as  A and B only.
    So if you want to add a new value you can ask and ABAP/technical consulatnt to add new values to this Domain.
    However i am not sure it will be useful (unless you have a specific requirement and want to modify the standard programs) as the field is checked in different program (eg in inculde  LL03AF4V , LL03AF7F ) against these fixed values A and B.

  • How do I get a new value for the service name field and update it in Connection Properties?

    I am running Windows Vista. I just upgraded to Firefox 4. When I try to log on to the internet, it tells me the proxy server is refusing connections. A diagnostic reported Error 815 and said the remote server is not responding because there is an invalid value for the "Service Name" field. It said to get a new value and update it in Connection Properties. How do I do this?

    When you create a new film script, the first page you see is a title page.
    The page after this title page is the one where you generally type in your scenes.
    It looks like you are facing some issue and not able to delete any text.
    Can you please send me this script so that I can have a better look at your issue?
    You can save this script to disk by using option 'File -> Save to disk'. This will create a '.stdoc' file on your system.
    Just mail this '.stdoc' file to me at 'roverma <at> adobe <dot> com'
    Thanks

  • Add new values to the Domain J_1BINDUS3 CFOP category of the material

    Hello Gurus
    I have a request from the business to include some new values in the domain J_1BINDUS3 CFOP category of the material.
    Since is a standard object seems to be a work Basis team, however before requesting this I would like to get some advice from the experts to understand if adding new values to this domain can cause side effects or if I should maintain other objects as result of this request.
    I know table J_1BAON has to be maintained to properly determine CFOPs for the new fields but along that is there any other one?
    Is this the right process to include new CFOP categories?
    The requirement is to properly identify Assets as Productive and Non Productive when making the PO, since this can help us to determine tax code automatically.

    Have you tried using "Map published data" in the Utilities pane, mapping the department field to the corresponding security group.
    http://codebeaver.blogspot.dk/

  • How do I set a NULL value for the parameter field

    Hi
    I've another question. I'm going to set single values for parameter fields.
    // e.g. set today for StartDate parameter field
    fc.setCurrentValue("", "StartDate", new Date());
    It should be possible to set a NULL value for date parameter fields.
    fc.setCurrentValue("", "StartDate", (Date)null);
    But this do not work. How do I set a NULL value correctly?
    Thank you in advance.
    Best regards,
    Thomas

    First question - is it a stored procedure parameter?
    You can't set a regular parameter field value to a null value.
    There was an issue with old version of the JRC, where it was allowing null to go through, but had unexpected behavior at times.
    Sincerely,
    Ted Ueda

  • How to add new validation for the iProcurement web page?

    Hi,
    I am very new to OA Framework. Can you experts give me some guidance on how to proceed with the following customization?
    My requirement is in iprocurement when you open a new cart and check out on "ICX_POR_SHOPPING_CART" there is a Project Field and reference to Charge account. If the users go to charge account (ICX_POR_CHECKOUT_SUMMARY) and enter the segment values ( which includes project segment) and enters a value in project segment other than '000000' with out entering the Project Field on "ICX_POR_SHOPPING_CART" the page should give error.
    Please give me some suggestions on how to proceed.
    Thanks
    Vish

    I need the client side validation. By saying server side validation if you mean writing a triger on tables to validate then I am thinking to take that option as last resort.
    Can you please tell me what is PPR ( Is it personalization?) stands for.? In my case the Charge Account is DFF.
    Can you direct me to any documentation on how to add custom javascript to achieve my objective?.
    Thanks for your Help.
    Regards

  • Iterator not reflected on entering new values for the row

    Hi,
    I am having an editable table coming from an EJB Stateless Session Bean. I created a data control out of the session bean and dragged and dropped the output
    of the method in the session bean as a table in the jspx page. On click of the "Create" link, I have an action listener that creates a new row in the top of
    the table.
    DCIteratorBinding iter = DFUtils.findIterator("getMultSortReportListIterator");
    RowSetIterator rowSetIter = iter.getRowSetIterator();
    Row row = rowSetIter.createRow();
    row.setNewRowState(Row.STATUS_NEW);
    row.setAttribute("reportName", "");
    row.setAttribute("sectionName", "");
    row.setAttribute("userId", "");
    row.setAttribute("viewCriteria", "");
    rowSetIter.insertRowAtRangeIndex(0, row);
    rowSetIter.setCurrentRowAtRangeIndex(0);
    After the row is created, I enter values into the row and click on "Save" link. The action Listener for the save link is:
    BindingContainer bindings = getBindings();
    DCIteratorBinding iter = (DCIteratorBinding) bindings.get("getMultSortReportListIterator");
    //Read the entered values from the iterator
    Row currentRow = iter.getRowAtRangeIndex(0);
    String reportName = currentRow.getAttribute("reportName").toString();
    String sectionName = currentRow.getAttribute("sectionName").toString();
    Long userId = Long.parseLong(currentRow.getAttribute("userId").toString());
    String viewCriteria = currentRow.getAttribute("viewCriteria").toString();
    //Store to database
    MultipleSortReport multipleSortReportBean = new MultipleSortReport(reportName, sectionName, userId, viewCriteria);
    OperationBinding operationBinding = bindings.getOperationBinding("persistMultipleSortReportTest");
    Map params = operationBinding.getParamsMap();
    params.put("multipleSortReportObj", multipleSortReportBean);
    IMultipleSortReport multipleSortReportInfo = (IMultipleSortReport)operationBinding.execute();
    The problem is that after entering the values into the newly created row, I have to tab out of the row and click with the mouse to place the cursor in the
    end of the next row's first field for the iterator to reflect the entered values. If i enter the last column in the new row and after entering it I directly
    click on "Save", the newly entered values are not reflected in the iterator. The iterator is still reflecting the old values of the row i.e. "" empty fields
    as it was initialized during Create Row.
    Can you help me fix this problem. I want the iterator to reflect the newly entered values without having to tab out of the row.

    Marvin,
    I would suggest starting to debug your new CT in the following order
    1) ABAP - run directly in SAP to confirm you are getting the data you expect
    2) Set breakpoints in ABAP and confirm your transmit is calling into your ABAP as expected
    3) Java - Add breakpoints and step through your Java class to confirm it is getting back the data as expected
    4) ATE - Look at the CT in the ATE to view the contents
    --Bill

  • Need to add new status to the resource

    Please let me know how can I add the new status to the resource record in resource maintenance screen.

    Ok Thanks for the reply
    Is it possible to create the copy of that activity (Resource Maintenance)
    and add the status as required?
    And use this copy instead of standard Resource Maintenance?
    Please suggest?
    Thanks

  • How to set new value for the existing jar file

    Help:
    I am wondering if there is a simple to update value for Manifest-Version in a existing jar file?
    Thanks!

    The jar command's -u option is about as easy as I know.
    See the jar command documentation for the details.

  • How to add F4 help for the custom field of a custom table

    Hi All,
    How to add F4 help to the custom table field? in the table maintainance when user clicks on F4 i want to provide possible values for this field I am trying to write the code in the screen of table maintainace like the following
    PROCESS ON VALUE-REQUEST.
      FIELD ZTEST_MAH_F4-KUNNR MODULE zVALUE_kunnr .
    But when i am double clicking on module it's giving options to create include program but after that it's giving user is currently editing the table i am not getting this can some body clarify my doubt it's gr8 if some body give some examp code
    Thanks&Regards
    mahesh

    Hi,
    Create a subroutine under the event and call the following FM
    1. Select all the related data into an itab, for ex i_kunnr
    2.    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
          EXPORTING
        DDIC_STRUCTURE         = ' '
           retfield               = 'KUNNR'
        PVALKEY                = ' '
           dynpprog               = sy-repid
           dynpnr                 = '1000'
           dynprofield            = <selection screen field>
        STEPL                  = 0
        WINDOW_TITLE           =
        VALUE                  = ' '
           value_org              = 'S'
        MULTIPLE_CHOICE        = ' '
        DISPLAY                = ' '
        CALLBACK_PROGRAM       = ' '
        CALLBACK_FORM          = ' '
        MARK_TAB               =
      IMPORTING
        USER_RESET             =
          TABLES
           value_tab              = <b>i_kunnr</b>
        FIELD_TAB              =
           return_tab             = < return table >
        DYNPFLD_MAPPING        =
         EXCEPTIONS
           parameter_error        = 1
           no_values_found        = 2
           OTHERS                 = 3

  • Add new value to existing LOV

    I need to add "Current Date" as LOV of one object, which displays today's date. Could you please help me to do that?
    Thanks & Regards,
    Muntasir

    SELECT 'Current date' FROM DUAL
    UNION
    (SELECT DISTINCT
    SNAP_DT_DLY_RNG_VW.RANGE_NAME
    FROM
    DIM_DATE_RANGE_VW SNAP_DT_DLY_RNG_VW)
    Go to the universe designer, select the object properties entry in the context menu (right mouse button) and in the Properties tab press Edit. Press on the SQL icon, etner your SQL statement and check the option Do not generate SQL statement before running. Close the windows by pressing OK.
    Still you have to handle the string value 'Current date' in your prompt.
    The SQL where clause will look like this
    ((@prompt(<definition of your prompt here>)='Current date' AND SNAP_DT_DLY_RNG_VW.RANGE_NAME=XXXX) OR (@prompt(<definition of your prompt here>)=SNAP_DT_DLY_RNG_VW.RANGE_NAME))
    Replace XXXX with an oracle stament that will convert current_date to a format that is comparable to the contents of your RANGE_NAME field.
    Regards,
    Stratos

  • URGENT - need to compress a file for the web

    I need to do something IMMEDIATELY that I've never done before, and I simply don't have time to read the manuals to tell me how to do this.
    I have a 2 and a half minute video segment in FCP that I need to export for use on a web site. The main objective is to make this a smaller file size so it won't take up too much band width. We can sacrifice quality in order to make this a smaller file size.
    Do I Export by using Compressor? What settings do I use?
    We're in the middle of an intense political battle and I need to get this on our web site today. Please help!
    Bryce Inman

    We're in the middle of an intense political battle and I need to get this on our web site today. Please help!< </div>
    Consider hiring a consultant?
    right under the EXPORT command, you will find Quicktime Conversion.
    Use that and select Sorenson (or Sorenson 3). Leave all the defaults set as they are.
    Once you've finished that and mounted it on your site, you can go back and try other settings. But I think you will understand very soon why your question cannot be answered easily. There are literally thousands of combinations of settings that will affect the quality of your movie and the viewing experience of your visitors. There are no easy solutions for downloadable or hinted movies except to hire an expert.
    bogiesan

  • Add new line in the Flat file based on the field value

    Hi,
    Following is my Flat File -
    Customer   X      Y
    1001          1       2
    1002          0       1
    Based on the X and Y value I need to add new lines in the Flat file. If X>0 then add a new line with repeating row and Y>0 add again a new line with repeating row. If X or Y=0 then no need to add any repeating new line. 
    So, here for the above example I need output as-
    Customer    X    Y
    1001          1      2
    1001         1       2
    1001         1       2
    1002          0       1
    1002          0        1
    Suggest how we can achieve this?
    Regards,
    Tridib Konwar 

    Hi Tridib,
        I tried your scenario and You will have to use the custom xslt to get the expected result.
        Please find bellow the xslt code which you can use in your map.
    <?xml version="1.0" encoding="utf-16" ?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:var="http://schemas.microsoft.com/BizTalk/2003/var" exclude-result-prefixes="msxsl var" version="1.0" xmlns:ns0="http://PracticeAtul.XYFlatFileSchema">
    <xsl:output omit-xml-declaration="yes" method="xml" version="1.0" />
    <xsl:template match="/">
    <xsl:apply-templates select="/ns0:XYComp" />
    </xsl:template>
    <xsl:template match="/ns0:XYComp">
    <ns0:XYComp>
    <XYComp_Child1>
    <XYComp_Child1_Child1>
    <xsl:value-of select="XYComp_Child1/XYComp_Child1_Child1/text()" />
    </XYComp_Child1_Child1>
    <XYComp_Child1_Child2>
    <xsl:value-of select="XYComp_Child1/XYComp_Child1_Child2/text()" />
    </XYComp_Child1_Child2>
    <XYComp_Child1_Child3>
    <xsl:value-of select="XYComp_Child1/XYComp_Child1_Child3/text()" />
    </XYComp_Child1_Child3>
    <xsl:value-of select="XYComp_Child1/text()" />
    </XYComp_Child1>
    <xsl:for-each select="XYComp_Child2">
    <XYComp_Child2>
    <XYComp_Child2_Child1>
    <xsl:value-of select="XYComp_Child2_Child1/text()" />
    </XYComp_Child2_Child1>
    <XYComp_Child2_Child2>
    <xsl:value-of select="XYComp_Child2_Child2/text()" />
    </XYComp_Child2_Child2>
    <XYComp_Child2_Child3>
    <xsl:value-of select="XYComp_Child2_Child3/text()" />
    </XYComp_Child2_Child3>
    </XYComp_Child2>
    <xsl:if test="XYComp_Child2_Child2/text()!=0">
    <XYComp_Child2>
    <XYComp_Child2_Child1>
    <xsl:value-of select="XYComp_Child2_Child1/text()" />
    </XYComp_Child2_Child1>
    <XYComp_Child2_Child2>
    <xsl:value-of select="XYComp_Child2_Child2/text()" />
    </XYComp_Child2_Child2>
    <XYComp_Child2_Child3>
    <xsl:value-of select="XYComp_Child2_Child3/text()" />
    </XYComp_Child2_Child3>
    </XYComp_Child2>
    </xsl:if>
    <xsl:if test="XYComp_Child2_Child3/text()!=0">
    <XYComp_Child2>
    <XYComp_Child2_Child1>
    <xsl:value-of select="XYComp_Child2_Child1/text()" />
    </XYComp_Child2_Child1>
    <XYComp_Child2_Child2>
    <xsl:value-of select="XYComp_Child2_Child2/text()" />
    </XYComp_Child2_Child2>
    <XYComp_Child2_Child3>
    <xsl:value-of select="XYComp_Child2_Child3/text()" />
    </XYComp_Child2_Child3>
    </XYComp_Child2>
    </xsl:if>
    </xsl:for-each>
    </ns0:XYComp>
    </xsl:template>
    </xsl:stylesheet>
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful.
    Atul Toke

Maybe you are looking for