Fiori Approve Timesheets - Activity Type not Displayed

According to the BPD document for the Approve Timesheets App, the Activity Type should be displayed in the details area of the timesheet.
However, when a user selects the details option, the following is displayed.
Has anyone else experienced this issue?  I'm testing in Chrome and we're on the latest service pack that was just released last week.

HI Pankaj,
Thank you for supplying these notes. They look like exactly what I need. We have implemented Fiori App My Timesheet and Approve Timesheet, but during the approval process, the approving manager cannot see what kind of time (attendance type) is being approved. All of the days shown below were entered as 8hrs of sick time, but that doesn't show up anywhere.
I was able to install the first OSS note 1994214 on the ECC back-end, but when I try to install 1994889 on the gateway, it won't because it can't find the right place to insert the new code in many objects.
I could find no prerequisite notes that were not already installed. Incidentally, the code it was looking for in the first one was a copyright notice for 2013, but instead the code had a copyright notice going to 2014.
We just installed UIX01HCM SP03. Was this OSS note included in that support pack? If so, it doesn't look like was effective because we are still not seeing any attendance types in the approval app.
In case, its helpful here is a list of which components are installed on our gateway:
SAP_ABA
740
0007
SAPKA74007
Cross-Application Component
SAP_GWFND
740
0007
SAPK-74007INSAPGWFND
SAP Gateway Foundation 7.40
SAP_UI
740
0009
SAPK-74009INSAPUI
User Interface Technology 7.40
PI_BASIS
740
0007
SAPK-74007INPIBASIS
Basis Plug-In
ST-PI
2008_1_710
0007
SAPKITLRE7
SAP Solution Tools Plug-In
SAP_BW
740
0002
SAPKW74002
SAP Business Warehouse
IW_PGW
100
0005
SAPK-10005INIWPGW
Process Gateway
IW_SPI
100
0004
SAPK-10004INIWSPI
Service Provider Infrastructure
IW_SCS
200
0008
SAPK-20008INIWSCS
Screen Scraping
UIAPP001
100
0005
SAPK-10005INUIAPP001
UIAPP001 100: Add-On Installation
UIAPP002
100
0004
SAPK-10004INUIAPP002
UIAPP002 100: Add-On Installation
UISRA001
100
0003
SAPK-10003INUISRA001
HTML 5 Purchase contract approval
UISRA002
100
0004
SAPK-10004INUISRA002
HTML5 Time Recording
UISRA010
100
0004
SAPK-10004INUISRA010
HTML5 Staffing List
UISRA012
100
0004
SAPK-10004INUISRA012
HTML5 My Department Spend
UISRA020
100
0005
SAPK-10005INUISRA020
HTML5 Change Order (Address/Delivery Date)
UIX01HCM
100
0003
SAPK-10003INUIX01HCM
UI for HCM Application
Likewise, in case its helpful, here are our component versions on the ECC system in case that's helpful:
GBAPP002
600
0005
SAPK-60005INGBAPP002
GBAPP002
SRA001
600
0003
SAPK-60003INSRA001
Approve Purchasing Contracts OData Integration Component
SRA002
600
0004
SAPK-60004INSRA002
Time Recording OData Integration Component
SRA010
600
0004
SAPK-60004INSRA010
Staffing List OData Integration Component
SRA012
600
0003
SAPK-60003INSRA012
My Department Spend
SRA020
600
0005
SAPK-60005INSRA020
Purchase Order Status (In Process, Approved)
thanks for any advice or suggestions you might have!
-Rob Solomon

