Quantcast
Channel: SCN: Message List - SAP Fiori
Viewing all 2526 articles
Browse latest View live

Re: IE 11 problem for UI5 app

$
0
0

Hi

 

Please check if the date picker element in following link works fine in IE11 or not.

 

Could you please share the code also if the above is working and your code is not

 

Regards,

Sarbjeet Singh


Re: Custom Fiori app loads shifted

$
0
0

Hi ,

 

have you run all the cache clearance steps.

 

1.  /UI2/INVALIDATE_GLOBAL_CACHES



2 /UI2/INVALIDATE_CLIENT_CACHES.

3.Clear the server http cache

 

 

Go to the transaction SMICM. Goto -> HTTP plugin -> Server cache -> Invalidate Locally and Globally.

 

 

4.  Clear metadata cache

Transaction: /IWFND/CACHE_CLEANUP on Gateway

Transaction: /IWBEP/CACHE_CLEANUP on Backend and Gateway

 

 

5. Synchronize chip cache

 

 

Run the report /UI2/CHIP_SYNCHRONIZE_CACHE. Make sure there is no error in the table /UI2/CHIP_CHDR

Run the report /UI2/DELETE_CACHE_AFTER_IMP.

/UI2/DELETE_CACHE

 

 

6. Run cache buster

 

 

Run the report /UI5/UPDATE_CACHEBUSTER.


Regards,

Sarbjeet Singh

 

 

7. Clear local browser cache

Filter issue on TaskDefinitionID in Umyinbox App

$
0
0

when going to filter on TaskDefinitionID in URI of Odata for my inbox App it is working fine if iuse EQ operator but when using NE operator

it is not work and get for me all items in my inbox

What to do with the index.html file while deploying sapui5 app on fiori launchpad

$
0
0

Hi Experts,

 

I have created a custom sapui5 app to be deployed on the sap fiori launchpad.

I have followed the following prerequisites for the app to be dployed as a fiori app:

- all views are xml views

- contains component.js

 

My component.js contains only the following:

 

createContent : function() {

 

 

var oViewData = {
component : this
};
return sap.ui.view({
id:"ProdOrdCnfView",
viewName : "XXXXXX.xxxxx.ProdOrdCnf",
type : sap.ui.core.mvc.ViewType.XML,
viewData : oViewData
});

}

 

I have an index.html which contains the following:

 

<script>

 

sap.ui.getCore().attachInitEvent(function() {
var oComponentContainer = new sap.ui.core.ComponentContainer({
height : "100%",
name : "XXXXPOC"
});
oComponentContainer.placeAt("content");
});

 

</script>

 

Questions: a) Are there any other prerequisites for an ui5 app to be deployed to the fiori launchpad?

                   b) As Fiori apps does not contain index.html. What shall i do with my index.html? Do i need to remove it before uploading my project as a BSP application?

 

 

Please guide.

 

Thanks and Regards,

Vinayak Puranik

issue with Fiori apps travelmanagment

$
0
0

Hi Expert

 

Need Your advice

 

we are doing testing on FIORI Travel Managment  I am facing below two issue

 

1) I am not able to book advance as it is not appearing in fiori more when i book advance in R3 UI5 it is not appearing in FIORI

 

2) when i  try to save trip after entering the required fields i am not able to do so as getting below error message

 

trip cannot be save in this status

 

Regards

Sam

Re: Send Mail my Inbox functionality

$
0
0

Hi Masa,

 

 

 

Thank you for quick response.

 

 

 

Yes ,I have checked that url contains 2 '?' .however ,I am not sure how does it impacts.

 

 

 

I have also tested the url of My Inbox task,it aslo has 2 '?' still its opening.

 

 

 

Url of Task through My Inbox application :

https://<hostname:port>/sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?sap-client=300&sap-language=EN#WorkflowTask-displayInbox?allItems=true&listSize=100&massAction=true&quickAction=true&sortBy=CreatedOn&/detail/BQA_300_PGW/000012199710/TaskCollection(SAP__Origin='BQA_300_PGW',InstanceID='000012199710')

 

 

 

Url of Task send via email :

https://<hostname:port>/sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?sap-client=300&sap-language=EN#WorkflowTask-displayInbox?allItems=true&listSize=100&massAction=true&quickAction=true&sortBy=CreatedOn&/detail/BQA_300_PGW/000012199710/TaskCollection%28SAP__Origin='BQA_300_PGW',InstanceID='000012199710'%29

 

 

 

 

 

It would be great if you will explain me in more detail ,how 2 '?' impacts while opening the task.

 

Regards,

Riya

Filter issue on TaskDefinitionID in URI for myinbox App Odata Fiori

$
0
0

when filter on TaskDefinitionID in URI for my inbox App

 

it is working fine when using EQ operator but if iuse NE operator not working and give for me all items in my inbox App Odata Fiori



Re: What to do with the index.html file while deploying sapui5 app on fiori launchpad

$
0
0

Dear Vinayak,

 

Ans for Question A: Yes. We have prerequest for to be deploy to the fiori launchpad. Please refer below link

http://a248.g.akamai.net/n/248/420835/ef90511f0227912671f5b80cd1007382f47b63e347156341b713c1efadcb1ffd/sapasset.download…

 

Ans for Question B: index.html is not mandatory to upload with BSP file. But, it's depends on your component.js. You deploy complete project into BSP file and test it from there itself. If index.html file is not there in BSP file, you cant test the application.

 

Regards,

Ram


Re: What to do with the index.html file while deploying sapui5 app on fiori launchpad

$
0
0

Hi,

 

a) No

b) In the index.html file the component is instantiated using the helper method sap.ui.core.ComponentContainer by searching for a Component.js file in the namespace that is passed in as an argument. The component automatically loads the root view. So you do not need to remove the index.html file, just upload the UI5 project as it is.

 

