Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
SAP HANA Articles
Page 50 of 58
Forcing SAP Webi report to show specific data
This can be done by creating a separate query that only shows priority. Then you need to replace column [Query1].[Priority] with the merged dimension [Priority].
Read MoreInstalling SAPUI5 on local machine using XAMPP
You can refer this link for setting up basic development environment for SAP UI5:Basic Development environment for SAPUI5To setup local Development with Eclipse, you should refer this:UI5 with Eclipse
Read MoreIn SAP Workflow, Binding the receiver dynamically
To bind receiver dynamically in Workflow, you have to write a Function Module that will provide you manager name of initiator. This FM should be put in public class to be used in Workflow. The provided value will be saved in any table of HR module.Then you need to call this method from Workflow template. To set binding, you need to pass a value in _WF_INITIATOR._WF_Initiator WFSYST-INITIATORUsing _WF_Initiator Initiator of the workflow (user name).Here “user name” is a fourteen-character field in the structure US.When a workflow is started ...
Read MoreError while connecting to SAP server from Java application: java.lang.UnsatisfiedLinkError: no sapjco3 in java.library.path
Note that SAP Java Connector should be configured as server library and not as application library.There are many issues in the way you are trying to use:You shouldn’t change java.library.path programmatically as it is not recommended and this is cached at JVM start.You are overwriting java.library.path instead of adding your directory so your application server requires native libraries.Also note that our JVM root directory is different from your application root directory so /WEB-INF/lib path won’t be found by our JVM.
Read MoreConnect to SAP system from C# application
There is nothing like standard but you need to specify all required details for a successful connection.XXXX- H/IP Address/S/Port NumberHere H stands for Host, IP Address is the IP Address, S stands for Port Number
Read MoreSort Datetime Type in SAP ABAP
There are two operation LT (Less than) and GT (Greater Than) which you can use to perform basic comparisons between two variables.You can frame the logic as per your requirement whether you have a set of variables or a table. If it involves set of variables then you need to do manual comparisons.
Read MoreHow to map an Object of objects to a SAP List?
The answer to your question is ‘NO’. It is not possible to map your complex JSON object (object of objects) to a list as it does not make sense.If you want you can have a model or a JSONModel which replicates your object and then you can map it otherwise as you said, you can try to use array if it suits your requirement.
Read MoreUsing JCo to connect SAP with Android
I have not tried it but it does not seem feasible. The reason being if you are planning to use JCo library, you will require a native library but that is still not available for Android environment.You can try an alternative for it. You can create a Web Service either a SOAP or REST which communicates to SAP via JCo. Then, you can use the service to do two way communication with SAP.The result of communication can then be shared to Android environment in either JSON or XML format as per requirement.
Read MoreReduce number of columns of a result set from a Transaction in SAP system
The simple answer to your question is NO. Because, this is SAP standard behavior and if you want to restrict the number of columns to be returned then it will require you to change the original source code of SAP implementation.The change will be quite exhaustive and it will also mean that you are violating the contract and hence, no support from SAP on any issue encountered later.As you said you are filtering data that means the number of rows will not be huge and hence the number of columns will not have much implication on the performance of the ...
Read MoreBest way to connect to SAP system from JAVA
There are lots of possibilities but a lot depends upon on your exact requirement and needs.One way is that you can go ahead and use Java Connector also known as JCo. JCo is a prevalent option to do similar requirements as of yours. It has a lot of support available online as well.Also, as you said Web service is by default the web standard and can be opted too. SAP functions are readily available and can be tuned effortlessly to be available as web services.
Read More