SAP HANA Articles

Page 51 of 58

Retrieving ABAP BAdi from SAP BW

SAP Developer
SAP Developer
Updated on 30-Jul-2019 370 Views

There are different Function Module that you can use depending on BAdi type- classic or fast kernelYou can try using Function module SXO_IMPL_FOR_BADI_READ. To read the coding of class, try using “CL_ENH_BADI_RUNTIME_FUNCTIONS”You can use “GET_BADI_SHORTTEXT” method to know different BAdi’s types.There is a Function modules SEO* - which can be used to read the structure of a class, it’s superclasses and method.

Read More

Calling a JAVA method through JavaScript in SAPUI5 project

Sai Nath
Sai Nath
Updated on 30-Jul-2019 257 Views

Create a REST service hosted on a server and place java method inside it. Now you can call this REST service from a SAPUI5 application using AJAX by passing required parameters.

Read More

Edit an ABAP Program using Transaction SE93, SE80

George John
George John
Updated on 30-Jul-2019 1K+ Views

You need to go to SE93 and input your Transaction code. It will display program name behind your transaction code. You can edit the programs using SE80 and SE38.  Below shows Transaction code: SE93 Following shows Transaction Code SE80 to edit an ABAP program by opening ABAP Development workbench: Following shows Transaction Code SE38 to edit an ABAP program by opening ABAP Editor Initial screen and to enter the name of Program −

Read More

Inserting an Array to a table in SAP HANA database

Arushi
Arushi
Updated on 30-Jul-2019 811 Views

As far as I know, there is no direct way of inserting an Array using SQL query. You will first have to combine the columns (EMPL_Id + Skill Id) using the code and then do a bulk insert to the database.

Read More

Handling higher level Boolean values in SAP system

Giri Raju
Giri Raju
Updated on 30-Jul-2019 303 Views

As per the general standards and coding practice, you should use abap_bool for handling Boolean value or truth values. In this case, if any object is declared as abap_bool type, then it can hold values only from the set (abap_truth, abap_false and abap_undefined). But in older systems, you might not be able to use abap_bool as it is not available. For ex. In Web Dynpro abap_bool is not available.You need to use WDY_BOOLEAN as an alternative in this case. WDY_BOOLEAN only allows true Boolean values meaning it allows only true and false as permissible values but not undefined.

Read More

SAP Authorization concept and Authorization Objects, Object Class

Abhinanda Shri
Abhinanda Shri
Updated on 30-Jul-2019 2K+ Views

To clear the air all at once, SAP Authorization Objects and Object Class has nothing much in common from Object Oriented classes and objects and differ vastly from it.Authorization object details the current user’s privileges which are used to authorize user activities and data availability. The Authorization Object is the place where configurations pertaining to permissions are set up and initialized against fields.An object class, on the other hand, is a grouping of Authorization objects. It may contain one or more than one authorization objects.

Read More

Comparing SAP ABAP Field symbols and data reference with Pointers in C

Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 993 Views

Field symbol resembles pointer in C but there is one main difference: you can use Field Symbol only to access the values present in it but not the memory address. Similar to a pointer in actual, it stores the memory address of the variable that was assigned to it. You can see the data held by the variable but you cannot fetch the memory address. Similar to a pointer, in case if you make changes to data referenced by field symbol, it changes the value at the original place too. Data reference too resembles pointer at a high level. You ...

Read More

Importing/Exporting ABAP packages to Presentation server

Ankitha Reddy
Ankitha Reddy
Updated on 30-Jul-2019 569 Views

You can either go for some tools like SAPlink in this case. SAPlink will let you export custom objects. In case if you want to package them, it is possible to use SAPlink, however, I doubt that it covers all types.Another way using basis is that you can configure to add the required objects to a Transport in SAP system, set the destination where you want the backup objects to be stored and then release them to apply the transport. You can programmatically (or manually) take the transported files and do whatever you want.

Read More

I don’t want configuration information to be transferred with the database in SAP ABAP

Abhinaya
Abhinaya
Updated on 30-Jul-2019 171 Views

The straight answer to this is a big NO. This is one of the most common places of error in the SAP environment. When you create a clone of your production in the form of QA with most of the things as it is from production, you need to make sure that any action in QA after cloning doesn’t have any implication or effect on actual production.To handle such a use case, you need to rely on SAP transport and Change management. You need to use the provided transports to alter the existing configurations to QA.

Read More

While changing Partner number, VBA code keeps running while interacting with SAP system

Mohd Altamas
Mohd Altamas
Updated on 30-Jul-2019 194 Views

The best possible solution to avoid this issue is by adding breakpoints to the best places. This issue is common with VBA and C# while debugging code includes COM libraries.

Read More
Showing 501–510 of 573 articles
« Prev 1 49 50 51 52 53 58 Next »
Advertisements