Quantcast
Channel: SCN : All Content - SAP Fiori
Viewing all 1807 articles
Browse latest View live

How to make not-password protected - Fiori Launchicons URL

$
0
0

Hi Team,

 

We have configured Fiori Launchpad in our landscape and its working as expected in all devices/browsers.

 

Step 1: Load the URL /sap/bc/ui5_ui5/ui2/ushell/shells/abap/Fiorilaunchpad.html

 

Step 2: Enter the credentials

 

Step 3: We will see the Fiori Laucnhpad home screen

 

Step 4: To bookmark Fiori Launchpad URL, When we click on "Add To Home Screen" from  iOS devices, Favorite icon is not displaying correctly Favorite icon is not working in mobile Devices

 

Step 5: SAP Suggested us to do the below to fix it


"In order to enable the proper icon loading, the following path should be changed to not-password protected, these URI's are present in Fiorilaunchpad.html"


How to achieve this?

 


/sap/public/bc/ui5_ui5/ui2/ushell/resources/sap/ushell/themes/base/img/launchicons/


This issue is pending from long time. Can any one provide your inputs?



Regards,

Vijay


Fiori Overview Page (OVP) Creating List, Table and Stack Card

$
0
0

Hello Everyone.

 

After going through  Anil Bavaraju's  blog on how to Create your first SAP Fiori Overview Page, I created my first blog on how to create all three types of cards i.e. List Card, Table Card and Stack Card (Quick Display Card) in a single go.


Creating List Card


1. Initially, go to SAP WEB IDE optional plugin tab and select Overview Page Plugin Option (ovp plugin) and hit save. (Refresh the browser to make changes go reflect)

                              1.png

 

2. Create Destination for Northwind oData service (if already in place) by going to Destination tab and key in following properties:-

 

                              2png.png

3.     Go to SAP WEB IDE and select New project from Template option, and choose Over View Page Application

 

                         3.png

 

 

 

 

4.      Name the project and click next. (Use Z in case you need to deploy Over view Page onto your server).

 

                    4.png

 

5. In Data Connection tab, select Service URL sub-tab and provide URL of your oData service and hit next.

 

                         5.png

 

 

6. Now we have to provide annotation source file. The content of the Annotation.xml file for List Card type should be like this and it must be under annotations folder which in under webapp folder.

 

<edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx"

    xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:sap="http://www.sap.com/Protocols/SAPData">

    <edmx:DataServices m:DataServiceVersion="2.0">

        <Schema Namespace="NorthwindModel" sap:schema-version="1" xmlns="http://docs.oasis-open.org/odata/ns/edm">

            <Annotations Target="NorthwindModel.Employee" xmlns="http://docs.oasis-open.org/odata/ns/edm">

                <Annotation Qualifier="Employees" Term="com.sap.vocabularies.UI.v1.LineItem">

                    <Collection>

                        <Record Type="com.sap.vocabularies.UI.v1.DataField">

                            <Annotation EnumMember="com.sap.vocabularies.UI.v1.ImportanceType/High" Term="com.sap.vocabularies.UI.v1.Importance"/>

                            <PropertyValue Property="Value">

                                <Apply Function="odata.concat">

                                    <Path>TitleOfCourtesy</Path>

                                    <String> </String>

                                    <Path>FirstName</Path>

                                    <String> </String>

                                    <Path>LastName</Path>

                                </Apply>

                            </PropertyValue>

                        </Record>

                        <Record Type="com.sap.vocabularies.UI.v1.DataField">

                            <Annotation EnumMember="com.sap.vocabularies.UI.v1.ImportanceType/High" Term="com.sap.vocabularies.UI.v1.Importance"/>

                            <PropertyValue Path="Title" Property="Value"/>

                        </Record>                     

                        <Record Type="com.sap.vocabularies.UI.v1.DataField">

                            <Annotation EnumMember="com.sap.vocabularies.UI.v1.ImportanceType/High" Term="com.sap.vocabularies.UI.v1.Importance"/>

                            <PropertyValue Property="Value">

                                <Apply Function="odata.concat">

                                    <Path>City</Path>

                                    <String>, </String>

                                    <Path>Region</Path>

                                    <String>, </String>

                                    <Path>Country</Path>

                                </Apply>

                            </PropertyValue>

                        </Record>

                    </Collection>

                </Annotation>

            </Annotations>

        </Schema>

    </edmx:DataServices>

</edmx:Edmx>

 

Target is NorthwindModel.Employee where Employee is the name of the entity type against which we are displaying the contents on the List Card.

        By default, the fields in the list card are mapped to the  com.sap.vocabularies.UI.v1.LineItem annotation.


  7. Click Next and Finish


                              7.png

 

                              8.png

 

8. Now go to the project and select New > Card

 

                                                  9.png

 

9. Select NorthWindModel and click Next

                               10.png

 

10. Select List Card and key in following values:-

 

                                 11.png

 

                                     12.png

 

11. Make changes in manifest.json file to display the data in the Card. Add Qualifier name used in Annotation file at end of annotation path.

 

                         123.png

 

11. Run the project in SAP Fiori Component on Sandbox. It would look like this

 

13.png

 

 

 

Similarly, do it for Table Card.

 

For Table card, select Table card from the Card selection Menu and change the annotation file accordingly. Annotation term for Table Card  can be seen from https://sapui5.netweaver.ondemand.com/#docs/guide/167bf7ccbb084afab7d846e1fa30b49c.html

I have created Table Card for Customers Entity Set. Annotation file for Table Card is as follows:-

 

 

<edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx"

    xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:sap="http://www.sap.com/Protocols/SAPData">

    <edmx:DataServices m:DataServiceVersion="2.0">

        <Schema Namespace="NorthwindModel" sap:schema-version="1" xmlns="http://docs.oasis-open.org/odata/ns/edm">

            <Annotations Target="NorthwindModel.Customer" xmlns="http://docs.oasis-open.org/odata/ns/edm">

                <Annotation Qualifier="Customers" Term="com.sap.vocabularies.UI.v1.LineItem">

                    <Collection>

                        <Record Type="com.sap.vocabularies.UI.v1.DataField">

                            <Annotation EnumMember="com.sap.vocabularies.UI.v1.ImportanceType/High" Term="com.sap.vocabularies.UI.v1.Importance"/>

                            <PropertyValue Property = "Label" String = "Name"></PropertyValue>

                            <PropertyValue Property="Value">

                                <Apply Function="odata.concat">

                                    <Path>ContactName</Path>

                                </Apply>

                            </PropertyValue>

                        </Record>

                        <Record Type="com.sap.vocabularies.UI.v1.DataField">

                            <Annotation EnumMember="com.sap.vocabularies.UI.v1.ImportanceType/High" Term="com.sap.vocabularies.UI.v1.Importance"/>

                            <PropertyValue Property = "Label" String = "Contact"></PropertyValue>

                            <PropertyValue Path = "Phone" Property="Value"/>

                        </Record>                     

                        <Record Type="com.sap.vocabularies.UI.v1.DataField">

                            <Annotation EnumMember="com.sap.vocabularies.UI.v1.ImportanceType/High" Term="com.sap.vocabularies.UI.v1.Importance"/>

                           <PropertyValue Property = "Label" String = "Address"></PropertyValue>

                            <PropertyValue Property="Value">

                                <Apply Function="odata.concat">

                                    <Path>City</Path>

                                    <String>, </String>

                                    <Path>Country</Path>

                                </Apply>

                            </PropertyValue>

                        </Record>

                    </Collection>

                </Annotation>

            </Annotations>

        </Schema>

    </edmx:DataServices>

