Edit the 'Employment status' field in IT 0000

Hi,
Normally the Employment status is greyed out and not editable when we are running Personnel actions . It defaults Active, Inactive , Withdrawn as per the settings that we have made.
Is there a standard way that this field is editable when we are running the Action , for eg. org reassignment. ..
BR
SK

Hello,
This is not the standard practice from SAP to make the field Employement Status as editable. the value is configured when you configure the personal actions in Table T529A
BR
Sonu Gupta

Similar Messages

  • Making Employment status field editable in Actions infotype

    Hi All,
    Can we make the Employment status or Customer specific status editable in Actions Infotype 0000?
    I tried doing that in 'Change Screen modification' in IMG, but it isn't working.
    Please provide your inputs.
    Thanks!

    Hi,<br>
    It is not possile to do it.
    Each action is assigned the three status indicators STAT1 (customer defined), STAT2 (employment), STAT3 (special payment) in the customizing system.
    When a personnel action record is created, the system automatically fills the Customer defined, Employment and Special payment fields if the action affects the employee's status.
    The first record of the Actions infotype is assigned the status specified in the customizing system. All other records
    have the same status indicator as the new personnel action if this is not BLANK in the customizing system.
    have the same status indicator as the previous record if this is BLANK in the customizing system.
    This applies to all three indicators.
    Can you let  us know the business need or requirement to do it??
    Good luck<br><br>
    Thanks,
    Amosha
    <br><br>"Known is a drop & unknown is an OCEAN!"

  • Problem with Employment Status in Actions Infotype (0000)

    Hi All
    I am trying to upload the Pernr details for Actions (0000) Infotype in PA30.
    I am facing a strange issue, where even though i am passing '1' (INACTIVE) to the employment status (STAT2)field, it still takes the status as '3' (ACTIVE). Also, even though i am not passing anything to the Special Payment (STAT3) field, it still takes it as '1' (Standard Wage Type). What may be the reason for this?
    I am using the BAPI_HRMASTER_SAVE_REPL_MULT for HR Master Upload and here are the values i am passing to the BAPIHR0000 table:
      w_bapihr0000-obj_id = '00002400'.
      w_bapihr0000-infotype = '0000'.
      w_bapihr0000-to_date = '99991231'.
      w_bapihr0000-from_date = sy-datum.
      w_bapihr0000-changed_on = sy-datum.
      w_bapihr0000-changed_by = sy-uname.
      w_bapihr0000-action_type = '01'.
    w_bapihr0000-employment_status = '1'.
      APPEND w_bapihr0000 TO t_bapihr0000.
      CLEAR w_bapihr0000.
    And this itab t_bapihr0000 i am passing into the BAPI.
    please help asap.
    Regards
    Harsh

    Action Type 01 u r passing, please check the config ACtions Table, what is the Status Maintained for that Actin Type.
    Table: T529A
    Regards.
    ...SAdhu

  • Can we remove the default status field from OIM

    hi,
    even when my i am not mapping any field to the OIM status field , it is taking Active as default value. i dont require that field so is it possible to remove the default status field of OIM.
    i am using database GTC connector for trusted recon.

    User will always have a certain status like Active, Disabled etc, so even when you doesn't map it to any attribute the OIM solution calculates it with the help of the user's Start Date, End Date etc.
    A user is bound to have a status.
    Thanks
    Sunny

  • P0000-STAT1 (Customer Specific Status) field on Infotype 0000

    Hi All,
    I have a requirement on Customer specific status field on infotype 0000,  Where I should be able to maintain that field through PA40.
    As this field is standardly delivered as output field only through SAP I am unable to force that field as input field in module pool.
    did any one used this field before as input field in IT0000? I couldn't find OSS note on this issue.
    Please let me know if any one has solution on this.
    Thanks,
    Sang

    Hello sangarshitha
    try using field symbol ,
    asssign field symbol to p0000-stat1
    like
    field-sybmbols : <fs> type p0000-stat1.
    ASSIGN ('(MP000000)PSPAR-STAT1') TO <fs>. "check table pspar in debug wether field stat1 is there else go for P0000-stat1
    <fs> = "assign what you want to here.
    write this in PBO of User Exit/Badi for IT-0000
    reward points if helpful

  • Edit the description metadata field.

    Is it possible to edit the 'description' field through a script.  I've been trying off and on all day and coming up dry. here is what i have now thanks to some script i've found from John Beardsworth (thanks, btw!!) that i managed to narrow to my needs...
    #target bridge
    if ( app.name == "bridge"  && app.version[0] == '3' )
    // Create main menu item
        var menu = new MenuElement( "menu", "Filename to Metadata cart", "at the end of Tools", "g2mMenu");
        var g2tCommand =  new MenuElement("command", "click here", "at the end of g2mMenu");
    //Submenu for filename to iptc title
        g2tCommand.onSelect = function(m)
            var getFolderChildren = true ;
            var filesOnly = true ;
            var thumbs = app.document.selections;
            for ( var i = 0; i < thumbs.length; i++ )
            { var thumb = thumbs[i];
               var md = thumb.synchronousMetadata;
               md.namespace ="http://purl.org/dc/elements/1.1//";
               md.Description= "hello World";
               Window.alert ("Done " + i + " records");
    //closing brace
    I simply cannot get it to change the info in the description field.  It even willl give me the alert saying it did  it and nothing will be there.  this works fine for Title and Headline, but not description... any ideas?
    obivously this is a simpler version of what i actually want to write into the description field, otherwise i wouldn't need a script.  But if i can get this to work, i can get my real needs to work as well.
    thansk.

    I think your main problem is that you are using the wrong property name. Try "description" and not "Description." XMP property names are case sensative.
    The following script works for me:
    #target bridge
    // Where is this script?
    var curFolder = new File( $.fileName ).parent;
    // Make a simple JPEG file here for the test
    var somePixels = new BitmapData( 300, 200);
    var jpgFile = new File( curFolder.fsName + "/test.jpg");
    somePixels.exportTo( jpgFile, 100, true );
    // Make a thumbnail
    var thumb = new Thumbnail( jpgFile );
    // Get the Metadata
    var md = thumb.synchronousMetadata;
    // set the namespace
    app.synchronousMode = true;
    md.namespace = "http://purl.org/dc/elements/1.1/";
    // set the property
    md.description = "Testing 1,2,3";
    // Make sure the Bridge UI sees the change
    thumb.core.metadata.cacheData.status = "bad";
    If I change my script to use "Description" then the script sets a new, bogus property "dc:Description" in the XMP.
    I recommend always keeping a copy of Part 2 of the XMP Specification handy when writing any scripts that modify metadata. Double check the spec for the correct namespace URIs and property names. Get the spec here: http://www.adobe.com/devnet/xmp/
    -David

  • How to Query the Employment Status of an Employee in Time Evaluation

    Hi SAPGurus,
    Does any one have an idea as to how to query an employee's Employment Status in Time Evaluation.
    Looking forward to hear from you soon.
    Regards,
    Aslam

    Arun,
    Thanks, for your reply. I was looking for a way to query the Field: P0000-STAT2 ie: employment status in Time Evaluation. I am aware of the way I can query an employee's Time management status ie: P0007-ZTERF. Would be great if you know a way to query it in Time Evaluation.
    Thanks Again.
    Regards,
    Aslam

  • How to edit the Step status text

    For example, I want to change the status result which is produced on a report from 'Passed' to 'GO' or 'Failed' to 'NOGO'. I know that you can edit the report colors for the result text in the Report Options menu, but I can't seem to find a way to edit the actual result text. I've also looked in the horizontal.xsl stylesheet to no avail.

    I would start with modifying the report header. In the sequence ModifyReportHeader look at the parameter ReportHeader. It contains the UUT Result, usually "Passed" "Failed", "Error" or "Terminated".  Replace that part of the string accordingly.

  • How can you edit the Email Address field in Mail without deleting the account?

    I have a few accounts and the email address domain of my work account has changed but it seems to be one of the fields you cannot change.
    On my iPhone it was simple ... you can just edit the field and it works.
    My Email comes in fine but mail auto selects accounts based on the domain of who you are emailing and now that it has changed its not doing that anymore.

    If you're running iOS 6, to change your iCloud ID go to Settings>iCloud, tap Delete Account, then sign back in with the new ID.  This deletes the account and your iCloud data from your device, but not from iCloud.  Provided you are signing back into the same account, your iCloud data will reappear on your device when you sign back in.
    To avoid losing photo stream photos, save them to your camera roll (if not already there) before deleting the account.  To do this, open your my photo stream album, tap Edit, tap the photos, tap Share, then tap Save to Camera Roll.

  • Is there any way to edit the pdf text field design?

    I dont want a black frame around text frames when a form is printed...
    In Livecycle you could define various properties (like sunken box etc.), but not in FormsCentral?

    If you have Acrobat Pro you can edit a pdf form file to have the various field border properties that you describe.  You would create the form in FormsCentral and save as PDF.  Then you would do a Save a Copy on the form.  Open the copy and select Tools->Form->Edit.  You can then select the fields and set the border in the Properties dialog in the appearance tab.  Once you have the form looking the way you want you would then re-import the copy into FormsCentral and send the file out to the world.

  • In J1IEX  to edit the excise invoice field

    Hi,
    I want to post the vendor Excise invoice through J1iex.
    but during Good receipt , by mistake Invoice number is entered wrong.
    so I want to to change the excise invoice number in j1iex during posting.
    but this field is grey out, so how i will make it editable.
    i am waiting your reply.
    Thanks
    Shital D

    Hi Sheetal,
    Note number 1285986 is already applied in ECC 6.0 . We have to revert back of some code from the note. Please call a ABAP guy and give the same guideline as I mentioned below.
    Comment this code from include LJ1IEXKS4 from line number 3819 to 3823.
                IF lv_chflag = 'N'.                                "Note 1285986
                  APPEND 'J_1IEXHEAD-EXNUM'       TO lt_fields.    "Note 1285986
                  APPEND 'J_1IEXHEAD-EXDAT'       TO lt_fields.    "Note 1285986
                ENDIF.                                             "Note 1285986
              ENDIF.                                             "Note 1285986
    Thanks
    Sandeep Jain

  • Prevent User from Editing the Credit Limit Field

    Hi
    I would like to find out if there is a way to restrict user that has full authorisation to BP Master Data from changing a specific field on the Master Data.
    The scenario is that we allow an user to edit BP Master Data but would like to prevent the user from changing the credit/committment limit fields as it has financial risk and only managers can do so.
    If there any way within the stand SAP authorization that can achieve this requirement?
    BR,
    Jimmy

    Hi Jimmy,
    This would not be achievable through standard authorization.  You may try SP_Transaction_Notification instead.  Search within forum, there are many threads discussing this SP.
    Thanks,
    Gordon

  • Can be edit the equipment category field in equipment  master

    Dear all
    Please help me , i want to change equipment category in equipment master .
    this is possible?
    Raghav

    In the equipment master IE02 transaction go to the menu options:
    Edit -> Change Equipment category (Shift+F4).
    System prompts a new screen to enter the diff category.
    Praveen

  • I have selected 'Show on edit details page' for the property 'Status Message' for the User Profile Service, yet i do not see the property.

    I would like to have the ability for the user to edit the property 'Status Message'.  In the properties it says that it should be available in the details section however I am not seeing it there.  Does anyone know if I might have something set
    incorrectly or is this expected behavior.
    Steven Albrecht
    University of Colorado Denver
    Steven Albrecht

    Hi Steven, 
    For this issue, I'm trying to involve someone familiar with this topic to further
    look at it. 
    Thanks,
    Eric Tao
    TechNet Community Support

  • CATS_DA Processing Status field

    Hi, Experts:
    Is there a way to display the description of the processing status field in tcode CATS_DA?  I would rather have the numerical code and text instead of the color-coded icon.   Anyone have a response on this??
    thanks,
    Jack
    Edited by: HCM_Jack on Apr 19, 2011 9:14 AM

    We have decided to remove the status indicator from the output display but use it as the highest sort in the output.  This will display all the NON approved records first.  Then, we know that if the approved date and approved by fields are populated the records were approved.  If these fields are NOT populated they were not approved or rejected.  This solution was most viable for the time frame to get this done.
    Thanks,
    HCM_Jack

Maybe you are looking for

  • Document pricing procedure in Billing

    Dear All, Can anybody tell me, what is the use of having a document price procedure in billing doc type ? Rgds, Indrajit

  • Selection text frame in linked text frame remove

    I chose in the text frame the linked text frames get out of text and I want to delete a text frame Is it possible that a command letter same thing selecting the external can

  • MainStage 3.1.1 released

    MainStage 3.1.1 MainStage 3.1.1 includes the following changes. For more information, see www.apple.com/logicpro/mainstage. Allows you to disable Screen Saver when in Perform Mode Fixes an issue where expression pedals could not control the input lev

  • Sequencing Quiz Output Issue on Captivate 4

    Hi, I've imported a powerpoint presentation as my content and added multiple choice, matching and sequencing activities. There are several sequencing activities in the same learning object and I've had 2 related issues for learners. Sometimes items f

  • How to debug for this top result

    Hi, The following is the result of top command got by running my multi-threaded program that uses mysql. Here %wa is much greater than %us. I ran jconsole but could not find any thread lock or any other irregularities. I use a blocking queue which is