WD CATS Approval through MSS - sorting the options "Resubmit All, etc"

You need an implicit enhancement and the end of the method BUILD_DROP_DOWN in class CL_XSS_CAT_APPR_RFC_CMD_TOOLS.
ENHANCEMENT 1  ZENH_CAT_APPR_BUILD_DROPDOWN.    "active version
  read table xt_fieldlist ASSIGNING <ls_fieldlist> with key tec_name = 'DD_APPROVE'.
  check sy-subrc = 0.
  read table lt_f4_value into ls_f4_value with key value = if_mss_cat_appr_bl_constants=>gc_keep.
  check sy-subrc = 0.
  IF iv_view = gc_drill_down.
    ls_f4_value-text = text-003.
  ELSEIF iv_view = gc_single_item.
    ls_f4_value-text = text-007.
  endif.
  delete lt_f4_value where value = if_mss_cat_appr_bl_constants=>gc_keep.
  insert ls_f4_value into lt_f4_value index 1.
  <ls_fieldlist>-f4_values = lt_f4_value.
ENDENHANCEMENT.

Contribution.

Similar Messages

  • CATS Approval through MSS WD - Default to "Resubmit All" than "Approve All"

    Hi,
    Is there any possibility to change the CATS Portal WD Timesheet Approval defaults to "Resubmit All" than "Approve All"?
    Any input or feedback is highly appreciated.

    To default the Resubmit all:
    WD CATS Approval through MSS - Default to "Resubmit All" - HRMSS_CAT_WD_APP
    To change the sort:
    WD CATS Approval through MSS - sorting the options "Resubmit All, etc"
    Regards.
    Abel.

  • Cats Approval through MSS WD

    Hi
    My Client needs Cats Approval like this,We are implementing cProjects with CATS, we want approvals through MSS.
    Scenario is Approver for the time sheet entries of particular project is respective project manager not immediate supervisor. Inorder to create work item in the proj manager's worklist for cats approval what logic i should use to identify the project manager of a particular project as an approver?
    pls give the steps to be followed for workflow and standard config aswell as any Badi to be used to fulfill this requirement.
    Regards
    Ram

    approval based on attributes can be handled by feature CATEX or the standard badi BADI_CATS_APPROVAL
    Please read the help documentation of this badi or in spro
    it is self explanatory

  • WD CATS Approval through MSS - Default to "Resubmit All" - HRMSS_CAT_WD_APP

    You need to implement an implicit enhancement in function module: HRMSS_CAT_WD_APPROVAL as follows:
    ENHANCEMENT 2  ZENH_HRMSS_CAT_WD_APPROVAL.    "active version
    CONSTANTS: c_fs_drill_down_data_appr(4) value 'APPR',
                           c_fs_drill_down_data_keep(4) value 'KEEP'.
    FIELD-SYMBOLS: <fs_drill_down_data> TYPE HRXSS_CAT_RFC_CELL_VALUE.
    loop at t_drill_down_data assigning <fs_drill_down_data> where value = c_fs_drill_down_data_appr.
      <fs_drill_down_data>-value = c_fs_drill_down_data_keep.
    endloop.
    ENDENHANCEMENT.
    This will default the Resubmit all.
    Regards,
    Abel.

    Contribution.

  • CATS Approval in MSS  - same error, other issue?

    We have upgraded our portal and HR environment to the latest sp and enhancement packs.
    In the testing we get a blocking dump in the time approval in MSS.
    error: Exception condition "NOT_FOUND" raised., error key: RFC_ERROR_SYSTEM_FAILURE
    debug with st22 gives function module DDIF_NAMETAB_GET
    Yes, a lot of topics are handling about this error:
    CATS Approval in MSS
    CATS Approval in MSS
    CATS Approval in MSS
    I've checked the table TPT_FIELD_SEL_C between development and our testing environment and they are the same.
    The only special thing is that we don't use the standard SAP_LINE approval view (see IMG), but our own custom one. The SLIN is not configured ok, but our own "ZLIN" fields are configured ok (into table TPT_FIELD_SEL_C).
    Has anybody an idea?
    Debug info ST22
         DATA DFIES_wa TYPE DFIES.
         IF ALL_TYPES IS INITIAL AND lfieldname IS INITIAL.
            lfieldname = fieldname.
         ENDIF.
         CALL FUNCTION 'DDIF_NAMETAB_GET'
              EXPORTING
                   TABNAME     = tabname
                   ALL_TYPES   = all_types
                   LFIELDNAME  = lfieldname
                   GROUP_NAMES = group_names
                   uclen       = uclen
              IMPORTING
                   X030L_WA    = X030L_wa
                   DTELINFO_WA = dtelinfo_wa
                   TTYPINFO_WA = ttypinfo_wa
                   DDOBJTYPE   = ddobjtype
                   DFIES_WA    = DFIES_wa
              TABLES
                   DFIES_TAB   = DFIES_tab
              EXCEPTIONS
                   OTHERS      = 2.
         IF SY-SUBRC <> 0.
    >        RAISE NOT_FOUND.
         ENDIF.
         IF NOT lfieldname IS INITIAL.
            APPEND DFIES_wa TO DFIES_tab.
         ENDIF.
    ENDFORM.                    " Get_nametab_info

    I think we have got similar issue and raised an OSS message and the reply we got
    This happens due to the missing customisation in Mss.
    ie Configuration for screen areas CTS and CTD is missing. View
    V_PT_FIELD_SEL is meant to hold the relevant information.
    Please have a look at the client 000 for the default customisation.
    So, What you need to do is write table TPT_FIELD_SEL_C on a transport
    and transport it to client . You will then have all the setting
    you need for the application to work.
    Also,
    The solution is to write down all the
    technical field-names from view groups CTS and CTD in table TPT_FIELD_S
    EL_C, then use the config area to select the fields properly. This overwrites the TPT_FIELD_SEL_C table entries with ones that have the "tabname" populated! The application will now work as expected.
    Please try producing a new transport of the entire table TPT_FIELD_SEL_Cas R3TR TABU with appropriate key and transport to yor system, you
    should choose to overwrite the destination table. Please let us know
    the result after.
    Please check the customisation for MSS approval.
    SAP_LINE: Model approval view for line managers. It groups recorded data according to the employees assigned to the line manager.
    For example the above view has been defined? or you can adapt to your
    needs.
    Can you try to import the transport again but make sure that "overwrite
    orginals" in the OPTIONS tab is selected?
    Transactrion SE01
    Select create a the workbench request.
    then doble click into the request
    and push the button Display/Change
    Enter here the entry "R3TR TABU TPT_FIELD_SEL_C"
    Push enter
    Then one icon with a Key appear
    Push the key and enter * for all the table entries or select the
    each one that you need.
    If the changes are correctly available then it will work correctly
    Please ensure that the transport is done correctly
    Thanks
    Bala Duvvuri

  • CATS approval through BWSP

    Hi,
    In EP 7 when a CATS Overtime entry is approved it gets updated immediately to the infotype. On the Workplace setup this is not happening thus the user would run CAT6 to transfer the approved entries.
    Is this the standard behavior of EP in terms of CATS approval through BWSP?
    Hope to hear replies.
    Thanks and best regards.

    You have option for "Direct Transfer to HR in your data entry profile" but this is not possible when an approval is required. For update after approvals you need to schedule the report RPTEXTPT on a periodic basis.
    SAP help states that the <b><i>transfer of time data from Time sheet to HR system is asynchrounous.</i>
    <i>Time data from external systems is stored in the interface tables PTEXDIR and PTEX2000 in
    Report RPTEXTPT (External Transfer   Time Management) enables data to be read from the
    PTEX2000 file and then stored as absences or attendances in the Absences (2001) or
    Attendances (2002) infotypes.
    The report RPTEXTPT (External Transfer  Time Management) can also be
    scheduled periodically as a batch job.</i></b>
    Thanks,
    Prasath N

  • Disappointed with IOS7, i had organized my music library as per the Genre and now im unable to hear all the songs of the same genre like in the earlier versions. The options of "all albums" and "all songs" are missing in this version of IOS. Help Please..

    Disappointed with IOS7, i had organized my music library as per the Genre and now im unable to hear all the songs of the same genre like in the earlier versions. The options of "all albums" and "all songs" are missing in this version of IOS. Help Please..

    It would be nice if you told others the steps you've tried and/or how you used to have your setup.
    Anyway have you tried tapping MORE this will then bring you to
    the selection-list of Audiobooks, Genres, Compilations & Composers.
    Selecting Genres gives you a list of all your music split into genres which was set within the Music downloaded via iTunes or uploaded from CD or which you may have set yourself.
    Then you just select the Genre you want:
    If certent songs are not correctly gategorised you may need to go into iTunes and reselect via Get-info
    >Info>Genre and change it there. That way you should end up with all songs of Jazz or other in 1 place.

  • HT201269 why is it that when trying to use a back up of my old iphone i click on devices and the options are all frey scaled? I cannot access the restore and back upo options

    why is it that when trying to use a back up of my old iphone i click on devices and the options are all frey scaled? I cannot access the restore and back upo options

    Let me start with the general advise...
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • The option "Download all new messages" has disappeared from my screen. How can I retrieve it?

    The option "Download all new messages has disappeared from my In Box window. How can I retrieve it?

    I don't think I have ever seen that particular option in Thunderbird.
    Are you using a non-English variant of Thunderbird? This might explain the difference in the wording used.
    Have you noticed anything else missing?

  • Leave approval through MSS

    Hi Experts,
    Through MSS can we allow staff (e.g. secretary) to approve leave records on behalf of managers?If its possible? pl explain the process.Awaiting for your positive reply at the earliest.
    Regards,
    Sai

    If the manager wants to assign the responsibility of approving the leave request tyo someone else, he can adopt the substitution. look in the Business Workplace.

  • How can i use an existing vpn connection without using the option "Send all traffic over vpn connection"?

    I have been trying to get my computer (os x.7) to astablish a remote desktop connection to my work computer via a vpn tunnel. In fact I have just discovered that it works fine if i select to "send all traffic over vpn connection" from the options in the advanced setup of the vpn.
    If the option is selected microsofts "Remote desktop connection for mac" works just fine. However without selecting the option it is not taking advantage of the tunnel but tries to connect as if the tunnel would not exist.
    Now the question is how do I get program to use the vpn tunnel without checking the above option?
    Thanks for any hints and pointers.

    Then can her computer be authorized to both accounts?
    Absolutely. You can authorize any given computer to up to five iTunes Store accounts.
    If purchases are made on her account, to a computer authorized to my account, can I put those songs on my iPod?
    If you connect your iPod to her computer, yes. Tracks download only to the computer from which they're purchased, regardless of which iTunes Store account is used for the purchase. Or you could copy the tracks from her computer to yours and then authorize your computer to her iTunes Store account. But that's sort of defeating the original purpose, it would seem to me.
    is it better to buy music through Amazon downloads and/or actually purchasing CDs to avoid the security features iTunes puts on its music?
    That's certainly an option. If it's an entire album I want, I buy CDs. That way I can import them at the quality I want and to whichever of my systems I want. Amazon or one of the other download stores that offer tracks as MP3 are also an option, though for me download stores are best when you just want a couple of tracks off a given CD.

  • Has Anyone Tried to Follow the 'Optional Plug-In, etc.' Read Me

    No matter how many times I try I just don't seem to be able to follow these instructions.  Is there someone out there what has succeeded?  It's making me a bit crazy.
    Marc

    Hi Ned,
    I sent you a version that is not wrapped in the installer. The one plug-in that's not there which you asked for is the TWAIN plug-in. I'll see if I can get that to you separately. HSBHSL is now packaged into the Optional Multiplugin with another plug-in that shares the UI code. There's also info on the other plug-ins, extensions, presets in the readme include in the zip file.
    Extension Manager CS5 should be installed by default with a Ps CS5 install. It is used by various parties for install and uninstall of scripts/presets/plug-ins etc for Adobe CS5 products.
    For the optional plug-ins you listed, all require that Ps be launched in 32-bit mode, except HSBHSL and TWAIN (with other caveats). The extensions will all work for 64-bit mode.
    Once you get the zipped file, feel free to ask more questions here or in reply to me directly.
    regards,
    steve

  • CATS Approval in MSS

    Hello Experts,
                                Getting the below error for MSS Time approval application. Please let me know , what is missing on IMG customization for Time Approval.
    Also i didnt find Standard Approval Views SAP_LINE or SAP_PROJ, so created new entries of my own not sure if i am doing right.
    Error:      ASSERT condition was violated., error key: RFC_ERROR_SYSTEM_FAILURE
    Thanks in advance.

    Hello Experts,
                                Getting the below error for MSS Time approval application. Please let me know , what is missing on IMG customization for Time Approval.
    Also i didnt find Standard Approval Views SAP_LINE or SAP_PROJ, so created new entries of my own not sure if i am doing right.
    Error:      ASSERT condition was violated., error key: RFC_ERROR_SYSTEM_FAILURE
    Thanks in advance.

  • I forgot my admin password for my macbook and my macbook doesnt allowme to go on single user or boot up in safe mode or boot up with the option key all it does is show a image of a globe blinking everytime i try to do something

    please people help me i brought this macbook from a friend and now its ****** up its a macbook late 2006 and it dosesnt allow me to do anything everytime i click on a key to go on single user terminal or boot up cd or run on safe mode it shows a image of a globe(earth)

    Somehow the HDD is screwed up. Data saving issue is not directly Toshiba related issue and before you spend time here discussing about such things I recommend you to ask someone with good PC knowledge what can be done about data saving.
    When the HDD is in the notebook again start notebook as first step set BIOS to default settings.
    After doing this install recovery image. After doing this you will have clean preinstalled OS and everything should work properly again.
    I hope you will be able to do this using HDD recovery option.
    How to do this you can find on http://aps2.toshiba-tro.de/kb0/HTD1303440001R01.htm
    Have you maybe created recovery discs?

  • I have no option to sync my collections to lightroom mobile. I had the option and all of a sudden it is gone.

    I cannot sync a collection to Lightroom mobile. I have the creative cloud photography plan and had no problems with this a few weeks ago. What I would do is edit photos on my computer then add them to the synced collection and then post them from my iPad. There is no option in the create a collection window and there is no sync button next to the collections.
    I am losing my mind. Please help.

    The collection I am trying to sync is not a smart collection. It is the same collection that was synced several weeks ago but now is not and there is not option to sync. As you can see in the picture, the sync icon is not there and in the create new set dialog there are no syncing options.
    Is there no sync option in the free version? It seems like perhaps it has reverted even though I am paying for it but I have re installed it from the Creative Cloud app and it is still the same.

