How to Create Authorities / Resource - T-code Po13

I need to create a  new subtype and resource. When you access t-code Po13> select current plan> select a position> select Authorities / Resources> click create button>
This is where I need to add a new Subtype in the dropdown menu and add a new Resource
Thanks,

I have resolved this issue. Thanks to all that reviewed this message. Thanks very kindly.

Similar Messages

  • How can i add newly create infotype in t.code po13

    Can any one pl tel me how can i view newly created infotype in t.code PO13
    Edited by: Utkarsh M parikh on Mar 10, 2010 5:29 PM

    See:
    Mac OS X Automation,
    Automated Workflow Tips,
    Introduction to Automator tutorial, and
    a four-parter on Automation in Snow Leopard by Sal Saghoian:
    Snow Leopard Services,
    Services for iPhoto,
    Safari and WebKit integration, and
    Installing and using services.
    Finally, 
    Developing AppleScript Applications and
    Apple's Automator Developer Documentation

  • How to creat a resource file in blackberry playbook

    Hai,
    how to creat a resource file  in blackberry playbook.
    Regards
    Ratheesh R Kurup

    I think you will have to use PP for this.

  • How to create a sub head(code) in a catalog- for service notification

    Hi everyone,
    How to create a sub head(code) in a catalog- for service notification?
    Please guide with your valuable comments.
    Please guide its very urgent.
    Thanks and Regards
    Edited by: MPVash Vash on Oct 24, 2008 8:14 AM
    Edited by: MPVash Vash on Oct 30, 2008 7:38 AM

    Hi,
    Go to T-code QS41, give the catalog and code group and enter.
    U can click on the code after selecting the code group and create new  codes.
    In SPRO u should see which type of catalog is assigned to the notification type. This u can see in the overview of the notification type by selecting the notification type in SPRO.
    Regards
    Haricharan

  • Urgent!!help me! how to create UIInput component in code?

    hello all
    how to create UIInput component in code? my code as followed:
                        UIComponent nComponent = application.getComponent("Input");
                        if (!(nComponent instanceof UIOutput)) {
    throw new ClassCastException("error message...");
                        nComponent.setParent(parentComponent);
                        nComponent.setRendererType("Text");
                        nComponent.setComponentId(getClientId(context,nComponent));
                        UIOutput newComponent = (UIOutput)nComponent;
    newComponent.setValueRef("mymodel.propname");
    and input can get value from model,but can not update value to model?why?how can i do?

    Trying to understand the code snippet you posted. Could you please explain why you are casting your input component to output, then setting the valueRef on it ??
    -Jayashri

  • Any clues on how to create a resource object to push a user object into res

    I am working on a situation where I have to push a user object via a resource object and not having assigned to the user (in other words not linked to the user).
    any ideas?
    My approach is some thing like this
    IN the "user" object I do set all the attributes required per the resource definition
    Here is the code snippet for resource object creation:
    <Action name='create services resource object' process='Provision'>
    <Argument name='op' value='createResourceObject'/>
    <Argument name='object' value='$(user)'/>
    <Argument name='objectType' value='user'/>
    <Argument name='resourceId' value='UnixUIDServices'/>
    </Action>

    I by no means want to sound belittling... so don't take me that way..
    You need to understand the basics of files, and networks. You can't check if a file exists on another machine if you don't have a network protocol to communicate with. The reason \\ works under windows is because you are using an invisible (to you) network protocol. You probably know it as windows sharing. If your file were not shared under it's own name, that method wouldn't work (I'm assuming your entire drive is shared without a password... a horrible security flaw...but one thing at a time)
    You can use FTP protocol to check if a file exists. You can either send the raw text FTP commands through a socket connection in java, or you can use a freely available FTP java API to make it a bit more simple. You could also write a small java server on the other machine, and have it tell you what you need to know with a socket connection. In this way, you have created your very own network protocol.

  • How to create PR using T.code CJ20N

    Dear all,
    I am a MM guy, i want to test the scenario in my IDEAS system
    how to create a PR with CJ20N t.code,based on that i want to create PO to vendor please provide me detials steps .
    Please consider me as a Enduser
    if any documentation please send to svgk111@gmail
    points will be rewarded
    Regards
    venu gopal
    Edited by: venu kk on Jun 26, 2008 7:35 AM

    Hi Venu,
    Reply given by Rahul Tyagi is correct. Another way to get PR thru CJ20N is :
    Open CJ20N , Open your Project by clicking onto the Open Icon --> Click on the network --> Put the description of the PR in the description field > Put WBS element in the WBS element field by taking the columns to the right hand side.> Select the particular line item --> Click on to the Component Overview icon at the bottom --> Put your MM into the Material Field --> Put the requirement qty. -->Now select the item category as L for Stock Item and N for Non Stock
    item , then one POP UP window will appear --> Select " Third Party Order" --> Then put your customer number and press enter --> Save the document.
    Now , again open CJ20N and select the particular Activity ---> select the material component attached to that activity and on the right hand screen  you can see the PR number.
    Hope this will also help you
    Regards,
    Dhruv Kumar Malhotra

  • How to create a new company code and how to assign it to billing units?

    i am working on roll out project.....please help me in creating a new company code....

    Hi,
    You have raised this query in wrong Forum. Please raise ur query in the relevant forum.
    rgrds,
    Randhir Soni

  • How to create ForeignKey reference to code-first identity tables.

    Hi,
    I'm developing a web application using MVC 5, EntityFramework 6 with a Code-First approach.
    I have successfully created my tables dbo.AspNetRoles, dbo.AspNetUsers... etc, also I have created some custom tables for example a table that must have a relationship between the menus presented and the role of the authenticated user. What I want to add
    to my model is a property like this:
    [ForeignKey]public virtual AspNetRoles Roles { get; set; }
    But of course I have not an AspNetRoles class, because the framework auto generates the tables only in the SQL database, so my question is, I have to manually create this classes? How can I link them to the database tables, I think the issue may be deeper.
    If I can't do this maybe I should go back to SQL manual queries.
    Thanks!

    Hello Morral,
    >> What I want to add to my model is a property like this:
    If you have a separate model to store your own business model, what you have written should be almost ok, however, please take care the [ForeignKey] attribute is usually used to markup a property as an integer property to specify it as a foreign key:
    public virtual int RoleID { get; set; } [ForeignKey("RoleID")] 
    public virtual AspNetRoles Roles { get; set; }
    Or it would generated a combinatorial name.
    >> But of course I have not an AspNetRoles class, because the framework auto generates the tables only in the SQL database, so my question is, I have to manually create this classes?
    From your description, the AspNetRoles class seems to be a system class which is not exposed to user. If so, these classes already exists, you do not need to create them again.
    I notice that you are working with the MVC project, you could also ask this issue to the MVC forum:
    http://forums.asp.net/1146.aspx
    There are MVC experts will help you.
    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.

  • Hi experts how to create a z t.code for a report in a report group

    Hi Experts,
    I have to create a new z t.code a report which is in a report group and i have to add  that t.code in a custom menu.
    how to do it?
    Thanks in Advance.
    Regards,
    Hitu

    Hi Hitu,
    Go to SE93 and input your tcode and selection the option 'Transaction with parameters'.
    And in Default values, you have to give values like 'Report Name ' etc.  I am not sure exactly what values but you have to make entries here.
    Shylesh

  • Training&Event : How to create "sub"-resources ?

    Hello,
    I have a question from a customer.  They use Training&Event (SAP R/3 4.6c) and they defined training rooms as resources (transaction PSVR).  Problem : They can divide some training rooms into 2 or 3 smaller rooms. For example: Room 1 (40 seats) can be divided into two smaller rooms : 1A (25 seats) and 1B (15 seats).  They also defined those smaller rooms as resources (same level).  Actually, If they reserve room 1A for a business event, room 1 remain available for another business event at the same date.
    Could someone explain me how to customize resources and relations to allow this room structure, and to avoid double resource reservation ?
    Many thanks for your help.
    Philippe

    Hello Sharon,
    Sorry for late reply.
    Thank you for your answer.  It was helpful.  It's now a part of my solution.
    To identify room and sub-room, I create a relationship (A/B230 - is part of/contains)
    between the resources.  With the user-exit SEMIN-RESOC, I implement a new function module to check the occupation.
    I.e. If one sub-room is not available (directly allocate to a business event), I create a new record in table 'occupation' for the main room.  I determine the main room with relations A/B230.
    It works fine.
    Kind regards,
    Philippe

  • How to create Alternative resources with constraints?

    Dear Gurus,
             i have an scenario where i have more than one resource giving same product as output having different capacities.
    This resources capacity are utilised by  more than one product and each reource has it own priority to a particular product.
    example:
    i have 4 products viz, A,B,C,D
    and resources viz, RA, RB,RC,RD. the capacity is in nos of items per day.
    lets say Resource capacities are
    RA=150 nos ( can produce A,B,D)-priority to A than to B than D
    RB=200 nos ( can produce A,D)-priority to D than A
    RC=100 nos (can produce C, D)- priority is given to C, remaining cpacity can be used by product D)
    RD=200 nos (can produce B,C,D)-pririty to B than D than C
          how can i crate this scenario in APO..
    regards
    Kiran

    Hi Kiran,
    First of all you need to classify the resources RA, RB, RC and RD suitably so that when you CIF production versions (for the products) from ERP to APO, in the PPM appropriate alternate resources are created under modes.
    Then in each PPM you need to assign the priority for the resource (other way round from what you mentioned as your business requirement).
    So in the PPM for Product A the primary resource/mode would be RA but then alternate modes RB (suitable lower priority).
    Likewise in PPM for product B the primary resource would be RB and RD is alternate mode with lower priority.
    For Product C PPM - primary resource is RC with alternate resource RD having lower priority.
    For Product D it becomes complex - primary resource is RD but then probaly RC >> RB >> RA would be the order for alternate mode priority.
    Hope this helps.
    Somnath

  • How to create varient for transaction code

    hello expert,
    I created one Mod. pool program and transaction code.
    while run this tcode, Save button is disable and unable to create varient.
    could you please guide me hw to enable this save button and create varient. please
    with best regards
    srinivas

    Hi,
    You can create variants for transaction using transaction variants. That is meant to simplify these kinda scenarios.
    The tcode for transaction variants is SHD0. You can create variants as you wish. It is simple only. No coding required. Just take SHD0. Give your transaction name.
    Then press create variant.
    It will guide you.
    Regards,
    Renjith Michael.

  • How to create new logical function codes for Subtype

    Hi all
      I'm developing an WF that must be started when the user makes any change in a employee position. The problem is that this change can be made by many transactions, I know that it´s possible to do it by PA30/PA40, and today it´s made here using PP01. The Functional Consultant said to me that the better way to map all possible trasactions which made that kind of changes in an employee data is by adding new "Logical Funcion codes" (or Activities) for our specif subinfotypes.
      The table that contains such information is T77FLC. How can I add that new activities for a subinfotype, by a costumizing or just adding new entries in this table?
    Thanks in Advance

    Josie,
    You can configure your own workflow events based on HR objects/infotypes/subtypes/update type/activity type combinations using transaction SWEHR3.  Look at SWEHR2 for the standard events to get some idea of what you need to enter in SWEHR3.
    The relationship between the infotype and the matching business object type is held in SWEHR1.
    Regards,
    Jocelyn

  • How to create new logical function codes for Subinfotype

    Hi all
    I'm developing an WF that must be started when the user makes any change in a employee position. The problem is that this change can be made by many transactions, I know that it´s possible to do it by PA30/PA40, and today it´s made here using PP01. The Functional Consultant said to me that the better way to map all possible trasactions which made that kind of changes in an employee data is by adding new "Logical Funcion codes" (or Activities) for our specif subinfotypes.
    The table that contains such information is T77FLC. How can I add that new activities for a subinfotype, by a costumizing or just adding new entries in this table?
    Thanks in Advance

    Josie,
    You can configure your own workflow events based on HR objects/infotypes/subtypes/update type/activity type combinations using transaction SWEHR3.  Look at SWEHR2 for the standard events to get some idea of what you need to enter in SWEHR3.
    The relationship between the infotype and the matching business object type is held in SWEHR1.
    Regards,
    Jocelyn

Maybe you are looking for