Call ABAP Function Module Using Python to Insert Data in SAP HANA

John SAP
Updated on 17-Feb-2020 12:44:48

706 Views

You can refer this SAP blog how to use SAP NetWeaver library with Python.SAP Link

Install SAP Sybase Client on Windows Server 2012 R2

John SAP
Updated on 17-Feb-2020 12:44:28

702 Views

Try checking installer file again. I would recommend that you download it from SAP Market Place. Navigate to below path for getting installer file:https://support.sap.com/swdc → Installation and Upgrades → A-Z list → search for SAP ADAPTIVE SERVER ENTERPRISE → SYBASE ASE 15.7 → Installation → Microsoft Windows → 51044415.zipAlso note that you need to have following before you proceed with installation:Microsoft Visual C++ 2010 Redistributable Package (x64)Microsoft Visual C++ 2005 Redistributable Package (x86)Microsoft Visual C++ 2005 Redistributable Package (x64)Check out this SAP thread:SAP thread

JMeter Server Error During Load Testing on SAP Application

John SAP
Updated on 17-Feb-2020 12:43:31

836 Views

Load testing is performed to see volume of traffic your website or an application can handle. Apache Jmeter is an open source, free, java based and configurable tool to perform performance and load testing. You can download Jmeter from the following link:LinkNow to test SAP application using Jmeter, you need to follow below steps for recording:First it to right click on the thread group and you need to choose “Add → Logic controller → Recording Controller”. This will store the recording in the new node named Recording controller.Next step is to right click on “WorkBench”, choose “Add → Non-test elements ... Read More

Not Able to Save a SAP Crystal Report for Enterprise 4.2

John SAP
Updated on 17-Feb-2020 12:41:56

167 Views

Note that you need to check if Crystal Report for Enterprise 2016 support specific IBM DB2 version and for this you need to check product compatibility guide for development.Are you using Universe developed on IBM DB2 then you need to ensure that you are using correct version of drivers JDBC/ODBC in IDT to create a Relational connection. You also need to ensure that connection is also published to SAP BI repository. If your version of DB2 and Crystal Reports is ok, I would recommend you follow below steps:First steps is to start, you need to create a System DSN in ... Read More

Query in Analytic View Creating Unexpected Results in SAP HANA

John SAP
Updated on 17-Feb-2020 12:40:49

284 Views

You haven’t provided complete details what you are trying to achieve. Refer SAP OSS note 1993033 Wrong result for query on analytic viewDuring activation of an analytic view, column view is generated. However, there are some artifacts that cannot be calculated in this column view. In this case, one additional calculation view is generated on top of it. The generation of the calculation view has to be performed if the following elements are defined in the analytic view:Input parametersCalculated attributesUnit or currency conversionsIf at least one of these elements is defined in the analytic view, the activation creates one OLAP ... Read More

OnInit Method Not Called When Navigating in SAPUI5

Anil SAP Gupta
Updated on 17-Feb-2020 12:39:18

776 Views

You have identified the correct use case as it is by design as you have navigated back and forth, it renders the last version rendered and OnInit() does not gets called. But if you want to override this behavior, SAP lets you do it.You can delegate to the patternMatched event of router, so that wheever the view is rendered the OnInit() method is invoked.this.getOwnerComponent().getRouter().getRoute("").attachPatternMatched(, this);You need to attach the even handler to the router in the init method of the controller. Hope it helps and sorts out your requirement.

Hide and Show a Column in SAP Detail Window

Anil SAP Gupta
Updated on 17-Feb-2020 12:37:46

656 Views

You just need to set the expression which binds to the visibility propert. Go to Data window and select your desired column which you need to show/hide. Then go to properties and look out for the “Visible” checkbox and click on the highlighted button.Now write the expression which should drive its visibility. Hope it helps.

Show Only One View at a Time in Wizard in SAP UI5

Anil SAP Gupta
Updated on 17-Feb-2020 12:35:22

393 Views

I will say not it is not a big out of box requirement. You can easily get it done. What you need to do is to hook up your requirement in the complete event of the wizard which gets invoked on each step completion. You just need to hide the completed view and show the next view. So you will be viewing only one view at a time.onComplete: function(oEvent) {                 var wdStep = oEvent.getSource();                 wdStep.setVisible(false);             }

Call Another Function within Initialize Method of Controller in SAP UI5

Anil SAP Gupta
Updated on 17-Feb-2020 12:34:32

530 Views

Yes, you are absolutely correct. It is very basic thing, you just need to use this operator for making the function call.onInit: function() {    //Your logic    this.CustomFunction(); } CustomFunction : function () {   // some logic }

Refer Class Interface with Namespace in SAP .NET

Anil SAP Gupta
Updated on 17-Feb-2020 12:33:59

76 Views

Note that you have to ensure that you are using .NET framework and not .NET 4.0 client. Refer this link and you would get an idea:SAP Discussion

Advertisements