How to assign a costcenter for specific wage type comparing infotype.

Hi experts,
In PA30 im entering the Personel Number, Infotype ,Wage type and pressing create.
In that im giving the Date and Amount then i save it.
What i need is i need to change the cost center(kostl)  according to the specific wage type and infotype.
that is i give inotype as 14 and wage type as 2003. for this im assigning the cost centre as 'XXXX'.
Im doing this manually, thru Edit - > Maintain Cost Assignment.
But my client needs to do the cost assignment automatically comparing with infotype and wage type.
Can anyone suggest me to do this.
Regards,
Vijay.R

Hi vijayanrs
As above pointed
Go to infotype 15 in creation mode (Enter the values)
On the Top near the overview button there is another button Maintain Cost Assignment (Control +F2)
Select the cost center for which this wagetype needs to go.
Thanks
RAjdeep

Similar Messages

  • How to maintian user exit for a wage type

    Hello Experts,
         I would like to maintain a user exit for a particular wage type in infotype 14. As the business rules of the client are specific...So, please help me with ur views...
    thanks

    Hi
    Check the LTA , I am not sure but still you can configure for the medical also .
    Now to lapse is again a issue.
    Well i think you can do it .
    Now how is the main thing , suppose i can give you one example you can get the better way your own.
    Now How you are going to put the values from IT 90--- to 15 are you going to put directly ?
    Now there is std prog pc00_mXX_remc  /  remp now check with this program which is suitable for you and add the codings whatever required in the the customized program which you using to put the values to IT15 .
    You got it now.
    It can be done .
    All the best.
    Manoj Shakya.
    <b>Reminder : Points should be given on answers.</b>

  • How to assign new vendor to existing wage type - urgent help needed!!

    Hi  SAP Gurus,
    I have a query for south African payroll-
    I want to assign an exiSting wage type (<b>i.e Transport 1234)</b> to <b>new vendor (600139)</b>The above wage type is aleady assigned to old vendor (600136)
    Hence from 1st June2007 onwards, the wage type will be assingned to new vendor, hence where we assign this wage type to new vendor?
    I have already done some changes in (IMG--SA payroll Reporting for Posting Payroll Results to AccountingActivities in the AC-SystemAssigning AccountsAssign Vendor Accounts , where I have assigned symbolic a/c to new vendor)
    Also, I have copied the wage type, Transport with new validity i.e 1st June2007.(IMG-SA payroll Activities in the HR-SystemMaintaining Wage Types--Define Posting Characteristics of Wage Types)
    Hence, I wanted to Know, how the wage type will post new vendor form 1st June 07?? is there any other way to addign the wagtype to new vendor??
    Hence, required your valuable inputs for same.......... )
    Points will be rewarded for same
    Tnkx & regds,
    Nithibabu

    Yes ,
    Assigning WT to new vendor through that i explain.
    just assign you WT to Symbolic account and further link will get created.
    Each employee is having its own vendor account if you don't have that then its very difficult to understand where the amount is going
    so when you make a payment to employee that payment is go and seat in to his/her vendor account so for that purpose you have to assign the employee id to employee vendor, so if you don't have relation between employee and vendor how you come to know that for which vendor the amount is paid.
    so for this purpose we need to assign the employee id to vendor.
    in SAP employee is treat as vendor and customer also.
    This setting is done by FI consultant.
    ask your FI consultant he will do for you.
    Vicky

  • I have purchased a ringback tone for my 5c but cannot figure out how to assign it to my specific phone? i have three phones on my contract. any suggestions?

    I have purchased a ringback tone for my 5c but cannot figure out how to assign it to my specific phone? we have three phones on our contract. any suggestions?

    Each line needs to have it's own login and password for managing ringbacks and ringtone purchases, and backup and cloud services.
    Register each number on the account for it's own username and password, and make the ringback purchase under that login. If it's already purchased under a different number, call customer service and they can straighten it out for you.

  • How can i open period for specific user in OB52.

    Hi Expert,
    How can i open period for specific user in OB52.  As 'Authorisation Group' field is there in OB52, how can i use this field to restrict the specific user to post for particular period.  How can i creat authorisation group and where can i assign it to the particular user...
    Please let me know?
    Thanks and regards,
    Sam.

    Hi,
    Here is the detailed process as outlined in SAP help.
    Procedure
    If only a limited set of users is to be able to post in a particular posting period, proceed as follows:
    Add the posting period authorization (authorization object F_BKPF_BUP) to the authorizations of the selected users. Assign an authorization group (e.g. '0001').
    Enter the account type '+' for the posting period variant to which the restriction is to apply. Enter the period(s) whose use is to be restricted in the first period, those which are available to all users in the second period, and the authorization group (e.g. '0001') in the last column.
    Examples
    A posting period can be successively restricted. If, e.g. 10 users have the posting period authorization with authorization group '0001', and 3 of these 10 users also with authorization group '0002'.
    If the period is only to be accessible to the 10 selected users the authorization group '0001' is entered in the posting period variant. Access can later be restricted to the remaining 3 users by entering '0002'.
    Thanks
    Venkata Ganesh Perumalla

  • How to assign the role for created user  thru dynpro App

    Hi All
    How to assign the role for currently created user from Webdynpro App.
    when i enter into the portal after creating the user
    i am getting the following messgae in the portal
    "No portal roles are assigned for this user.If this problem persists, contact your system administrator."
    how to assign the user defined role for the created user from dynpro App
    Regards
    Dhina  Kar J
    Edited by: Dhinakaran Jeyachandran on Feb 1, 2008 12:19 PM
    Edited by: Dhinakaran Jeyachandran on Feb 1, 2008 12:35 PM

    In the User Administration section of your portal find your newly created user and below select "Assigned Roles" tab then press <Modify> button and look through available roles on portal then just simply add and save. But if you want to do it programmatically see below:
    IUserAcountFactory userFactory = UMFactory.getUserAccountFactory();
    // IUser - read only but with IUserAccount is possible to set up user data
    IUserAccountSearchFilter userFilter = userFactory.getUserAccountSearchFilter();
    userFilter.setLogonUid("superuser", ISearchAttribute.LIKE_OPERATOR, false);
    ISearchResult sr = userFactory.search(userFilter);
    for (final Iterator i = new PrincipalIterator(sr); i.hasNext();) {
      IUserAccount user = (IUserAccount) i.next();
    Execute the same search for IRole (or IGroup if needed) get the unique id of them and use newRole(...) and addUserToRole(...) methods from IRoleFactory.
    Of course you don't need search for this principals if you know uniqueness of them. Use appropriate factories to get'em all by this unique id.
    All the features see in  [javadocs|http://help.sap.com/javadocs/NW04S/current/se/index.html]

  • How to assign a value for Unit of measure (like PC, KG...) in ABAP program?

    Hi,
        How to assign a value for Unit of measure (like PC, KG...) in ABAP program?
        I want to assign PC in a field to execute the program, like wa-ENTRY_UOM = 'pc'.
        But the system returen a message that "Unit of measure  is not convertible to stockkeeping unit PC"
        Could anyone tell me how to assign the value??
        Thanks!

    hi,
    first convert the quantity in the same unit  ( like in you case ST to PC )  by using FM :    MD_CONVERT_MATERIAL_UNIT
    CALL FUNCTION 'MD_CONVERT_MATERIAL_UNIT'
        EXPORTING
          i_matnr                    = matnr
          i_in_me                    = entry_uom
          i_out_me                   = out_uom
          i_menge                    = quantity
       IMPORTING
         E_MENGE                     = fp_l_v_quant
       EXCEPTIONS
         ERROR_IN_APPLICATION       = 1
         ERROR                      = 2
         OTHERS                     = 3.
      IF sy-subrc <> 0.
              give error message here
       ENDIF.
    bcoz in ur program somewhere the quantities etc are compared and there units may be different... so that is why it is showing such error.  so just convert convert the quantity in the same unit  .
    regards
    rahul
    Edited by: RAHUL SHARMA on Jun 17, 2009 9:31 AM

  • How to assign the vendor for Pipeline material like Oil,power etc.

    Dear All,
    Can anybody tell me , how tp  assign the vendor for Pipeline material like Oil,power etc.

    Dear,
    Create source list ME01 maintain vendor here if vendors are multiple.
    Create Info record ME11for vendor and material combination
    Regards,
    R.Brahmankar

  • How to assign a button for attachment and send the data through browser ?

    Hi friends,
    How to convert to browser ?
    how to assign a button for attachment and send the data through browser ?
    Thanking you.
    Regards
    Subash.

    Refer to
    How to create a text box in ascreen painter?
    where another user (venkateshwar reddy) has asked a very similar question...
    Jonathan

  • Create Wage Type in Infotype 0008 for Myanmar

    Dear Experts,
    I am trying to create wage types in Infotype 0008 for Myanmar, which is not one of the countries where SAP payroll is being delivered.  I am not trying to run payroll, but only to create the wage type so that I can maintain the salary information in Infotype 0008.  I have done much searches prior to doing this post and found that there are several other posts which are similar to mine.  However, as I could not get the answer that I needed, I am posting again here.
    I have gathered that for ECC 6.0, it is not possible to copy wage types between country groupings.  The advice that I had seen from other posts are:
    1. There are many countries where the wage types are not delivered.
    2. For country groupings where there are no SAP-defined wage type models, you have to create wage types from scratch in T512W using MOLGA 99 wage types as reference.
    3. The wage type groups should then be created for the country grouping in T52D5.
    4. Wage types are then assigned to these wage type groups in V_T52D7 of T52D7.
    5. You may also need to update the wage types in tables T511B, T512Z, T512J.
    My questions are:
    a. How should I perform Step 2 as mentioned above?  Specifically, how to I maintain table T512W?
    What I had done was to go to t-code OH11, select "Copy", select country grouping as "99" and selected wage type M020. Then I typed the customer wage type number as 1000 and also entered the wage type long text (as shown below).  M020 was successfully copied to wage type 1000 in country grouping 99.  However, how should I continue from here to copy this wage type 1000 to country grouping Myanmar?
    b. How can I maintain T52D5 as mentioned in Step 3?
    c. I have not been able to try for Steps 4 and 5 since I was not able to start with Steps 2 & 3. I will ask again when I have managed to do Steps 2 & 3.
    Very much appreciate all advice and suggestions to the above.....

    you can try through fast entry screen  and update the amount in infotype.

  • PRRW - Displaying separate line items for separate Wage Type / tax Code

    Hi ,
    In the Travel trip PR05 after the trip is setteled, the trip no. need to run with the Posting run through Tcode: PRFI. Then we need to Run the Created Document using the Tcode: PRRW. My Requirement is that for some WAGE TYPE which are assigned with the Expense type which are assigned to the Same GL Account. While posting in FI we need to get the Different line items history for diffrent Expense type even though the expense type are assigned for the same Account Number.
    For Eg:
    EXPENSE TYPE: BUSB settelment amount -1.53
    BUSL settelment amount -2.67
    VERM settelment amount 50.00
    After Posting i need to get as Same Doc Number with different line items in the FBL1N while posting.
    I found the BADI for the same TRIP_POST_FI, but to get the soultion to my requirement i need the help on that.
    Please provide me with the sample code so that i can get over the issue.
    Best Regards
    Bhavana

    could u please share on how u found the resolution for this.
    It will be a great help.
    thank you,

  • Search For Specific File Type (eg .txt)

    I know how how to find files in a folder using Java but how do you search for specific file types. I am looking only include files with the extension .txt in my search.

    Cheers. I already looked at that. Got a program that parses a XML and had a play about with it. Can print the contents of tags in my XML. Its just that im trying to parse my XML and have the contents of the starts_with tag to appear in startsWith(or a variable to which this has been assigned) and the contents of the extension tag to appear in endsWith. Totally clueless on how to go about it.
    Below is my class. Would be greatful if you have any ideas.
    import java.io.File;
    public class FindLatestFile {
                 public static File getLatest(File thisDir){
                         long latestModDate = -1;
                         File latestFile = null;
                         File[] fileList = thisDir.listFiles();
                         for(int i=0; i < fileList.length; i++){
                             File file = fileList;
         if (file.lastModified() > latestModDate & (file.getName().startsWith("A") & file.getName().endsWith(".txt"))) {
         latestModDate = file.lastModified();
         latestFile = file;
                             return latestFile;

  • Restrict display and posting for specific document types

    Hi,
    Is it possible to restrict display and posting for specific document types? I want to restrict authorization to SM document type in FS10N, and KSB1 tcode. Please help
    Best Regards,
    KIRAN.

    Sandipan Choudhury wrote:
    FS10N checks for this object ("Check" in Su24) but when user doesnot has this authorization object he gets access to all doc types and when the user is restricted to specific doc types (object present in user's authorization) he will get access to only those doc types. This is how the authorization check for F_BKPF_BLA works, in other words this authorization is Optional.
    Sorry, but this is not true and seems to be an invention of how you would like it to work...
    The coding works like this (generally):
        if sy-subrc ne 0.
          select single * from  t003 where blart = postab-blart.
          check sy-subrc = 0.
          blrtab-blart = t003-blart.
          blrtab-brgru = t003-brgru.
          append blrtab.
        endif.
        if blrtab-brgru ne space.    "<--- important condition!!
          authority-check object 'F_BKPF_BLA'
               id 'BRGRU' field blrtab-brgru
               id 'ACTVT' field actvt.
          if sy-subrc ne 0.
            rcode = 4.
          endif.
        endif.
      endif. 
    The "optional" aspect is whether or not the document type has an auth group on it in T003, failing which the check is suppressed.
    If it reaches the check, then it found something and then checks that selected value.
    Moral of the story:
    --> Do not believe SU53.
    --> Do not make assumptions from ST01 traces.
    --> Read the documentation carefully.
    --> Read the code to see how it really works (you can jump to the coding location from the trace).
    Cheers,
    Julius

  • Can we maintain differant Symbolic accounts for One Wage type?

    Hello,
    May you plz, clarify my doubt? Can we maintain differant Symbolic accounts for One Wage type?

    HI,
    Yes u can maintain any no of symbollic accounts for one wagetype...
    A wage type can be assigned to several symbolic accounts. This is usually the case for wage types that should be posted as both expenses and payables (for example, wage types for the employer’s contribution for social insurance).
    U can also check this in link...
    http://help.sap.com/saphelp_47x200/helpdata/en/f3/21e091110b4e46983af70d772a40b2/frameset.htm
    Hope this solves ur issue
    Reward if helpful
    Asha

  • How to create a macro for a planning type in MC8b transaction

    Hi,
    I am presently working for a product allocation demand, which have a information structiure with characteristic and key field.
    the characteristic are production allocation quantity, incoming order quantity, and open order quantity.
    i have created a planning type in which the data updation takes from the excel file to the planning type in mc95.
    but i need to create a macro for this planning type .
    can any body give the details information how to create a Macro for a planning type.
    Thanks and regards
    GopalKrishna

    Dear Gopal
    May be the link would be helpful to you.
    [Planning Types and Macros|http://help.sap.com/saphelp_46c/helpdata/en/a5/631cc443a211d189410000e829fbbd/frameset.htm]
    Drill down the left tab once you opened the link, for more information.
    Thanks
    G. Lakshmipathi

Maybe you are looking for

  • Can't start compiz

    I have compiz set to start in my .xinitrc When I start it I have a mouse cursor I can move around, and that's it. I can't find any way to start programs or do anything.... I get that I have done something wrong....but what? I can't find any documenta

  • I can't see my pictures

    Hi, I backed up everything this morning to my icloud. I logged in via my comptuer to icloud and I do not see an icon for photos. Where are my pictures?

  • Preview weirdness...

    Preview has always been quirky for me.  Manipulating PDF documents with Preview is simply tedious and unpredictable.  I was simply trying to add a page to a PDF document in Preview. Opened two PDF's in Preview.  Tried to drag one page thumbnail from

  • The program can't start because glut64.dll is missing

    I have reinstalled the program twice and get the same error message.

  • Why the time and date is not correct when I save a waveform in txt format, using Labview 6.1?

    I am using Labview 6.1 and my operation system is Windows 98. The date/time properties is configured in the Windows (time and date in the control panel is correct). I generated a waveform using Basic Function Generator.vi and saved this using the Exp