Quantcast
Channel: SCN : Discussion List - SAP Fiori
Viewing all 1804 articles
Browse latest View live

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.


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

Viz Chart only shows last entry of Model

$
0
0

Hi all,

 

I'm creating an Viz Chart from oModal service, the service is delivering data as (odata):

odata.PNG

There are more than 140 entries within this list.

 

// 1. Get the id of the VizFrame  var oVizFrame = this._getVizFrame(Q1_FREIGABE_CHART);
// 2. Create a JSON Model and set the data  var oModelT = oModel;//this._getOModel();
// 3. Create Viz dataset to feed to the data to the graph  var oDataset = new sap.viz.ui5.data.FlattenedDataset({  dimensions: [{  name: "Zeit",  value: "{ZeitVon}"  }],  measures: [{  name: "Online",  value: "{Bis30}"  }, {  name: "Offline",  value: "{Bis60}"  }],  data: {  path: "/EtDbDatenQ1AnzSet"  }  });  oVizFrame.setDataset(oDataset);  oVizFrame.setModel(oModelT);  oVizFrame.setVizType("line");
 // 4. Set Viz properties  oVizFrame.setVizProperties({  general: {  layout: {  padding: 0.04  }  },  valueAxis: {  title: {  visible: true,  text: "Anzahl"  }  },  categoryAxis: {  title: {  visible: true,  text: "Zeitraum"  }  },  plotArea: {  colorPalette: d3.scale.category20().range()  },  title: {  visible: false,  text: "Auswertung Freigabeprozess"  }  });  var feedValueAxis = new sap.viz.ui5.controls.common.feeds.FeedItem({  "uid": "valueAxis",  "type": "Measure",  "values": ["Online", "Offline"]  });  var feedCategoryAxis = new sap.viz.ui5.controls.common.feeds.FeedItem({  "uid": "categoryAxis",  "type": "Dimension",  "values": ["Zeit"]  });  oVizFrame.addFeed(feedValueAxis);  oVizFrame.addFeed(feedCategoryAxis);

Running the application, it only shows the last entry!

last_entry.PNG

 

Any idea why this is happen? While using an local created jsonModel it works... only with the original data from the server, as shown, it doesnt workss...

 

Thanks!

No Items are available; perform a search to add an item for My Shopping Cart

$
0
0

hi folks,

 

sarbjeet_singhmasayuki_sekihara

we are implementing the SRM Fiori apps, in this My Shopping Cart app ended with "No Items are available; perform a search to add an item" message.

I have checked in browser console no error found in that.

 

even am trying to search in Products search bar, still no data is loading in the app.

 

Can you please suggest me?

 

Thank You in advance.........

 

Regards,

Kiran.

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!

 

Use two OData services in the same fiori application

$
0
0

Hi,

 

I am extendind a standard fiori application which is based on a standard odata service.Requirement is to add additonal functionality to the application but it it is based on another custom Odata service .

Is it possible to integrate two Odata services in the same fiori application and call the methods accordingly.

 

Regards

Radhika

Launch Fiori Client Directly From URL

$
0
0

All,

 

Is there a way to directly Launch Fiori Client on Phones & Tablets via URLs?

i.e. A requisition approval email is sent to an Approver with a link in the email. When the URL is clicked on the approver's mobile device, Fiori Client will be opened directly instead of opening Fiori in a browser.

 

Example of what I'm referring to:  Launching iOS Applications Via URL | Launching Your App Via URL | InformIT

 

Thank you!

How to bind Multi Model / OData Services in Fiori Project?

$
0
0

Hello SAPUI5 developers,

 

 

I try to extend an Fiori app "Approve Supplier Invoice" and want to bind an additional Odata service from the application "TrackPurchase Order".

 

"Approve Supplier Invoice"  MM_SUPPLINV_APV  is used odata service: MM_SUPPLIER_INVOICE_APPROVE

"TrackPurchase Order"       MM_PURORD_TPO    is used odata service: SRA020_PO_TRACKING


I want to use both odata services in one fiori project / extension project.


I have created a project in Ecplise with a structure


     appconfig (fiori sandbox)

     mm_supplinv_apv (main application) - shared with SAPUI5 ABAP Repository - MM_SUPPLIER_INVOICE_APPROVE

     zm_supplinv_apv (extended)

 

 

The binding for odata service and data model is placed in Configuration.js by mm_supplinv_apv application

 

jQuery.sap.declare("ui.s2p.mm.supplinvoice.approve.Configuration");

jQuery.sap.require("sap.ca.scfld.md.ConfigurationBase");

jQuery.sap.require("sap.ca.scfld.md.app.Application");

