How to maintain HRESSAPPROVER table

Hello, everyone.
I have some problems with leave approvers. Here are my questions:
1. I need to change or even delete some records from HRESSAPPROVER table. But it is mot maintainable. How can I do it.
2. How the data gets into HRESSAPPROVER table?

When an employee applies for leave or a leave cancellation, the
leave application stores the approver, in case the one defaulted
by role resolution of the workflow task, has been modified / overridden.
The entry in table HRESSAPPROVER is deleted by the ESS leave
scenarios, when the leave requester reinstates / resets the the
approver to the one proposed by the by role resolution of the workflow
task.
The table HRESSAPPROVER therefore cannot be directly
accessed / maintained by a user, but happens in the background.
In case its data needs to be maintained, it could be done by the
administrator, who would be having the rights to modify the field
contents of the table.
Unfortunately there does is no option to maintain this table via the
portal.
The approver is then saved to HRESSAPPROVER table only in case where
the approver is not same as the 'default approver' provided by Org
Management.
Just read the Note 822589, it will help.
If you want to delete entries write a small abap program to do so.
ALso check your customisation using PTARQ for leave request WD, ie if you are using this one.

Similar Messages

  • How to maintain IMPR table

    Hi Experts,
    Can anyone please tell me how to maintain IMPR table?
    Requirement: In IMPR table under field PRNAM, we have data for MY00,SG00,AU00. Now, we want to
    maintain data for TW00. We don't have TW00 in this field.
    Please help.
    Thanks in advance.
    Regards,
    Prakash

    You need to create Investment program postion in via IM11 for new or Change existing Investment Position  with requried description in IM12 than it will get reflected there.
    With Regards
    Nitin P.

  • How to Maintain COKA table

    Hello,
    We noticed that the Unit Of Measurement field is not populated for certain objects in 'COKA' table.
    How to maintain this table. Is there a way thro the configuration.
    Thanks. Murali

    You need to create Investment program postion in via IM11 for new or Change existing Investment Position  with requried description in IM12 than it will get reflected there.
    With Regards
    Nitin P.

  • In LSMW how to maintain Internal table?

    Hiii
      In lsmw data uploading.. it need to maintain internal table manually or it maintaind by SAP ?
    Thanks & Regards
    Arya

    HI
    how to update the existing entry in Ztable through LSMW
    /message/5906806#5906806 [original link is broken]
    Regards
    Pavan

  • How to maintain TFACS table (Factory calendar) into SAP BI

    Hi,
    I deal with a daily stock infocube and I would like to set a flag when the warehouse doesn't work (on holiday).
    to do this, I would like to use the factory calendar (TFACS), and I have 2 questions:
    1) How to maintain the TFACS table into SAP BI ?
    2) How to use the TFACS data into SAP BI ? In other words, How to convert the TFACS data values in date ?
    Thx.
    Radj.

    1.
    rsa1(source-systems) --> right-click on the source system you load from --> transfer global settings --> flag 'factory calendar' and 'rebuild' or 'update tables'
    2.
    use function module DATE_CONVERT_TO_FACTORYDATE.
    it returns workingday_indicator (initial if it's a worling day) that you can use as a flag, or it also returns the next working day.
    you can use this function module in the transformation in the field routine of the flag...i think this is the best option.
    M.

  • How to maintain a table without authorization

    Hi
    Can anyone let me know how to maintain a ztable without authrozation
    Thanks
    Venkat

    Hi
    table maintanance Generator is used to manually
    input values using transaction sm30
    follow below steps
    1) go to se11 check table maintanance check box under
    attributes tab
    2) utilities-table maintanance Generator->
    create function group and assign it under
    function group input box.
    also assign authorization group default &NC& .
    3)
    select standard recording routine radio in table
    table mainitainence generator to move table
    contents to quality and production by assigning
    it to request.
    4) select maintaience type as single step.
    5) maintainence screen as system generated numbers
    this dialog box appears when you click on create
    button
    6) save and activate table
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed2d446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_46c/helpdata/en/a7/5133ac407a11d1893b0000e8323c4f/frameset.htm
    /message/2831202#2831202 [original link is broken]
    One step, two step in Table Maintenance Generator
    Single step: Only overview screen is created i.e. the Table Maintenance Program will have only one screen where you can add, delete or edit records.
    Two step: Two screens namely the overview screen and Single screen are created. The user can see the key fields in the first screen and can further go on to edit further details.
    Reward points if useful
    Regards
    Anji

  • How to maintain cluster table A016 -- Contract Item?

    Hello,
    I know Me11~ME13 can maintain info record for A017/A018, but how to maintain A016?
    Thanks a lot

    For Sched.aggrement, When you create ME31L, and enter the net price then save, go to EKKO table , get the condition number (EKKO-KNUMV), then go to table KONV and enter the doc.condition number, there you can see all the condition amount.

  • How to maintain BNKA table.

    Hi,
    I have a requirement to Maintain the table BNKA, where i can able to change the selected entries of the table.
    This we can do normally by creating the maintainance view for the table. This case we cannot as this is a standard table.
    Could you please let me know a solution to change the selected entries of the table. Is updating the BNKA table using Zprogram is preferable.
    Will highly appreciate the solution.
    Thanks,
    Phani Kumar.

    Hi Pani,
    please check this
    http://sap.ittoolbox.com/groups/technical-functional/sap-hr/bnka-table-values-1501810
    https://forums.sdn.sap.com/message.jspa?messageID=7242137
    https://forums.sdn.sap.com/message.jspa?messageID=8581624
    standard report-RFBVALL_0
    Hope there is some clue
    No Worries
    KG

  • How to maintain ltdx table

    hi experts,
                   Can any one help to know how the table LTDX, table for display variants can be maintained, if i want to add some more , how can i do that

    Hi,
    REUSE_ALV_VARIANT_DEFAULT_GET will give you the default variant for the Report.
    * move the report name.
      MOVE sy-repid TO lv_repid.
    * report name.
      xs_variant-report = lv_repid.
    * get the default variant.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save        = lv_save
        CHANGING
          cs_variant    = xs_variant
        EXCEPTIONS
          wrong_input   = 1
          not_found     = 2
          program_error = 3
          OTHERS        = 4.
      p_varia = xs_variant-variant.
    Hope this helps.

  • How to Maintain SETLEAF Table?

    Hi There,
    I have created a custom filed(Alternate Hierarchy Area ) same as Standard Hierarchy Area(KHINR) for T-Codes  KS01 & KS02.
    It is getting saved in the table CSKS. But when using KSH3 T-Code, the alternate Hirerachy area which created or changed for a cost center is not displayed in the tree strucutre. It is due to not updating in the SETLEAF table. Changes are not reflecting in KSH3 T-Code.
    Could anyone let me know, how to create a record & Update in the SETLEAF table?
    Regards,
    Chaitanya A

    If you Do it for KSH1 and KSH2 transaction which are for creating and changing Cost centers respectively, your entries will get displayed in SETLEAF table.
    Kind Regards,
    Rahul
    Edited by: Rahul Kumar Sinha on Mar 31, 2010 8:04 AM

  • How to maintain a table in BSP

    Hi All,
    We have a requirement where we want to maintain entries in a table, ZHAL, in web instead of GUI(SM30).
    Essentially, we have to create a BSP application, through which the table can be maintained. Any thoughts on this?
    Thanks in advance.
    - Shashi

    hi,
    For this ou have to make a custom table maintainence feature in your page.
    this can be achieved  in fallowing ways:
    1. use input fields to enter data and subsequently fill data to table using some button to submit data or so. at its event at server side.
    2.use table view with iterator and fill data in our table at some event say put a button 'submit' to submit entries. in this you  can reflect the data saved immediately to the user  also.
    for table view iterator check out the weblogs by thomas jung and forum posts.
    regards

  • How do we update the entry in Table HRESSAPPROVER Table?

    Hello friends,
    I need to understand how the table HRESSAPPROVER Table entries are modified? Do we need to follow a Tcode like PA40 to initiate an Action or do we need to update any infotype, or should we directly edit the entries in table using some Tcode?
    Thanks
    Avik

    Hi,
    check this thread
    How to maintain HRESSAPPROVER table
    Regards,
    Manoj.

  • How to Maintain table "OIB_USERPARAM"

    Dear All,
    Can anyone help me to understand, how to maintain the table "OIB_USERPARAM", is there a T Code or SPRO link? There are some entries in these tables which needs correction. Please help.
    Regards,
    Anubhav

    Dear Anubhav,
    if I remember correctly, the entries in table OIB_USERPARAM are automatically created for each user if he/she first uses transaction O4_TIGER, and are subsequently updated if O4_TIGER is lect correctly (e.g. F3) with the current user settings:
    "When you leave the transaction, the system saves various user parameters (for example, the last used variants and the expansion status of the overview tree) so that the transaction looks the same the next time you call it. "
    which can be found in the SAP online documentation:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/cb/a45738bc8b210de10000009b38f8cf/frameset.htm
    section : Management of tank dips
    In addition, you can maintain a worklist of tanks for each user.
    I hope this helps a bit,
    Kind regards,
    Markus

  • Maintain HR table: TWPC_OBJSEL and TWPC_OBJSELRULE

    Hi experts,
    I tried to maintain these HR tables ( TWPC_OBJSEL and TWPC_OBJSELRULE ) by SM30 but failed.
    Could you please suggest me how to maintain these tables?
    Thanks,
    Khanh

    Hi Rahul Ghosh,
    V_TWPC_OBJSEL and
    VC_TWPC_OBJSELRULE
    Thanks,
    Khanh

  • How can I maintain two tables content at the same time with SM30

    Hi all,
    I created two customizing tables that I would like to link together for maintenance in SM30. Table 1 is the header and table 2 can have multiple detail records.
    They are linked via the ID key field. I would like to run the Table Maintenance Generator on the first table in SE11 and be able to maintain both table data at the same time in SM30.
    How can I do that without any ABAP programming? Should I use Append or Include structure or else?
    Thank you for giving as much detail as possible.
    Regards,
    Sylvain

    Hi,
    You cant do it w/t abap programing.
    You can code in "EVENT" to achive the same.
    Open table maintainance generator of first table through se56 or se11.
    follow the path: environment>Modification>Event.
    Select sutaible event from drop down like Before Save... and do coding.
    In this way data will be saved in second table automatically when you save in first table.
    In case of any query, please revert.
    regards,
    Dhan

Maybe you are looking for