Maybe you are looking for

  • Color problems in CS3

    I've searched all the forums but haven't found a solution yet.  My color swatches have lost the RGB colors in photoshop CS3. I've checked all the normal solutions, like color settings,  tried the fly out menu settings, etc and found all to be set cor

  • Approval notification mail modification

    Hello We are using RSWUWFMLEC program to send approval notification. But User requested to add SRM Approval Note into Notification mail. I searched SAP Notes and notification mail content can be changed by BBP_OFFLINE_APP_BADI. (program: RBBP_NOTIFIC

  • How to target button in movieclip back to main timeline

    Hello! I have some submenu buttons in a movieclip on the mainline. My first level of navigation in on main timeline. The submenus are grouped in movieclips on the main timeline. I basically used the same code on the main navigation for the sub naviga

  • In HOTMAIL Fireefox Beta continually refreshes automatically. How to stop the refresh?

    In hotmail.com the screen automatically continues to refreshes resulting in the displayed screen continuously reloading every second. How to stop this automatic refresh?

  • Weblogic 10.3 can not execute hql

    i use hibernate in my project ,test it in tomcat it's OK.when i deploy it to my weblogic it seems the server cannot execute hql,my weblogic version is 10.3.I change hql to sql the APP runs ok. can someone help me and tell me why?my email is [email pr