LOV in Picklist is not reflected with Value Set maintained.

Value set A is contained the latest/updated list of Responsibility Center. Wheres one of the Picklist in Employee Self Service(OTL) which showing the lists of Responsiblity Center which query/calling the values maintained in Value Set A. However, the list of values does not contain the latest information which being maintained in Value Set A. On the other hand, when query from backend table for the Picklist function, the updated value in Value Set A is there.
Additional Infomation: Apache and application was bounced but the result still the same.
Please advice. Thanks.

Hi Hussien,
For your information, it is Release 12.1.1, db version is 10.2.0.4 and platform version is Oracle Solaris on SPARC (32-bit).
The article that you have provided does not applicable. This is only happen to the Cost Center LOV in the picklist which does not reflected even there is no end date in Value Set maintained.
Please advice. Thanks.
Regards,
CF

Similar Messages

  • Picklist Descriptions not reflected

    Hi,
    I modified some of the Picklist descriptions for 2 Picklists already present on the Account detail object. When I generated a report including these 2 Picklists only their old descriptions are being displayed and not the newly modified ones. This report was generated against Real time data - also over 24 hours has passed since this was modified. Any inputs on this issue would be appreciated.
    Thanks,

    Hi Hussien,
    For your information, it is Release 12.1.1, db version is 10.2.0.4 and platform version is Oracle Solaris on SPARC (32-bit).
    The article that you have provided does not applicable. This is only happen to the Cost Center LOV in the picklist which does not reflected even there is no end date in Value Set maintained.
    Please advice. Thanks.
    Regards,
    CF

  • Posting complete retirement not poss.with value date

    Hello,
    The error is coming as "Posting complete retirement not poss.with value date" when i am executing ABUMN. I am providing the asset value date same as the old assets Capitalisation date.The output comes as:
    Diagnosis
    Transactions have been posted to asset 900035 0 with an asset value date or posting date later than the retirement date 15.06.2009.
    I have tried with later date but same result.
    JK

    Hello Paul,
    I am not retiring the asset. I am just transferring the old asset class to a new asset class. Like: 100001 was created wrongly under 1020 class. Now we have created 500005 asset under 1040 class which is a correct class. Now I am transferring from 100001 to 500005 with the transaction code ABUMN. I am providing the same capitalisation date as of 100001 in asset value date in ABUMN.
    Hope you understand.
    JK

  • AA318 Posting complete retirement not poss.with value date...

    Hi, please I need your help...
    I get this error:
    Posting complete retirement not poss.with value date 31.12.2011
    Message no. AA318
    I have an asset that has values in the year 2012, but I reversed all of them. It´s necessary to transfer the asset to a new asset with ABUMN dated 31.11.2012. How can I solve this?
    Thnaks for your colaboration!

    Hi,
    Thanks, but my sap version is 6.0 and the release of that note is valid to 470. Do you have any other idea?
    Thanks for you colaboration!

  • DropdownByKey inside ALV Table - Problem with Value set

    Hi,
    I have Component A which has a custom controller that uses the interface controller of the ALV Component.
    Custom controller has node ITAB.. that has certain attributes...
    I want DropdownByKey inside the ALV Table column. I am populating the corresponding attribute of ITAB node with the value set that I want the drop down to have.
    However when I execute the application..I get error
    " Key XXX not present in Value Set and is not initial"
    XXX is present in the Value Set table of the attribute.
    <b>Following is my code in the methods of CUSTOM CONTROLLER</b>
    <u>Generate Value Set</u>
    nodeinfo_context = wd_context->get_node_info( ).
    nodeinfo_ITAB= nodeinfo_context->get_child_node( wd_this->wdctx_ITAB ).
    <u> Populate the Value Set</u>
    data ls_valueset type wdy_key_value.
    data it_valueset type wdy_key_value_table.
    ls_valueset-key = 'FRA'.
    ls_valueset-value = 'FRANCE'.
    Append ls_valueset to it_valueset.
    ls_valueset-key = 'SFO'.
    ls_valueset-value = 'SAN FRANCISCO'.
    Append ls_valueset to it_valueset.
    <u>Set the Value Set for the Attribute</u>
    call method nodeinfo_ITAB->SET_ATTRIBUTE_VALUE_SET
                  EXPORTING
                     NAME = <b>'ATTR1'</b>
                     VALUE_SET = it_valueset.
    <u>Changing ALV Column</u>
    Get the ALV Configuration Model
      ifc_alv2 = wd_this->wd_cpifc_alv2( ).
      itab_alv2_config = ifc_alv2->get_model( ).
      itab_alv2_config->IF_SALV_WD_TABLE_SETTINGS~SET_READ_ONLY( abap_false ).
    <u>Get the Column reference for ATTR1</u> 
    ref_alv2_colset = itab_alv2_config->if_salv_wd_column_settings~get_column( <b>'ATTR1'</b> ).
    <u>Create the DropDownByKey Object</u>
    CREATE OBJECT ref_dropdownkey
              exporting SELECTED_KEY_FIELDNAME = ref_alv2_colset->id.
      ref_dropdownkey->SET_SELECTED_KEY_FIELDNAME( <b>ref_alv2_colset->id</b> ).
      ref_alv2_colset->SET_CELL_EDITOR( <b>ref_dropdownkey</b> ).
    <u>Check the value set</u>
      ref_attr_info = nodeinfo_flight_details2->get_attribute( ref_alv2_colset->id ).
    I do get back the value set if I see ref_attr_info->value_set.
    SO the Value Set is getting set for attribute ATTR1, but still I get Error
    <b>"The value selectedKey = "SFO" in DropDownByKey "_8C" does not exist in the value list and is not initial either "</b><u></u>
    SAP  User

    You have forgotten to set a cell variant. I had the same with setting a ProgressIndicator cell-editor to a table column as default editor. This causes the column to be hidden on the table while it did show up in the settings dialog. I removed the set_editor( lr_progressindicator) and created a cell variant instead with this lr_progressindicator. You then need to add this cell variant to your column. By default it will select the standard viewtext-cell-editor (which can only be textview and inputfield, like when you create a table yourself in a view), but if you use a cell variant, it will display the required cell editor if you set it (last line of the code).
    <b>In your case, replace lr_progressindicator by your ref_dropdownkey.</b>
      DATA: lr_column_settings    TYPE REF TO if_salv_wd_column_settings,
            lr_column             TYPE REF TO cl_salv_wd_column,
            lr_column_header      TYPE REF TO cl_salv_wd_column_header,
            lr_cellvar            TYPE REF TO cl_salv_wd_cv_standard,
            l_cellvar             TYPE string,
            lr_progress_indicator TYPE REF TO cl_salv_wd_uie_progr_indicator.
      lr_column_settings ?= wd_this->mr_table.
      lr_column = lr_column_settings->get_column( 'STATUSBAR' ).
      lr_column_header = lr_column->get_header( ).
      lr_column_header->set_text( 'Completed' ).
    CREATE OBJECT lr_cellvar.
      l_cellvar = 'CV_SB'.
      lr_cellvar->set_key( l_cellvar ).
      CREATE OBJECT lr_progress_indicator.
      lr_progress_indicator->set_percent_value_fieldname( 'STATUSBAR' ).
      lr_progress_indicator->set_tooltip( 'completed' ).
      lr_cellvar->set_editor( lr_progress_indicator ).
      lr_column->add_cell_variant( lr_cellvar ).
      lr_column->set_selected_cell_variant( l_cellvar ).
    I hope this will solve your issues.

  • LOV in a Table - "Not a valid Value" - Urgent

    Hi All,
    I have an LOV inside a Table region. The table has the Add another row button. considering the table has currently 3 rows created and the user enters a dummy value not present in the LOV in the first row and tabs out. The LOV automatically pops up without any values. The issue is when the user closes the pop-up window or clicks on its cancel button. The LOV doesn't validate the data present in the text box. If the Submit button is clicked or the save button is clicked , The framework automatically validates the data present in the text box and throws an error "Not a valid value" .
    Now im not sure why but the dummy data entered in the first text box is copied to the second and third text box , and the error is displayed for all the three rows. If there is valid data present in the remaining rows it just over-writes the data with the dummy value.
    I have written SOP's in the controller's Process request as well as the process form request but none of them seem to display anything.
    So the framework is basically validating this before the controller is called.
    Im working on a 11.5.10 instance.
    Need help to know if anyone has come across such a situation before.
    Thanks ,
    Dean

    Dean,
    Seems to be a looping issue. Also you need to get the exact error row.
    Thanks
    --Anil                                                                                                                                                                                                   

  • Screen Variant is not reflecting same value in different transactions.

    Hi Guys,
    I need a help, it is urgency.
    I done the screen variant for one filed is mandatory and another field in display mode (gray color) for transaction (FPR1 in ISU). After I done the screen variant the standard transaction code (FPR1) showing same result, what I am expecting.
    But the problem is, I want to maintain or enter the values from CIC front office screen.
    Once I confirm the BP and select the contract account to create install plan (FPR1), here it is open with standard view, which is not displayed with screen variant changes.
    What should i check in that case. I already checked with
    T.code : EWFC, EWBC.
    Thanks in advance. Your guidance is appreciated
    Regards,
    Venkat.

    Hi,
    Even if you group valuation/view currency is the same as controlling area currency, the system will still show the message above. SAP need you to acknowledge that you're  now costing for different valuation than your operation (legal valuation).
    Note: Normally we execute sales order costing for group valuation in the background.  You can read note 1819102 on how to remove that warning message when costing via background.
    Thanks,
    Ong Yang

  • Query Not reflected with Updated Data

    Dear Experts,
    I am facing a Problem in query data updation.    Data has been daily updating in infoprovider successfully ,But when user run query through Bex he is always shown old data.  Then I go to RSRT and generate the query and data got updated.
    Every Time for new data updation I need to Generate the query.
    What could be reason for this.  Is this related to cache data ?
    Any Advise .
    Thanks in Advance.

    Dear Michael,
    This problem is coming only for one Multiprovider.   Running this program would affect all other queries also . This will Delay the reporting.
    Any other reason why query is reflected with old data Though infoprovide is loaded with new data.

  • Unable to handle event --Select-Options as Dropdown filled with Value Set

    Hi all,
    I seem to be having no luck with this problem. I have searched enough, and not come across any relevant documentation either.
    I am using a select options field made as a dropdown and am populating the dropdown values using the Value Set where i can provide a table of key values versus descriptions. Additionaly, I have hidden the standard buttons -- CANCEL, CHECK, RESET, EXECUTE.
    This appears exactly like a dropdown, just as desired.
    However, no event seems to be triggered whenever I select any value from this dropdown field.
    The interface controller of the select-options component offers 5 events and I have tried creating event handlers for all of these; with no success. With no event to track, I am frozen.
    I know I may be able to create such a dropdown list without using select-options either; but the point is if this functionality is provided by select-options, there should be a way of using it.
    I have browsed through the helper class as well as the interface controller, but am not getting a clue.
    The bottomline is, with my current situation, how can i track the on-click or on-change kind of event?
    Could anybody melt the ice?
    Thanks.

    I went to the source code of the select-options class (CL_WDR_SELECT_OPTIONS) and found the method where the UI elements are rendered (RENDER_SELECTION_SCREEN_ITEM).  In the spot where the DDLB is rendered, there is simply no code to register any events for the DDLB.  So it doesn't appear that there is any intention to allow you to handle such events from the DDLB.
    => add the dropdown as dropdownbykey
            prefix_id mc_dropdown_id i_field-m_id id.
            concatenate i_field-m_id '.VALUE' into path.
            lr_dropdown = cl_wd_dropdown_by_key=>new_dropdown_by_key(
                            id                = id
                            bind_selected_key = path
                            read_only         = i_field-m_read_only
                            state             = state
                            explanation       = i_field-m_explanation
                            tooltip           = i_field-m_tooltip
                            view              = lr_cur_container->view ).
            lr_label_low->set_label_for( id ).
            lr_matrix_data = cl_wd_matrix_data=>new_matrix_data( element = lr_dropdown width = '1%' ).
            lr_dropdown->set_layout_data( lr_matrix_data ).
            lr_cur_container->add_child( lr_dropdown ).

  • Quickpaint reports not working with assignment set defined with criteria

    Hello,
    I have a problem with quickpaint reports in HRMS. When i run quickpaint report against assignment set defined with criteria it reports following error: APP-PAY-06867 An error occurred during formula execution FFX00_DATA_NOT_FOUND (assignment criteria was &ASG_LOCATION=New York).I defined several assignment sets with different criteria and i always get the same error when i run any quickpaint report.
    The same Quickpaint report works well with assignment set defined by including individual assignment.
    Thanks in advance!
    best regards

    Thanks for uploading the sample reports. 
    I am not abe to reproduce the issue and the graphs generated in both the attached reports are the same except that the width of the graphs being displayed are different as seen in the below images.
    ATML 5.1 Report Graph
    XML Report Graph
    Regards
    Srivinayaka Pandurangan
    National Instruments
    With Best Regards,
    Srivinayaka
    National Instruments

  • WWI - Symbols are not replaced with values

    Hello Experts,
    I´m trying to generate an MSDS with WWI.
    I save the template, create the generation variant... and when I generate the report, most of the symbols come up empty (even if the value assignment is maintained in the specification). Header data, such as identifiers, are OK (symbols are replaced with no problem).
    I checked conflicts with status / usage, but nothing seems wrong.
    Any ideas of what I can check or what I am missing??
    Thanks a lot!
    Irene

    hi Irene,
    The status check should not be flagged and Usage check should ahve value 0 (subset)
    This means the usage is appropriate if - with the same rating used - the generation variant validity area that is expanded to its countries and regions is the same as or is a subset of the expanded validity area of the usage with which it is to be compared.
    Example:
    Generation variant: DE
    Value assignment usage: REG_EU
    If a safety data sheet is created for Germany, value assignment instances are also taken into account that are valid for the validity area REG_EU.
    Not aware of User exits in customizing.
    Regards,
    Niraj

  • Workbook in 3.5 version is not reflecting with changes made to structure

    Hi Guys,
    I have changed a structure in a query by removing reference in Query Designer 7.0 by adding couple of fields and Query is displaying newly added fields in 3.5 Bex Analyzer.
    This query is used in a 3.5 vers workbook, but this workbook is not showing the newly added fields from the structure. While refreshing the Query in the workbook getting warning as structure has been changed and it does not exist.
    Can anyone pls suggest some solution so that newly added fields gets visible in the workbook.

    Hi,
    In workbook design mode, try to attach same query again & then Save & execute, because from error it seems that workbook is able to sense changes in structure but unable to reflect those in workbook.
    This this would resolve you problem.
    Thanks & Regards,
    Pradip Nikam

  • Changed value for Dom0 but xl does not reflect changed value

    Hi.
    I have updated Dom0 default value to 4096M in /boot/grub/grub.conf. However it only display a value of 2994M when I do a xl list after rebooting the host.
    I have installed OVMS 3.1.1 on a Dell M620.
    Any help is welcome.
    Thanks.

    Same here. I've been intending to open an SR about it an never have. I don't know what difference it actually makes but the documentation does recommend you do it and it doesn't reflect that its been changed.

  • Significant digits not obeyed when value set through property nodes

    Hi, I have a front panel with a large number of indicators on it. As updating each one is a very straight forward task, I am using the This.Panel.Controls array to step through and update each indicator appropriatly. The problem is, that because I have so many indicators, and the actual numbers aren't that important (they are also being logged elsewhere) I only wish to have 4 significant digits displayed so that the value fits into the size of the indicator. I set each indicator to have a display format of %_4f, but when I run it this is not obeyed and 7+ digits are displayed. I'm guessing this has something to do with updating the controls via the property node, but I'm not sure why that should cause an issue. Any ideas?

    Nope, I double checked the format string. I do mean significant digits by the way. My imput values are expected to be in the range 0-100 but I've sized my indicators to fit only 4 digits, which will give me at worst a 0.1% error over the full range, which is good enough. Right now the channels from which I am grabbing data are all disconnected, so I am just getting noise. I've attached images of both the format string I'm using, the relavent part of my code where I update values, and an example of the output I get. Thanks,
    Jon
    Attachments:
    FormatString.PNG ‏32 KB
    ouput.PNG ‏2 KB
    ValueUpdating.PNG ‏25 KB

  • Bookmark sync not working with large set and maybe javascript bookmark bookmarklets??

    Bookmark sync via iCloud doesn't seem to work for me. I use Chrome as my primary browser but keep a huge set of bookmarks synced to Safari via Xmarks.
    Basically I either get no bookmarks on my iOS devices (iPhone 4 and iPad 1) or a huge number of repeated versions of 1Password's very large java bookmark.
    I've tested by deleting all my Safari bookmarks and starting with a clean Mac. When I do this everything works and changes on any device propagate to the others.
    As soon as I bring in my big bookmark set from Xmarks, it all breaks.
    Do I need to perform the bookmark clean up I've been putting off for a decade or so?

    Can't help with your bidirectional bookmark syncing question but try this for backing up your touch's bookmarks.
    Export/backup all of your Safari/Internet Explorer bookmarks (depending on where you're syncing them from) and keep them is a safe place. This is your master bookmarks list. Then delete all bookmarks/folders from your browser. Now sync your bookmarks with the touch with the following iTunes settings:
    Under your touch's 'Info' tab, select the checkbox 'Sync bookmarks with Internet Explorer/Safari'.
    After syncing, your touch's bookmarks (and only those from your touch) will be synced to your browser. Now export/backup these bookmarks...these are your touch's bookmarks. Now you have a both a backup of your master bookmarks and your touch's bookmarks. When you want to sync/restore your touch's bookmarks back to the touch, delete all your PC browser's bookmarks and import the touch bookmarks:
    Under iTunes/your touch/'Info'/Web browser & Advanaced, select the checkboxes 'sync bookmarks with IE/Safari' and 'Replace information on this iPod: Bookmarks' and sync again.
    This will transfer your touch's bookmarks back to the touch. Now delete all bookmarks again from IE/Safari and re-import your master bookmarks. Note that after importing them back in, they will likely be in alphabetical order rather than the date added order.
    Also note that (at least in Windows) your browser needs to be open for bookmark syncing to take place.

Maybe you are looking for

  • How to open -pdf in a secure environment

    Opening PDF files from a secured account on Internet (e.g. telephone billing info) does not work. in Safe as the file is shown as _pdf (underscore instead of dot).  We suspect this problem started after installing CS6, but are not sure. Win 7, IE 9,

  • Possible Sequential Read Access for a Sorted Table

    Hi All, I have the following warnings in Code inspector check. 'Possible Sequential Read Access for a Sorted Table' Kindly provide me the solution to overcome this warning message. This is my code in BAdi : CRM_ORDER_FIELDCHECK , Method : FIELDCHECK

  • Work Around For Numbers Crashing

    Work Around For Numbers Users: For those of us who have numbers and have had problems with it crashing when scrolling across sheets that have checkboxes try this:  Double select a cell, and use the expanding group to navigate the sheet.  It seems to

  • IDVD does not burn camera audio - does burn ITunes audio

    I have a Sony DCR-TRV460 video camera. The computer does not see my camera. I used an ADS Pyro A/V Link to get the movie from the camera to the computer. When I preview the movie in IMovie, I get the audio and video from the camera perfectly. When I

  • Enable Buttons after selection of row in a table

    Hi All Could any one give me help in this. I have a table, in table tool bar some buttons are there. at first time buttons are in disable mode, when user select any row in the table the buttons should be in enable mode. how to do this? help me Thanks