Restrict Delete Journal Functionality.

Hello Experts,
Our client is using, SAP EPM BPC NW Version 10.
In the security settings for Journals, we want to restrict the access to "Delete Journal" functionality to users.
If we give access to "Post Journal", "Delete Journal" access is automatically given. However we want to keep the access to "Save/Post/Unpost journal" and remove "Delete" access.
How can this be achieved ?
Kindly advice.
Thank you.
Rahul Shiralkar

Hi,
I think there is no standard way to restrict on Delete Journal. You can enhance standard program to restrict on user ID ( but its not advised to change standard programs)
Class  : CL_UJJ_JRN_MGR
Method : DEL_JRN
Thanks,
Raju

Similar Messages

  • Iphoto on iPad and deleting journals only locally!

    Hello,
    I love the journal function in iphoto ipad version. (unfortunately iphoto on mac does not support it yet...)
    As i already run out of capacity is there a way to delete the photos locally when published to the cloud as journal?
    Otherwise i wnt be able to create more journals!
    Thanks.
    Christian

    Wyodor--Thank you so much for your post. I've been searching for days to find something that makes sense.  In regard to your "How to : http://www.wyodor.net/iPhoto/Journal.html
    post, and I know this is going to sound very elementary to a lot of people, but how do you publish to your own server?  What is a server I could post to? I'm thinking I may be getting "webpage" and "server" mixed up, but what I wanted to do was post my journals to my blog and then be able to delete them from my iPad so I can save them and free up space on the iPad.  Could you please give me an explanation about how I'd get a server and then what the process of copying to the server would be?
    I tried to copy and paste the index.html link to my blog and it will not open (it says something like this is a local file and cannot be opened).  The only way that link works is opening it directly from my laptop. 
    THANK YOU so much for any help!

  • How to restrict deletion of all rows in a child table(Ex:all emps in a Dept

    I have use case where a table which has a child ID, parent ID and some other columns. I want to restrict deletion of all children of a parent.
    I tried a 'before delete' trigger as follows and ended up with a mutating table error-ORA-06512 Any suggestions on how this can be done.
    Following is the trigger I tried:
    create or replace
    TRIGGER C_MODULE_EXEC_SELECT
    BEFORE DELETE ON C_MODULE_EXEC_SELECT FOR EACH ROW
    DECLARE
    rowcnt number;
    BEGIN
    SELECT COUNT(MODULE_CODE) INTO rowcnt FROM C_MODULE_EXEC_SELECT WHERE EXEC_PLAN_ID=:OLD.EXEC_PLAN_ID AND MODULE_CODE != :OLD.MODULE_CODE;
    IF rowcnt = 0 THEN
         RAISE_APPLICATION_ERROR(-20000, 'Cannot remove all subject areas from a execution plan');
    END IF;
    END;
    Thanks,
    Sireesha

    What you have written is clear but it seems to me your rule, as stated, is not valid. At the point where you insert a parent, there will initially be no children. How is that different from any other parent with no children? Is there a guarantee, after inserting a parent, that a child record will be inserted? In one millisecond? One hour? One-hundred years?
    And why is the deletion of the last child record any less valid than the deletion of any other child record? Perhaps the rule should be ... when the last child record is deleted the parent should be deleted too. This would be far easier to enforce.
    Delete the children and each time check to see if the parent can be deleted. If an exception is raised then it can't be.

  • How to find out who had deleted the function moldule? S O S

    how to find out who had deleted the function moldule Thank you very much.

    if this fm was assigned to device class (package) you'll find it in
    tables tadir, e070, e071
    try with name of function module or function group
    hope that helps
    Andreas

  • Restrict deletion of sales order line items

    Hi,
    I need to restrict deleting of sales order line item, I think we can use the user exit, MV45AFZB, USEREXIT_CHECK_XVBAP_FOR_DELE.
    But when i set the flag to 'X', even though it does not delete at tht instance when the sales order save is clicked again the line item gets deleted.
    ANy idea , to prevent that?
    Thanks
    Keshi

    Hi Keshi,
    That is the correct exit, we are using the same without any problem. Just set US_EXIT  = CHARX.
    Regards,
    John.

  • Deleting standard Function, subroutine, ....

    Hi experts,
       Can I delete standard Function, subroutine, .... of SAP ECC 6 !? If can, what authorization do I have to ?
       In case, I created some function group,function, ... at report painter, or copy from standard program, function, ... and then delete them. At that case, it effect to standard or not !? Thanks a lot for all !!!

    when you are making a copy of a standard program and deleting the new program created by you, it will not affect the standard program.
    But pls do not delete any SAP Defined programs

  • FM for adding/deleting partner functions

    Hello everyone,
    Is there an Fm to add/delete partner functions of customer.I am not sure whether sd_partner_single_modify works.Can anyone confirm this or post other FM which does this.
    Thanks in Advance,
    Kiran

    Hello Kiran
    You can try with this Fm
    PM_PARTNER_DELETE_PARVW
    Regards,
    Vasanth

  • Delete of functions and void * accepted without warning by compiler

    Program:
    extern "C" int sync();
    void f() { delete sync; }compiles fine.
    This also compiles fine (CC -c s.cc +w2):
    void f(void *p) { delete p; }
    void g(void *p) { delete [] p; }gcc4 gives for first program:
    t.cc: In function 'void f()':
    t.cc:2: error: cannot delete a function. Only pointer-to-objects are valid arguments to 'delete'
    For the second program it gives:
    s.cc: In function 'void f(void*)':
    s.cc:1: warning: deleting 'void*' is undefined
    s.cc: In function 'void g(void*)':
    s.cc:2: warning: deleting 'void*' is undefined
    I am not a language lawyer, but gcc treatment seems better.
    Some refactoring of our code had left a delete sync; in our code after the pointer sync had been removed. It was some work to find out why the program crashed.

    According the the C++ Standard, the program results are undefined if you attempt to delete a pointer that was not obtained from a corresponding "new". The compiler is not required to detect errors.
    But attempting to delete a function pointer can never be correct, so gcc is being more helpful than Sun C++ in telling you about it.
    If you file a report at bugs.sun.com, you can track progress on getting this enhancement into the compiler. If you don't want to file the bug, let me know, and I'll file one myself.

  • Delete planning function in plan workbook

    I had one query about how the deletion function should be used in plan workbook. in the plan workbook, the user would like to be able to delete the selected line / combination from plan workbook and plan cube. The options what I come up with is :
    1. use macro to get the selected line in workbook and transfer the value to delete planning function (will be executed by clicking the button in workbook).
    2. create another sheet, and require the user to enter the combination for which they want to delete and then get it deleted by clicking the button (delete planning fucntion will be triggered).
    Could you please let me know if there is any better solution for this? And if would like to go with option 1, where I could get the sample or sample macro code?
    many thanks
    Jonathan

    Hi, Jonathan
    Maybe will be enough just make the key figure equal to zero and then save this value without any macros?
    Regards, Igor

  • Updating and deleting Partner functions for functional location

    Hi ,
    I am having a requirement of updating and deleting partner function for functional location .
    If anyone can suggest some BAPI or function module for same .
    Thanks n Regards
    Manik

    Hi Fritz,
    Thank you for your response,
    My need is to create a PARTNERS for the FUNCTIONAL LOCATION.
    LET ME DESCRIBE IT.
    WHEN I AM CREATING A FUNCTION LOCATION USING IL01, AS I ENTER A FUNCTIONAL LOCATION AND PRESS ENTER IN THE NEXT SCREEN.
    AND
    I NEED TO ENTER THE PARTNERS FROM THE DROP DROWN MENU  GOTO ->PARTNERS
    WHICH TAKES ME TO THE NEXT SCREEN WHERE I NEED TO FILL THE INFORMATION IN THE TWO FIELDS : FUNCT & PARTNER.
    I need a partner for the functional location that i mentioned above.and i need to upload that information in through Emigall.
    So my query was that can we customize that partner for this functional location and if yes, what should the constraints,
    what are steps required? Do we require a custom service module?
    Regards,
    Robert.

  • Restrict the Partner functions visible in the Partners tab of One Order obj

    Hi Gurus,
    We are implementing Opportunity Management
    We want to restrict the Partner functions visible in the picklist in the partners tab
    can anyone suggest how we can achieve this
    Regards,
    Vish

    Vish,
    If you would have searched on "restrict partner list" in this forum, you would have found your answer as the first search result.  Please in the future do a search before posting here and read the rules of engagement.
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/home/rulesofEngagement
    The thread that answers your question is located here:
    Hide List Elements for example Partner Functions
    I'm know locking this thread due to this being a duplicate question.
    Thank you,
    Stephen
    Edited by: Stephen Johannes on Apr 27, 2009 8:45 AM

  • Restrict Delete Access in FBV0 for Parked documents

    We are havng an issue for restricting users from deleting Parked Documents of other users in FBV0. Is there a way to restrict Delete access to only documents a user created themselves?
    Thanks
    Chaz

    Hi Chaz
    I don't think that will be possible unless you implement a validation using user exit
    Write a validation in OB28 using RGGBR000 user exit to validate the USNAM field
    Br. Ajay M

  • How to restrict key board function keys ex:-F10 in forms 6i.urgent plz..

    how to restrict key board function keys ex:-F10 in forms 6i.urgent plz..

    Hi,
    At Form level, write trigger for WHEN_KEY_DOWN, check for F10 and put action as NULL.
    Regards,
    Amol

  • Can't delete partner function

    Hi guys,
    I need to delete partner function in opportunity.
    The problem is that i cannot see the partner that i want to delete.
    I only see it in crm_order_read (on se38)
    thanks in advanced

    Hi,
    if you delete the partner function in the customizing you won't get it in any future opportunity. If you just want to delete the partner for one specific opportunity then the partner function has to be flagged as "Changable" in the partner determination procedure customizing.
    The partner function has to be present in the opportunity either at header or at item level. If it's not there it hasn't been found.
    Please, reward points if it helps you
    Regards, José Ignacio

  • HT6029 Having trouble restricting the restore function on an iPad through Apple Configurator

    Having trouble restricting the restore function on an iPad through Apple Configurator
    I cannot find the setting the allow/disable this feature.

    Configuration profiles do not allow you to apply a static IP address to a device.
    Instead, it would be highly recommended to configure static IP addressing within the DHCP server itself. This would accomplish what you want without worrying about which proifle goes on what device, etc. Configurator can also export the MAC addresses to make life easier in setting this up.
    Right click the 'All Devices' in the Supervise tab, click Export Info > Device Information > WiFi MAC Address.

Maybe you are looking for