Portal user issue - all users are viewing data of one particluar user...

Hi all,
we are implementing ess 1.0 on EP7.0 and using ecc6.0
Now, while creating Jco connection we had provided user id/pwd of a user in portal and assigned that user to an employee in backend r3 (say abc).(we followed the famous pdf available on sdn: Configuring the Business Package for Employee Self-Service (ESS) u2013 mySAP ERP 2004 by an HCL employee)
Now the Problem is:
whenever an xyz user logs in to portal with ess role, and views any data...say perosnal information, telephone no., address, etc than that xyz user sees all this data of the employee(abc) to whom we had mapped our user which was used while creating Jco connections.
infact if xyz tries to edit any data than it gets reflected to abc.
to genralise: any portal user with ess role logs in to portal is viewing/editing data of abc employee...which normally should not be the case.
plz try and help me resolve this issue...
Regards,
JJ

Hi!
You have to configre your JCo Destionations to use Portal SSO.
Additionally in your HR Backend you have to maintain (I think it is) Info type 0105 (sub-type 001) and assign every personal number the appropriate UserID so that every user sees his own data.
A technical user is only needed for the JCo destinations dealing with metadata. The "real" JCo destinations performing RFC calls to the HR Backend can be configured to use Portal SSO.
For more details refer to http://help.sap.com/saphelp_nw70/helpdata/EN/44/45a04028f40160e10000000a1550b0/content.htm
Hope this helps!
Regards,
Volker

