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 Basis Articles
Page 42 of 50
How can I open a VDS file with three js?
Note that three.js is library and it can’t be used to open a file format. This file can’t be opened using Autocad.To know morw about three.js library, you can use this link:Getting Started with three js
Read MoreGenerating an IDoc file to generate orders in SAP R/3 system
BELNR is not required however it is useful. Let us say a customer place an order and as he is not sure he place the order again. Now there are 2 orders you are not sure if there are two IDocs for same order.With BELNR, it has order number of customer system and you can add an optional field with Order Number and incase same order is used it can raise a warning message. You can also use session id to check for duplicate posting if you don’t want to use this.
Read MoreGetting information from pooled tables in SAP system
Note that you can’t access Pooled tables directly and it should be accessed via Application server. When a pooled table is created, it involves creation of a suitable transparent table with a suitable delivery class and then it is changed to a pooled table.A pooled table can be flagged as transparent in its technical settings, which is a simple way of transforming it to a transparent table.To fetch information from Pooled tables, you need to write an ABAP code that can extract the data as per requirement.
Read MoreError: "invalid schema name" even if schema is present in the database in SAP HANA
I think you need to mention database name in JDBC URL while connecting to the database. Try following − String server = "servername.domain.com"; String instance = "03"; String database = "TEST"; String dbUsername = "USERNAME"; String dbPassword = "xxxxxx"; String jdbcUrl = "jdbc:sap://" + server + ":3" + instance + "15/?currentschema=" + database + "&user=" + dbUsername + "&password=" + dbPassword; java.sql.Connection connection = java.sql.DriverManager.getConnection(jdbcUrl);
Read MoreSAP PI messaging service is JMS compliant or not
As per my knowledge, SAP PI Messaging Server 7.4 AEX is compatible with JMS 1.02 and JMS 1.1. Using Java Messaging Service, you can connect messaging systems to the Integration Engine.You can refer to SAP Note: 856346 - J2EE JMS AdapterThis note says common FAQ’s about JMS and I have JMS message properties that are of significant. How do I get this data into XI? How do I get this data out of XI?A feature generically referred to as XI adapter-specific message properties was introduced in the adapter framework. This allowed additional adapter information to be attached to a XI ...
Read MorePull a list of Functional Location from SAP using BAPI
After you set objRfcFunc, try this before you call this and this will include these parameters.With objRfcFunc.tables("funcloc_ra") If .RowCount < 1 Then .Rows.Add .cell(1, 1) = "I" .cell(1, 2) = "EQ" .cell(1, 3) = "Your Func Loc"End With
Read MoreError while Synchronizing data in iOS from SMP 2.3 (SAP)
This normally happens when you have incorrect configuration in synchronization profile. You have to check if stream parameters are set correctly, etc.
Read MoreCreating communication between Java application and SAP
Note that com.sap.conn.jco.JCo can be used as an alternative of com.sap.mw.jco and exists in sapjco.jar. Classes in sapjco.jar files is also different. You can check this link for more details:com.sap.conn.jco.JCo
Read MoreCreating Attribute and Analytic view as persistent model in SAP HANA
This is possible as all views can be created as persistent in SAP HANA. You need to get XMS representation creating attributeview, .analyticview, .calculationview file and activate it.In your case I think you need to check details of your Analytic view and if there is some path that you need to modify.
Read MoreForcing 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 More