Similar Messages

  • CONTROL DATA FOR ACTIVITY TYPE NOT MAINTAINED

    dear all
    i get this error when calculating production order cost
    control data for activity type 1000\4230\1420 not maintained for fiscal year 2007
    i hv maintained data in kp26
    can any one pl help. i am learnign sap pp and hv 4.7 version
    thanks and regards

    Dear Anshuman
    my prob. started during cost cal. in prod. order first error was version 0 not maintained for fiscal year 2007, THEN i maintained it in the path as told by you T code OKEQ.
    but after that error changed to CONTROL DATA FOR ACTIVITY TYPE NOT MAINTAINED ( 1000/4230/1420)
    i maintained data in kp26, but the error is still coming
    pl. suggest some solution as i am not able to proceed further.
    Thanks and regards
    Raj

  • Custom workflow for Fiori Approve Timesheets

    Hello All,
    I am investigating complexity of adding custom workflow to Approve Timesheets.
    There is BADI SRA010_BADI_TIMESHEET_APV.
    Any experiences/advices  ?

    Hi Lukasz,
    How do you change approver using data from Ztable in the current system?
    If you are talking about workflow approver determination logic, it is a job for Workflow Engine and not for Fiori.
    Regards, Masa
    SAP Customer Experience Group - CEG

  • Transacction types not displaying in the popup

    Hi Experts,
    After system upgrade from crm 7.0 to ehp3, transaction types are not displaying upon clicking New button and create follow up buttons. I have checked the spro settings and compared with 7.0 system. There are no changes.
    In the debugging in the  method GET_PROC_TYPE_CUST of class CL_CRM_UIU_BT_GET_PROC_TYPES, i found the entries in the internal table getting deleted as the navigation is not supported. Am having the entries in lt_proc_type_t.
    * Retrive the possible proc types for given bus type
       CALL FUNCTION 'CRM_BSP_SALES_GET_PROC_TYPE'
         EXPORTING
           iv_bus_category     = iv_bus_category
           iv_templates_only   = iv_template_only
           iv_process_mode     = lv_process_mode
           iv_btx_class        = iv_btx_class
           iv_btx_all          = iv_btx_all
         IMPORTING
           et_process_type_txt = lt_proc_type_t.
       LOOP AT lt_proc_type_t INTO ls_proc_type_t.
         IF iv_mixed_quot_order EQ abap_false.
    *** Filter out mixed types
           lv_delete = abap_false.
    *     check item types mixed or not
           cl_crm_uiu_bt_get_proctypes=>is_quotation(
             EXPORTING iv_proc_type         = ls_proc_type_t-process_type
                       iv_bus_category      = iv_bus_category
             IMPORTING ev_quotation_only    = lv_quotation_only
                       ev_mixed_quot_order  = lv_mixed_quot_order ).
           IF lv_mixed_quot_order EQ abap_true AND
              iv_quotation_only EQ abap_true.
    *** Mixed Types for sales + quotation items(Considered as sales order 1299189) -> exclude if quotation_only is true
             lv_delete = abap_true.
           ELSE.
    *** Pure Types
             IF lv_quotation_only EQ abap_true.
               IF iv_quotation_only EQ abap_false.
    *** only pure quotations required
                 lv_delete = abap_true.
               ENDIF.
             ELSE.
               IF iv_quotation_only EQ abap_true.
    *** only pure orders required
                 lv_delete = abap_true.
               ENDIF.
             ENDIF.
           ENDIF.
           IF lv_delete = abap_true.
             DELETE lt_proc_type_t.
             CONTINUE.
           ENDIF.
         ENDIF.
    *   Check whether the naviagtion is supported
         IF cl_crm_uiu_bt_get_proctypes=>is_navigation_supported(
              iv_bus_category = iv_bus_category
              iv_proc_type    = ls_proc_type_t-process_type
              iv_btx_class    = iv_btx_class ) NE abap_true.
           DELETE lt_proc_type_t.
         ENDIF.
       ENDLOOP.
       SORT lt_proc_type_t BY p_description_20 AS TEXT.
       LOOP AT lt_proc_type_t ASSIGNING <proc_type_t>.
         ls_value-key = <proc_type_t>-process_type.
         ls_value-value = <proc_type_t>-p_description_20.
         INSERT ls_value INTO TABLE rt_proc_types.
       ENDLOOP.
    Can anyone please guide me what navigation it is checking for transaction types. Can i find it anywhere in the configuration.
    Thanks & regards,
    Chiru

    Hi Chiru,
    please check below configuration.
    1. go to spro>crm>transactions>basic settings>define transaction types
    2. mark your Z transaction type
    3. in navigation bar on the left side click on Channel
    4. add channel GUI CRM WEBCLIENT UI
    and one more thing check inactive check box should be empty.
    check below link also
    http://scn.sap.com/community/crm/sales/blog/2013/08/23/quotation-transaction-type-not-shown-in-webui
    http://scn.sap.com/thread/1648811
    http://scn.sap.com/thread/2130867
    regards,
    vishwa.

  • Fiori My Timesheet - Apply Correction Notes - REALLY !

    This thread is on a lighter note.
    This morning I thought of applying the updates on the Backend components for timesheet app, and - what a mess I got myself into.
    So as per release note - it says apply the following corrections
    Additional Notes to be applied in the backend (on top of SRA002, SP05 )
    2043375 - Fiori My Timesheet: Issue with WBS element
    2039948 - Fiori My Timesheet: Incorrect colors for rejected days in Calendar (OData)
    2033877 - My Timesheet: WBS search help not working
    2032457 - Fiori My Timesheet: RFC ERROR: Infotype 0001 does not exist or is incomplete for [pernr]
    2031179 - Fiori My Timesheet: Auto Suggest functionality is not working
    Great, lets check out Note# 2033877. I thought it would be easy and nice thru SNOTE. Well not really, looked at the note – it said
    This is a program error. Kindly implement the following pre-requisite notes
    2014752
    2026754
    2031179
    2032457
    Ok, no problem. Note# 2014752 -
    Implement the pre-requisite note 1993075, and then followed by a Manual Correction. Ok, no problem. Lets open 1993075. Voila, it says
    This is a program error. Implement the pre-requisite notes 1974197, 1990036, 2006238 and then a manual correction.
    Really, for one note - I will have to go thru all this. Fiori - You aren’t simple .
    I haven't dared to look at the other 4 Parent Notes yet.
    Is it just me or someone else has faced this roller coaster of implementing a fiori app?

    Pankaj
    I already have SP03 for UI and SP05f for SRA. I just read the note#1931621, it mentioned to implement the above notes
    Can you pls confirm if we need all these notes?
    Solution
    Updates for support package Stack 03 (08/2014)
    Additional Notes to be applied on the frontend server (on top of UIX01HCM, SP03 )
    2025904 - My Timesheet Launchpad : Consolidated UI fixes version 4 (Can also be implemented on top of UIX01HCM, SP02)
    Additional Notes to be applied in the backend (on top of SRA002, SP05 )
    2043375 - Fiori My Timesheet: Issue with WBS element
    2039948 - Fiori My Timesheet: Incorrect colors for rejected days in Calendar (OData)
    2033877 - MyTimesheet: WBS search help not working
    2032457 - Fiori MyTimesheet: RFC ERROR: Infotype 0001 does not exist or is incomplete for [pernr]
    2031179 - Fiori My Timesheet: Auto Suggest functionality is not working

  • Condition type  not displaying in po

    Hello,
    I have defined a new condtion type copied frm FRC1 and in prociing sechme , i have not ticked that cond type in manul column.
    when i do po, i not geting that new condition type in po condiition tab.
    pls tell me, where to maintain ??

    Hi mahesh,
    Firat check if the condition typw is present in the pricing procedure and check if this pricing procedure is been picked up in the PO by going into condition tab and then click on analysis button. check if ur condition type is displayed here.
    Logic is that in case if you maintain the condition type as manual then the condition type will be automatically appears in the condition tab. In case if it is not manual then you have to maintain a condition record for this condition type, then only the condition type will appear. Or you can maintain this condition in the inforecord and it automaticlly gets picked up in the PO.
    Thanks & regards,
    Kiran

  • Reimbursement type not displaying

    Hi experts,
               we are working on claims and reimbursements . Ecc 6.0 / EHP 4 .   I have configured all prerequisites in the back end. My reimbursement type is not displaying in the portal . Wat s the problem behind this . Please suggest . I have even checked the cumulation table v_t54c1 and updated also. Still its not working please suggest.
    Waiting for positive response .

    Hi...
    We are facing the similar problem..please share the solution implemented for this.
    Thanks & Regards,
    Alok

  • Percentage in Fiori Approve timesheet

    Hi Friends,
    We have implemented the FIORI timesheet entry and approval app. In timesheet approval, when Manager logs in it shows the subordinates timesheets for approval.
    All 3 employees entered the time for the same week Sep 1 - Sep 07 2014. But, for 2 employees % shows 100 and for other it shows 50%, the only difference is they entered time to different projects.
    Just wanted to know, how this % works and shows in approve timesheet app.
    Regards,
    S.Srikanth
    Tags edited by: Michael Appleby

    Hi Pankaj,
    We went live today for Timesheet entry & Timesheet Approval. While checking in timesheet approval for an employee, it shows 53% even though employee has entered 43 hours for this week.
    Can you please let me know what could be the reason for this and the screenshot is before approval. There is no pending hours and we have week on week approval.
    Regards,
    Srikanth

  • Activity Monitor not displaying processes or anything...

    Hey guys,
    My Activity Monitor (10.5.1) is not displaying ANY processes, in any of the tabs (system, CPU, etc.). I don't know why- I have a 2.16Ghz 24" iMac (previous iteration).
    I did just add a 2gb stick of RAM (booted fine- everything BAR this monitor app is running perfectly). It has 3gb RAM total (previously had 2x1GB sticks). OSX System Profile displays it as 3GB and reads it properly.
    Does anyone know why this is playing up, or what I can do? I have AppleCare so I'll call them tomorrow, but thought I'd see if anybody else incurred this problem.
    Thanks!
    Kendal.
    Message was edited by: kendals

    Is the little menu on the upper left set to "All processes"?

  • Activity types not calculated

    Is there a setting while creating a master receipe or BOM or anyother, where u assign activity types, as when i am trying to run a material cost estimate it is not picking the correct labor hours with no price.
    Can some one please let me know what do i do

    Hi,
    Check in OKKP else Communicate with Finance guys.
    Reg,
    Ashok
    Rewards Welcome.

  • Type not displaying correctly when publishing

    I have a Flash MX file which I created a couple of years ago.
    I edited it (in MX) and when I published the .swf, the type only
    displayed every other letter or so. Any one know what the problem
    is and how to fix it. The type face was Avante Garde Italic, if
    that matters.

    Ignore. Have found out it was down to paths. Sorted

  • Leave approval text changes are not displayed in UWL

    Hi friends,
    I have made some changes to text label of leave approval application using ctrl+right click(done in role->workset->page->iview) in content admin but it not reflecting in UWL(when calling leave approval application in UWL).any idea pls.

    Hi,
    aah i think the problem is at the uwl xml config file, which controls which iview is opening for a specific task id.
    please enable the support info, at this u can see which xml file is used and you can change the directory/iview which is called by opneing the "leave approval":
    1. Log on to the portal
    2. Navigate to the following path: system administration   > system
    configuration
    3. In detailed navigation click on the UWL & Workflow folder
    to expand out
    4. Then click on the Universal Worklist Administration link
    5. Scroll down to the bottom of the page:
    Optional Universal Worklist Service Configuration
      Open the Tray for the Optional UWL Service Configuration
    Click on the button to open the tray for the optional UWL service
    configuration
    6. Scroll down again
    7. Go into edit mode
    8. Display Support Information:   Set the parameter to true
    9. Save
    have also a look here:
    http://help.sap.com/saphelp_nw70/helpdata/en/44/c0001cdfcd1386e10000000a155369/frameset.htm
    i hope this can help u
    br,
    fabian

  • Approval Center Preview Updates not displaying a populated Views list

    Goal is to be able to add Baseline fields to Preview Updates.
    In trying to edit the view in Approval Center other entries ("change the view of Approval center" and "Adding the baseline (tracking) columns to the Approval Center view") indicate the solution is to use the View in Preview Updates
    and imply that the Tasks Tracking view is the view to update for Preview Updates.
    However, the view that I am seeing in Preview Updates does not
    match any view within Manage Views, including Tasks Tracking.
    The Preview Updates displays the following columns:
    ID
    Mode
    Task Name
    Previous Duration
    Duration
    Previous Start
    Start
    Previous Finish
    Finish
    Baseline Work
    Work
    Previous % Complete
    % Complete
    Resource Name
    The Tasks Trackingview already includes Baseline Start/Baseline Finish (and other differences) ... so not the view being used.
    Within Project Center after selecting a project and then selecting Schedule the view list has all expected views defined in Manage Views > Project. 
    But within Preview Updates the View drop down does not invoke a list of views.  So now I am wondering if this is the root problem for this issue I am having.
    Cheryl

    Hi Cheryl,
    I just tested your concern in my Project Online instance. As far as I know, there are no significative changes in the preview updates feature between 2010 and 2013 versions.
    As I said in your previous post, you are several views available in the "preview updates" page (unfortunately in french).
    Those views are the project views that are not related to resources and assignments, meaning all the "... tasks" project views should be available in the preview updates page. Then just edit one of those view adding your fields and save it.
    I tried to edit the task summary project view, adding a few field like bsaeline start and finish and it worked perfectly. Note that each field impacted by the update will be duplicated, for example the start date will be duplicated to a "previous start date"
    field.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Type not displaying on website

    After I publish my muse project to the web, on either my server on in catalyst, when page initially comes up, the type is not being displayed. If I refresh the page, it does appear. ( but I can't very well tell my viewers to do this to view my website.) This needs to be fixed. (I'm using a font called Open SANS). It's happening in multiple projects. Anyone have a clue as to whats going on? one of the issue sites is at http://www.vicontest.com

    I believe you are using Chrome. If yes, take a look at this thread - http://forums.adobe.com/message/6157625.
    A workaround is posted here at Exchange - http://muse.adobe.com/exchange-library/chrome-33-webfont-workaround-1.
    Thanks,
    Vinayak

  • FI doc type(ex.MM doc type)  not display Report FMAVCR01

    Hi Experts,
    I have to control FMAVCR01 Report display that
    FI doc type(Blart type - WZ (MM doc)  transfer posting is not included in the output.
    How to control display fi Doc type at FMAVCR01?
    Thanks for your answers

    Hi,
    FMAVCR01 is the report for displaying consumtion in AVC budget ledgers. If the documents in question were included in budget consumption, the FMAVCR01 will show them. So, the question is whether you simply don't display this consumption or you don't want these documents to consume the budget. In the first case, you will have to define your own report; in the second case, you have to modify the derivation logic for controlling objects in AVC.
    Regards,
    Eli

Maybe you are looking for