Similar Messages

  • Add new tab under 'Sales Area view/Data' of Customer Master TransactionXD01

    Hi,
    I want to add a new tab under 'Sales Area view/Data' of Customer Master Transaction XD01.
    Is there any screen exit for XD01/XD02/XD03?
    Or will I have to go and change SAP screens?
    Thanks in advance.
    Srinivas P
    9663397476

    Hi,
    I want to add a new tab under 'Sales Area view/Data' of Customer Master Transaction XD01.
    Is there any screen exit for XD01/XD02/XD03?
    Or will I have to go and change SAP screens?
    Thanks in advance.
    Srinivas P
    9663397476

  • Does family sharing mean all photos are backed up to one icloud account?

    I am unclear what Family Sharing means.
    Does family sharing mean all photos are backed up to one icloud account?  Or simply that we can all see each other's streams.  As it stands now, I understand we can share streams, without having family sharing enabled.  Basically, I want to know if we can be logged into separate icloud accounts yet share photo and document storage as we currently can with dropbox.
    I want to share photo storage and file backup with my wife.  Currently, we both use her apple id to make store purchases and have our own icloud accounts.  This solves some problems, but I still have old itunes purchases(grant you fairly old at this point) that I cannot access when I am logged into her id. 
    I realize we could both use our own icloud account and upgrade storage individually, but this fails the economy test.  We have roughly 60 gb of family photo storage, so we would both need 200 gb plans.
    we both have ipads and iphones.  i simply want us each to be able to take photos and have them automatically saved to one storage solution.
    Thanks in advance.
    Shalom

    The only way you can see the contents of an iCloud backup is to restore it to an iOS device. You could restore it to your new phone -- but that would mean you would first have to erase your new phone so I wouldn't recommend it unless you have nothing of value on the new phone. In theory you could backup the new phone, erase it, restore from the old and see what is there and copy the photos to a computer and then erase it again and restore it back from the new phone backup. I would emphasize that is at your own risk as restoring from backups do not always go as advertised. More info: iCloud: Restore your iOS device from iCloud

  • NWDI migration issue - all DCs are not migrated

    I am trying to migrate a track from one NWDI (7.0)to another NWDI (7.3)for NW7.0 based code.
    in the old NWDI , the track consists of 30 DCs and there are no broken DCs , I have exported the SCA file from Assembly and basis copied it to new NWDI's CMS inbox.
    We have imported the SCA file and created the track with proper dependencies in the new NWDI.
    But the track in new NWDI shows only 20DCs and 10of the DCs are missing.
    When I checked in DTR, I see the toplevelDcs are missing in the inactive section of the workspace.
    what will be the issue and how can I resolve such issue?

    Please refer note  1259604 - CMS check-in tab: Not all files from inbox are displayed
    https://service.sap.com/sap/support/notes/1259604

  • View data in one row

    Hi, guys I have a table filled in this way and I can't modify the data inside:
    F1 F2 F3 F4
    1 A null null
    1 null B null
    1 null null C
    2 D null null
    2 null E null
    2 null null F
    3 G null null
    3 null H null
    3 null null I
    Is there a way to see the data in this other way (without any NULL)?:
    F1F2F3F4
    1 A B C     
    2 D E F
    3 G H I
    Thank you
    Alex
    Message was edited by:
    user566533
    Message was edited by:
    user566533

    > About the Model clause, I am sure Rob can do better and I am waiting for his solution ;-)
    This looks way too complex for the type of question for me. And as said you are generating more rows than necessary that have to be filtered by a subquery in the final step.
    Although I'm convinced that the original poster does not have rows with data in more than one of the columns, I could not resist the challenge and came up with this:
    SQL> create table mytable
      2  as
      3  select 1 f1, 'A' f2, null f3, null f4 from dual union all
      4  select 1, 'B', null, null from dual union all
      5  select 1, null, 'C', null from dual union all
      6  select 1, null, 'D', null from dual union all
      7  select 1, null, 'E', null from dual union all
      8  select 1, null, null, 'F' from dual union all
      9  select 2, 'G', null, null from dual union all
    10  select 2, 'I', null, null from dual union all
    11  select 2, 'H', null, null from dual union all
    12  select 2, null, 'T', null from dual union all
    13  select 2, null, 'K', null from dual union all
    14  select 2, 'U', null, 'J' from dual
    15  /
    Tabel is aangemaakt.
    SQL> select f1
      2       , max(decode(l,2,f)) f2
      3       , max(decode(l,3,f)) f3
      4       , max(decode(l,4,f)) f4
      5    from ( select t.*
      6                , row_number() over (partition by f1, l order by f) rn
      7             from ( select f1
      8                         , l
      9                         , decode(l,2,f2,3,f3,4,f4) f
    10                      from mytable
    11                         , (select 2 l from dual union all select 3 from dual union all select 4 from dual)
    12                  ) t
    13            where f is not null
    14         )
    15   group by f1
    16       , rn
    17   order by f1
    18       , rn
    19  /
       F1 F2    F3    F4
        1 A     C     F
        1 B     D
        1       E
        2 G     K     J
        2 H     T
        2 I
        2 U
    7 rijen zijn geselecteerd.which I think looks easier.
    > Is there a way to delete rows in model other than using subquery?
    Not really. You can leverage the "RETURN UPDATED ROWS" clause to not return the original rows, in other words: delete the original rows from the result set. But generating extra cells that are to be deleted later on, generally does not make much sense and (therefore?) there is no way to delete rows in the model clause. So the subquery is the way to do it if you really want to.
    Note that I use the subquery technique too for string aggregation using the model clause, because I tested the subquery filter is more performant than the RETURN UPDATED ROWS clause.
    Regards,
    Rob.

  • OAF Export button fetching data in one column - view object using union all

    Dear All,
    Export button showing data in one column from  view object,
    View object is based on mulitple queries with union all ,
    Please let me know the solution for this issue.
    Thanks
    Maheswara Raju

    Maheswara Raju,
    As per my understanding you are not able to export all the View Attribute using export Button. Only the attribute which is used with the item/region will get exported.
    There are few work around in case if you want to export the column without showing on OAF Page. Let me know.
    Cheers
    Gyan

  • Error while loading data from one ODS to anther ODS

    Hi all,
    while loading the data from one ODS to another ODS, we are getting error message - Error: No match found in target. No Space on ODS.
    I have done a runstat on these tables of the ODS.. but the issue repeated.
    Can anyone tell how do we solve this issue.

    Check if you get any other Dump message in ST22 to see if it is due to some space availability in the DSO or underlying tables.
    Or Post in detail if any other errore message is available.

  • Many Portal users mapping one R/3 user and query their own data ?

    Hi everyone :
      I want to discuss a issue as follow with all :
      Precondition : The SSO had done between Portal and R/3.
      Issue : Many Portal user(vendor) mapping one R/3 user(pulic vendor user),when they logon Portal, they can query the report, but the data was for the vendor logon now !
      Any discuss is welcome!
      Best Regards,
      Jianguo Chen

    Hi everyone :
      I want to discuss a issue as follow with all :
      Precondition : The SSO had done between Portal and R/3.
      Issue : Many Portal user(vendor) mapping one R/3 user(pulic vendor user),when they logon Portal, they can query the report, but the data was for the vendor logon now !
      Any discuss is welcome!
      Best Regards,
      Jianguo Chen

  • How to fetch Portal Users data ? (Including Mapping details)

    Hi all,
    I want to retrieve Portal users data with the detail of its mapping (i.e. if the user is mapped or not with backend user? and if yes, to which backend user?).
    Thanks,
    Tejas

    Thanks for the reply Nadav.
    But what I want is the complete list of all the users, the reason being there are more than 2000 users on Portal and going for this one by one mapping checking is not really feasible time and effort wise.
    So is there any way how can I get the users data from UME or LDAP? as I have both kinds of users.
    Please guide.
    Thanks and Regards.
    Tejas

  • Moving Portal Favorites for All Users

    Hi,
    I need to migrate all portal favorites for all users from one environment to another (Test - Prod)
    How can I do this with ICE when all I can see in the userhome directory a folder with my username and my favorites? Where are all the other users favorites stored?
    Regards,
    Roaa

    Hi Rooa,
              All Users Portal Favourites are stored under Content Administration -> KM Content -> Root -> Userhome.
    This folder has all the data related / specific to a user. You can trasport this through to ICE to your other environment (QA or prod).
    Check if this helps.

  • I just got a new computer and didn't do Migration Assistant until after I had already created an account. Now I have two users on my computer and want to merge all of the data into one single user. Thanks!

    I am extremely frustrated by this! I have two users now...one with a little bit of new data and the other with all of my important data. I want to be one person!!

    Please do a search, Google or on this forum. This question is asked weekly if not daily and you willl find many threads with all the info needed to fix this problem.
    One place to start is to the right hand side of this page, "More Like This" area >>>>>>>>>>>.

  • Are licenses needed for Portal Users?

    Hi, do you need seperate user licenses for users created on the Portals Database (J2EE only) using the MSS and ESS components? We have an HR ECC5.0 system with 700 users, but only about 100 Managers will login to the Portal to do reports via the MSS component. I thought of creating these 100 managers on the Portal (Database Only), and then using Single Sign-On with SAP Logon Tickets connect them to the HR ABAP system where they also have the same user accounts, thus enabling them to do their work seemlessly. I don't want to use the ABAP User Persistence model, as I don't want the Portal UME to pull in all 700 users from the HR ABAP system when we only maintain 100 managers on the Portal for the MSS component. Will user licensing be an issues?

    There is no need to license your Portal users.  The ABAP license is all that is required.  I would check with SAP just to make sure that your license agreement doesn't contradict this but I highly doubt that it will.

  • New Portal User options are disabled when trying to create a new User

    Hi All,
    I am trying to create a new portal user profile using the administrator login. While doing that, I am getting all the options ( used to create the new user ) as disabled. Can anybody let me know the reason & solution of such a problem.
    or
    Anyone can provide me the document on how to create the new profile on portal. Thanks.
    Best Regards,
    Chander Kararia
    Edited by: Chander Kararia on Jan 15, 2009 7:26 AM

    Hi Chander,
    I just want to know if you are able to modify the attributes of an existing user. If not then you have been assigned the User Admin role (read only). Please check that. If yes then revert.
    Regards.
    Rajat

  • Report on portal User ID and Assign Roles for all portal users

    Hi!
    I would like to know , is there way that we can get a report which shows all the portal user ids with there assign portal roles. If we can't get this from portal. Can we get it from Oracle database ?
    What are the oracle tables and fields which store this information?
    If nay one have a custom develop iview for this please let me know
    Thanks
    Ramesh

    Hi Ramesh,
    as Pascal stated (and as I did above), if developing within the portal is not really new for you, playing around with the UME API is really more or less trivial.
    Check Portal User and Role info as well as User to Role listing for similar requests and code hints / further links.
    Hope it helps
    Detlev

  • E-mail to all of our portal-users

    Hello,
    I'd like to send an e-mail to all of our portal-users to keep them informed
    about our new products.
    I currently do so by using the news-iview "send-to" feature, but every time
    I try to send an email, I get the following error message: resource can't be
    used.
    Should I make any changes in my settings?
    Are there any other possibilities to send an e-mail through the portal to
    all users at once?
    I'd really appreciate your help.
    Regards,
    Mike.

    Hello Mike, Hello Francesco,
    have you set a SMTP Server at: System Administration -> System Configuration -> UM Configuration -> Notification E-Mails ?
    Regards
    Gregor

Maybe you are looking for

  • Imported Powerpoint not playing all animation

    I've been testing a couple of Power Point files imported into Cp6. There is an  animated chart that just will not play the way it does in PPT.  Also cannot play back an embedded YouTube video, and in some cases the background audio doesn't play.  Asi

  • Scale values in Sales Rebate Agreements

    Hi All We are trying to set up rebate agreement reporting for our client. They use both Purchase related rebates (MEB1) and Sales rebates(VBO1). In the purchase related rebate screen(MEB3) -> Business volume data allows a drill down into scale income

  • KSV5 costs distribution

    Hi please, I have a problem with distribution of cost between cost centers. My situation is: Phone call cost distribution at the end of month with KSV5. Statistical key - with atribute "total values" - it changes every period (like phone calls minute

  • Parts of an audio slider

    this is probably easier than i'm making it, but i'm not sure what my code needs to be for the previous button. i'm thinking i'll be able to use the next button script and just edit it a little. if someone could please look at this script and let me k

  • License sticker is for Vista Business, but Vista Basic is pre-installed

    I just bought a Satellite Pro L300 that was supposed to have Vista Business installed. When I turned on the laptop and went through the initial operating system installation and configuration, Vista Basic installed, without ever asking me for a licen