Added fields doesn't display in update rules

I added new fields in the infocube and these fields are not getting displayed in left side pane of update rules to apply the logic. Can some one help me in this issue.
Thanks in advance,
Tony

I assume you activated the cube once you finished adding the fields...
Close your session, logout of BW and then open it again and check... It has happened to me... One of those things that doesn't make sense...
Another thing would be to delete the update rules and create them again, check that fields show...

Similar Messages

  • Newly added field not getting displayed in ALV output

    Hi All,
       I'm adding one more field/column to be displayed in an old existing program that uses REUSE_ALV_FIELDCATALOG_MERGE to generate the ALV fieldcat.
    DATA: BEGIN OF it_salary OCCURS 0,
            pernr LIKE pa0000-pernr,
            ename LIKE pa0001-ename,
            rtext like lv_rtext, -
    added field
            waers LIKE pa0008-waers
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = driver
          i_internal_tabname     = 'IT_SALARY'
          i_client_never_display = 'X'
          i_inclname             = driver
        CHANGING
          ct_fieldcat            = lv_fieldcat[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program      = driver
          it_fieldcat             = lv_fieldcat[]
          i_default               = 'X'
          i_save                  = 'A'
          is_variant              = lv_tmplt
          is_layout               = lv_ls_layout
         i_callback_user_command = 'USER_COMMAND'
        TABLES
          t_outtab                = it_salary
        EXCEPTIONS
          program_error           = 1
          OTHERS                  = 2.
    The newly added field is not getting populated in the lv_fieldcat table. Tried running programs BALVBUFDEL,
    BCALV_BUFFER_DEL_SHARED then logging off and logging in but of no help.
    Please provide suggestion for this issue.
    Regards,
    Sridevi S

    Hi,
    Fieldcat is buffered - so use
    I_BYPASSING_BUFFER = 'X'
    Since a while CL_GUI_ALV_GRID is available which does NOT need any fieldcat (is determined internally using RTTI). It is worth playing around whith this class if you have some time. This class is recommended for ALV Output by SAP (but no edit is possible - was never supported officially).
    A simple use would be:
    data: gt_output type standard table of (adjust!).
    *simple ALV output
    data go_alv type ref to cl_salv_table.
    data go_functions type ref to cl_salv_functions_list.
    data go_columns type ref to cl_salv_columns_table.
    data go_column type ref to cl_salv_column_table.
    *Exceprion handlig
    data: go_exception  type ref to cx_root,
          gv_errortext   type string.
    ** fill table gt_output ...
    ** ALV output
    if not gt_output is initial.
        try.
            call method cl_salv_table=>factory
              importing
                r_salv_table = go_alv
              changing
                t_table      = gt_output.
          catch cx_salv_msg into go_exception.
            gv_errortext = go_exception->get_text( ).
            message gv_errortext type 'A'.
        endtry.
    * enable all standard ALV functions
        go_functions =  go_alv->get_functions( ).
        go_functions->set_all( ).
    * hide MANDT
        go_columns = go_alv->get_columns( ).
        go_column ?=  go_columns->get_column( columnname = 'MANDT' ).
        go_column->set_technical( ).
        go_alv->display( ).
    Kind regards,
    Holger

  • Deleting  rows with missing values in field in start routine of update rule

    Hello experts,
    how can I delet rows with missing values in a specific field in the start routine of update rules?
    I think ABAP code should look something like this:
    delete ...  from DATA_PACKAGE where Z_NO = ''.
    thanks in advance for any suggestions!
    hiza

    Write:
    delete data_package where field = value.
    Hope it helps.
    Regards

  • CC desktop client doesn't display available updates

    After a rocky start I was finally able to download the desktop client. It was fine at first and allowed me to install CC trials, update trials, sync settings, etc.
    I'm still able to sync settings and use my software, but CC doesn't display all the new updates that came out recently. It's been like this for a couple days that I know of, and I was able to download all of those updates on Monday from my work machine which is also running trials off the same account.
    Mac OS X 10.8.4
    Creative Cloud 1.0.0.183

    Wow, Adobe customer support is the worst I've ever used. Not these boards, these have helped me a lot in the past, but everything else.
    Support has done nothing but vehemently try to convince me that I don't have a problem. "If CC desktop says 'up-to-date' then it's up-to-date." This has been their mantra. I plead with them, "No, my version of Premiere Pro is at 7.0.0 and the current release is 7.0.1." Then they just read the same line from their script, "If it says 'up-to-date' …"
    One support guy even said to me, after I explained and re-explained my issue many times, "I don't understand, so why is your other computer getting updates and this one is not?" Gee, I don't know, THAT'S WHY I'M CALLING YOU!
    I'm told to try the same basic things I've tried time and time again. I keep getting passed off to other people who quickly give up and tell me there's nothing they can do except pass me off to someone else.
    It's been over a month that I've had this problem, ever since I installed Creative Cloud. I have encountered lots of bugs in the software, there are certain things I cannot do in my apps and I really need to get this resolved.
    Sorry to rant and rave on a forum meant for utility, but this is the worst customer support experience I've ever endured, and I guess i'm trying to illustrate that THIS FORUM IS MY ONLY HOPE.
    Please, any tips, advice, suggestions, any help from you knowledgable forum members is really appreciated. I really like the CC suite in theory, but I can't continue to be a creative cloud member if I am resigned to only using buggy release software for the foreseeable future on my primary computer.
    I am not going to pay $50 a month for something so broken that I am not getting any support on.
    Thanks,
    Evan

  • Access to unmapped field of ODS in the update rule of CUBE

    Hi Gurus,
    I have 8 fields in ODS out of which only 5 are mapped to the characteristics in the CUBE. I have to write a start routine in the update rules of the cube. But, I need to access one field, which is in ODS but not mapped to characteristic in the cube.
    So, is it possible to use that field in the logic of start routine. Or do I have to create a new characteristic in the CUBE for that 6th field also.
    Thanks,
    Regards,
    aarthi
    [email protected]

    Hi
    You certaily should insert your infobject field in the cube to populate it. After This you can choose if populate it by direct mapping or by routine.(start routine or transfer routine)
    A classic example of start routine to populate infobject from master data
    tables : /bi0/pcostcenter.
    data : lt_data_package like DATA_PACKAGE occurs 0 with header line,
    lt_costcenter like /bi0/pcostcenter occurs 0 with header line.
    select * from /bi0/pcostcenter into table lt_costcenter.
    lt_data_package[] = DATA_PACKAGE[].
    loop at lt_data_package.
    read table lt_costcenter with key costcenter = comm_structure-costcenter.
    if sy-subrc = 0.
    lt_data_package-/bic/zpcaccgh = lt_costcenter-/bic/zpcaccgh.
    modify lt_data_package.
    endif.
    endloop.
    DATA_PACKAGE[] = lt_data_package[].

  • Why data in PSA doesn't  change when update rule routine is modified?

    Hello guys,
    why data in PSA is not changed after I modifiied the update rule routine. I created a infopackage which is only to PSA, but it shows me any change. If I changed this infopackage to the one which is assigned to "PSA firstly, and then to Infoobject", then I saw the changes in infoobject, but in PSA, still nothing changed.
    I can't figure out the reason. Any hint is welcome!
    Thanks in advance.
    Regards,
    Liying

    HI..
    1) PSA data is like of source system data
    2)Update rules are how you update your keyfigures to Data Tragets.
    Since you have put upto PSA that is the first data staging in BW so there wont be any change of the data even if you write routines at update rules.
    Hope it is clear
    Reg
    Ram

  • Keyfigure display in update rule is not there!

    Hello Experts,
    I followed the steps provided to create the snap shot ods for stock initialisation based on the how to inventory management document.
    I created three key figure info objects and created a ods as given in the document!
    When I create update rule the key figures are not shown in the update rule but it shows the units in the update rules that are used by the key figures!
    I gone through the OSS Note, the information is to have support package 10 implemented but we have support package 21(SAPKW35010 but already we have SAPKW35021) (BW 3.5)
    Still the problem Exists while creating the update rule!
    Suggest me where I am wrong!
    Points will be awarded
    Regards
    Ram

    Hello,
    Help me on this issue please!
    if further informations are needed or my question is not clear please revert me back i will give more information!
    Thanks in advance!
    Regards
    Ram

  • CR Database Fields doesn't display classes from a referenced project

    Hi,
    I created a website and a class library project. The website have a reference to a class library.
    I added a new Crystal Report item to the website (CrystalReport.rpt), and on the Database Expert screen, in the Database Fields section I need to select fields that are members of classes in the class library (referenced project). Only the website classes appear in the list.
    Is there a way to do this?
    Thanks.

    if i understand correctly you added data to the dataset the report is using?
    you need to verify the database to pull in the new fields
    database
    verify database
    you should then see the fields in the db expert

  • Recently added playlist doesn't reset or update

    As the question asks ,
    my recently added playlist never changes
    cheers
    matt

    I'm also having the same problem. After I import new tracks into iTunes. They are not showing up in my Recently Added playlist. I checked the smart playlist settings and it is set to Live Updating. I have to quit iTunes and relaunch before the new tracks will show up. Clearly a bug. I've submitted a bug report on their feedback site.
    It's not a problem with the settings of the smart playlist. I have never changed the settings of the playlist, and it only stopped updating with iTunes 10. And quitting and restarting makes the new tracks show up.

  • HT4623 my ipod doesn't display "software update" in settings

    I have an ipod touch 3rd generation, and want to update it.  When I go into my settings, then to general, there is not a "software update" option.  Can I change that?  or is it because my itouch is too old?

    See:
    iOS 4: Updating your device to iOS 5 or later
    You need itunes 10.5 or later on your computer.

  • App Store icon doesn't display pending updates (notifications)

    I've noticed that with many of my friends, they get the notification on top of their App Store icon saying how many apps are pending updates. I do not get these notifications, unless I open the App Store application. If any apps have updates, let's say 3, when I close the app store, then I have the little 3 on top of the App store icon. how do I get these notification automatically without first opening the app store?

    If you can't find it on any of your homescreens or app folders, and you can't find it via the spotlight search screen (pull down the centre of the home screen in iOS 7), then is it hidden by Settings > General > Restrictions > Installing Apps being set 'off' ?
    If not then have you tried a reset to see if you can find it after the iPad has restarted ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Website address field doesn't display in safari

    I was in safari and I downloaded a pdf file and then worked on this file.  When I went back to safari, the website address bar and google search bar no longer appeared.  I can open up new windows by selecting the tab + but I cannot enter in a website address because there is no place to type it.  If that makes sense.

    Choose Show Toolbar or Customize Toolbar from the View menu and put it back.
    (81553)

  • NOT ABLE TO DISPLAY THE NEW ADDED FIELD

    Hi Experts,
       I was working on Solution Manager. Iam Creating table maintianance generator for particular table. Its working fine when i done the job for the first time. As i forgotten to add one more field in that table i had done it later. now that added field is not displaying in the table maintainance generator (tcode: sm30). what is the procedure that i have to follow in order to display that added field.
    Regards,
    Maha.

    Hi Mahalalakshmi,
      your new table defnition is not compatable with the internal program already generated  for your table.
    for this do the following
    SE11-->Utilities->Database Utilities----->Click on Activate and Adjust Database.
    Then the Table defnition is validated. The Internal Program for your table adjusted
    and stored in the R/3 Repository (that is in the DATABASE Level).
    If this valueble for you, validate with some points
    Regards,
    Ramu

  • CL20N can not display added fields in the search result ?

    Hi,
    In needs of displaying storage location for each material in the transaction CL30N , we use the user exit CLCLRS01 and CLCLRS02 to add new field. But after that the added field is not displayed
    Have you ever tried this ?
    thanks

    Hi,
    Please find below the code for adding the fields. This code is present in the FM 'EXIT_SAPLCLRS_001'.
    If the field added is from database, then the field needs to be added in table 'LT_ONLY_THIS_FIELDS'(see below FM). Else, the fields needs to be added in the table 'ET_FIELDS' as shown below.
          CALL FUNCTION 'CLRS_GET_FIELDS_OF_STRUCTURE'
               EXPORTING
                    I_STRUCTURE         = 'MARC'
                    I_LANGUAGE          = I_LANGUAGE
               TABLES
                    IT_ONLY_THIS_FIELDS = LT_ONLY_THIS_FIELDS
            IT_EXCLUDE_FIELDS   =
                    ET_FIELDS           = ET_FIELDS
                    ET_FIELDS_TEXT      = ET_FIELDS_TEXT.
          CALL FUNCTION 'CLRS_GET_FIELDS_OF_STRUCTURE'
               EXPORTING
                    I_STRUCTURE         = 'DRAW'
                    I_LANGUAGE          = I_LANGUAGE
                    I_FIRST_CALL        = 'X'
               TABLES
                    IT_ONLY_THIS_FIELDS = LT_ONLY_THIS_FIELDS
            IT_EXCLUDE_FIELDS   =
                    ET_FIELDS           = ET_FIELDS
                    ET_FIELDS_TEXT      = ET_FIELDS_TEXT.
      ENDCASE.
    Here a field which are not from a database table is added
      ET_FIELDS-FIELDNAME = 'JUST_TEST'.
      ET_FIELDS-GROUPKEY  = 'C'.
      ET_FIELDS-DATATYPE  = 'NUM'.
      ET_FIELDS-LENGTH    = 2.
      ET_FIELDS-DECIMALS  = 0.
      APPEND ET_FIELDS.
    Regards,
    Rajesh

  • Update rules deactivated only has to open the system..

    Hello Experts,
    -- ODS and update rules are already in Production.
    -- I have made changes to the ODS by adding new Infobjects.
    -- activated the update rules.
    -- When the ODS and update rules are transported. Update rules get deactivated
    -- And a message 'Data target changed, suggestion for the update rules generated'
    Detailed message:
    Data target was changed. Suggestion for update rules generated
    Message no. RSAU287
    CAUSE&
    The data target has been changed (for example, InfoObjects have been added or deleted).
    System response
    The update rules have been set to inactive.
    Procedure
    Check the proposal for the update rules: Newly added key figures or characteristics are updated directly using the source-InfoObject from the InfoSource if the InfoSource contains these InfoObjects. Otherwise, the calculation type is set to 'Routine'. Newly added key figures, data fields, or attributes are set to 'No Update'.
    The rules for key figures and for characteristics must be checked and adjusted appropriately.
    Detailed message end.........
    -- Do not get activated by retransporting. or doing a fresh request of the update rules.
    -- Currently the only I can see by opening the system and activating them. Wondering if we have any other alternatives to activate these update rules for the ODS
    Any solutions:
    -- Wondering if I am missing some procedure to transport.
    -- Please feel free to post your views / suggestion in case you had a similar situation before.
    Many thanks in advance,
    BWer
    Message was edited by: BWer

    BWer,
    If you collect your transport in a big lump of a single transport, the tranport connection may not organize it in the order of the proper dependency, so it is best to split it to separate transports as stated above to ensure the proper dependencies. 
    To fix the issue right now, you can either
    1) take another transport through of only the updated / activated update rule or
    2) if you know what you are doing and if the client is okay with it, open the system, activate the update rule and when prompted for a transport, create a new one and go to SE10 to clean up that repair transport by deleting the subtasks. 
    I would probably recommend option 1 for you.  I only do option 2 if it is an emergency and there is no transport window for another week or longer or it just simply cannot wait.

Maybe you are looking for