Team view data not getting refers for some user

Hi,
We are facing an issue in team view app for mss,  manager's are seeing details of employees not belonging to their Org Unit/ data not getting refreshed. This seems to be the Cache related issue where the data of perviously logged in user is displayed to the current user till browser cache are cleared manually.
User don't have permission to clear browser cache. Is there any work around.The issue is coming only for some users.I have enable the 'ABAP HTTP Security session Enabled' property of the system used.
Regards
Pallavi

Hi Karthik,
in the first view I execute the BAPI and in the second view I show the results. In the second view I also submit the modified data via another BAPI.
As I execute and display result of same BAPI in two different views I have bound the same model node to both of these views. Let me give you some sample code for understanding what have I done.
In the first BAPI's search action handler I have written:
          Zsr_Packnr_Validate_Components_Input input = new Zsr_Packnr_Validate_Components_Input();
          wdContext.nodeZsr_Packnr_Validate_Components_Input().bind(input);
          input.addT_Version(new Zsr_Packnr_Field_Values());
          input.addT_Zsr_Genbr(new Zsr_Packnr_Field_Values());
input.setZsr_Gmc(globalMaterialCode);
          input.setZsr_Mrc(mrc);
          input.setZsr_Ctry(country);
          input.setZsr_Dc(distributionChannel);
          input.setZsr_Div(commercialSegment);
wdContext.nodeOutput_Validate().invalidate(); //as u suggested
          wdContext.currentZsr_Packnr_Validate_Components_InputElement().modelObject().execute();
          wdContext.nodeOutput_Validate().invalidate();
In the second BAPI I just display the output node from the same Model context node (its mapped to the second view too).
But as I said whenever I update some values in the result set and submit it the data gets submitted properly. But when I press the search button again, the previous set of data gets populated, not the just updated data.
If anybody has some idea on why the second time search BAPI execution still shows the previous set of result it will be a great help to me.
Thanks for all your help.
Shubhadip

