Hiding contents in one Role based on another Role.

Hi,
Please help me in the following....
Say there are 2 roles. Role A and Role B.
       Role A
           Content 1
                   sub contents...
           Content 2
                   sub Contents..
if the User has Role A alone, then Content 1 alone should be displayed and content 2 should be invisible. If the user has Both Role A and Role B(only if role B is also present), then Content 2 should also be displayed. i.e Both Content 1 and Content 2. The contents 1 and 2 can be another role or a workset, but we want to control the visibility of content 2 based on presence of Role B for the user.
I wanted this functionality by directly configuring in EP rather than Using UME API's and coding it. Please guide me on ways to configure the same in EP as to get this functionality.

hi Mohamed,
Go through this links ,
<a href="http://help.sap.com/saphelp_nw70/helpdata/en/95/92b2f7d2f14a6da7a8b5d66808d1f6/content.htm">Portal Display Rules</a>
<a href="http://help.sap.com/saphelp_nw70/helpdata/en/4b/29cf122f414721964269e1b675d62c/content.htm">Rulecollection</a>
Regards,
Malini.V

Similar Messages

  • Filtering the contents of one alv based on another ALV's filter

    Hi,
    I have used a tab element within which i have two tabs.each tab has an alv table.
    Is it possible to restrict the entries of one alv table based on enrties from another alv table(both the alv tables will have some common fields).for example I have filtered entries in alv1 based on field1 .when i go to alv2 entries should be restricted on the field1 (common field)
    Thanks
    Bala Duvvuri
    this is the answer
    refer SALV_WD_FILTER_UI
    Edited by: Bala Duvvuri on Oct 4, 2011 1:20 AM

    hi Mohamed,
    Go through this links ,
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/95/92b2f7d2f14a6da7a8b5d66808d1f6/content.htm">Portal Display Rules</a>
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/4b/29cf122f414721964269e1b675d62c/content.htm">Rulecollection</a>
    Regards,
    Malini.V

  • How do i copy content from one hard rive to another through my macbook air? the copy and paste option doesn't work

    How do i copy content from one hard rive to another through my macbook air? the copy and paste option doesn't work

    It's because of the extension of the hard drive is a Windows extension ( most likely MSDOS or Ex-FAT), meaning you can only read but not write. If there are no important files (or you can copy the whole thing to your computer/mac) you can just reformat the hard drive and change the extension to NTFS (readable and writable on both windows and mac) or Mac OS Extended (readable and writable on Mac, readable on windows).
    Go to DISK UTILITY
    Choose the Hard Disk you intended
    ERASE
    You can choose either
              (I personally prefer this one, you know just in case)

  • How to update one table based on another table ??

    Hello Friends:
    I am trying to run the following query in oracle but it won't run.
    UPDATE BOYS
    SET
    BOYS.AGE = GIRLS.AGE
    FROM GIRLS
    WHERE
    BOYS.FIRSTNAME = GIRLS.FIRSTNAME AND
    BOYS.LASTNAME = GIRLS.LASTNAME;
    This query runs fine in sql server but in oracle its saying can't find "SET". PLease tell me what is the correct syntax in oracle to update one table based on another table.
    thanks

    See if this helps.
    If you wrote an SQL statement:
    update boys set age = 10;
    Every row in the boys table will get updated with an age of 10. But if you wrote:
    update boys set age = 10
    where firstname = 'Joe';
    Then only the rows where the firstname is Joe would be updated with an age of 10.
    Now replace the 10 in the above statements with (select g.age from girls g where g.firstname = b.firstname and g.lastname = b.lastname) and replace where firstname = 'Joe' in the second statement with where exists (select null from girls g where g.firstname = b.firstname and g.lastname = b.lastname). The same concepts apply whether 10 is an actual value or a query and whether you have a where clause with the update statement to limit rows being updated.
    About the select null question regarding the outer where clause:
    Since the query is checking to see if the row in the girls table exists in the boys table what the column is in this select statement doesn't matter, this column isn't being used anywhere. In this case Todd chose to use null. He could have also used a column name from the table or a lot of times you'll see the literal value 1 used here.

  • Moving few contents of one internal table to another internal table

    Hi
    I want to move some contents of one internal table to another internal table, which records match our condition
    (without loop)
    Example:
    1  aa
    2  aa
    3  aa
    4  bb 
    5  cc
    6  aa
    7  cc
    8  dd
    now i want to move records which contain aa to one internal table  without using loop.
    is there any statemnt to achieve this
    Reagrds
    Srinivasu

    Hi Srinivasu,
    Just create an another internal table say itab2 having the same structure.
    Then use the following code:
    itab2[] = itab1[]
    delete itab2 where field2 <> 'aa'.
    Hope this will help.
    Regards,
    Nitin.
    Edited by: Nitin Karamchandani on Nov 21, 2008 8:51 AM

  • Transfer iTunes content from one Apple ID to another Apple ID

    I have recently set up a second Apple ID so that I can separate content I want my kids to be able to access and other content that I don't want them to see (eg particular TV shows and movies) and have set up a separate computer through that I want to load with content suitable for them.  Is it possible for me to transfer content purchased on iTunes from one Apple ID/iTunes account to a different one?  Are there any tips/tricks for this?  Any problems or watch-outs?  Thanks.

    Hi H.E. Bear,
    Sorry, but iTunes purchases are forever tied to the Apple ID that they were purchased under. There is no way to transfer purchases from one Apple ID to another.
    You can, however, Authorize that original ID to the new computer (along with the new one for the kids). Once you have Authorized it, you can transfer selected purchases into the iTunes Library on that computer:
    iTunes for Windows: How to copy purchases between computers
    or
    iTunes for Mac: How to copy purchases between computers
    Cheers,
    GB

  • Changing content of one label, based on the content of another

    Hello all,
    I need some advice on how to go about doing something that should be simple.
    Basically, I have two labels, that will be used in a marquee animation. When label one gets changed, I want label two to mimic label one's content. Since there is no ContentChanged Event for labels, I have been relying on the SizeChanged event of label one
    to do the job.
    However, the issue arises when label one's content extends past that of its parent container, thus no longer firing SizeChanged.
    When label one's supposed length is equal to or greater than that of its container, is when I would start the marquee animation.
    Basically, I need a sure fire, reliable, 100% accurate way to update label two's content to match that of label one's despite its length.
    I have read the following: Label.Content Changed Event
    However this does not solve the issue, as the event fires for "all" custom label classes, due to the ContentProperty being declared Static/Shared.
    Thanks in advance!

    <UserControl x:Class="CustomControls.UserControls.ValidationUserControl"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    mc:Ignorable="d" Height="36" Width="120">
    <Grid x:Name="z">
    <TextBox x:Name="txtBase" Text="TextBox" Margin="0,0,0,13"/>
    <Label x:Name="lblStatus" Content="Status" HorizontalAlignment="Left" Margin="5,0,0,0" VerticalAlignment="Bottom" FontSize="10" Foreground="#FFE12828" FontWeight="Bold">
    <Label.Effect>
    <DropShadowEffect BlurRadius="5" ShadowDepth="1"/>
    </Label.Effect>
    </Label>
    <Label x:FieldModifier="Friend" x:Name="lblMarquee" Content="{Binding ElementName=lblStatus, Path=Content}" HorizontalAlignment="Right" Margin="0,23,-29,0" FontSize="10" Foreground="#FFE12828" FontWeight="Bold" Background="Transparent" Height="13" VerticalAlignment="Top">
    <Label.Effect>
    <DropShadowEffect BlurRadius="5" ShadowDepth="1"/>
    </Label.Effect>
    </Label>
    </Grid>
    </UserControl>

  • Is there a way to paste content from one ID doc to another without importing the styles?

    Hi all,
    I often work with transferring content over from one catalog to another...each catalog has a completely different set of styles. Since I am an organization freak and like to keep things as organized as possible, it drives me crazy when all of the styles from the other ID doc are transferred over into my my new document. What I used to do was delete all of the styles from the catalog I was copying over from and save a copy like that simply for the use of copying information over (so that no styles were brought over), but I am currently working with copying over content from multiple catalogs that were built in InDesign and it will take me forever deleting all of the styles in those documents.
    Normally it is a GOOD thing when styles are copied over, but not in this case. It is not important that format is carried over either...I just want the content. Normally I will grab a bunch of content (tables, text boxes and images) at a time to copy over. I amjust not able to use "Paste without formatting" either:( It is greyed out. I very often use the "Paste without formatting" when pasting in text by itself into a text block and that works great! But is there any way I can do something similar with a bunch of contents that are being pasted? Or even if I just want to paste a text block or two?
    Help?
    Thank you so much in advance for your help:)
    Best,
    Christine

    Mary and Peter,
    Thank you both so much for your input...those are both really great ideas! I had actually not known about the ability to "break the link" to the styles... I must have missed seeing that all this time I have been using InDesign...that is really useful!! And I also like the ideas of renaming the styles...I will have to see what works best tomorrow as I continue on. There are just soooooo many different styles involved that renaming them may not be feasible in this particular instance so I may need to just "break the links"....but then I just remembered that there are lots of table styles, cell styles and character/paragraph styles linked with the tables alone that I have to copy over....grrrrr. (making my hair stand on end thinking of it...lol)
    Isn't there a way to break the links to EVERY style linked to one selected item (break the link to all table/cell/character/paragraph/object styles in one fell swoop) ?

  • Many to Many Subgrids - pouplate one relationship based on another entity's relationship

    Say I have 'entity1' and 'entity2' and both have many to many relationships with 'entity3.'
    Entity 1 has a many to many subgrid.  We're going to get rid of entity 1 and replace it with entity 2.
    We need entity 2 to have the same subgrid values that entity1 used to have.   Entity 2 for now is unpopulated in its many to many relationship.
    How could we achieve this other than manual data entry? 
    -If I could somehow export the data into xml format and reimport it that would work, but advanced find isn't an option.
    -I don't believe workflows are an option.
    One workaround I'm thinking of is to populate a mult-line text field using javascript.  Then I could xfer the field and run another javascript to grab the values.   Or maybe use rest services to avoid having to xfer.  But these still require
    me to open each entity and frankly the development time will be high enough that I might as well just do them by hand.

    Hello
    You could write a console application using (C#) to update/create your entity 2 objects.
    https://msdn.microsoft.com/en-us/library/gg334754.aspx
    Retrieve your entity 1 objects, create your entity 2 objects based on the entity 1 values. Associate your entity 2 with your entity 3 (N-N Relation).
    https://msdn.microsoft.com/en-us/library/microsoft.xrm.sdk.messages.associaterequest.aspx
    Hope this gives you a start,
    Kind Regards

  • How to move content from one Apple ID to another?

    When I first started with Apple, I shared an Apple ID with my dad because I only had an iPod. Now that I have an iPhone, iPad, and Mac, I need to have my own Apple ID. Is there a way to move everything currently on my phone (music, sms messages, contacts, photos) to my new Apple ID? I have looked in the threads and I know this question has been asked before, but none of the answers really made complete sense to me....so dumb it down a little? Thank you in advance!

    See http://support.apple.com/kb/PH2689 and http://support.apple.com/kb/HT5902 for information on sharing calendars and photos through iCloud.  Contacts are not included in the sharing from one ID to another.

  • Can I port content from one pdf form to another, from within the form fields?

    WE have been given a seasonal update to our pdf forms - with one new additional form field. Is there a way that I can port all the content from my ready filled form into this new one, without having to copy and paste each individual field?
    Thanks.

    What is it that you want to do
    - you are the form filler; you want to keep the contents of a filled in form (and put them back into a changed form)?
    - you are the person responsible for adding/changing form fields; you want to keep the design and location of the form fields while changing the underlying PDF?
    - both of these?

  • Variable for one Dimension based on another Dimension's Property

    Hi all,
    This is a Acript Logic question.
    I have a dimension called P_BUDGET_MODEL. It has a property called PROFIT_CTR.
    I also have a dimension called P_PCA.
    I would like to have a variable that defines the values of P_PCA based on the values of PROFIT_CTR once the user selected the P_BUDGET_MODEL.
    Please note:
    1. One value of PROFIT_CTR might yield fiew values of P_PCA based on a well defined logic that I can code in the script using some sort of Concatenation.
    2. I want to use the variable in *XDIM_MEMBERSET P_PCA to improve performance.
    3. I have authorizations defined both for P_PCA and P_BUDGET_MODEL.
    4. I would like to use similar logic to define the time dimension based on the category dimension.
    Any ideas?
    Kind regards,
    Avihay

    Hello Nilanjan,
    First of all thanks for your response.
    I am not sure I understood. Allow me to elaborate the business scenario.
    I have a distributed planning process. Various planners are responsible for various P_BUDGET_MODEL values, which are organized in a hierarchy based on these responsibilities.
    When the user selects in a planning package the P_BUDGET_MODEL values, I want to run a logic that will perform calculations. In the logic I need to create data with various values of P_PCA. The values of P_PCA can be derived from the property P_BUDGET_MODEL.PROFIT_CTR.
    I also have authorizations on P_PCA and they are synchronized with the authorizations on P_BUDGET_MODEL. The reason I have authorizations on P_PCA is that in various reports I have P_PCA as the display criteria and I do not want users to see all of the values. I also plan to base planning approval processes on this dimension in the future.
    Since I have few users basically I needed a simple IF inside my logic, but there is no such statement.
    I am a veteran BPS and IP consultant. Such a request was very easy to implement in those tools (using characteristic relations for example and also in FOX). It surprises me that it is so hard to implement in BPC.
    Any new ideas?

  • Copy contents of one internal table to another

    Hi,
    I have one internal table IT1 which has following fields HKONT, DMBTR and DESC. Here DESC row is empty and rest of the fields are filled.
    Now there is another IT2 which has DESC field and this is filled.
    I have to copy the IT2-DESC into IT1-desc.
    How to do that?

    Hi Anurodh,
    if u want to collate data from 2 tables, there should be atleast one common field.
    As from ur query i can see that the field in ques id Description of some other field, say F1.
    If i am right, then fetch F1 field in both the tables and then using Loop and Read statements you can add DESC to IT1 table.
    Hope it helps.
    Reward points if useful.
    Regards,
    Preeti

  • Can I split iTunes library (video content on one machine, music on another)

    I am running out of space on my MacBook Pro.
    Is there a way I can keep all the music in the iTunes library on the MacBook Pro, and then move all my video content (which has almost filled all the drive space on the laptop) to my Mac Pro?
    So basically have 2 different locations for iTunes content?
    Thank you.

    Perhaps it is possible. I am researching the same issue as you stated. See the URL below and see if it helps you.
    http://docs.info.apple.com/article.html?path=iTunesMac/7.5/en/2607x.html

  • Values in one field based on another field in the paper parameter form.....

    Hi All,
    I have two fields in the parameter form. One named 'employee number' and the other named 'document number'. Now, there are multiple document numbers for every employee. I'd like the document numbers to be displayed automatically as an LOV or would like to give the user some help when the employee number is entered manually. Please let me know if this is possible in Oracle reports. I read somewhere that I'll have to call the values from the form. if that is the case. then please let me know how to go about it....
    Regards,
    Shri

    Hi Hari,
    Considering both Market Segment and Application fields are dropdown,
    1) define an event for the first dropdown in the get_p method ie., Market Segment field
    2) In the get_v method of the second dropdown get the value of hte 1st dropdown and filter your field accordingly
    Note: The reason for defining an event in (1) is just to do a server submit.. its actually act as a dummy event if you dont want to handle your logic here
    Hope this was helpful.
    Best Regards,
    Lakshminarayana

Maybe you are looking for

  • Connecting to Windows Computer via wireless network (Password issue)

    I have a wireless network set up at my house, and we all can see each other's shared computers, and the windows machines can connect to each other without a problem.. but my Mac cannot connect to them, but they can connect to me. When I goto "Connect

  • SAPScript Form - Check Print

    Hi. I am trying to create SAPScript Form to print checks and need your help. I am very new to the SAPscript, so I have one general question and one specific question. 1. Is there a really good tutorial for creating a check form? 2. Currently, AP in o

  • Standard buttons in ALV

    Hi all, I need to change the text to the standard button "Export" in ALV for the text "Excel" and assing only one function to this button, the function I need is export to excel. Does anyone knows how to solve this problem please? Help is really appr

  • Missing Task!

    Hi, We developed a system using Adobe livecycle ES2.5, we have a process consists of many steps, for one reason, that we do not know, we missed a task!! what happened: a user submitted a task that must generate a pdf and return it to the same user bu

  • RMAN error with Symantec tool

    Hi My Environment OS Windows server 2003 R2 Oracle 10G R2 10.2.03 2 node RAC When i am taking backup maually in the command prompt with RMAN, it is successful, but when we are trying from Symantec Backup tool we are getting errors like RMAN 03002 fai