</edmx:Edmx>

 

Manifest.json

 

14.png

 

Table card is displayed as follows:-

 

15.png

 

 

For Stack Card ( Quick Display card), I again used Customer entity set and made necessary changes to Annotation file which is as follows:-

 

<edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx"

    xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:sap="http://www.sap.com/Protocols/SAPData">

    <edmx:DataServices m:DataServiceVersion="2.0">

        <Schema Namespace="NorthwindModel" sap:schema-version="1" xmlns="http://docs.oasis-open.org/odata/ns/edm">

            <Annotations Target="NorthwindModel.Customer" xmlns="http://docs.oasis-open.org/odata/ns/edm">

                <Annotation Term="com.sap.vocabularies.UI.v1.HeaderInfoType">

                <PropertyValue Property="TypeName" String="Customer"/>

    <PropertyValue Property="TypeNamePlural" String="Customers"/>

    <PropertyValue Property="Title">

                        <Record Type="com.sap.vocabularies.UI.v1.DataField">

                            <PropertyValue Property="Value">

                                    <Path>ContactName</Path>

                            </PropertyValue>

                        </Record>

                        </PropertyValue>

                        </Annotation>

                <Annotation Term="com.sap.vocabularies.UI.v1.Facets">

                <Collection>

    <Record Type="UI.ReferenceFacet">

        <Annotation String="true" Term="com.sap.vocabularies.UI.v1.IsSummary"/>

    <PropertyValue AnnotationPath="@com.sap.vocabularies.UI.v1.FieldGroup#NorthwindCustomers" Property="Target"/>

    </Record>

    </Collection>

  </Annotation>

    <Annotation Qualifier="NorthwindCustomers" Term="com.sap.vocabularies.UI.v1.FieldGroup">

  <Record>

       <PropertyValue Property="Data">

                    <Collection>

                    <Record Type="com.sap.vocabularies.UI.v1.DataField">

                        <PropertyValue Property="Value">

                                <Apply Function="odata.concat">

                                <String> Contact Name </String>

                                    <Path>ContactName</Path>

                                </Apply>

                            </PropertyValue>

                        </Record>      

                        <Record Type="com.sap.vocabularies.UI.v1.DataField">

                        <PropertyValue Property="Value">

                                <Apply Function="odata.concat">

                                <String> Contact No. </String>

                                    <Path>Phone</Path>

                                </Apply>

                            </PropertyValue>

                        </Record>                     

                        <Record Type="com.sap.vocabularies.UI.v1.DataField">

                            <PropertyValue Property="Value">

                                <Apply Function="odata.concat">

                                <String>Address</String>

                                    <Path>City</Path>

                                    <String>, </String>

                                    <Path>Country</Path>

                                </Apply>

                            </PropertyValue>

                        </Record>

                    </Collection>

                    </PropertyValue>

                    </Record>

                  </Annotation>

            </Annotations>

        </Schema>

    </edmx:DataServices>

</edmx:Edmx>

 

 

Manifest.json file remains unchanged for Stack Type Card.

 

Stack Card is displayed as follows:-

 

16.png

17.png

 

Cheers,

Parth

Getting an error of ‘Invalid configuration for catalog/Web Dispatcher’ while opening the SAP Fiori Launchpad Designer,with HCM and Inbox Specific Catalogs not showing up:

$
0
0

Getting an error of ‘Invalid configuration for catalog/Web Dispatcher’ while opening the SAP Fiori Launchpad Designer(T-code = /n/ui2/flpd_cust):

  • While accessing the Fiori Launchpad Designer,we were able to add and configure the catalogs in Fiori Launchpad Designer[T-code = /UI2/FLPD_CUST],after application of the following notes:

 

  • Here are the notes that solved this issue of Launchpad Catalogs now showing up in Fiori Launchpad Designer and Fiori Launchpad when personalizing tiles.

 

 

This is the main note:

2251801 - Tile catalogs and groups are not loaded after upgrade in Fiori Launchpad and Fiori Launchpad Designer

describing which notes are to be implemented in Back-end(E10) and Front-end(FID). But in co-ordination
because first note needs to be applied first in the Back-end(E10) and then in the Front-End(FID).

There are some notes which are to  be applied only in back-end,but manual steps need to be done on both front-end and back-end. Following notes are then to be implemented:

2245413 - Truncated filter values(Back-end only)
manual steps to be done first in back-end and then in front-end.

2241188 - Some characters of filter value get cut in OData request (Both Back-end and Front-end)

2232883 - Wrong values in select options table(Both Back-end and Front-end)
manual steps to be done first in back-end and then in front-end.(pre-req for note = 2205402)

2205402 - Wrong values in select options table(Both Back-end and Front-end)
manual steps to be done first in back-end and then in front-end.

2182485 - UI2_FND (SP14): $filter fix for UI2 OData services(Front-End)
manual steps to be done front-end.(pre- req for note = 2205402,2232883 and 2017117)

2249354 - Double properties in select table(Back-End)

 

  • Now we are getting a very abnormal behavior of an error and its also not showing the HCM and Inbox app catalogs for some reason. Here are the screenshots:

 

 

 

 

Here is the log,as per the debugger tool in Chrome:

 

Here is the entire error log in its entirety:

2016-02-10 12:34:15 Base URL '/sap/hba/r/sb/core/odata/runtime/SMART_BUSINESS.xsodata' already registered -  sap.ui2.srvc.Factoryz @ sap-ui-core.js:80error @ sap-ui-core.js:80sap.ui2.srvc.log.error @ abap.js:26sap.ui2.srvc.Error @ shell.js:112addRemoteCatalogService @ factory.js:2sap.ui.controller.onInit @ RemoteCatalog.controller.js:55a.fireEvent @ sap-ui-core.js:135a.fireEvent @ sap-ui-core.js:144(anonymous function) @ sap-ui-core.js:144V._initCompositeSupport @ View.js:6E.extend.constructor @ sap-ui-core.js:144M.extend.constructor @ sap-ui-core.js:144E.extend.constructor @ sap-ui-core.js:144f @ sap-ui-core.js:144f @ sap-ui-core.js:144sap.ui.view @ View.js:6sap.ui.controller.selectCatalog @ AdminPage.controller.js:1024catalogSuccess @ AdminPage.controller.js:2601sap.ui2.srvc.call @ abap.js:26q @ ODataWrapper.js:2(anonymous function) @ datajs.js:17p9 @ datajs.js:17E.dispatch @ abap.js:2X.handleEvent @ abap.js:2h @ abap.js:2

