cancel
Showing results for 
Search instead for 
Did you mean: 

Mobilize ALV Report

kaan_ozdogan
Participant
0 Kudos

Hi Experts,

I try to develop sapui5 app. which run transaction.It means , I give transaction code of report and recorded variant then I want to get result of report.

So how can I create arhitecture of odata and how can I create it?

Accepted Solutions (0)

Answers (1)

Answers (1)

Private_Member_15166
Active Contributor
0 Kudos

In sap Gateway, Use RFC where define import and export parameters.

Call your transaction and copy your output data in export parameter of RFC. Then use that RFC in SAP Gateway.

I am saying it because till now i got that you want to display ALV data from a report.

This is only a feasible solution otherwise copy the code of report in function module and check it as RFC and provide the import and export parameters.

I am not sure about the performance issues.

kaan_ozdogan
Participant
0 Kudos

I want to report runner sapui5 app.So I write RFC function import parameter transaction and variant.

My rfc function run report which is transaction call from application,So this function what return me.

I couldn't find. Output of RFC function.

Private_Member_15166
Active Contributor
0 Kudos

What you have defined the export parameter of your RFC. Output will be Export parameter.

Perhaps i didn't get you fully.

kaan_ozdogan
Participant
0 Kudos

I want to that, I create sapui5 app then I pass transation and variant application.

This application call report whicih given transaction and variant , then I want to show alv in mobile

Private_Member_15166
Active Contributor
0 Kudos

Okay let me explain what i get.

You want to create an SAPUI5 application from which you will pass transaction name. Okay?

This application will call report with provided transaction and you want to display the ALV generated by report in your SAPUI5 application?

If this is what you want then i am going to suggest some points.

Here we have two parts. One is SAPUI5 side and another is SAP side.

1. In sapui5 side design your feel and look having input field from which we will provide transaction name.

2. Now we need Gateway for communicating with SAP system.

3. In Gateway we can use RFC.

4. But we have a report. then here comes the SAP part.

5. We need to get the data of Report to RFC.

6. This RFC will take the transaction name or report name as import parameter.

7. Export parameter as alv table.

8.See these links.

Google

Now the structure or table type of ALV will be export parameter of RFC.

and now we can get the data of ALV in our SAPUI5 application using SAP Gateway.

Regards

Dhananjay