Change owner

i want to give change owner authorization to user in marketing document where is that authorization

hI  Ajit
it could be done through two ways however i cant give u the query for that  as i don't have but could tell u they
one way is through SP that could Solve ur problem nd second way is through SDK but i would not recommend using the SP as sap does not support usage of it
so u can ask other fellow  user to provide u with the query for either of the ways
or there is a third way that is most easy out of the others thats is through creating additional authorization
go to admin-system initialization authorization- addiction authorization creator then create a new authorization under the form id please place the "form number.item number" and save the document
and please don't forget to click on items and under option place "Full/Read/None"
and then go to authorization window choose the user id for which u wana place the restriction then move down to user authorization there u would find the authorization that u made in additional authorization creator and assign the authorization as per your requirement
Hope that would help u
Regards
Mannish
Edited by: manish.malik on Jul 19, 2010 5:37 PM

Similar Messages

  • Background job executed as SAP*, need advice to change owner.

    Hi all,
    I'm facing an issue where my SAP background job currently has 2 job "SAP_CCMS_CPH_REORG" and "SAP_CCMS_CPH_HRCOLL" under the ownership of sap. I would like to move them away from SAP ID.
    I have tried to recreate the job using sm36 (and using my ID with sap_all profile) in testing environment, but it not seem to work.
    Highly appreciates any advices and/or pointers with regards to the above mention question.
    Thank you.

    Hi all,
    Thank you for the reply but I have forgotten to add a few updates.
    The issue is that I can change owner from SAP* to my ID with sap_all profile.
    But, after execution,
    Job with sap* owner ended successfully, with spool status marked as completed.
    whereas
    Job with my ID as owner ended successfully, but spool status marked as "waiting"
    error mesage:
    Description          Value
    Status:              Frontend unavailable
    Last event:
    Message:             Request on hold
    Date:                19.02.2009
    Time:                11:57:28
    Job status:          On hold
    Error class:         Delayed
    Area:                Data transfer
    Printout:            Not printed
    Apologies for the inconveniences caused.

  • HT201317 Change Owner photo stream

    Hi all,
    How do you change owners for a shared photo stream?  Can there be more than one owner for a shared photo stream?!
    Thanks,
    Ryan

    Or do I just need to delete the Photo stream and start over with a new owner?

  • Changing Owner & Business Group of ASD Custom Resource

    So this is a bit of an expansion of this discussion: https://communities.vmware.com/thread/500669?start=0&tstart=0
    You will see that pizzle85 managed to solve his challenge of BG object ownership by using an ASD Service Catalog Request located in each Business Group's Entitlements so a member of the business group can just run the Provision required to bring the BG item under management in the business group.  This is quite an effective method to solve the need.  He then has a Resource Action that allows for re-"Provision" which changes owner within the business group: a necessary task because managers tend to move around a lot so they can look busy. (just kidding, I love managers--who have a sense of humor)  So to change owner... just perform a "provision" again.
    Apparently this is one of the best kept secrets in vRA because it has been hard to figure out, and nobody is writing about it.  (I can only assume that there is some SE out there who has worked with the developers to get this capability going and it hasn't been shared widely.)
    Note: I think Business Groups as a Service is something I need to plan for (vs centrally managed Business Groups) even though their future implementation might vary, so my examples here are related to that effort because I am too lazy to demonstrate a generic example.  BUT... the idea is... ownership of ASD Inventory Objects (representing ANY Custom Resource) can be modified using this method.  Ownership includes both the owner represented by "ME" in the Items list... and the Business Group  (subtenant Reference & Label) where the item resides in inventory.
    In 6.2.x, I have not found any method in the vRO plugin for vRA to be able to change ownership and business group of an ASD Custom Resource Inventory Item, but it can be accomplished via a combination of (1) ASD Service Catalog or Resource Action "Provision" capabilities and (2) REST calls through the vRA plugin service channels.  (the latter uses the plugin service account authorizations/entitlements)
    Consider this image...
    This could represent a central management point for many business groups: where I can assign a set of resource actions allowing for automation of various business group needs, an anchor point for actions.   Those in the sktest business group Support User or Manager Role would be able to see all the business groups globally if they were all provisioned in sktest.  (a bucket to manage from)
    This also could represent a starting point where business groups are created as real objects, returned as custom resources, and "provisioned" as inventory object items.  But once there...maybe you want to move it?
    Let's say we later decided, seantesting doesn't belong in sktest because we wanted to change from the "we manage it for you" model to the "manage it yourself" model.  How do you move it?
    Like this...
    And it moves now owned by the vRA plugin service account... (which an entitled user could run Take Ownership and own it in that business group)
    The service account obviously needs to be part of the destination business group and as it ends up, has to have an entitlement to any "provision" action in the business group even though the object doesn't exist there.
    This is a tricky hack and this is how it works...
    1. vRO workflow calls the Take Ownership Action in vRA via REST (front door process).  As noted before, this has a provision attribute to the action which we know changes the owner.  So we would expect that the owner would change to the user that is making the request: which is the service account.  The service account becomes the owner, but this wouldn't change the Business Group.
    2. So we change subtentantRef and subtenantLabel in the REST call to the business group we want to target, even though the object isn't in inventory in that business group.  And Voila! The business group item representation re-provisions as a new owner in a new business group.  Effectively changing the owner and moving the object from one BG to another BG using the management-method vs the self-service-method (the latter as pizzle85 did).
    Again... maybe you care less about Business Groups.  Maybe you would prefer self-service. It is the capability of moving a custom resource inventory representation that matters.
    Here is an example of the REST call to run the "Take Ownership" action.  I have a script before this that pulls in all the variables for the "Resource" I am targeting (from the BusinessGroup object ID), the action I am running  (Take Ownership ID), the business group Ref and Label) and some of the properties I need for the Take Ownership action like bgName... but those are actually not necessary. (all of the "entries" are what is required per the Take Ownership request... if that request didn't require any inputs, there would be no entries... it is the top change of subtenant that allows for the BG move)
    System.log("resourceRef: " + resourceRef);
    System.log("resourceActionRef: " + resourceActionRef);
    System.log("targetRef: " + targetRef);
    System.log("targetLabel: " + targetLabel);
    System.log("bgName: " + bgName);
    var payload ={
    "@type":"ResourceActionRequest",
    "resourceRef":{"id":resourceRef},
    "resourceActionRef":{"id":resourceActionRef},
    "organization":{"tenantRef":"vsphere.local","tenantLabel":"vsphere.local","subtenantRef":targetRef,"subtenantLabel":targetLabel},
    "state":"SUBMITTED",
    "requestNumber":0,
    "requestData":
    {"entries":[
    {"key": "provider-rYouSure","value":{"type":"boolean","value":"true"}},
    {"key": "provider-bgName","value": {"type": "string","value":bgName}}]}
    payload = System.getModule("org.dojotoolkit.dojo.json").serialize(payload);
    System.log(payload);
    Server.log(payload);
    var catalogRest = cafeHost.createRestClient(vCACCAFEServicesEnum.CATALOG_SERVICE);
    var response = catalogRest.post("consumer/requests",payload);
    Best of luck in your Automation Efforts!
    Sean

    Turns out... it is likely not required as part of the request data.

  • Changing owner on GPO give error

    My account is in Group Policy Creator Owners and can create GPOs fine.  I can modify permissions via the Delegation tab as well.  But when I go to try and change the owner of a policy, I get:
    Unable to set owner on <GUID>. The parameter is incorrect.
    It shows me having Modify Owner access on this policy so why would this not work for me?  Thanks.
    BTW, a Domain Admin can change this with no error.

    Hi,
    >>If you are saying to give Group Policy Creator Owners access to modify the owner of all GPOs, that is not acceptable in this environment.
    I am saying that we can just edit access control list of the GPO that we want to change its owner but not all GPOs.
    >>Seems to me if you are the owner of an object, you should be able to change this but that is not happening with GPOs in our case.
    Please follow the advice (giving the create owner
    change owner permission) I provided in the last reply to see if the issue persists.
    TechNet Subscriber Support
    If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback here.
    Best regards,
    Frank Shen

  • Query - Change Owner

    Can we change the owner of a query. Since we have security setup that only the owner can modify we will run into situations where an employee is leaving the company but someone else is taking over their query.
    Thanks

    Hi,
    You can not change Owner of a Query...
    You can try this:
    First save existing Query with different technical name by required developer/user.Then delete old(original Query)..now save that Query with the same original tech name and delete old one..
    For example:you have a Query with tech name 'ZQUERY'.
    1.Save this Query as 'ZQUERY1' and delete 'ZQUERY'.
    2.Now save 'ZQUERY1' as 'ZQUERY' and delete 'ZQUERY1'.
    If you Perform 2nd step with required User ID,You will have desired Owner for this Query..
    Hope this helps.

  • When we change owner of a task or a request is any log maintained anywhere

    HI ,
    When we change owner of a task or a request is any log maintained anywhere
    suppose we want to check who were the owners of a particular task is there a table which
    saves this change informatiion ,also when we transport a request to say  QA then in QA will
    the individual tasks be present or only the request .
    Thanks

    Hello
    The owner of a request or task is stored in E070-AS4USER. For this table there is no change log active (obviously).
    Thus, you will not find this change of the request/task anywhere except you define it yourself.
    Regards
      Uwe

  • Change Owners and Remove Previous Owner

    We setup both a Visual Studio Online and Azure Development under my contract Developers account who is the sole owner at this time.  I would like to know if we can change owners and then remove my current developer from any administrative roles. Also,
    would all the development work and setup for VSO and Azure move without deleting work done to date? Further to this I would like to change the URL?

    Hi pphawkins,
    For Visual Studio Online account, you can ask the contract Developers to add your MS account to a team member of the Visual Studio Online account and then change the owner ship to your account. Check this
    page for more details.
    If the Visual Studio Online account is linked to an Azure subscription, you can also unlink it then relink to your own Azure subscription. If the development work is deployed to Auzre websites/cloud service, then you might continue
    to keep the linking with former Azure subscription if you don't want to make changes. Or you can deploy to your own Azure websites/cloud service if you'd like to link your Azure subscription to your Visual Studio Online account. Another
    other concerns related to Azure, you can also open a new thread in Azure forums. Thanks for your understanding.
    Best regards,  
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to change owner of queries and transport.

    Hi Experts,
    Earlier the queries are designed by some other user.According to business requirements I have customised the data targets and infosets also accordingly.All queries are designed on infosets only.
    If I  am coming to query designer to change queries according to requirements, i am not getting change or edit mode for that,even if  I saved the query with some other technical name also I am not getting change or edit mode.
    While I open the opened the query it is showing the following errors :
    1. Bex transport request is not available or not suitable.
    2. Choose an existing request.
    Up to my understanding to assign the queries to my own BEX transport requests ,how can  I change the previous query owner to my user name.
    If I  assign to own bex transport request then
    Please let me know if any information needed still.

    Dear,
    As explained above .....go to SE09 and selct the request and change the owner...
    Also,
    If u use SAVE AS option for the existing query,,,then a new query opens..
    and assign that query to a NEW Transport Request...
    This solves ur problem...
    The problem of
    1. Bex transport request is not available or not suitable.
    2. Choose an existing request.
    is because... the query has been attached to a TR which has been already moved to Quality or Prod...
    So any changes have to be put in that request which is no longer available..
    So use Save AS option and assign it to a new TR.
    Hope this helps u..
    Best Regards,
    VVenkat..

  • Hi, does any one know how to change  owner name?

    Hi, i have bought an iphone unlocked on ebay recently, the phone is working perfectly.
    Does enyone know how to change the owner name? what details would i need? I have the IMEI,  name of the guy who sold the iPhone and his email address, do you think this is enough?
    Please i need help!!!!
    Do you think that the guy who sold the iPhone can block the phone after a little while? Is there anything i can do?
    I have asked the guy to send me his details and i have explained to him why i need it, but he's not answering :-((((
    HELP HELP
    Thank in advance people........

    Use iTunes to setup the phone like new: http://support.apple.com/kb/ht3828
    Very simple.

  • How can I change owner name in my IPad?

    I won an IPad as a prize at a trade show. The owner name is set as the company that I gave it to me.  How can I change the owner name to me?  I cannot find anything in the 'settings' for this.

    Where did you find the owner name? Is it engraved?

  • Unable to change owner from Sa to Satish

    While changing a owner am getting a error 
    Msg 15151, Level 16, State 1, Line 1
    Cannot find the database 'TEST', because it does not exist or you do not have permission.

    ALTER AUTHORIZATION ON SCHEMA::db_backupoperator TO dbo;
    ALTER AUTHORIZATION ON SCHEMA::db_datareader TO dbo;
    ALTER AUTHORIZATION ON SCHEMA::db_datawriter TO dbo;
    ALTER AUTHORIZATION ON SCHEMA::db_denydatareader TO dbo;
    Execute the above commands
    Use <Databasename>
    EXEC sp_dropuser 'Satish'
    EXEC sp_changedbowner 'Satish'

  • How to change Owner property in KM

    Hi masters.
    I want to know how to change cm_owner property of a document that i am uploading with dynpro java. I have written a code to add new properties for document but i couldn't change the Owner of document. Here is my code for adding a new property :
    if (wdContext.currentUserElement().getId() != null) {
    IPropertyName propOwner =
    new PropertyName(
    PropertyName.createDisplayname().getNamespace(),
    "Owner");
    prop =
    new MutableProperty(
    propOwner,
    wdContext.currentUserElement().getId());
    propMap.put(prop);
    This code is adding a new Owner property for document. So that after upload, i see 2 Owner fields in Misc. tab.
    Thanks for replies.

    Hello,
    Do check this blog out:
    [Dynamic properties setting in KM|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/645d4357-0701-0010-07bd-a2ea8c4d0aaf]
    Also read : [Storing and retrieving properties in KM|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ab288d09-0801-0010-b183-b8254ed4793f]
    [Developing a property filter in KM|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70ee3a57-0701-0010-3e9a-ddae7e4e0521]
    Regards,
    Shailesh
    Edited by: Shailesh Kumar Nagar on Feb 19, 2010 8:16 AM

  • Change owner of marketing document

    User is not a super user and when she tries to update the "Owner" field of an SO, she receives the error message. "....not authorized to change document owner...". I checked the authorization settings but dont see any entry related to this.  Does anyone know what I can do to make it possible for a non-super user to change the document owner?
    Thanks in advance.
    Alan

    Hi Alan !
    Any user can edit the Owner in the SO . It does not depends upon the super user previlage .
    This relates only to the Authorization .
    I suggest you to check the authorization provided to the user in the Administration and Sales Module .
    Thanks
    Ashish

  • Change owner for transport from an external system

    Hi Everyone,
    I have some transports that were brought into our DEV system from an external system.  (They're BSI transports but I don't think that detail is important.)  We are using a third party transport management system (Insite) and in order to move these transports using Insite, I need to change the owner of these transports to myself.  When I try to do so I receive an error "Request L6BK134312 cannot be changed: Incorrect system or wrong naming convention".
    I've been told that all I need to do is to configure or add the source system to our DEV system and then I should be able to change the owner.  My problem is that I cannot figure out where to go to make this change.
    Can anyone point me in the right direction?
    Thanks!
    Jeff

    Hi Jeff,
    Yes, I do have a regular procedure that I follow to get this to work.  Ruchit Khushu was correct when he said that it had to be "a normal customizing or workbench request."  Creating a transport of copies never worked for me, so I had to set the task to Workbench.
    Here's my procedure:
    1) Import the transports
    2) Go to SE10 and create a new transport
    3) Change the task to Workbench by selecting it, using menu option Request/Task > Change Type... and select Workbench.
    4) Click on the transport number to select it.
    5) Select menu Request/Task > Object List > Include Objects...
    6) Enter a transport you want to include
    7) Repeat 5 & 6 until all transports have been included.
    Hope that helps.
    Jeff

Maybe you are looking for

  • Open attachment

    Hi,           I am using a servlet to open attachment in JavaMail. Part of the servlet           I deal with attachment part is as following:           if(disposition.equals(mbp.ATTACHMENT)) //mbp           is MimeBodyPart object           ServletOut

  • How to remove duplicates while joining two query results ?

    Hi all, Please, anyone suggest me how to do below one.. i am using oracle version 11.2.0.3.0 Col_1 Col_2 111 AAA AAA 111 222 BBB 333 CCC As, oracle point of view the above table contains distinct rows. But i need the logic result like below, Col_1 Co

  • Thunderbird PC conflicting with Android Pad when connected home

    With Thunderbird running on PC and android Pad running in another room also connected to my email account (Pad doesn't have Thundrbird as we all know) . Every so often Thunderbird will not connect to email provider and ask for password. Which does no

  • I am trying to update my software and it will not recognize my code, why?

    I am trying to update my software on my new Macbook pro and it will not recongize my code, why not? I was sent the confirmation email with the code as well

  • Exposure Adjustment in ACR

    I am conducting some camera & lens tests and would like to hold the shutter speed at a constant and vary the exposure over an approximate 5 stop range of apertures. I'd like then to correct the exposures as closely as possible in ACR. Are the values