Add a new action type

hi experts,
i want to add a new reason of action type while using pa40/pa30.. can anyone help me with the steps for the same.
Regards.

Hi
u can Go through this
PM>PA>Customizing procedure>action>Define info groups>User group dependency on menus and info groups
Enter what action u want to add
Again go through this Menu path
PM>PA>Customizing procedure>action>Set up personnel action is there ,Add ur action here also
Thanks

Similar Messages

  • How to add a new payment type

    Hi,
    We need to add a new payment type in Oracle Applications 11i and I could not find the required setup steps. The Form Name is : APXPAWKB
    The user's navigation is as follows:
    Payables super user responsibility->Payments -> Entry ->Payments:Type:
    There is a LOV with Manual, Quick and Refund and we need to add a fourth one as Elses.
    How can we do this?
    Thank You...

    Hi,
    You cannot define a payment type as that is based on a lookup defined under the navigation Setup>lookup>Payables.
    This look up access level is System whihc implies it does not allow user level values to be defined.
    So you have to use the available payment types,
    Thanks
    Manish Jain.

  • How to add a new data type of oracle to SIM(7.0)

    Hi........
    I need to add a new data type(CLOB) to SIM of oracle .can anyone tell me how to modify or add this new data type.
    Any pointers to this will be highly appriciated.......
    thax in advance...

    Hi,
    Easiest way is to download the table eg into an Excel table (if possible) or text table. Drop the table from the database. Build your table with the new key field. Build the database table again and fill it.
    You can do it also over the database into a new table. Drop the old one. Build the enhanced one and fill it. Afterwards drop your (temporary) table.
    Maybe there are other ways, but this works.
    Success,
    Rob

  • Can I add a new Employee Type through DIAPI 2005?

    Hi as part of my addon setup I would like to automatically add a new Employee type to the OHTY table. 
    Is there an object in the DI that I and can use to do this? I have had a look but can't find anything, but wondered if there is a generic object that is used update simple tables such as this one?
    Thanks,
    Daniel

    Hi,
    And Have you find one answer for this problem ? because I have also this problem and I ask myself for others table.
    Thanks
    Stéphane

  • Is it possible to add a new Asset type in OER

    Hi,
    I need to know whether it is possible for me to manually add a custom asset type to the already existing list of Asset types in OER.
    There is no specific asset type for BPA. I need to create an asset type for BPA.. Any suggestions would be helpful.
    Thanks.

    Thank you Lalbuque for your reply..
    I have found the solution myself..
    It can be done from "Asset Editor" Application.
    Actions menu -> Manage Types . A new Application "Type Manager" opens. Click on File -> New option and we can create our own asset types..

  • How to add a new output type in sales order header via ABAP program

    Hi All,
    I have to add new output type (ex Z001) in sales order header via an ABAP program. please let me know how to do this.
    Thank you all in advance.

    Hi,
    You can use the FM ..RV_MESSAGE_UPDATE..
    Thanks
    Naren

  • How do i add a new data type in this Bubble sort

    i have tried to i add a new String data type (String publisher) but my program has an error.
    please show me
    // libmainsys.java
    // demonstrates bubble sort
    // to run this program: C>java BubbleSortApp
    class ArrayBub
    private String[] a; // ref to array a
    private int nElems; // number of data items
    public ArrayBub(int max) // constructor
    a = new String[max]; // create the array
    nElems = 0; // no items yet
    public void insert(String value) // put element into array
    a[nElems] = value; // insert it
    nElems++; // increment size
    public void display() // displays array contents
    for(int j=0; j<nElems; j++) // for each element,
    System.out.print(a[j] + " "); // display it
    System.out.println("");
    public void bubbleSort()
    int out, in;
    for(out=nElems-1; out>1; out--) // outer loop (backward)
    for(in=0; in<out; in++) // inner loop (forward)
    if( a[in].compareTo(a[in+1])>0 ) // out of order?
    swap(in, in+1); // swap them
    } // end bubbleSort()
    private void swap(int one, int two)
    String temp = new String(a[one]);
    a[one] = a[two];
    a[two] = temp;
    } // end class ArrayBub
    class libmainsys
    public static void main(String[] args)
    int maxSize = 100; // array size
    ArrayBub arr; // reference to array
    arr = new ArrayBub(maxSize); // create the array
    arr.insert("Manuel"); // insert 10 items
    arr.insert("Portillo");
    arr.insert("Kike");
    arr.insert("Pedro");
    arr.insert("Mono");
    arr.insert("Cuca");
    arr.insert("Zoila");
    arr.insert("Karina");
    arr.insert("Joto");
    arr.display(); // display items
    arr.bubbleSort(); // bubble sort them
    arr.display(); // display them again
    } // end main()
    } // end class libmainsys
    /////////////////////////////////////////////

    nope i mean like this
    // libmainsys.java
    // demonstrates bubble sort
    // to run this program: C>java BubbleSortApp
    class ArrayBub
    private String[] a; // ref to array a
    private Sting[] publisher;
    private int nElems; // number of data items
    public ArrayBub(int max) // constructor
    a = new String[max]; // create the array
    nElems = 0; // no items yet
    public void insert(String value) // put element into array
    a[nElems] = value; // insert it
    nElems++; // increment size
    public void display() // displays array contents
    for(int j=0; j<nElems; j++) // for each element,
    System.out.print(a[j] + " "); // display it
    System.out.println("");
    public void bubbleSort()
    int out, in;
    for(out=nElems-1; out>1; out--) // outer loop (backward)
    for(in=0; in<out; in++) // inner loop (forward)
    if( a[in].compareTo(a[in+1])>0 ) // out of order?
    swap(in, in+1); // swap them
    } // end bubbleSort()
    private void swap(int one, int two)
    String temp = new String(a[one]);
    a[one] = a[two];
    a[two] = temp;
    } // end class ArrayBub
    class libmainsys
    public static void main(String[] args)
    int maxSize = 100; // array size
    ArrayBub arr; // reference to array
    arr = new ArrayBub(maxSize); // create the array
    arr.insert("Manuel"); // insert 10 items
    arr.insert("Portillo");
    arr.insert("Kike");
    arr.insert("Pedro");
    arr.insert("Mono");
    arr.insert("Cuca");
    arr.insert("Zoila");
    arr.insert("Karina");
    arr.insert("Joto");
    arr.display(); // display items
    arr.bubbleSort(); // bubble sort them
    arr.display(); // display them again
    } // end main()
    } // end class libmainsys
    but i have no idea what to do next

  • Extending DefaultEditorKit (add a new action to it)

    Can any one point me in the right direction on how to add a custom action to DefaultEditorKit? I just learned how to use the copy, paste, and cut actions and I would like to add my own custom actions. I know a few people on this forum have done it but i cant find much documentation. Thanks

    Thank you camickr for your response. Thats a good suggestion that you give for some instances. I should probably have explained more about why I wanted to extend DefaultEditorKit. The reason I want to extend DefaultEditorKit is so that I can add an action to insert an image. Then add that action to the edit menu like they do in [this example|http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html] with the copy, paste, and cut.
    I already know how to add an image to a JTextPane but to have an action in a menu insert the image I would need to know which textpane in my program has the focus. I have allot of text panes in my program that will need this functionality so it looks really strange to put a button next to each one to insert an image. That is why I wanted to add this functionality to a menu but then keeping track of which text component has the focus is necessary. So then I got the idea to add it to an editor kit and then add that action to the edit menu. What do you think of this? Bad idea? Is there a better way?
    I never realized that I could look at the source for java classes online like that. I am a new to java and kinda new to actually using OO. I found the source for StyledEditorKit here http://www.java2s.com/Open-Source/Java-Document/JDK-Core/swing/javax/swing/text/StyledEditorKit.java.htm . Is that a the best place to look for JFC sources or is there a better sight to find sources?
    Thanks for your help.

  • To add a new condition type in Sales order programatically

    Hello,
    I want to add a condition type (ZXXX) with an amount in sales order programatically.
    I want to add the condition type in the item.
    I am able to add the price (amount) and condition type (ZXXX) manually in the sales order through t code crmd_order.
    I know it can be done though FM crm_order_maintain.
    If you can give the code for the same it be very helpful.
    is there any other FM do this operation?

    Abilash,
    Please check the following FM - CRM_ISAI_BASKET_SETITEMS_MPRIC. This FM does add pricing condition manually. Use this function module only as a template for your requirement.
    Later use CRM_ORDER_MAINTAIN to update the business transaction.

  • Add new action in toolbar of project document

    Hello All,
    I have checked the toolbar button Actions in Project document and it has only the following options:
    Create Auction
    Create agreement
    Create RFx 
    I've seen that when you use any of the previous actions for a Project, the new document created have the reference to the previous Project in the document link tab.
    I want to create a new action type "Create Project" to create a new project with the reference of the previous Project, but the problem is that we don´t know how to add a new action.
    Are you aware on how this could be done? What we have seen is how to create a “ToolbarScript”, but this is not exactly the same.
    Best Regards.

    Hi Fakouhi,
    Thank you for the quick response, unfortunately I couldn’t use your suggestion due I need to create a new project with different “Project Type”,with the duplicate functionality the new Project is created with the same Project Type than the previous Project.
    Is not possible create a similar customization like “Create RFx” for add the new action “Create Project” ?
    Best Regards,
    Fran.

  • VSM 6.3.X add new Camera Type

    Hi,
    I am unable to add a new camera type in VSM 6.3.1. I updated the axis driver pack to dp_axis-1.3-919d from the VSMS but the supported IP Cameras are not showing when I try to add IP Camera.
    Can anyone support me on this? Is there a procedure that I am not following?
    Thank you.

    This driver pack did not come with VSM 6.3.1 rather it is an upgrade driver pack. One of my customer is already running this pack successfully in their other sites with VSM 6.3.1.
    Now, I am trying to install this driver pack with VSM 6.3.1 in one of the new site deployment but it is not showing up in Camera Type. You can check the attached snapshots for the sites showing the driver and the other sites in which even after the installation the driver is not available.
    If you can guide towards upgrading driver pack in VSM 6.3.1 that would be great as I can't seem to find where am I going wrong.
    Thanks.

  • How to create a new wage type in IT0014 and assign the GL?

    Dear Gurus
    Please guide me about Creating of new wage Type in 14.
    My client wants to add a new wage type says:-1HRR ( Honorarium)  &  assign  the same to  Training Expenses GL account and order number. How to do it. Please guide.
    Regards
    Vikas K Sharma

    To copy a standard WT and assign a new name with the same attributes and characterstics:
    IMG > Personnel Management> Personnel Administration> Payroll data> Recurring Payments and Deductions. Copy any standard Wage Type.
    Check assignment of WT to a Symbolic Account :
    (The WT will inherit the Symbolic account from the copeid standard WT)
    Go through SM30 to Table V_T52EL_NOFM. Make neccessary changes to the Symbolic account, if needed.
    To create a new Symbolic Account and assign it to the WT:
    Payroll --> Payroll (country) --> Posting to Financial Accounting --> Activities in the HR-System --> Employee grouping and symbolic accounts --> Define symbolic accounts
    To assign the WT to the new symbolic account (same as table V_T52EL_NOFM):
    Payroll --> Payroll (country) --> Posting to Financial Accounting --> Activities in the HR-System --> Wage Type Maintenance --> Define WT posting attributes
    To assign a symbolic account to a G/L or Check the assignment of Sym Acc to G/L:
    Payroll --> Payroll (country) --> Posting to Financial Accounting --> Activities in the AC-System -->Account Assignment --> Assign expense accounts.
    Hope this helps.
    Soujanya.

  • IMG settings after creating new output type for a purchase order smartform

    Hi all,
    Do I need to make changes in IMG after creating a new output type in NACE for a purchase order smartform?
    I have customized a purchase order smartform according to the requirements and copied an existing output type and assigned the custom form name.
    When I am trying to create a purchase order to test it, I am going to the message tab for assigning the output type and if I press F4 on the output type field or if I give the copied output type there, it says output type is not defined.
    Do I need to make any changes in SPRO?
    Regards,
    Anik

    Yes. You have to add the new output type to the proper message determination schema.
    Go to the IMG and select Materials Management -> Purchasing -> Messages -> Output control -> Message determination schemas -> Define message schema for purchase order -> Maintain Message Determination Schema: Purchase Order.
    Select the proper schema, then Control Data and insert your new output type into the schema (eventually with any requirement that may be necessary... you probably want to use 101 like in case of the regular NEU message).
    This should do it.

  • PDR Steps to create new object types

    We set a demo instance of the PDR tool here and it all works well.. I would now like to add purchase info records as an object that can be sequenced with all other master data like materials, material boms, variant class and ecms in a config folder. I know that new function modules would need be created but was wondering there was a document with steps expaining the entire procedure for doing this or if any other company has yet tried this with the tool.. It allows for the creation of new objects for the packet but would like to have some sort of guideline to follow if possible.

    Hello Mr Thorne,
    I knew there are some SAP Consultants that know how to implement a new object type. And there is a project together with the german army that expands the PDR with several object types.
    But you have to pay attention. The PDR consists of two main parts . The FOX - Frame work of Explosion and the UPS - Uniform Packaging Service.
    Creating a new Object type that can be "shipped" has to be in the UPS - BUT - if you are using the transaction CRWBD that new object type will not be found if you are exploding a baseline. That is the task of the FOX.
    And to add a new Object type into the FOX would be harder than add it into the UPS.
    I think the Consulting solution, uses a FOX exit to add that object into the UPS after the FOX-Run.
    I you need further information please contact SAP consulting (PLM).

  • New file type for XCode

    Hi!
    I want the XCode to apply C syntax coloring to the .nc files, which are not recognized by it. There are settings to change coloring schemes for known types, but i couldn't find anything to add a new file type. Each time I open a .nc file, I need to select the syntax coloring scheme manually..
    Anybody has any idea on where to find settings for that?
    best,
    Onur.

    I ran into this same problem just yesterday and I was glad to even find out that I could temporarily fix the problem by relaunching the finder. It also happened to my while I was renaming files. It allowed it for a few files and then all of a sudden, nothing. I couldn't type, or do any key commands with anything related to the finder, although all of my application files were fine.
    I am clueless as to how to permanently fix this problem, although i am thankful to read on how to relaunch the finder to fix it for a bit.
    I'll keep checking back to see if some guru stops by with the answer.
    Thanks for posting!

Maybe you are looking for