sap.ca.scfld.md.ConfigurationBase

  .extend( "ui.s2p.mm.supplinvoice.approve.Configuration",

  {

       oServiceParams : {

            serviceList : [ {

            name : "MM_SUPPLIER_INVOICE_APPROVE_Entities",

            masterCollection : "WorkflowItems",

            serviceUrl : "/mm_supplinv_apv/proxy/sap/opu/odata/sap/MM_SUPPLIER_INVOICE_APPROVE;mo/",

            isDefault : true,

            useBatch : false,

            mockedDataSource : "/ui.s2p.mm.supplinvoice.approve/model/metadata.xml"

            } ]

  },

       getServiceParams : function() {

       return this.oServiceParams

  },

       getServiceList : function() {

       return this.getServiceParams().serviceList

  },

       getMasterKeyAttributes : function() {

       return [ "Id" ]

  },

  });

 

The application zm_supplinv_apv has a Component.js where I have defined an extansion points.

 

I want use an additional odata service just in the extension application, where I whant to define a new screens.

 

How and where shoud I define or bind this new odata service SRA020_PO_TRACKING?

 

 

If I define it in Configuration.js by mm_supplinv_apv application, I get a frontend error during starting an app from fioriSandbox on the Tomcat server.

 

oServiceParams : {

            serviceList : [ {

            name : "MM_SUPPLIER_INVOICE_APPROVE_Entities",

            masterCollection : "WorkflowItems",

            serviceUrl : "/mm_supplinv_apv/proxy/sap/opu/odata/sap/MM_SUPPLIER_INVOICE_APPROVE;mo/",

            isDefault : true,

            useBatch : false,

            mockedDataSource : "/ui.s2p.mm.supplinvoice.approve/model/metadata.xml"

            } ,

                    {

            name : "SRA020_PO_TRACKING_SRV",

            masterCollection : "POLists",

            serviceUrl : "/mm_supplinv_apv/proxy/sap/opu/odata/sap/SRA020_PO_TRACKING_SRV;mo/",

            isDefault : true,

            mockedDataSource : "/ui.s2p.mm.purord.tracking/model/metadata.xml"

  }

]

  },

 

Odata service SRA020_PO_TRACKING is activated and the application MM_PURORD_TPO is running separately without errors.


The Projekt mm_supplinv_apv was shared with Odata Service MM_SUPPLIER_INVOICE_APPROVE hosted by ABAP Repository.

May be an additional odata service should be shared as well, but how?

 

share_odata_service.png


I found as well the following blog

Multi Model Support and Binding For OData Services

, however I don't have a big experience in java script and don't know where should I define this code in Fiori project.


 

Do you have any idea how to solve this problem?


Thanks in advance!

 

Regards,

 

Dmitry




SAP Fiori principal apps 1.0 for SAP ERP on Netweaver 7.5

$
0
0

Hello,

 

I'm trying to install SAP Fiori principal apps 1.0 for SAP ERP on my GW, specially app "Approve Purchase Orders" but when I go and look for the OData Service GBAPP_POAPPROVAL to activate it for my Alias, I can't find it. I have already activated the sicf service mm_po_apv.


Anybody knows why?


Landscape:

Central HUB Arquitecture


GW:

 

 

Backend:

 

ERP 6.0 EHP7 SPS08

 

Note:

 

I haven't installed component GBAPP002 600 on the back-end since it's my understanding I don't need to given my ERP version, but I think maybe that would be an issue later on, not when I'm tryng to look for the OdataService.




Screenshots:


No service found


Sicf Service activated


Using the Fiori Launchpad for same user with different catalogs/groups?

$
0
0

Hi All,

 

Firstly, Fiori seems to be spread over SAP for Mobile, UI5 and this space, and since it's really not SAP for mobile or UI5, I've posted here???

 

My question is related to leveraging the Fiori Launchpad in a non-standard way in an existing Portal environment.

 

Imagine we have a Manager Self Service Launchpad and an Employee Self Service Launchpad. In the Fiori UX, it is meant to be a single Launchpad with separate catalogues for ESS and MSS, but with an existing deployment of SAP Portal with various navigation, it's a bit presumptuous to think we can throw away the whole Portal navigation and replace it with a single launchpad; hence we want to make the launchpad completely different based upon the entry point (for the same user).

 

e.g. MSS Launchpad would not show ESS tiles, and vice versa.

 

Is this possible today without customising the Launchpad?  From my initial investigation, it doesn't appear possible. There appears to be a few URL parameters you can leverage with Fiori Launchpad (around caching predominantly), but would be good to know of any other tricks of the trade.

 

Thanks,

Matt

SAP UI5 Hindi Language Support

$
0
0

Hi Experts,

 

We are having requirement where client needs UI5 Application in Gujarati and Hindi Language.

 

Can you please let us know UI5  Application supports Gujarati and Hindi Language .

Timeout Error: DOM Exception 23 in an iOS Device

$
0
0

Hi Fiori folks ,

 

We are facing an Issue while applying leave via Fiori Client on an iPhone.


