In SAP ABAP, mapping two database table fields

Johar Ali
Updated on 30-Jul-2019 22:30:20

374 Views

I don’t think there is a way to perform this. The common way to do this is by extending original table and fill the new fields.T-Code: SPDD is somewhat relevant that can be used to compare all the dictionary objects- data elements, tables and structure with old system.T-Code: SPAU can also be used to compare objects –Reports, Programs, Screens, Messages, Notes, Function Modules etc. which have difference in the Latest SAP request and the previous ones. You can use SPAU just after SPDD or when SAP system upgrade is performed.Using SPDD and SPAU, you can view all the modified objects, ... Read More

Storing static attribute values in ABAP

Srinivas Gorla
Updated on 30-Jul-2019 22:30:20

291 Views

Static attributes of a class and the global variables of a function pool are dealt in a similar manner. In an abstract manner, you can consider static attributes as global variables. How global variables are reinitialized with a new internal session, static attributes do get reinitialized with the new internal session- this can be verified using a recursive function call.

What is the difference between Component class and Container class in Java?

karthikeya Boyini
Updated on 30-Jul-2019 22:30:20

4K+ Views

The class Component is the abstract base class for the non-menu user-interface controls of AWT. A component represents an object with graphical representation. The class Container is the superclass for the containers of AWT. The container object can contain other AWT components.

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

SAP Expert
Updated on 30-Jul-2019 22:30:20

272 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.

Retrieving data from a table in SAP ABAP

Abhinanda Shri
Updated on 30-Jul-2019 22:30:20

2K+ Views

Usually, in ABAP you use OpenSql statements to retrieve the data. OpenSql statements are similar to normal SQL statements.In case you need to use the function module on a remote system, then you need to use remote function calls like RFC_READ_TABLE. It lets you query data on remote calls as well.

How to print a string two times with single statement in Python?

Pythonic
Updated on 30-Jul-2019 22:30:20

172 Views

When used with strings, asterisk (*) is defined as repetition operator. It concatenates given string as many times as number followed by asterisk. >>> string = 'abcdefghij' >>> print (string*2) abcdefghijabcdefghij

SAP PI messaging service is JMS compliant or not

SAP Expert
Updated on 30-Jul-2019 22:30:20

167 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

Exporting test variant in Transaction SE37 in SAP R/3

Amit Sharma
Updated on 30-Jul-2019 22:30:20

906 Views

Try using Table EUFUNC or also check Function Module: RS_TESTDATA_GET. When you save test data in SE37 it's going to be saved in test data directory.

How to print concatenated string in Python?

Pythonic
Updated on 30-Jul-2019 22:30:20

340 Views

When used with strings, plus (+) is defined as concatenation operator. It appends second string to the first string. >>> s1 = 'TutorialsPoint ' >>> s2 = 'Hyderabad' >>> print (s1+s2) TutorialsPoint Hyderabad

Downloading file using SAP .NET Connector

Ramu Prasad
Updated on 30-Jul-2019 22:30:20

384 Views

It is not possible to retrieve files using BAPI from SAP system. There should be a way to copy the file to a shared location and you can read the file from there using .NET.

Advertisements