How to create person in Organisation staffing ?

Hi
I need to know how to create person in Organisation staffing.......Object type P ?
thanks in advance,
R

Hello Jai and IA,
About discussion of RSWUWFML2
As per my understanding -
Notification - This report sends out notification of dialouge workitems in ready status to the agents and also to substitutes. This is nothing but email in outlook/lotus/any other mail system. The content is decided by the description of task of the dialouge workitem. This is basic functionality along with several other add ons too
Send out WI - One of the option in the above report is to attach an executable attachement . There are three types of attachemnt - execute workitem, display workitem, display inbox.  If this is what can be called as 'sending out WI' then yes it sends out WI.
If say; you are using position then as agent determination then it will find the user name attached with that position and send out work item to that user, but it wont derive the email addresses                                             
I understand using position as agent determination
but i dont understand using position in send mail step of workflow.  what is the use of putting position in the recipient section of send mail step ?
Coming to the actual question: Maintaining Person is not the solution. For external users, ztable should suffice or use SAP's TVARV table :
is it not possible to use Person as suggested above ? which i am putting in steps below.....
1. Create Person object (I dont know difference btw Person and CP, will check that)
2. Maintain email address of Person object as infotype 0105
3. Place the Person object as required in the heirarchy in Org staffing (PPOMW)
4. insert a step in workflow that will pick that correct Person object as required and read the email address in 0105 and pass it to the SOXNA table container element of workflow
5. Pass this SOXNA container element to the send mail step by putting 'Expression' in the recipient section
This way you can accomplish sending email notification to external email address of non SAP users.
I am doing these steps to check andwill let you know the result.
I cannot use Z table , the client strictly disallows that.  I will check in TVARV.