Error -  "An error has occurred TimeoutError: DOM Exception 23"

(Please find the attached screen shot)

 

However , We did not face any issue in QAS system on the same device , while this issue comes in Production system.

 

Please advice / guide.

 

Rgds

Shaan

Fiori Performance Issue in Mobile(Windows and IOS Devices)

$
0
0

Hi All,

 

We have implemented Fiori but the performance of application's is very slow in Windows and IOS Devices, we are using Fiori Client using SMP.

 

in desktop we are getting good performance.

 

 

Kindly share your experience by which we can improve the performance in Mobile Devices.

 

Regards,

Trilochan

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

Smart Business Modelling - Adding Evaluation to a KPI not possible

$
0
0

Hi All,

 

I am an absolutely beginner in the world of Fiori Apps and need help by implementing the Smart Business KPI Components.

 

Due to the following Documentation I added KPIs, by choosing the "Add KPI" App on my Fiori Launchpad.

Adding an Evaluation to a KPI - SAP Smart Business, Component for KPI Modeling - SAP Library

 

To make a KPI visible to the user at runtime, I must create an evaluation and a visualization.

 

Now the problem appears:

When I choose the Application "Create Evaluation" a Popup appears with an message "App cannot be opened. Please try again later". I found a second possibility to create an Evaluation by Using the App "KPI Workspace" and than coosing the Button "create Evaluation" in the Detail view of KPI. Here the same Error Pop-up.

 

(sorry it's in german)

 

Does anyone know something about this problem?

Is there any further installation needed to run this app or can I chance some settings to get this evaluation done?

 

Thanks in advance!

Mareike


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.

SAP Fiori CRUD Master-Detail Application template issues on SAP Web IDE

$
0
0

Hello Experts,

 

 

I am facing certain issues with the new Fiori Master-Detail CRUD app template, on SAP Web IDE.

 

 

I tired using the CRUD app template for both SAPES1 OData service URL - " https://sapes1.sapdevcenter.com/sap/opu/odata/sap/ZGWSAMPLE_SRV/ "

 

Kindly note:-
Both SAPES1 and Northwind destinations have been properly added in my SAP HANA Cloud Trial account.
When I run the "test.html" file and choose "test/flpSandbox.html"  I am encountering error messages.

 

For the SAPES1 service, I am encountering "CSRF token validation failed" message and the UI is completely blank.
01 SAPES1 Service CSRF validation error.png

 

02 SAPES1 CRUD app Blank UI.png

 

I also created another CRUD app with Northwind OData service, the one with Read/Write capabilities and by specifying "v2" in the OData service URL for version 2,.

 

In this app, I initially get a error prompt which reads "Query options $orderby, $inlinecount, $skip and $top cannot be applied to the requested resource". 
03 Northwind Read-Write OData error - Initial .png

 

However, upon closing the error prompt, my app UI shows data from backend. When I click on the " + " , the Create New Entity screen is displayed, in which I am able to enter details and save it on to the backend.
04 Northwind Read-Write OData Crud app UI after initial error.png
05 NorthWind CRUD app Creating New Entity.png

 

Upon saving, I again encounter the same error prompt "Query options $orderby, $inlinecount, $skip and $top cannot be applied to the requested resource".

 

06 Northwind CRUD app error after saving new entity in backend.png

 

And the Entity I have created is visible , but only until I refresh the page.

 

07 Northwin CRUD app displaying New Entity temporarily.png

 

Once I refresh or when I open the app after few hours, the new entity is no more available in the Master list.

 

Could you kindly tell me what needs to be done to get the Fiori Master-Detail CRUD app working, in order to update the records on back-end.

 

 

 


Thank you,
Suraj Kumar Y. Midgay

 

Replace standard with Custom LaunchPad

$
0
0

Dear Experts

SAP Netweaver gateway is our fronend server. It comes with a standard LaunchPad. I don't want to use the standard LP. I have created my own custom launch pad. Please let me know what all configurations are required such that when the user logs in using the FIORI standard login page, he is taken to the custom LP instead of Standard LP

 

thank you !

seventyros

Cannnot load tile (KPI Modeler)

$
0
0

Dear Experts,

 

We've already installed Fiori Smart Business with HANA Database 102.03 and ERP 6.0 EHP 7.

 

Although we applied all the required authorizations as per the SAP Help documentation, we're still getting the error "Cannot load tile" (see attached screenshot).

 

Any ideas, please?

 

 

Thanks & best regards,

Sreenu 

Use two OData services in the same fiori application

$
0
0

Hi,

 

I am extendind a standard fiori application which is based on a standard odata service.Requirement is to add additonal functionality to the application but it it is based on another custom Odata service .

Is it possible to integrate two Odata services in the same fiori application and call the methods accordingly.

 

Regards

Radhika

Viewing all 1804 articles
Browse latest View live


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