Regards,

Saurabh

Re: Disable NavBack on Fiori Apps in Portal

$
0
0

Hi Anas,

the solution actually was to raise a message at SAP Support ;-) Normally in up-to-date Fiori applications there should be an exit hook to disable the navigation button. So for our scenario the applications didn't have this exit hook implemented but SAP was able to deliver an update with a note.

 

BUT: for one application I figured out that this exit hook is even available even when it is not explicitly implemented in the app. So what we did was to implement the function getHeaderFooterOptions() in the custom view. Our need was to disable the NavBack button only when the application runs in standalone-mode for e.g.:

 

getHeaderFooterOptions: function() {     var objHdrFtr = {          sI18NMasterTitle: "NAME_OF_TITLE",          onBack: true     };     var m = new sap.ui.core.routing.HashChanger();     var sUrl = m.getHash();     if (sUrl.indexOf("Shell-runStandaloneApp") >= 0){          objHdrFtr.onBack = false;     }     return objHdrFtr;
}

Re: Metadata call for model  was not successful.

$
0
0

Hi All,

     My Odata Service(CB_ACCOUNTING_DOCUMENT_SRV) working fine and connectors are also on active mode.

     My SAPUI5 Application(BSCBN_ANF_FIN) is not visible in SICF Path

     (sap -> bc -> bsp -> sap). Please help me.  

 

Our   Front end is    :     UIX02EAP     100     0004

          Back end is     :     SAP_APPL     617     0008

          Database is    :     HANA Database                                                                  

 

 

Thanks and Regards

Nagaraj

Re: Send Mail my Inbox functionality

$
0
0

Hi Riya,

 

Try this URL.

https ://<hostname:port>/sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?sap-client=300&sap-language=EN#WorkflowTask-displayInbox&/detail/BQA_300_PGW/000012199710/TaskCollection(SAP__Origin='BQA_300_PGW',InstanceID='000012199710')

 

If it works, most probably My Inbox is not the latest or some note is missing.

 

Regards,

Masa / SAP Technology RIG

Fiori My travel and expenses not in EhP7

$
0
0

Hi all Fiori experts,

 

     we have a client requirement about fiori My travel and Expenses.  They want to deploy this fiori in their systems: at first they was going to update their backend to EhP7 level, but now they won´t upgrade their system: they are on EhP5 level.

 

     As far as I know, this fiori Odata service is only available in EhP7 level.  Is that so?  Are there another posibilities in EhP5 level?

 

Many thanks in advance for your help.

Abel.

Re: Browser History issue

$
0
0

Hi Kedar,

 

Thanks for your reply.

 

Actually I am not looking for a method to clear cache, i am looking for working code to reset data on the comparison chart while loading Application2.

 

Can you please provide some information on that.

 

Thanks,

Sandeep

Re: issue with Fiori apps travelmanagment

$
0
0

Dear Sam,

 

Trip status will determine which business transactions permit and characterizes its overall life cycle. I guess already trip has been created by employee on same day and same time. Kindly check in PR05.

 

Regards,

Ram


Re: Package not showing in /ui2/FLC

$
0
0

Hi Himadri,

 

I guess the certification team can help. I know it is charged service and you can get some help.

 

Regards,

Masa / SAP Technology RIG

Re: Master detail appliction responsivness

$
0
0

Dear Shahid,

 

Use sap.m libraries for responsiveness. And, I suggest you develop master detail app using SAP WebIDE which provides you responsive screen.

 

Regards,

Ram

Re: Extending Fiori My Inbox for Timesheet Approval

$
0
0

Hi Kamal,

 

UI extension points are delivered in the standard.

App Extensibility: My Inbox - SAP Fiori for Request Approvals 1.0 - SAP Library

 

Customers have their freedom of choice from different options.

+ You can use Approve Timesheet App

+ You can use My Inbox with open task function

+ You can use My Inbox with SWFVISU customizing

+ You can use My Inbox with html content generated by BADI

+ You can use My Inbox with extensibility

+ You can build custom app

+ Legacy UI are also available. SAPGUI, WebDynpro...

 

Regards,

Masa / SAP Technology RIG

Re: Error while extending Fiori My Inbox app in local web ide

$
0
0

Hi Jamie,

 

I'm using Fiori My Inbox version 2.0 and yes I have tried extending this app on SAP Web IDE (Local Trail Version). I have attached the screen shot as well. Std Fiori SAPUI5 project name is CA_FIORI_INBOX.

 

Please let me know for any clarifications

 

 

 

Thanks & Regards

Ravikant

Re: Extending Fiori My Inbox for Timesheet Approval

$
0
0

Hi Masa,

 

Knowing what Kamal is asking (he's investigating adding Timesheet approval to My Inbox while I implement My Inbox for other scenarios) - his main issue is that standard timesheet functionality doesn't use Workflow at all (it's table driven), hence there appears to be no way to get the "task" into My Inbox without writing a custom data provider as per this post:

How to create a custom data provider for Task Gateway

 

With POWL_INBOX (if you refer to my post about this Let's Crowd Source a POWL Based Universal Worklist Design for ERP) you can see that SAP provided MSS_POWL_CATS_APPROVAL_1 in order to emulate Approval tasks within this Inbox and it's surprising there is no equivalent for My Inbox since My inbox is meant to be the single "task" inbox for users (at least that's the expectation for most of the customers I deal with - with these other "inboxes" confusing them a little).

 

Hope that helps clarify the question.  I'm guessing the Fiori answer is:

 

"Use the Approve Timesheet App" and if you want to integrate with My Inbox, you'll need to create your own data provider and then link to the Approve Timesheet App"

 

Cheers,

Matt

Viewing all 2526 articles
Browse latest View live


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