SAP Basis Articles

Page 42 of 50

How can I open a VDS file with three js?

SAP Expert
SAP Expert
Updated on 30-Jul-2019 267 Views

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 More

Generating an IDoc file to generate orders in SAP R/3 system

SAP Expert
SAP Expert
Updated on 30-Jul-2019 446 Views

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 More

Getting information from pooled tables in SAP system

SAP Expert
SAP Expert
Updated on 30-Jul-2019 531 Views

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 More

Error: "invalid schema name" even if schema is present in the database in SAP HANA

SAP Expert
SAP Expert
Updated on 30-Jul-2019 1K+ Views

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 More

SAP PI messaging service is JMS compliant or not

SAP Expert
SAP Expert
Updated on 30-Jul-2019 373 Views

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 More

Pull a list of Functional Location from SAP using BAPI

Anil SAP Gupta
Anil SAP Gupta
Updated on 30-Jul-2019 424 Views

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 More

Error while Synchronizing data in iOS from SMP 2.3 (SAP)

Anil SAP Gupta
Anil SAP Gupta
Updated on 30-Jul-2019 153 Views

This normally happens when you have incorrect configuration in synchronization profile. You have to check if stream parameters are set correctly, etc.

Read More

Creating communication between Java application and SAP

Anil SAP Gupta
Anil SAP Gupta
Updated on 30-Jul-2019 244 Views

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 More

Creating Attribute and Analytic view as persistent model in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 30-Jul-2019 218 Views

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 More

Forcing SAP Webi report to show specific data

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 264 Views

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
Showing 411–420 of 498 articles
« Prev 1 40 41 42 43 44 50 Next »
Advertisements