How can we set Entitlment to "Edit " functionality of Portlet.

Hi All,
I have requirement, where in default "Edit " functionality is used in a portlet.
Edit is mapped to JPF.
This "Edit" is for Administrators only.
I am wondering : Is there a way for setting Delegator Admin Entitlement for
this "Edit" functionality in portlet??
TIA,
RAM

Thanks Philip, pls do let me know how can it be applied to "Edit" - Prashnath
Bhat.
"Phil Griffin" <BEA> wrote:
There is no direct support for this. A workaround may be to recreate
the DA role as a visitor role and apply it to edit.
-Phil
"RAM" <[email protected]> wrote in message news:403c20f7$[email protected]..
Hi All,
I have requirement, where in default "Edit " functionality is usedin a
portlet.
Edit is mapped to JPF.
This "Edit" is for Administrators only.
I am wondering : Is there a way for setting Delegator Admin Entitlementfor
this "Edit" functionality in portlet??
TIA,
RAM

Similar Messages

  • How can I set up lightroom 5 in my macbook, so that it becomes my default editing program, so that it starts up when I insert my sd card into the mac

    How can I set up lightroom 5, so that it becomes my main / default editing program & that when I insert my sd card into the mac lightroom starts instead of iPhoto .

    Thanks.  Im new to apple, which preference?
    Sent from my iPhone

  • How can i set songs within a playlist, or an entire playlist, so that they are not included when using the shuffle function on IPOD Classic? Is this possible?

    How can i set songs within a playlist, or an entire playlist, so that they are not included when using the shuffle function on IPOD Classic?
    Is this possible?

    You can set any song to Skip when shuffling.
    In your iTunes Library, highlight the song and right-click/Get Info. On the Options tab is the Skip when shuffling box. Select that and then Sync the iPod with your Library.

  • How can I set up Lightroom 5 to be my default editing program instead of iPhoto in my macbook? [was: Lightroom]

    How can I set up lightroom 5,to be my defualt editing program instead if iPhoto in my macbook.

    Try 2 Ways to Change the Default Application to Open Files With in Mac OS X

  • Using an own function in a select how can i set that the function run once?

    Hi
    Using an own function in a select how can i set that the function run once, not in every row?
    Please help me
    Thanks
    Viktor

    Something like this ?
    SQL> select * from dept;
        DEPTNO DNAME                          LOC
            10 ACCOUNTING                     NEW YORK
            20 RESEARCH                       DALLAS
            30 SALES                          CHICAGO
            40 OPERATIONS                     BOSTON
    SQL> create or replace function ret_name (deptnum in number) return varchar2
      2  is
      3     name    varchar2(50);
      4  begin
      5     select dname into name
      6     from dept
      7     where deptno=deptnum;
      8     return name;
      9  exception
    10     when no_data_found then
    11             return('Not existent deptno');
    12* end;
    SQL> /
    Function created.
    SQL> select deptno, decode(rownum,1,ret_name(deptno),null) dname from dept;
        DEPTNO DNAME
            10 ACCOUNTING
            20
            30
            40
    SQL>

  • How can I set up Elements 12 to put my Nik Edits onto a seperate Layer

    How can I set up Elements 12 to put put my Nik edits onto a seperate Layer
    and would XXL help with its Smart Object Filters (Smart Filters
    Thankyou

    Also, just a note.   iMac PPC is about iMacs that were available up to early 2006.    iMac Intel is for iMacs that were made available early in to 2006 to present.  Forums for what you have in your profile include:
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.6_snow_leopard
    https://discussions.apple.com/community/ilife/iphoto
    https://discussions.apple.com/community/notebooks/macbook
    Please consider posting and reviewing those locations in the future when you have a question that pertains to one of those products.  You'll much more likely get a resposne then.   This is a user to user forum, and you have to seek knowledge in the areas that are most likely to have the topic of your interest.

  • How can I set a unique macro for the function keys on my wireless keyboard?

    I'd like to use the F5 key as a quick stroke key for a sentence I use commonly - how can I set that up?

    <http://www.keyboardmaestro.com>

  • How Can I Set a Javascript Value into an Attribute of BSP PAGE

    Hi
    Can anyone tell me.
    How Can I Set a Javascript Value into an Attribute of BSP PAGE

    Hi Mithlesh,
    javascript runs on client side and you cannot assign the value to a Page attribute directly.
    As a workaround,you can use an Inputfield,hidden if required,and set the value using javascript.Then the form will have to be submit to be able to read the value in onInputProcessing and then can be assigned to any variable.
    In Layout
    <head>
    <script language="javascript">
    function pass()
       txt1 = document.getElementById("ip_mrf");
       txt.value = "hello" ;
    </script>
    </head>
    <htmlb:inputField  id="ip_mrf"
                               value="<%=mrf_number%>"
                               visible="FALSE"/>
    in onInputProcessing
    cha1 = request->get_form_field( 'ip_mrf' ).
    where cha1 is the page attribute
    hope this helps,
    Regards,
    Siddhartha
    Message was edited by: Siddhartha Jain

  • How can I set the language when sending an e-mail with attachment - 'Html'?

    "Character Broken"
    I made an ALV program, and this convert to "HTML',  and send an e-mail with this.
    Used Process is:
    DATA: gt_abaplist LIKE TABLE OF abaplist,
          gt_html LIKE TABLE OF w3html,
          doc_chng LIKE sodocchgi1,
          objpack LIKE TABLE OF sopcklsti1 WITH HEADER LINE,
          objhead LIKE TABLE OF solisti1 WITH HEADER LINE,
          mail LIKE TABLE OF solisti1 WITH HEADER LINE,
          reclist LIKE TABLE OF somlreci1 WITH HEADER LINE,
          lv_line TYPE i.
    DELETE FROM MEMORY ID '%_LIST'.
    SUBMIT z_template
       AND RETURN EXPORTING LIST TO MEMORY.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject = gt_abaplist
      EXCEPTIONS
        not_found  = 1
        OTHERS     = 2.
    CALL FUNCTION 'WWW_HTML_FROM_LISTOBJECT'
      TABLES
        html       = gt_html
        listobject = gt_abaplist.
    doc_chng-obj_name   = 'URGENT'.
    doc_chng-sensitivty = 'O'.
    doc_chng-obj_descr  = ' '.
    doc_chng-obj_langu  = '3'.
    objhead-line        = ' '.
    APPEND objhead.
    mail[] = gt_html[].
    DESCRIBE TABLE mail LINES lv_line.
    CLEAR: objpack.
    objpack-transf_bin = 'X'.
    objpack-head_start = 1.
    objpack-head_num   = 0.
    objpack-body_start = 1.
    objpack-body_num   = lv_line.
    objpack-doc_type   = 'htm'.
    objpack-obj_descr  = ' '. 
    objpack-doc_size   = lv_line * 255.
    objpack-obj_langu = '3'.
    APPEND objpack.
    CLEAR: reclist.
    reclist-receiver = 'e-mail address'.
    reclist-rec_type = 'U'.
    APPEND reclist.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        document_data              = doc_chng 
        put_in_outbox              = 'X'
        commit_work                = 'X'
      TABLES
        packing_list               = objpack
        object_header              = objhead
        contents_bin               = mail
        receivers                  = reclist
      EXCEPTIONS
        too_many_receivers         = 1
        document_not_sent          = 2
        document_type_not_exist    = 3
        operation_no_authorization = 4
        parameter_error            = 5
        x_error                    = 6
        enqueue_error              = 7
        OTHERS                     = 8.
    SUBMIT rsconn01 AND RETURN.
    I want to show  this by "Japanese".
    But the character is broken.
    LIke This:
    u01D1u072C          u0205|            u0205u072C          u0508           QC u04B90m
    How can I set the language?  How can I solve "Charancter Broken" ?
    Plesse, let me know.
    Thank you so much.
    Edited by: Jaime White 999 on Nov 21, 2011 8:45 AM
    Edited by: Jaime White 999 on Nov 21, 2011 8:46 AM

    Hi Jaime,
    Are you saying, you are getting junk characters in the email attachment? Then pls check the following. Since you want to send Japanese fonts, please pass language 'J' in both  objpack-obj_langu = '3' & doc_chng-obj_langu  = '3' instead of '3' please replace it with 'J'.
    Another thing which you may have to check is the SCOT device type. As I understand from my basis colleague, this may also affect your attachment fonts since the emails are sent through SCOT. Go to transaction SCOT-> Settings-> Device types for format conversion. Check whether wrong device type is defined for Japanese there. Hope this helps
    Regards,
    Gokul

  • How can i set the alternating colors for a table rows

    Dear All,
    Please any one help me how can i set the Alternating colors for Table Rows.
    i created a theam there i set the background alternating color to brown and i set the table design properity to alternating. but it is not reflecting.

    Hi,
    The design property in Table properties should work for your requirement. Select "alternating" value for design.
    Please see the API below:
    design
    Determines the appearance of the table. The property design can take the following values and is represented by enumeration type WDTableDesign.
    alternating - The table rows are displayed alternately in a different color.
    standard - The table background has one color. The individual table rows are displayed with grid net lines.
    transparent - The table background is transparent. The individual table rows are displayed without grid net lines.
    Check whether you have changed the right property or not? Also table should contain more than one rows to test this scenario.
    Regards,
    Jaya.
    Edited by: VJR on Jun 17, 2009 6:43 PM

  • How can i set up an apple id to download apps without a credit card?

    I have several Ipads in school to set up for apps, but we don't have a school credit card and only want to use iTune cards. How can I set up an multiply id without using credit card details?

    How to Get Apps From the App Store Without a Credit Card
    http://ipadhelp.com/ipad-help/how-to-get-free-apps-from-the-app-store-without-a- credit-card/
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    http://support.apple.com/kb/ht2534
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/ts5366
    If None is not available - On your computer launch iTunes and click “iTunes Store” in the left navigation pane. Click the “down arrow” next to your name at the top right side of the page and click “Account.” Enter your username and password and click “View Account” to log into your account information. Next to your Payment Type, click “Edit.” Select the “None” button and click “Done.” Confirm that your card has been removed by returning to the Apple account information screen. Under Payment Type, it should say that there is no credit card on file.
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/HT1918
    iTunes Store Accepted Forms of Payment
    http://support.apple.com/kb/HT5552
     Cheers, Tom

  • How can I set up a guest access point with a Time Capsule and an Airport Extreme? I am using a Telus router with the Time Capsule used as a wireless access point (bridge mode). I don't want the guest access point to have access to my network.

    How can I set up a guest access point with a Time Capsule and an Airport Extreme? I am using a Telus router with the Time Capsule used as a wireless access point (bridge mode). I don't want the guest access point to have access to my network.

    The Guest Network function of the Time Capsule and AirPort Extreme cannot be enabled when the device is in Bridge Mode. Unfortunately, with another router...the Telus...upstream on your network, Bridge Mode is indicated as the correct setting for all other routers on the network.
    If you can replace the Telus gateway with a simple modem (that performs no routing functions), you should be able to configure either the Time Capsule or the AirPort Extreme....whichever is connected to the modem....to provide a Guest Network.

  • How can I set up firefox home on my iPhone without a desktop

    How can I set up the Firefox Home App on my iPhone without using a desktop computer and without having to sync it, too?
    My home computers are not functioning right now, but Firefox is my favorite browser.
    Can someone help me get it working on my iPhone?

    Actually, there is no version of Firefox for the iPhone. Firefox Home is a helper app to sync certain data to your iPhone.
    More info on Apple vs. third party browsers: [https://support.mozilla.org/en-US/questions/925084 Why isn't Mozilla Firefox available on the MOST SELLED and MOST WISHED tablet on the market? The iPad! I mean, Firefox home is not even an universal app.]

  • How can I set up my email so when I delete mail from my Mac it deletes from my iPhone as well?

    How can I set up my email so when I delete mail from my Mac it deletes from my iPhone as well?

    That is a function of your email account, if it is an Imap account it will sync, if it's a POP account, it won't.
    Who provides your email.

  • How can I set up a default (pre-recorded) voicemail greeting on iphone 4s?

    How can I set up a default (pre-recorded) voicemail greeting on iphone 4s?i dont want a custom one with my voice i want the pre-recorded where a lady says my number . how do i get that?

    Voicemail is a cell phone carrier function.  Contact your carrier to see if they have this option.  If not, i'm sure you can download a sound file from the internet with a greeting and add your name.  Then play it back on you PC while holding your iPhone near the speaker when recording the greeting to voicemail.

Maybe you are looking for

  • How do I Apply a Quartz Filter Automatically to PDF Scan Using Preview

    Hi, Question: is there a 1-step process to scan to PDF and create reasonable file sizes. I've found discussions on this, but no conclusive answer that someone has actually tested and used. PROBLEM: Scanned PDFs are large SOLUTION: use a quartz filter

  • Message Mapping  Multi Level Hierarchy To Flat

    HI I have the following Message Structures <HRMD_A05>    <IDOC BEGIN="1">       <EDI_DC40 SEGMENT="1">          <TABNAM>EDI_DC40</TABNAM>          <MANDT>100</MANDT>          <DOCNUM>0000000000462483</DOCNUM>          <DOCREL>700</DOCREL>          <S

  • Importing black images from my 4s on to iphoto

    Hey there can anyone help me with an issue on iphoto? recently im importing some photos from my 4s and some of them are coming up as black images on my iphoto .... does any one else have this issue ? ive tried doing the repair library on i photo by p

  • Atist name in playlist with a local phone number?

    Hi. I was syncing my iPhone 4s when I noticed a artist name on my play lists with a phone number from the city I live in. is this some type of adware?. I clicked on it and my computer got frozen, had to force shut down. any comments to this isue?.

  • Cash Manasgement logistics

    Hi  SAP expert/ Venkat I am working on cash mangement and liquidity forecast. Integration of MM covers PO , PR and scheduling agreement. I would like to know whether it is possible to separately show Goods received but not yet invoiced as separate it