sap-ui-core.js:80 2016-02-10 12:34:15 Call to success handler failed: Cannot read property 'length' of undefined - TypeError: Cannot read property 'length' of undefined

    at that.oCatalogService.readCustomizingDefaultRequest.bIsLocalObj (https://:44355/sap/bc/ui5_ui5/sap/ARSRVC_UPB_ADMN/sap/ui2suite/admin/AdminPage.controller.js:2734:54)

    at Object.sap.ui2.srvc.call (https://:44355/sap/public/bc/ui5_ui5/resources/sap/ushell_abap/bootstrap/abap.js:26:1861)

    at q (https://:44355/sap/public/bc/ui5_ui5/resources/~20150811142…~/sap/ushell_abap/library-preload.json/sap/ui2/srvc/ODataWrapper.js:2:5261)

    at eval (https://:44355/sap/public/bc/ui5_ui5/resources/~20150811142400~/sap/ui/thirdparty/datajs.js:17:12670)

    at XMLHttpRequest.p9 (https://:44355/sap/public/bc/ui5_ui5/resources/~20150811142400~/sap/ui/thirdparty/datajs.js:17:20355)

    at s.E.dispatch (https://:44355/sap/public/bc/ui5_ui5/resources/sap/ushell_abap/bootstrap/abap.js:2:2306)

    at XMLHttpRequest.X.handleEvent (https://:44355/sap/public/bc/ui5_ui5/resources/sap/ushell_abap/bootstrap/abap.js:2:3429)

    at XMLHttpRequest.h [as _fnHandler] (https://:44355/sap/public/bc/ui5_ui5/resources/sap/ushell_abap/bootstrap/abap.js:2:3688) sap.ui2.srvcz @ sap-ui-core.js:80error @ sap-ui-core.js:80sap.ui2.srvc.log.error @ abap.js:26sap.ui2.srvc.call @ abap.js:26q @ ODataWrapper.js:2(anonymous function) @ datajs.js:17p9 @ datajs.js:17E.dispatch @ abap.js:2X.handleEvent @ abap.js:2h @ abap.js:2

  1. abap.js:2 GET https://:44355/sap/hba/r/sb/core/odata/runtime/SMART_BUSINESS.xsodata;o=HANA/Catalogs('HANA_CATALOG')/Chips 404 (Not found)X.send @ abap.js:2o.defaultHttpClient.request @ datajs.js:17E2 @ datajs.js:17o.request @ datajs.js:17o.read @ datajs.js:17l @ ODataWrapper.js:2read @ ODataWrapper.js:2readCatalogChips @ PageBuildingService.js:2readChips @ RemoteCatalogService.js:2v @ catalog.js:2sap.ui2.srvc.call @ abap.js:26q @ ODataWrapper.js:2(anonymous function) @ datajs.js:17p9 @ datajs.js:17E.dispatch @ abap.js:2X.handleEvent @ abap.js:2h @ abap.js:2

sap-ui-core.js:80 2016-02-10 12:34:16 Error (404, Not found) in OData response for GET "/sap/hba/r/sb/core/odata/runtime/SMART_BUSINESS.xsodata;o=HANA/Catalogs('HANA_CATALOG')/Chips": HTTP request failed - {"requestUri":"/sap/hba/r/sb/core/odata/runtime/SMART_BUSINESS.xsodata;o=HANA/Catalogs('HANA_CATALOG')/Chips","statusCode":404,"statusText":"Not found","headers":[],"body":"<!DOCTYPE html PUBLIC\"-//W3C//DTD HTML 4.01Transitional//EN\"><html><head><title>Logon Error Message</title><META http-equiv=\"Content-Type\" content=\"text/html;charset=UTF-8\"><style type=\"text/css\">body { font-family:tahoma,helvetica,sans-serif;color:#333333;background-color:#FFFFFF; }td { font-family:tahoma,helvetica,sans-serif;font-size:70%;color:#333333; }h1 { font-family:tahoma,helvetica,sans-serif;font-size:160%;font-weight:bold;margin-top:15px;margin-bottom:3px;color:#003366; }h2 { font-family:verdana,helvetica,sans-serif;font-size:120%;font-style:italic;font-weight:bold;margin-top:6px;margin-bottom:6px;color:#999900; }p { font-family:tahoma,helvetica,sans-serif;color:#333333;margin-top:4px;margin-bottom:4px; }ul { font-family:tahoma,helvetica,sans-serif;color:#333333;list-style-type:square;margin-top:8px;margin-bottom:8px; }li { font-family:tahoma,helvetica,sans-serif;color:#33333;margin-top:4px; }.emphasize { color:#333333;background-color:#C8E3FF;padding:5px;}.note { color:#CC6600; }a { font-family:tahoma,helvetica,sans-serif;text-decoration:underline;color:#336699; }a:visited { color:#001166; }a:hover { text-decoration:none; }</style></head><body><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\"><tr><td><h1>Service cannot be reached</h1><br><h2>What has happened?</h2><p>URL  call was terminated because the corresponding service is not available.</p></td></tr><tr><td> </td></tr><tr><td class=\"emphasize\"><strong>Note</strong><br>The termination occurred in system  with error code <b>404</b> and for the reason <b>Not found</b>.</td></tr><tr><td> </td></tr><tr><td><p><h2>What can I do?</h2>Please select a valid URL.</ul><br/><p class=\"note\"></p><br/><p>HTTP 404 - Not found<br><p>Your SAP Internet Communication Framework Team</p></td></tr></table></body></html>"} sap.ui2.srvc.ODataWrapperz @ sap-ui-core.js:80error @ sap-ui-core.js:80onError @ ODataWrapper.js:2p9 @ datajs.js:17E.dispatch @ abap.js:2X.handleEvent @ abap.js:2h @ abap.js:2

 

  • here is the URL of the Launchpad Designer:

http://<Domain_Name>:8055/sap/bc/ui5_ui5/sap/arsrvc_upb_admn/main.html?scope=CUST&sap-client=100&sap-language=EN#/Catalog/X-SAP-REMOTE:/UI2/SAP_KPIMOD_TC_R

 

 

  • Here is the Service Associated with Activate and Maintain Services in ‘/IWFND/MAINT_SERVICE

  • And here is the settings for the system Alias assigned to this service ‘LOCAL’ in ‘Manage SAP System Aliases’, which points to  the SAP gateway server itself:

 

 


 

  • Here is the service in SICF,which is already active:

 

  • These are the roles assigned to the user, through which the we are logging into Launchpad Designer:

SAP_FND_BCR_MANAGER_T

SAP_FND_TCR_T

SAP_UI2_ADMIN_700

SAP_UI2_FIORI_CATALOGS_READ

SAP_UI2_LAUNCH_PAGE

SAP_UI2_NEWS_TILE

SAP_UI2_PAGEBUILDER_CONFIG

SAP_UI2_PAGEBUILDER_CUST

SAP_UI2_PAGEBUILDER_PERS

SAP_UI2_USER_700

Y_ABAP_SE38

Y_CONSULTANTS_GATEWAY

Y_CONSULTANTS_GATEWAY_NEW

Y_CONSULTANTS_GATEWAY_TWO

ZSAP_BC_DWB_ABAPDEVELOPER

ZSAP_FND_BCR_MANAGER_T

ZSAP_FND_TCR_T

ZSAP_HR_BCR_EMPLOYEE_T

ZSAP_HR_BCR_MANAGER_T

ZSAP_HR_TCR_T

ZSAP_UI2_ADMIN_700

ZSAP_UI2_LAUNCH_PAGE

ZSAP_UI2_USER_700

ZZ_BC_FIORI_ADDITIONAL_AUTH

ZZ_BC_FIORI_CONSULTANT_ROLE

ZZ_HCM_FIORI_GATEWAY_USER_ROLE

Z_FIORI_AUTH_OBJECTS_ROLE

Z_SAP_S_RFCACL

Z_TRUSTED



 

Here are the software component details:

 

Software Components on SAP Gateway Server(Front-END):

SAP_BASIS          740        0013      SAPKB74013      SAP Basis Component

SAP_ABA            740        0013      SAPKA74013      Cross-Application Component

SAP_GWFND    740        0013      SAPK-74013INSAPGWFND          SAP Gateway Foundation 7.40

SAP_UI 740        0014      SAPK-74014INSAPUI      User Interface Technology 7.40

PI_BASIS              740        0013      SAPK-74013INPIBASIS    Basis Plug-In

ST-PI      740        0002      SAPK-74002INSTPI          SAP Solution Tools Plug-In

SAP_BW              740        0013      SAPKW74013    SAP Business Warehouse

IW_PGW            100        0008      SAPK-10008INIWPGW  Process Gateway

UIHR001              100        0003      SAPK-10003INUIHR001  UI for ERP Human Capital Management

UIX01CA1            100        0005      SAPK-10005INUIX01CA1              UI for Cross-Applications

UIX01EAP            100        0008      SAPK-10008INUIX01EAP              UI for ERP Central Applications

UIX01HCM          100        0007      SAPK-10007INUIX01HCM            UI for HCM Application

Installed Product Version on SAP Gateway Server(FRONT-END):

SAP NETWEAVER            7.4          sap.com              SAP NETWEAVER 7.4

 

 

 

Software Components on SAP ERP System(BACK-END):

SAP_BASIS          740        0010      SAPKB74010      SAP Basis Component

SAP_ABA            740        0010      SAPKA74010      Cross-Application Component

SAP_GWFND    740        0013      SAPK-74013INSAPGWFND          SAP Gateway Foundation 7.40

SAP_UI 740        0014      SAPK-74014INSAPUI      User Interface Technology 7.40

PI_BASIS              740        0010      SAPK-74010INPIBASIS    Basis Plug-In

ST-PI      740        0003      SAPK-74003INSTPI          SAP Solution Tools Plug-In

SAP_BW              740        0010      SAPKW74010    SAP Business Warehouse

IW_PGW            100        0007      SAPK-10007INIWPGW  Process Gateway

MDG_FND          747        0008      SAPK-74708INMDGFND                MDG Foundation 732

SAP_AP                700        0032      SAPKNA7032      SAP Application Platform

SAP_BS_FND    747        0008      SAPK-74708INSAPBSFND              SAP Business Suite Foundation

WEBCUIF            747        0008      SAPK-74708INWEBCUIF                SAP Web UI Framework

MDG_APPL        617        0008      SAPK-61708INMDGAPPL              MDG Applications 607

SAP_APPL          617        0008      SAPKH61708      Logistics and Accounting

SAP_FIN              617        0008      SAPK-61708INSAPFIN    SAP_FIN

SAP_HR              608        0018      SAPKE60818      Human Resources

SAP_HRCAE      608        0018      SAPK-60818INSAPHRCAE            Sub component SAP_HRCAE of SAP_HR

SAP_HRCAR      608        0018      SAPK-60818INSAPHRCAR            Sub component SAP_HRCAR of SAP_HR

SAP_HRCAT      608        0018      SAPK-60818INSAPHRCAT            Sub component SAP_HRCAT of SAP_HR

SAP_HRCAU      608        0018      SAPK-60818INSAPHRCAU            Sub component SAP_HRCAU of SAP_HR

SAP_HRCBE        608        0018      SAPK-60818INSAPHRCBE              Sub component SAP_HRCBE of SAP_HR

SAP_HRCBG      608        0018      SAPK-60818INSAPHRCBG            Sub component SAP_HRCBG of SAP_HR

SAP_HRCBR      608        0018      SAPK-60818INSAPHRCBR            Sub component SAP_HRCBR of SAP_HR

SAP_HRCCA      608        0018      SAPK-60818INSAPHRCCA            Sub component SAP_HRCCA of SAP_HR

SAP_HRCCH      608        0018      SAPK-60818INSAPHRCCH            Sub component SAP_HRCCH of SAP_HR

SAP_HRCCL        608        0018      SAPK-60818INSAPHRCCL              Sub component SAP_HRCCL of SAP_HR

SAP_HRCCN      608        0018      SAPK-60818INSAPHRCCN            Sub component SAP_HRCCN of SAP_HR

SAP_HRCCO      608        0018      SAPK-60818INSAPHRCCO            Sub component SAP_HRCCO of SAP_HR

SAP_HRCCZ        608        0018      SAPK-60818INSAPHRCCZ              Sub component SAP_HRCCZ of SAP_HR

SAP_HRCDE      608        0018      SAPK-60818INSAPHRCDE            Sub component SAP_HRCDE of SAP_HR

SAP_HRCDK      608        0018      SAPK-60818INSAPHRCDK            Sub component SAP_HRCDK of SAP_HR

SAP_HRCEG      608        0018      SAPK-60818INSAPHRCEG            Sub component SAP_HRCEG of SAP_HR

SAP_HRCES        608        0018      SAPK-60818INSAPHRCES              Sub component SAP_HRCES of SAP_HR

SAP_HRCFI        608        0018      SAPK-60818INSAPHRCFI              Sub component SAP_HRCFI of SAP_HR

SAP_HRCFR        608        0018      SAPK-60818INSAPHRCFR              Sub component SAP_HRCFR of SAP_HR

SAP_HRCGB      608        0018      SAPK-60818INSAPHRCGB            Sub component SAP_HRCGB of SAP_HR

SAP_HRCGR      608        0018      SAPK-60818INSAPHRCGR            Sub component SAP_HRCGR of SAP_HR

SAP_HRCHK      608        0018      SAPK-60818INSAPHRCHK            Sub component SAP_HRCHK of SAP_HR

SAP_HRCHR      608        0018      SAPK-60818INSAPHRCHR            Sub component SAP_HRCHR of SAP_HR

SAP_HRCHU      608        0018      SAPK-60818INSAPHRCHU            Sub component SAP_HRCHU of SAP_HR

SAP_HRCID        608        0018      SAPK-60818INSAPHRCID              Sub component SAP_HRCID of SAP_HR

SAP_HRCIE        608        0018      SAPK-60818INSAPHRCIE              Sub component SAP_HRCIE of SAP_HR

SAP_HRCIN        608        0018      SAPK-60818INSAPHRCIN              Sub component SAP_HRCIN of SAP_HR

SAP_HRCIT        608        0018      SAPK-60818INSAPHRCIT              Sub component SAP_HRCIT of SAP_HR

SAP_HRCJP        608        0018      SAPK-60818INSAPHRCJP              Sub component SAP_HRCJP of SAP_HR

SAP_HRCKR      608        0018      SAPK-60818INSAPHRCKR            Sub component SAP_HRCKR of SAP_HR

SAP_HRCKW    608        0018      SAPK-60818INSAPHRCKW          Sub component SAP_HRCKW of SAP_HR

SAP_HRCKZ        608        0018      SAPK-60818INSAPHRCKZ              Sub component SAP_HRCKZ of SAP_HR

SAP_HRCMX      608        0018      SAPK-60818INSAPHRCMX            Sub component SAP_HRCMX of SAP_HR

SAP_HRCMY      608        0018      SAPK-60818INSAPHRCMY            Sub component SAP_HRCMY of SAP_HR

SAP_HRCNL      608        0018      SAPK-60818INSAPHRCNL            Sub component SAP_HRCNL of SAP_HR

SAP_HRCNO      608        0018      SAPK-60818INSAPHRCNO            Sub component SAP_HRCNO of SAP_HR

SAP_HRCNZ      608        0018      SAPK-60818INSAPHRCNZ            Sub component SAP_HRCNZ of SAP_HR

SAP_HRCOM    608        0018      SAPK-60818INSAPHRCOM          Sub component SAP_HRCOM of SAP_HR

SAP_HRCPH      608        0018      SAPK-60818INSAPHRCPH            Sub component SAP_HRCPH of SAP_HR

SAP_HRCPL        608        0018      SAPK-60818INSAPHRCPL              Sub component SAP_HRCPL of SAP_HR

SAP_HRCPT        608        0018      SAPK-60818INSAPHRCPT              Sub component SAP_HRCPT of SAP_HR

SAP_HRCQA      608        0018      SAPK-60818INSAPHRCQA            Sub component SAP_HRCQA of SAP_HR

SAP_HRCRO      608        0018      SAPK-60818INSAPHRCRO            Sub component SAP_HRCRO of SAP_HR

SAP_HRCRU      608        0018      SAPK-60818INSAPHRCRU            Sub component SAP_HRCRU of SAP_HR

SAP_HRCSA      608        0018      SAPK-60818INSAPHRCSA            Sub component SAP_HRCSA of SAP_HR

SAP_HRCSE        608        0018      SAPK-60818INSAPHRCSE              Sub component SAP_HRCSE of SAP_HR

SAP_HRCSG      608        0018      SAPK-60818INSAPHRCSG            Sub component SAP_HRCSG of SAP_HR

SAP_HRCSI        608        0018      SAPK-60818INSAPHRCSI              Sub component SAP_HRCSI of SAP_HR

SAP_HRCSK        608        0018      SAPK-60818INSAPHRCSK              Sub component SAP_HRCSK of SAP_HR

SAP_HRCTH      608        0018      SAPK-60818INSAPHRCTH            Sub component SAP_HRCTH of SAP_HR

SAP_HRCTR        608        0018      SAPK-60818INSAPHRCTR              Sub component SAP_HRCTR of SAP_HR

SAP_HRCTW      608        0018      SAPK-60818INSAPHRCTW            Sub component SAP_HRCTW of SAP_HR

SAP_HRCUA      608        0018      SAPK-60818INSAPHRCUA            Sub component SAP_HRCUA of SAP_HR

SAP_HRCUN      608        0018      SAPK-60818INSAPHRCUN            Sub component SAP_HRCUN of SAP_HR

SAP_HRCUS      608        0018      SAPK-60818INSAPHRCUS            Sub component SAP_HRCUS of SAP_HR

SAP_HRCVE      608        0018      SAPK-60818INSAPHRCVE            Sub component SAP_HRCVE of SAP_HR

SAP_HRCZA      608        0018      SAPK-60818INSAPHRCZA            Sub component SAP_HRCZA of SAP_HR

SAP_HRGXX      608        0018      SAPK-60818INSAPHRGXX            Sub component SAP_HRGXX of SAP_HR

SAP_HRRXX      608        0018      SAPK-60818INSAPHRRXX            Sub component SAP_HRRXX of SAP_HR

EA-IPPE                400        0026      SAPKGPID26      SAP iPPE

EA-APPL              617        0008      SAPK-61708INEAAPPL    SAP Enterprise Extension PLM, SCM, Financials

EA-DFPS              600        0026      SAPKGPDD26    SAP Enterprise Extension Defense Forces & Public Security

EA-FIN  617        0008      SAPK-61708INEAFIN      EA-FIN

EA-FINSERV        600        0027      SAPKGPFD27    SAP Enterprise Extension Financial Services

EA-GLTRADE      600        0026      SAPKGPGD26    SAP Enterprise Extension Global Trade

EA-HR  608        0018      SAPK-60818INEAHR        SAP Enterprise Extension HR

EA-HRCAE          608        0018      SAPK-60818INEAHRCAE                Sub component EA-HRCAE of EA-HR

EA-HRCAR          608        0018      SAPK-60818INEAHRCAR                Sub component EA-HRCAR of EA-HR

EA-HRCAT          608        0018      SAPK-60818INEAHRCAT                Sub component EA-HRCAT of EA-HR

EA-HRCAU          608        0018      SAPK-60818INEAHRCAU              Sub component EA-HRCAU of EA-HR

EA-HRCBE          608        0018      SAPK-60818INEAHRCBE Sub component EA-HRCBE of EA-HR

EA-HRCBG          608        0018      SAPK-60818INEAHRCBG              Sub component EA-HRCBG of EA-HR

EA-HRCBR          608        0018      SAPK-60818INEAHRCBR                Sub component EA-HRCBR of EA-HR

EA-HRCCA          608        0018      SAPK-60818INEAHRCCA                Sub component EA-HRCCA of EA-HR

EA-HRCCH          608        0018      SAPK-60818INEAHRCCH              Sub component EA-HRCCH of EA-HR

EA-HRCCL            608        0018      SAPK-60818INEAHRCCL Sub component EA-HRCCL of EA-HR

EA-HRCCN          608        0018      SAPK-60818INEAHRCCN              Sub component EA-HRCCN of EA-HR

EA-HRCCO          608        0018      SAPK-60818INEAHRCCO              Sub component EA-HRCCO of EA-HR

EA-HRCCZ          608        0018      SAPK-60818INEAHRCCZ Sub component EA-HRCCZ of EA-HR

EA-HRCDE          608        0018      SAPK-60818INEAHRCDE                Sub component EA-HRCDE of EA-HR

EA-HRCDK          608        0018      SAPK-60818INEAHRCDK                Sub component EA-HRCDK of EA-HR

EA-HRCEG          608        0018      SAPK-60818INEAHRCEG                Sub component EA-HRCEG of EA-HR

EA-HRCES            608        0018      SAPK-60818INEAHRCES Sub component EA-HRCES of EA-HR

EA-HRCFI            608        0018      SAPK-60818INEAHRCFI  Sub component EA-HRCFI of EA-HR

EA-HRCFR          608        0018      SAPK-60818INEAHRCFR Sub component EA-HRCFR of EA-HR

EA-HRCGB          608        0018      SAPK-60818INEAHRCGB              Sub component EA-HRCGB of EA-HR

EA-HRCGR          608        0018      SAPK-60818INEAHRCGR              Sub component EA-HRCGR of EA-HR

EA-HRCHK          608        0018      SAPK-60818INEAHRCHK              Sub component EA-HRCHK of EA-HR

EA-HRCHR          608        0018      SAPK-60818INEAHRCHR              Sub component EA-HRCHR of EA-HR

EA-HRCHU          608        0018      SAPK-60818INEAHRCHU              Sub component EA-HRCHU of EA-HR

EA-HRCID            608        0018      SAPK-60818INEAHRCID Sub component EA-HRCID of EA-HR

EA-HRCIE            608        0018      SAPK-60818INEAHRCIE  Sub component EA-HRCIE of EA-HR

EA-HRCIN            608        0018      SAPK-60818INEAHRCIN Sub component EA-HRCIN of EA-HR

EA-HRCIT            608        0018      SAPK-60818INEAHRCIT  Sub component EA-HRCIT of EA-HR

EA-HRCJP            608        0018      SAPK-60818INEAHRCJP Sub component EA-HRCJP of EA-HR

EA-HRCKR          608        0018      SAPK-60818INEAHRCKR                Sub component EA-HRCKR of EA-HR

EA-HRCKW        608        0018      SAPK-60818INEAHRCKW              Sub component EA-HRCKW of EA-HR

EA-HRCKZ          608        0018      SAPK-60818INEAHRCKZ Sub component EA-HRCKZ of EA-HR

EA-HRCMX        608        0018      SAPK-60818INEAHRCMX              Sub component EA-HRCMX of EA-HR

EA-HRCMY        608        0018      SAPK-60818INEAHRCMY              Sub component EA-HRCMY of EA-HR

EA-HRCNL          608        0018      SAPK-60818INEAHRCNL                Sub component EA-HRCNL of EA-HR

EA-HRCNO          608        0018      SAPK-60818INEAHRCNO              Sub component EA-HRCNO of EA-HR

EA-HRCNZ          608        0018      SAPK-60818INEAHRCNZ                Sub component EA-HRCNZ of EA-HR

EA-HRCOM        608        0018      SAPK-60818INEAHRCOM              Sub component EA-HRCOM of EA-HR

EA-HRCPH          608        0018      SAPK-60818INEAHRCPH              Sub component EA-HRCPH of EA-HR

EA-HRCPL            608        0018      SAPK-60818INEAHRCPL Sub component EA-HRCPL of EA-HR

EA-HRCPT          608        0018      SAPK-60818INEAHRCPT Sub component EA-HRCPT of EA-HR

EA-HRCQA          608        0018      SAPK-60818INEAHRCQA              Sub component EA-HRCQA of EA-HR

EA-HRCRO          608        0018      SAPK-60818INEAHRCRO              Sub component EA-HRCRO of EA-HR

EA-HRCRU          608        0018      SAPK-60818INEAHRCRU              Sub component EA-HRCRU of EA-HR

EA-HRCSA          608        0018      SAPK-60818INEAHRCSA                Sub component EA-HRCSA of EA-HR

EA-HRCSE            608        0018      SAPK-60818INEAHRCSE Sub component EA-HRCSE of EA-HR

EA-HRCSG          608        0018      SAPK-60818INEAHRCSG                Sub component EA-HRCSG of EA-HR

EA-HRCSI            608        0018      SAPK-60818INEAHRCSI  Sub component EA-HRCSI of EA-HR

EA-HRCSK          608        0018      SAPK-60818INEAHRCSK Sub component EA-HRCSK of EA-HR

EA-HRCTH          608        0018      SAPK-60818INEAHRCTH                Sub component EA-HRCTH of EA-HR

EA-HRCTR          608        0018      SAPK-60818INEAHRCTR Sub component EA-HRCTR of EA-HR

EA-HRCTW        608        0018      SAPK-60818INEAHRCTW              Sub component EA-HRCTW of EA-HR

EA-HRCUA          608        0018      SAPK-60818INEAHRCUA              Sub component EA-HRCUA of EA-HR

EA-HRCUN          608        0018      SAPK-60818INEAHRCUN              Sub component EA-HRCUN of EA-HR

EA-HRCUS          608        0018      SAPK-60818INEAHRCUS                Sub component EA-HRCUS of EA-HR

EA-HRCVE          608        0018      SAPK-60818INEAHRCVE                Sub component EA-HRCVE of EA-HR

EA-HRCZA          608        0018      SAPK-60818INEAHRCZA                Sub component EA-HRCZA of EA-HR

EA-HRGXX          608        0018      SAPK-60818INEAHRGXX              Sub component EA-HRGXX of EA-HR

EA-HRRXX          608        0018      SAPK-60818INEAHRRXX                Sub component EA-HRRXX of EA-HR

EA-PS    617        0008      SAPK-61708INEAPS        SAP Enterprise Extension Public Services

EA-RETAIL          600        0026      SAPKGPRD26    SAP Enterprise Extension Retail

FINBASIS            747        0008      SAPK-74708INFINBASIS Financial Basis

FSCM_CCD        617        0008      SAPK-61708INFSCMCCD              FSCM_CCD

ECC-DIMP          600        0019      SAPK-60019INECCDIMP DIMP

ECC-SE  605        0013      SAPK-60513INECCSE      ECC-SE

ERECRUIT            617        0007      SAPK-61707INERECRUIT                E-Recruiting

FI-CA    617        0008      SAPK-61708INFICA          FI-CA

FI-CAX  617        0008      SAPK-61708INFICAX      FI-CA Extended

INSURANCE        600        0019      SAPK-60019ININSURANC            SAP Insurance

IS-CWM              600        0019      SAPK-60019INISCWM    Industry Solution Catch Weight Management

IS-H      600        0025      SAPK-60025INISH            SAP Healthcare

IS-M      600        0019      SAPK-60019INISM          SAP MEDIA

IS-OIL    600        0019      SAPK-60019INISOIL        IS-OIL

IS-PS-CA              617        0008      SAPK-61708INISPSCA    IS-PUBLIC SECTOR CONTRACT ACCOUNTING

IS-UT    600        0019      SAPK-60019INISUT          SAP Utilities/Telecommunication

LSOFE    600        0026      SAPK-60026INLSOFE      SAP Learning Solution Front-End

SEM-BW              600        0026      SAPKGS6026      SEM-BW: Strategic Enterprise Management

GBAPP002          600        0009      SAPK-60009INGBAPP002              GBAPP002

GBHCM002        600        0015      SAPK-60015INGBHCM002            HCM Employee Requests (Leave)

GBHCM003        600        0012      SAPK-60012INGBHCM003            HCM Manager Approvals (Time, Training, L

GBX01HR            600        0004      SAPK-60004INGBX01HR                FIORI X1 HCM

GBX01HR5          605        0002      SAPK-60502INGBX01HR5              FIORI X1 HCM

SRA001 600        0007      SAPK-60007INSRA001    Approve Purchasing Contracts OData Integ

SRA002 600        0008      SAPK-60008INSRA002    Time Recording OData Integration Compone

SRA003 600        0003      SAPK-60003INSRA003    Create Travel Expenses OData Integration

SRA006 600        0008      SAPK-60008INSRA006    Remuneration Statements OData Integratio

SRA007 600        0006      SAPK-60006INSRA007    My Benefits Enrollment OData Integration

SRA010 600        0007      SAPK-60007INSRA010    Staffing List OData Integration Componen

SRA012 600        0005      SAPK-60005INSRA012    My Department Spend

SRA013 600        0007      SAPK-60007INSRA013    Create Purchase Order from Released Purc

SRA016 600        0008      SAPK-60008INSRA016    Price and Availability Check OData Integ

SRA017 600        0007      SAPK-60007INSRA017    Create Purchase Order OData Integration

SRA018 600        0007      SAPK-60007INSRA018    Purchase Order Status Tracking OData Int

SRA019 600        0005      SAPK-60005INSRA019    Track Shipment OData Integration Compone

SRA020 600        0007      SAPK-60007INSRA020    Purchase Order Status (In Process, Appro

SRA021 600        0007      SAPK-60007INSRA021    Customer Invoices OData Integration Comp

BP-CANW          731V4    0000      -              Tech. Obj. for SAP BP pkg. act. based on

BP-ERP 606V4    0000      -              SAP Best Practices All-in-One (EhP6)

BP-SOLBLD          70V8      0000      -              Solution Builder on SAP NW 7.02

CFMFND              100_617              0003      SAPK-16703INCFMFND CIDEON CAFM Suite Foundation

CFMPUB              100_617              0003      SAPK-16703INCFMPUB CIDEON Publisher

CFMREP              100_617              0001      SAPK-16701INCFMREP  CFMREP 100_617: Add-On Upgrade

CIDAFW              100_740              0001      SAPK-17401INCIDAFW  CIDEON Application Framework

CIDCAD 100_702              0012      SAPK-17212INCIDCAD    CIDEON PLM / CAD Base

CIDEON                100_740              0002      SAPK-17402INCIDEON  CIDEON Tools

MOVIAPP            220_700              0000      -              Movilizer Application Framework

MOVIBASE          220_700              0000      -              Movilizer SAP Connector

MOVIGEN          220_700              0000      -              Movilizer SAP Connector / Generated Obje

MOVIMFS          220        0000      -              Movilizer for SAP PM/CS - Core

MOVIMFSC        220        0000      -              Movilizer for SAP PM/CS - Common

MOVIMFSD        220        0000      -              Movilizer for SAP PM/CS - DB Layer

MOVIMM          220        0000      -              Movilizer for SAP MM - Application Layer

MOVIPRX            220_700              0000      -              Movilizer WebService Proxy

MOVIPRXC        220_700              0000      -              Movilizer WebService Proxy / Common Obje

NAKISA 430_740_RF        0000      -              Nakisa STVN Add-on RF

PLMA    100_740              0005      SAPK-17405INPLMA      CIDEON Conversion Engine

ST-A/PI 01S_731              0000      -              Servicetools for SAP Basis 731

Installed Product Versions on SAP ERP ECC(Back-end):

SAP ERP              2005      sap.com              SAP ERP 6.0

EHP7 FOR SAP ERP 6.0  EHP7 FOR SAP ERP 6.0  sap.com              EHP7 FOR SAP ERP 6.0

SAP NETWEAVER            7.4          sap.com              SAP NETWEAVER 7.4

SAP HCM RENOVATION                2.0          sap.com              HR RENEWAL 2.0

Odata services not listed in Backend services.

$
0
0

Hi,


I have deleted the below services through debugging by skipping the Exception occured while TADIR processing.

`

o /UI2/PAGE_BUILDER_CONF
o /UI2/PAGE_BUILDER_PERS
o /UI2/PAGE_BUILDER_CUST
o /UI2/INTEROP
o /UI2/TRANSPORT

 

Also, deleted the entries from /IWFND/I_MED_SRG .

 

Now, I'm trying to add the above services again which are not listed in Backend services..

 

Please suggest on this..

 

Regards,

 

Nagaraj.R

Backend checks and modifications in Fiori apps

$
0
0

Hi all,

 

 

i have a question regarding the way to manage inside a Fiori App existing backend checks and modifications done through BAdI or enhancements.

For example, in SRM transactional Fiori App such as "My Shopping Cart", during mini cart creation,update, check and change BAdI are not called: they are triggered only when you order your SC.

So, what is the best practice in this case? Do we code same logic in the OData model or not?

 

Thank you for any pointers you could have.

 

Regards.

 

 

Laurent.

SAP FIORI Unable to load Employee Lookup App

$
0
0

My colleague has installed the Employee lookup App and Is able to launch the app successfully from her PC whereas myself and others  are encountering the error " Could not open App. Try again later".

 

If I log onto FIORI on her laptop it works and if she logs onto to FIORI on my laptop it doesn't load and presents the same error.

We have ran all of the jobs to clear the cache from SAP, I have cleared my cache, temp and history from my laptop but am still faced with the error.

 

It's not a Roles and Auths issue as I can use the app on my colleagues laptop and we have copied her AD account to see if it was profile based but the app failed on the copied account. We have copied the IE settings that are on her profile and still no luck,

 

It appears to be something specific on her laptop somewhere that is allowing her to launch the apps but we are struggling to find it, I have attached the IE F12 output to show the log received,

 

For info we are both using IE 10

Fiori Launchpad INTEROP Service issues(LOCAL Service)

$
0
0

Hi Experts,

 

We have two clients 100 and 200 in our Hub System and we successfully connectes it to different ECC System and even viewed different PR's from different system,but when we login to the Fiori Launchpad with client 200 the LOCAL Service like INTEROP asks for separate authentication to client 100.So that it sets two cookies in the Browser i.e for client 100 and client 200.

 

1.JPG

 

2.JPG

 

 

3.JPG

 

 

I would like to know why its pointing to client 100.

 

Tejas Chouhan

 

Any inputs as you have experience connecting to multiple ECC System.

 

 

 

Regards,

Vishnu

"My leave requests" v2 - Option for "half day off"

$
0
0

Dear all,

I implemented the "My leave requests" v2 app So far everything works well - more or less.

 

Is there a possibility to create a leave request for a half day off (morning or afternoon) without entering a specific number of hours?

 

Thank you and BR
Andreas


Fact sheet configuration

$
0
0

Hi,

 

We are starting to implement fact sheets in our Fiori Development system. Our environment is a Central Deployment. From the documentation, we gather that Fiori Search needs to be implemented as a prerequisite. However, while trying to use the task list, we see that the task "SAP_ESH_INITIAL_SETUP_000_CLIENT" is only available for embedded search.

 

Can we run the same task in our environment?

 

Kind regards,

 

Amer.

Error while loading json data to chartcontainer

$
0
0

Hi expert,

 

I am trying to load json data to bar chart in chartContainer in ui5 explored using odata service,

var  oModel_bl = new sap.ui.model.json.JSONModel("/destinations/XXXXX/services.xsodata/XXX(XXX=)/Results/?$format=json");

oVizFrame.setModel(oModel_bl);

But i am getting the error as shown below

 

the following problem occurred: error - <?xml version="1.0" encoding="utf-8" standalone="yes"?><error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"><code/><message xml:lang="en-US">Invalid $format query option. The only acceptable values are &#x0027;json&#x0027;, &#x0027;atom&#x0027;, and &#x0027;xml&#x0027;. Received value: &#x0027;json/small.json&#x0027;.</message></error>,400,Bad Request

 

Thanks

ATTACHMENT IS NOT VISIBLE SAP FIORI LEAVE REQUEST APPROVAL.

$
0
0

Hi All,

 

We have Configured and installed sapfiori leave request approval v2 . after configuration we are not visible attachment option in fiori launch pad.

 

 

 

Regards,

Vijay.

One stop installation info for SAP Fiori Travel apps

$
0
0

My Travel and Expenses Fiori app was released on October 20, 2014.

 

 

Overview material

 

MTE_desktop.jpgMTE_mobile.jpg

What's new documentation - October, 2015 release   (QKW here we need to link to attachment from Note 2208257)

 

 

 

Overview presentation on all Travel Fiori apps

 

Detailed presentation on My Travel and Expenses app

 

Video My Travel and Expenses

 

What's new documentation - January 2015 release


My Travel and Expenses:  Extensibility Guide on Advances (December, 2015)

 

Documentation on SAP Fiori app extensibility

Documentation on the SAP Help Portal


The app My Travel and Expenses enables you to create, display and submit your travel expenses. The documentation of the app on SAP Help Portal includes detailed information on key features, system landscape requirements, implementation and extensibility options.

You can also find information on UI controller hookshere.

 

 

Related apps:

With the app My Travel Requests, you can manage your own travel requests in real time using your desktop or mobile device. The app allows you to create, edit, submit, and delete requests. You can also check the status of a particular request at any time. (Documentation of the app on SAP Help Portal / Video)

The app Approve Travel Requests enables you to approve or reject travel requests in real time using your desktop or mobile device. The app provides details on each request and also allows you to view all of an employee's past requests. (Documentation of the app on SAP Help Portal / Video)

 

With the app Approve Travel Expenses, you can review and approve employees' travel expenses on the go or in the office. The app provides details on each receipt, and alerts you if expenses exceed the budget limits defined in your company's travel policy. You can also forward requests to another employee for approval. (Documentation of the app on SAP Help Portal / Video)

 

Prerequisites


Fiori infrastructure (Gateway frontend/backend, Fiori Launchpad, etc.) has already been set up.

 

Back-End Components Delivered with (Product Version Stack): SAP enhancement package 7 for SAP ERP 6.0 SPS07

 

Front-End Components Delivered with (Product Version Stack): SAP Fiori for SAP ERP 1.0 SPS05

 

Important: Please check SAP notes for updated information about support packages and UI builds! (also see Important Notes below)

 

Download the My Travel and Expenses app

 

Go to SAP Software Download Center -> Installation and Upgrades -> Find your software -> A-Z index -> select F -> SAP Fiori -> SAP Fiori for Suite -> select the respective app

 

Info about the installation and configuration can be found in the SAP Fiori apps library.

 

 

Important SAP Notes

 

Please make sure you have the following notes installed:

 

Note

2048002

Release Information Note for Fiori Travel app My Travel and Expenses
2008622Fiori app My Travel and Expenses: Supplementary information for Travel Management OnPremise users
2080769Correction for Fiori Launchpad application My Travel Expense (UITRV001)
2074804Soft-state enablement for performance optimization
2083486FITE_EXPENSES: Performance Improvement if many expense types are existing
2083628Performance of the Adobe Form
2083170[WEB] Performance improvements in FITE_EXPENSES
2078621[WEB] Bad Performance when adding credit card receipts
1737650

Release Decision Note ERP 6.0 Enhancement Package 7 (EHP7) SP07 / Fiori W7

2117237Fiori Travel apps: missing functionality
2094068Support Package Release of Approve Travel Expenses (Fiori Launchpad Application) Release 1.5

2094069

Support Package Release of Approve Travel Requests (Fiori Launchpad Application) Release 1.5
2094070Support Package Release of My Travel Requests (Fiori Launchpad Application) Release 1.5
2094785Support Package Release of My Travel and Expenses (Fiori Launchpad Application)
1952791Release Information Note for SAP Fiori Approve Travel Expenses
1952790Release Information Note for SAP Fiori Approve Travel Requests
1952786Release Information Note for SAP Fiori My Travel Requests
2198320Release Information Note for SAP Fiori My Travel and Expenses

 

Workitem for Fiori approve purchase requisition is not create in SBWP

$
0
0

Hi Experts,

 

        I implemented standard PR approval applicaiton in Fiori.

 

This work fine. I see the request in the Fiori LP in the specific tile.

I have a question, Why don't I see the same item in SBWP?

 

Thanks in advance

 

 

Regards,

Maurizio

The request URL or the metadata definition is incorrect.

$
0
0

Hi!

 

With applications i got HTTP Error:

error_log.png

Aliases are defined like in LL18:

aliases.png

 

And for the services:

service alias.png

 

Also in our dev system everything was working fine. but htis week we transported it to Q, and now I get these errors.

 

Please help!

Require steps to extend FIORI to mobile device.

$
0
0

Hello all,

 

We have S/4 business suite with SFIN installed. Front end and backend sevrer are same.

we have also installed the FIORI for SFIN and able to work with the apps in browser.

 

Our next step is to extend the usability of FIORI SFIN apps to mobile devices.

Can someone please list the steps to enable the  FIORI on mobile devices.

 

after reading through some blogs , i have understood that SAP Mobile platform server need to be installed to extend to mobile devices --- please confirm if my understanding is correct.

 

Also, please guide me through any guides if available for enabling FIORI apps on mobile through mobile browser or SAP FIORI client.

 

 

Thanks,

Sanketh.


Default catalog for fiori launchpad

$
0
0

Hi all,

 

After my Fiori installation. I found catalog 'SAP: KPI Modeler' and 'SAP: KPI' is set automatically before I enter launchpad designer. But I didn't install the KPI modeler, is that a default setting for fiori launchpad?

 

The fiori launchpad designer always want to load this 'SAP: KPI Modeler' catalog, and result an error since the KPI service is not existed. 

 

How can I configure it?

Capture.PNG

Best Regards

Dongqiang

Error while accessing 'Create Purchase Requisition' app

$
0
0

Hi,

 

I want to use the 'Create Purchase Requisition' app delivered with S/4 Hana1511.

 

I activated the necessary services, but when I open the app I get an error message "Could not open app. Try again later"

 

I checked the error log in the GW that says "No service found for namespace /IWPGW/, name TASKPROCESSING, version 0002 "

 

Am I missing something here?

 

Regards,

Ramesh-

Installation / Implementation of SAP FIORI

$
0
0

Dear Team,

 

We need to Implement / Install SAP FIORI in our SAP landscape.

 

We created 1 new ECC (EHP6 for ERP6.0) Sandbox system and installed the Gateway Components, UI5 Components and IW_BEP component.

Also configured the Gateway and its active.

 

Please let me know how should i proceed further with the App installation and try the same in any Mobile / Tab / Ipad.

 

Your help will be highly appreciated.

 

Awaiting for replies.

 

 

Thanks,

VARUN.

this.getView is not a function

$
0
0

Hi all,

 

while creating a ui5 application, I'm trying to implement an auto refresh.

 

return Controller.extend("Dashboard.controller.DashboardMasterView", {  formatter: formatter,  onBeforeRendering: function() {  console.log("Dashboard.controller.DashboardMasterView onBeforeRendering");  },  onAfterRendering: function() {  console.log("Dashboard.controller.DashboardMasterView onAfterRendering");  setInterval(function() {       console.log(this.getView().getModel());  }, 10000);  },  onInit: function() {  console.log("Dashboard.controller.DashboardMasterView OnInit");

I'm setting the model within in the view, at onInit function, but how could I access the model in the setInterval function? I always getting the error, that this.getView is not a function.

 

Thanks in advance, Chris

Missing Roles PFCG Backend System

$
0
0

Dear Gurus,

 

I'd like to configure the backend system in the connection withSAP Fiori for Sales Rep.

According to the documentation I should add add the new roles in PFCG, e.g. SAP_SD_INV_MON_APP.

Unfortunately this role is missing in PFCG, how can I add (import) the missing roles?


Thanks for help!

 

Viewing all 1807 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>