Similar Messages

  • Downloading artwork - "could not get artwork for some albums"

    This might have been addressed before, but I browsed the forum and couldn't find a thread. Sorry if it's been gone over several times.
    I live in Turkey and I've added albums to my iTunes. I checked the box in the Get Info next to Artwork and I selected Get Album Artwork from the Advanced tab. It scans through all the albums and then says "could not get artwork for some albums." "Some" albums means all of them actually. And the error tab details say "artwork not available." I also tried getting artwork by right clicking on a single album but I get the same error. Before it was a 609 error. Now it just says not available.
    I logged out of the store, quit iTunes, loaded it again, re-signed in to the store and tried to get artwork that way, but got the same result. No artwork. The albums are things like Let It Be, Allman Brothers, Ella Fitzgerald... Albums that should certainly have artwork available.
    I'm using Windows Vista.
    Has anyone had and conquered this problem? Any ideas on what I should do? I have 300+ albums, so getting the cover art from wikipedia would be a bit tedious. I'd appreciate any help anyone can give!

    Hello, Welcome to Apple Discussions.
    Are your songs from Audio CDs or iTunes Store? If not you may need to manually find the album artwork for them as these songs may not be listed in the iTunes Store database for your region.
    iTunes: Album art may not download properly
    http://support.apple.com/kb/TS1815
    iTunes will only download album artwork for songs that it can find in the iTunes Store. iTunes will check each song in your iTunes library and attempt to match it up with a song in the iTunes Store. If the data matches, iTunes will download the album artwork from the iTunes Store and add it to the song in your iTunes library. If iTunes does not find a particular song's artwork in the iTunes Store, you will not see an alert message. iTunes simply does not download artwork for that song.

  • Could not get artwork for some albums.  I am not getting any artwork for Cd's imported into Itunes.  almost 400 albums and not one album artwork. what to do?

    cannot get artwork for some albums is the feedback I am trying to get when trying to get album artwork for Cd's imported into my itunes.  almost 400 Cd's  computer is seen processing the infor however not one album artworkcan be seen what to do?  

    Hello, Welcome to Apple Discussions.
    Are your songs from Audio CDs or iTunes Store? If not you may need to manually find the album artwork for them as these songs may not be listed in the iTunes Store database for your region.
    iTunes: Album art may not download properly
    http://support.apple.com/kb/TS1815
    iTunes will only download album artwork for songs that it can find in the iTunes Store. iTunes will check each song in your iTunes library and attempt to match it up with a song in the iTunes Store. If the data matches, iTunes will download the album artwork from the iTunes Store and add it to the song in your iTunes library. If iTunes does not find a particular song's artwork in the iTunes Store, you will not see an alert message. iTunes simply does not download artwork for that song.

  • Cell data not getting refreshed in which user enters data OO ALV(editable)

    Hi Friends,
    I am using OO ALV for editable grid display.
    I am unable to change grid data in the cell in which user enters something, using OO ALV. Did through debugging of my own program and found that some problem with system program. Then I did all system debugging. Could not find out why is the grid not getting refreshed with the new data in the cell in which user had entered some value. Rest of the cell's data are getting refreshed with the values which i am updating in the final internal table. I can see that the data in the final internal table is changed for the cell in which user enters data. But even after the call of
          CALL METHOD obj_alvgrid1->refresh_table_display
    does not refreshes the data in the cell in which user had entered data. Rest of the cells data are getting refreshed.
    Piece of code:
      SET HANDLER obj_event_receiver->handle_data_changed
                                         FOR obj_alvgrid1.
        METHODS: handle_data_changed
                       FOR EVENT data_changed OF cl_gui_alv_grid
                           IMPORTING er_data_changed
                                     e_onf4
                                     e_onf4_before
                                     e_onf4_after.
    METHOD handle_data_changed.
      DATA : v_valid    TYPE char1,
             v_refresh  TYPE char1.
    *--check mt_good_cells semantically
      CALL METHOD perform_semantic_checks( er_data_changed ).
    *--If PBO is again visited, just refresh the ALV grid.
      CALL METHOD obj_alvgrid1->refresh_table_display
        EXCEPTIONS
          finished = 1
          OTHERS   = 2.
      IF sy-subrc <> 0.
        EXIT.
      ENDIF.
    ENDMETHOD.
    METHOD perform_semantic_checks.
        LOOP AT er_data_changed->mt_good_cells INTO w_good.
          v_index = sy-tabix.
          CASE w_good-fieldname.
            WHEN 'ZASCAS'.
    *Now here based on some conditions I am changing my final internal table i_zamtsmatnp
                              MODIFY i_zamtsmatnp FROM w_zamtsmatnp INDEX
                                               w_good-row_id TRANSPORTING
                                                 zascas modif.
    User enters data in zascas field. Based on the data entered, I am changing other fields which is getting refreshed. I am also changing zascas in the program even after user had already entered the value which was bit wrong and i am correcting it in the program on the even "data_changed" even.
    Please help me friends as i m strugling past hours wondering why the data is not getting refreshed for the cell in which user enter data.
    Regards,
    Surya

    Hi Surya,
       The approach you are following is correct. You need to use the comibnation of all these things:
    Event - DATA_CHANGED
    Methods - CHECK_CHANGED_DATA
                 -  GET_CHANGED_DATA.
    However, here are few standard programs which are having similar functionality.
    BCALV_EDIT_03
    BCALV_EDIT_07
    Check out these once.
    Note: If anything is helpful, dont forget to reward points
    Thanks,
    Adithya K
    SAP Practise
    [email protected]

  • Sales data not getting populated for Material master by LSMW.

    Hi,
      When I am trying to create material manual for sales view material is getting created and the table MVKE(Sales Data for Material) is getting populated with the sales data. But when i Am trying with LSMW METHOD
    Object          :     0020  
    Method          :     0000               
    Program Name    :     RMDATIND           
    Program Type    :     D(Direct Input)
        materials are geeting created but the sales data is not getting populated in the table MVKE(Sales Data for Material) and LSMW program also not showing any error.
    Can any one tell me what is teh problem here.
    Thanks,
    Naren.

    Hi,
    along with VKORG, VTWEG in <b>BMM00</b> are you mapping the below one's also.
    BMM00-XEIV1 = 'X'. "sales 1 view
    BMM00-XEIV2 = 'X'. "sales 2 view
    this will enable the sales(1/2) view.
    Check it once..
    Regards
    vijay

  • Addition of a Field in EKKO/Data not getting populated for that field

    Hi All,
    I have added a Z Field in EKKO Table through the Append Structure "CI_EKPODB".
    There are around 2000 records in EKKO and for all the records that Z field is Blank.
    But, when I write a Select Query in Program to Fetch the Records where that Z Field is BLANK, I get only 50 Records.
    The same happens when I Execute SE16 for EKKO by giving condition Z Field = INITIAL. I get only 50 records in the output.
    Please help me understand why I dont get all the Records where that Z Field is INITIAL?
    Is any customization required or is this a Technical Issue?
    Please help.
    Thanks in Advance.

    hi rohan,
    if you are adding a field in a table  by append structure then make that field as ZZ instead of Z to differentiate it from normal fields.
    now when you have created the field in a append structure then if have not checked the initial flag.thats why u are getting this data inconsistency.
    this is because earlier 2000 entries are prestent in the table , now when you add another field in the table then that field will not have value for those 2000 records.
    now when you create the fiels select the init flag field,if you select this then new flag field will  NOT NULL,so initial values will be filled for that field for existing 2000 records.
    Note : NULL and INITIAL are different things, NULL means not defined and initial means which is having its initial value.
    check that init flag and u will get those 2000 records, you are getting inconsistent data now becuse value for that field is null ie not defined.
    hopr this will solve ur post and u wil get the concept of append structure.
    Thanks and regards,
    Tanmaya

  • Do not get printouts for some custoemrs through background job

    Hi ,
    I am getting the printouts through back ground jobs, suppose what ever the billing documents by end of the day and there is back ground job which runs and give the print outs for that i have maintained in VV31 medium 1 printout and dispatch time 1 periodical scheduled back ground job. Now i want to for some customers i don't want to get the printouts through back ground job.
    Can you please suggest me how to control do not print for some customers.
    Regards
    Venkat

    Hi Sri nath,
    I have one access sequence for the combination sales org/dist channel/billing type and have maintained in vv32  sales org ,dist,billing type for that access sequence and medium is print out and dispatch time is 1 schedule back ground job
    and now i created one more table which is combination of  sales org/billing type/customer and medium is 1 and dispatch time 4 maintained in the vv32.
    what ever the customer i maintained in vv32 for the new combination. after i created sales order and now creating the billing document even though output is triggering first combination which is background job, but i want  to trigger 4 when saved application.
    can you please suggest how to resolve this issue.
    Regards
    Venkat

  • Contract data not getting copied for service ticket follow up complaint.

    Hi Experts,
    We are creating a complaint as a follow-up document to service ticket . But the contract data is not getting copied.
    We contacted SAP and they told us that its a standard behavior .The reply is basically an SAP note
    841830 - Contract data not copied to follow-up transaction
    My question is is there a way to change this behavior using CRM_COPY_BADI ?
    I tried to look for the method which I can implement to get the contract data in items, But I was not able get it .
    Please suggest the way to get it working
    Thanks in advance .
    Naval

    Please not that the contract determination works fine when creating a new complaint ... but when the I am trying to create a complaint from service ticket the item level contract determination is not working fine ...
    We have configured that the contract should be determined at the item level only option `F`.
    I checked in one of the sap document that this cant be achieved by standard .
    http://help.sap.com/saphelp_crm70/helpdata/en/46/5cd7335bbd516fe10000000a114a6b/frameset.htmhttp://help.sap.com/saphelp_crm70/helpdata/en/46/5cd7335bbd516fe10000000a114a6b/frameset.htm
    Is there a way we can put this code in the BADI eg; CRM_SERVICE_CONTRACT ?? Please note that there is already an implementation of CRM_SERVICE_CONTRACT which is working fine for new service document creation .

  • Setup tables data not getting deleted for application 11

    Dear Team,
    Trying to delete data from setup tables after completing few fields enhancements
    System triggering following error message and the data is not getting deleted
    Step 001 started (program RMCSBWSETUPDELETE, variant &0000000000010, user ID 00938H744
    Database problems with table MC11VA0ITMSETUP
    Job cancelled after system exception ERROR_MESSAGE
    Please guide
    Thanks,
    Sarasu

    Try to adjust the database tables using SE14 transaction.
    SE!4 --> Enter table name MC11VA0ITMSETUP -->Select radio button "tables" --> click on Edit -->Select processing type "Background" --> Click on "Activate and Adjust database".
    Here before performing the Activate and Adjust database function -- first try to check the data base object (click on check button and select database object --ok) if every thing is ok then proceed with the above steps.
    Next try to delete the setup tables and check.. hope this should work.
    Try to check the logs in SM21 and also check if the data source is active or not before deleting the setup tables.
    Regards
    KP
    Edited by: Konduru Prashanth. on Mar 2, 2012 6:08 PM

  • RH10 - Search not producing results for some users

    I am using RH10 and the help system is stored on a sharepoint server (it was output as WebHelp)
    All users are able to access the system once we give them access, but when they go to search for topics, some get results and some don't. I believe it's related to java, but I can't find any documentation on what version of java is required for end users?
    I have already uninstalled and reinstalled RH (as read in some of the forums) with no changes for the end users.
    Are their other outputs that don't require java for searching?
    Anything else I can test?
    Other information that would be helpful to share?
    Thanks!
    Laura
    (Moved this from the wrong forum -- sorry :-) )

    We installed the patch and did a fresh upload and still have the same problems.
    I was finally able to get the error information, but it doesn't seem to help me with troubleshooting. Any other suggestions are certainly welcome.
    'Node' is undefined
    whfhost.js
    Line:3243
    (it says this a few times and then it adds char:2)
    That line of code is
    function _getWordMatchType( a_Word, a_Tile, a_nPosition, a_nOffset )
    The "waiting on" referred to in the next comment is the whfbody.thm file
    The error was moving so quickly in the bottom left corner that I wasn't able to capture it in full, but it was "waiting on wh... <something>" -- I couldn't ever see what the entire name of the file it was waiting on was. I have limited time with the end users and have not been able to recreate in my environment unfortunately (even though I am using a similar set up as some).
    If I search either the whfbody or whfhost in the message board archives, I come up with several instances where people have had similar issues, but there do not appear to be any fixes.
    I am able to search whether I have enabled mode checked or unchecked, so I am not sure that works for us either.
    Any other suggestions?
    Thanks,
    Laura

  • Object form is not getting displayed for few users

    Guys
    I have successfully implemented approval and provisining flows for a new resource in OIM 9.1.X. This resource has an object and a process form.
    It is working fine in production for few users. But for few users, the object form is not getting displayed to give the input while requesting this resource.
    Please let me know what might be the issue.

    Hi,
    Could you please check whether you have added ALL_USERS group as a resource administrator group in resource object definition?
    Add AL_USERS group as a resource administrators with the read access.
    We had similar issue and managed to resolved.
    Thanks,
    Pallavi Chaudhari

  • In VA01  In Schedule line Delivery date not getting populated

    Hello,
    We have developed enhancement for VA01 tcode.
    Depending upon the quatity entered for a material it should show one more item as free good.
    If quatity is 10 for a line item 10 then it should show item 20 by default same mateerial and quatilty as 1.We have done this it is working fine.
    But if we select free good item in our case it is 20 and click on schedule line item buttom all quaitity fields getting populated.but delivery date not getting populated for only free good.for line item 10 it showing properly.
    Can any one please suggest what i need to do in order to display delivery date for free good.
    Thanks in advance.
    Regards.

    Thanks for your response.
    Actually i have seen technical settings for that field.it is rv45a-etdat.this field has value till MV45AFZZ.seen in debugger.
    Looks like it is clearing some where after the above include.Any suggisitions welcome.Thanks again.

  • SAP R/3 -- Not getting prompted for password on Heterogeneous Sys. Copy

    Thank you in advance.  I am part of a project team that is testing the potential of moving from UNIX (AIX 5.3) to Linux (RHEL 4 or 5).  We are running SAP R/3 on IBM P570 with DB2 v9.1 and when we run this program:  Installation master sapinst
    We are not getting prompted for the user password but when we run the same cd on a different system we get prompted for the user's password.  Can anyone point me in the right direction on what is wrong?  If you need more info let me know.
    Thanks,
    Erik

    @ Sven & Markus
    Well I have checked all the logs and there are no errors.  What I have found out is that it successfully runs but there is 0 ouput, in essence it isn't exporting any data.
    Here it shows that it completed successfully but in the export directory there isn't data when there should be.
    INFO       2009-10-08 17:34:19.270 [sixxcstepexecute.cpp:544]
    The installation of component Execution of Service SAP ERP 6.0 Support Release 3 > Software Life-Cycle Options > System Copy
    > IBM DB2 for Linux, UNIX, and Windows > Source System Export > Central System > Based on AS ABAP > Database Instance Export has been completed successfully  has been completed successfully.
    See here:
    /dev/exportlv    119.25    119.23    1%       16     1% /export
    Thanks,
    Erik

  • MIR4 Invoice - Restrict POST Authorization for Some Users

    Hi Experts,
                      We are doing Invoice Release Workflow (MIR7) With 3 level Approval. When the document goes for approval in EDIT mode (MIR4) to multiple Levels anyone can change the document but the post authorization should be given only to the manager.
    We created a Role with authorization object M_RECH_WRK and enabled only (3 Display and 77 Pre-Enter) still post button could not be disabled for some users. Kindly suggest a way to disable POST Option in MIR4 only for certain Users.
    Regards,
    Dheepak

    Hi Dheepak,
    Refer to these thread:
    [Disable post option in MIR7|Disable post option in MIR7;
    [ POSTING ISSUE|MIR7 posting issue;
    Hope you find these useful.
    Reetesh

  • I'm getting charged for some thing I did not approve and I can not get my updates that I need

    I can not get any up my updates because I am getting charged for some thing I do not know about

    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

Maybe you are looking for