Similar Messages

  • How to create  personal number

    Hello everybody  ,
    please tell  how to create  personal  number in  Tcode :-  PA40  please mention the steps

    hi sandeep,
    do the followings
    1.) go to PA40 check the customization ,,,if exists...then personal no will automatically be generated.
    2.)otherwise....go to PA40 ..it will have some screens ...fill the mandatory fields.....save it and personel no. will automatically geanerated
    thnxs n regards
    sachin
    njoy life

  • How to create personal templates in SRM 4.0

    Dear all
    We are upgrading from EBP 3.0 to SRM 4.0 and we don't see in SRM 4.0 how to create personal templates.
    The transaction BBPSC05 Create template create central/public templates and not personal ones (also if given to a basic user).
    1) In the Shopping Cart we can go to Old Purchase Order and Tempaltes and there we can select on status Personal Template but were can we create them?
    2) Additional question, how can we limit the availability of a public/central template to a certain users from some company or plant or ...
    Thanks

    Hi RD,
    1) for detailed explanations read my answer in this thread:
    SRM 4.0 Shopping cart templates
    2) such limitation does not exist in SRM, even if often asked by customers: the possibility to maintain templates centraly at a level between the public (every user can see them) and the private template (only the user can see them). So you would have to change the standard search logic on templates, and implement an additional serach criteria.
    Rgds
    Christophe
    PS: please reward points for helpful answers

  • How to create Personalized urls

    how to create personalized urls like firstname.lastname.abc.com with out making any individual sub-domain records in DNS

    Hey Ben,
    Yes it is possible to create dynamic URL's.
    1. Simply select the link from the table like so.
    SELECT PK_ID,
           NAME,
           LINK
      FROM IMAGE_INFO2. Edit the region and go to report attributes.
    3. Click the pencil to edit the link column.
    4. Scroll down to the column link section and enter something like 'View' as the link text. You can change that to whatever you like.
    5. Change the target form page in application to url.
    6 In the URL text object enter *#LINK#*. This will substitute #LINK# for the value that is returned by the sql statement in the LINK column.
    Seeing how you are linking to an image you could just do something like this:
    SELECT PK_ID,
           NAME,
           '<img class="mug_shot" src="' || LINK ||'" title="'|| NAME ||'" alt="'||NAME ||'" />' IMAGE,
      FROM IMAGE_INFOThis will generate an image tag and show the image inline with the record. Since this species a class you could use CSS in your header section to format the image to a standard size. Something like:
    <style type="text/css">
    .mug_shot{
       width:200px;
       height:200px;
    </style>Good Luck,
    Tyson
    Edited by: Tyson Jouglet on Jan 12, 2009 4:13 PM

  • RE: How to Create Personal number in SAP HR

    Hi Guys,
    I am new to SAP HR and i want to Create Personnel number in HR, can any one guide me the procedure.
    I went to PA30 and entered some 8 digit number and typed in infotype 0105 and subtype 0001 and clicked on create button, but it returns a error saying personnel number is not yet assigned.
    can any one tell me how to create a personnel number and assign it to the user.
    Thanks,
    SSSS

    Hi..
    Priyanka..
    As I have checked that Number range for generating a new Employee ID is already created in my system. Gone to TCODE PA04 and check that the number range is already created as below:
    Number         From Num      To Num           Current Num              Ex
    01               00000001          00069999                                        Tick as right
    02               00070000          00079999       70295
    03               00080000          09000000                                        Tick as right
    04               99990001          99999999                                        Tick as right
    05               09000001          99990001                                        Tick as right
    But when i am trying to give the personnel no. for maintaining master data in pa30 for actions for new hiring its giving error saying "could not find interval for number range 07". Here i am getting confused that what no. range i have to take?  or which no. range i have to choose?  or create new no. range? Please help me out..
    regards,
    Surendra

  • How to create personal site using csom ?

    I am using Office 365. I am trying to create personal site using following code
    private void createPersonalSite()
    try
    //using (SPSite site = new SPSite("Site URL"))
    //SPServiceContext context = SPServiceContext.GetContext(site);
    var targetSite = new Uri("https://test/sites/18thFeb");
    var securePassword = new SecureString();
    foreach (char c in adminPassword)
    securePassword.AppendChar(c);
    adminUserId = "[email protected]";
    var onlineCredentials = new SharePointOnlineCredentials(adminUserId, securePassword);
    ClientContext clientContext = new ClientContext("https://test/sites/18thFeb");
    clientContext.Credentials = onlineCredentials;
    //Get user profile
    //// Get the PeopleManager object and then get the target user's properties.
    //Microsoft.SharePoint.Client.UserProfiles.PeopleManager peopleManager = new Microsoft.SharePoint.Client.UserProfiles.PeopleManager(clientContext);
    //Microsoft.SharePoint.Client.UserProfiles.PersonProperties personProperties = peopleManager.GetPropertiesFor("domainName\\userName");
    //personProperties.UserProfileProperties.
    Microsoft.SharePoint.Client.UserProfiles.ProfileLoader loader = Microsoft.SharePoint.Client.UserProfiles.ProfileLoader.GetProfileLoader(clientContext);
    Microsoft.SharePoint.Client.UserProfiles.UserProfile profile = loader.GetUserProfile();
    Microsoft.SharePoint.Client.Site personalSite = profile.PersonalSite;
    clientContext.Load(personalSite);
    clientContext.ExecuteQuery();
    // Let's check if the site already exists
    if (personalSite.ServerObjectIsNull.Value)
    // Let's queue the personal site creation using oob timer job based approach
    // Using async mode, since end user could go away from browser, you could do this using oob web part as well
    profile.CreatePersonalSiteEnque(true);
    //clientContext.ExecuteQuery();
    catch
    int a = 10;
    The above code runs without any exception but does not create personal site. Can anyone please let me know what is the issue?  Can you please provide me any code or link through which I can resolve the above issue?

    Hi,
    According to your post, my understanding is that you want to create personal site using Client Object Model in SharePoint Online.
    The following code snippet for your reference:
    public void CreatePersonalSiteUsingCSOM(string tenantAdminUrl, string userName, string password, string[] emailIDs)
    using (ClientContext _context = new ClientContext(tenantAdminUrl))
    try
    SharePointOnlineCredentials _creds = new SharePointOnlineCredentials(userName, Utilities.StringToSecure(password));
    _context.Credentials = _creds;
    _context.ExecuteQuery();
    ProfileLoader _profileLoader = ProfileLoader.GetProfileLoader(_context);
    _profileLoader.CreatePersonalSiteEnqueueBulk(emailIDs);
    _profileLoader.Context.ExecuteQuery();
    catch(Exception _ex)
    throw;
    More information is here:
    http://blogs.msdn.com/b/frank_marasco/archive/2014/03/25/so-you-want-to-programmatically-provision-personal-sites-one-drive-for-business-in-office-365.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to create Personal Calendar

    Anyone know how make personal calendar. I mean is that if any user login into portal and view calender app. he/she can only view the activities that he/she created not the whole activities on the table.
    Thanks.

    Hi Viral,
    I created a report, for which i want to pass some user parameters like from_date and to_date. So, i want to create a value set which will show a calendar when we click on that, while we are passing parameter.
    for ex: in po_approval when we click on need by date a calendar appears , i want it the same way to come for my user defined parameter.
    --regards
    --raj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to create Personalized Submit button?

    Here is the situation,
    Made a large report in InDesign CS6 (interactive pdf) with the idea of a built-in feedback (the adobe forms/button tool for different questions).
    I wanted to use a button I created for submitting the form and submit the form to my forms central account for later data analysis and tracking. However, I cannot seem to locate a way accomplish this part.
    The only option I can see right now is build the report in InDesign, export to interactive pdf, import into forms central, then add their predefined submit button (which I think is very limited and rather ugly), and finally export back to interactive pdf for distribution.
    Any help would be greatly appreciated.
    Thanks!

    Hi,
    Sorry, currently FormsCentral does not allow you to customize the Submit button. 
    Thanks,
    Lucia

  • How to create a persona header bar that displays correctly in all resolutions - Firefox 20 Linux

    I'm in the process of learning how to create Personas for Firefox, and have already created one which I am using locally, but I ran into an unexpected behavior: If I create a header bar that is 3000 X 200 pixels as specified in the guidelines, only the right third or so displays in my browser when the theme is applied. To get this header to display "properly" (as I find aesthetically pleasing) I have to resize the header to 1280 X 85 pixels.
    Should not the header bar scale automatically, or do I need to produce a persona header at each possible resolution width to get it to display properly?
    For what it's worth, the footer appears to be displaying the left hand third, but this is not so objectionable in this case.
    A screenshot of the persona is available at http://www2.netdoor.com/~horus/Persona_2013-04.png.
    Thanks for any insights. I feel as though I must be misunderstanding something here.
    (I tried to post troubleshooting information the first time, but it overflowed the character limit...)

    Probably best to ask that sort of question, or research the answer in one of the AMO forums ('''A'''ddons '''Mo'''zilla). I think this one may be appropriate:
    * https://forums.mozilla.org/addons/viewforum.php?f=30
    ** I think you will need to register before posting
    I am wondering where are you doing the learning ?
    <br />There are also resources on MDN
    *https://developer.mozilla.org/en-US/addons
    Detailed discussion of the subject is probably off topic for this forum, but linking to resources or giving as imple answer is not so I hope some of the above are helpful. (You may even find someone else interested and knowledgeable posting a direct answer)

  • How to create BP organization from WebIC instead of BP Person.

    Hi,
       I am using the component IUICMDC/SearchAll component/view for searching accounts and as well as creating new accounts of type BP Persons(Partner Category:Person1).Now I want to create New account BP Organization(Partner Category:Organization2) from same IUICMDC/SearchAll.I have enhanced the component and IUICMDC/Searchll,I have provided another button for create organization.Appreciate if anyone can tell me how to handle the Create Organization event handler for creating BP Organization.
    Thanks and Regards,
    Sama.

    Hi Sama,
    Thank you very much for your reply.
    As you said to enhance IUICMDC, SearchAll component. I put a break point there and tested, it never
    stops when i create a Person/Organization/Group. But when i put a breakpoint in
    BP_HEAD_SEARCH/MainSearchResult it stopped. So that means how come Create Person/Organization/Group related to IUICMDC.
    Can you please explain a bit more specifically.
    Sama to be frank, I am new to this technical environment. I even searched steps to create an event handler but in vain.
    Can you please guide me, how to proceed further. It would be a great help from you.
    Thanks in Advance.
    Rohan

  • Create person in om

    Hi all,
    How to create  person in OM?Can Anyone tell me?
    Regards
    janhavi

    hi
    you can't hire but you can assign the person to that position.
    by this you will......you implement integration between Organizational Management and Personnel Administration.
    the person who is listed as an employee in Personnel Administration is assigned
    Regards,

  • New user created. How to create Central Person and Business partner

    Hi,
    I got a new users created in SRM 5.0 .how to create Central person and business partner.
    Without CP & BP we cannot work. please guide.
    Regards
    G.Ganesh Kumar

    HI GANESH
    As you aware , assign the user to organisation structure via users_gen , the system will create a BP and Central Person , Position and user for you.
    br
    muthu

  • How to create a special view for sharepoint list A and deploy this view to specific user personal view?

    How to create a public view for sharepoint list A and deploy this view to specific user personal view? Is that possible OOTB?

    Views cannot be exported or moved. Can you elaborate your requirement?
    --Cheers

  • How to create/choose a sales organisation?

    Hello everybody,
    i am working with mySAP CRM trying to create a marketing campaign. I am struggling how to create / use a sales organisation.
    What i can do is create a sales organisation (within "create organisation modell", sorry using the german version, so definitions are maybe not correct)
    When i now want to create a Product catalog, i have to choose a sales organisation, but it just say "no values found"
    So my question is, is there a need to activate my sales organisation, or is something else wrong.
    Hopefully some of you can help.
    Best regards
    Heinz

    Hi Heinz,
    Once you make changes to org model, if it has to be visible for applicaitons working on the model. You have to perform the following activity:
    1. Goto SAP CRM IMG Menu: Customer Relationship Management ->Master Data -> Organizational Management -> Tools -> Update List of Organizational Objects
    Execute the object for Sales Org.
    2. Also Check the consistency of the attribute assignments to the organizational units in the SAP CRM IMG Menu: Customer Relationship Management -> Master Data -> Organizational Management -> Tools ->Check Settings for  Attribute Maintenance
    3. Also, perform Org data settings check in the SAP CRM IMG Menu: Customer Relationship Management -> Master Data -> Organizational Management -> Tools -> Organizational Data Settings Check
    4. Execute Report HRBCI_ATTRIBUTES_BUFFER_UPDATE is used to buffer the attributes of organizational management objects. To enable buffering you have to maintain view T77OMATTR.
    Use transaction SE38 to execute the report.
    Try doing these, it might help you.
    regards
    Srikantan

  • How to create a business partner whose BP category is person in crm portal?

    How to create a business partner whose BP category is person in crm portal.When I use Partner and account management>Partner function in portal,I create a new partner,the partner category is default organization,can not change.
    But I what to create a partner with the partner category person,how can I do it?
    Is there any other special function to ceate a BP in portal matching the function  with T code Bup1(create BP)in sap gui?
    By the way,I have the whole privileges in portal and crm.
    thanks

    Hello,
    Standard CRM PC UI application offers three options when you push 'New' button: 'Person', 'Organization' and 'Group' (combobox appears). In your case, 'Person' should be selected.
    p.s. If you don't see combobox mentioned above, it could be security issue.
    Kirill

Maybe you are looking for

  • Why are my pages documents unable to be attached in gmail

    Since downloading Mavericks my Pages documents are unable to be attached in Gmail. Furthermore, in Final Cut Pro X videos that I attempt to post to You Tube fail because, according to error window, network connection was lost. None of this happened b

  • Setting encoding of file *name*?

    I'm getting file with names containing Latin-1 characters. The java.io.File constructors only take strings for the file names, so I can't set which encoding to use for the file names. Is there any way I can open such a file in Java? Thanks, -Lars

  • ACR 5.6 won't install

    We're trying to install ACR 5.6 on our 32 bit XP laptop.  We download the file, extract it from the zip file and run the installer.  The installer starts and within a minute we get the error message "Adobe Setup has encountered a problem and needs to

  • Error message at SC Header level

    Hello, I've made changes to check for approval notes to be mandatory when a shopping cart is rejected using the CHECK BAdI. The message doesn't come up when rejecting at header level, only when rejecting at item level is then that it comes up. Your a

  • Query on Integrated configurations(IC)

    Hi all, i am trying to create a integrated configuration for our(file-to-file). I am following the steps mentioned in the how to guide, [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/700058f0-b1a1-2a10-39a8-ab2627b87cfa?quicklink