SAP Articles

Page 18 of 91

Fetching attribute of SAP Webdynpro component in new component

Krantik Chavan
Krantik Chavan
Updated on 13-Mar-2026 258 Views

You need to do the below steps in order to pass values from one Webdynpro component to another: Create both components In the first component, create a method which will call the second component Create a parameter in the context of the first component which will be passed Call the first component; once the URL has been generated just append the parameter which needs to be passed Step-by-Step Implementation Step 1: Creating Context Parameter in First Component In your first component's context, ...

Read More

Learning SAP HANA and scope with ABAP-HANA or BI-HANA

Nishtha Thakur
Nishtha Thakur
Updated on 13-Mar-2026 374 Views

While you have a valid point that most of the SAP HANA projects are coupled with varied SAP landscape, there does exist a lot of projects which involve only native SAP HANA development. It entirely depends on your interests and knowledge base, but sound understanding of the core concepts around data warehousing needs to be clear if you are planning to build anything utilizing the base concepts. ABAP-HANA vs BI-HANA Development Paths Presently, as per market understanding, clients prefer ABAP on HANA as they have one or other existing ABAP solutions. So, any enhancement using ABAP seems ...

Read More

Performing Null check using HANA SQL Script

Smita Kapse
Smita Kapse
Updated on 13-Mar-2026 4K+ Views

You can go for using either NULLIF or COALESCE function to serve your requirement for null checking in HANA SQL Script. NULLIF Function NULLIF (expression1, expression2): This function will return the same type whatever is specified as the first expression. Basically, NULLIF returns − The first expression if the two expressions are not equal. ...

Read More

Using SSIS 2014 with Visual Studio 2012 to integrate with SAP

Anvi Jain
Anvi Jain
Updated on 13-Mar-2026 292 Views

When working with SSIS 2014 (SQL Server Integration Services), it's important to use the correct version of Visual Studio for compatibility. You made a small mistake but a mistake having a big impact. SSIS 2014 does not support Visual Studio 2012 in your case. Solution Just switch to Visual Studio 2013, and your problem will be resolved. The version compatibility between SSIS and Visual Studio is crucial for proper integration with SAP systems. Version Compatibility Requirements For successful SAP integration with SSIS ...

Read More

Using datatype/element for destination in SAP ABAP

Amit Sharma
Amit Sharma
Updated on 13-Mar-2026 294 Views

You can use RFCDEST to specify the destination for Remote Function Call connections in SAP ABAP. The RFCDEST statement specifies the destination value for a Remote Function Call connection and gateway information. This statement is essential for establishing connections to remote SAP systems. Supported Job Types This statement is optional for the following job types − SAP Batch Input Session SAP Business Warehouse InfoPackage SAP ...

Read More

Debugging a failed Insert statement in SAP ABAP

Rahul Sharma
Rahul Sharma
Updated on 13-Mar-2026 567 Views

In SAP ABAP, debugging failed INSERT statements is crucial for maintaining data integrity. The system variable sy-subrc is your primary indicator for operation success, where sy-subrc = 0 means the INSERT statement executed successfully, while any non-zero value indicates an error. Using System Return Code (sy-subrc) After executing an INSERT statement, always check the sy-subrc value to determine if the operation was successful − INSERT INTO ztable VALUES wa_data. IF sy-subrc = 0. WRITE: 'Record inserted successfully'. ELSE. WRITE: 'Insert failed with return code:', sy-subrc. ENDIF. Debugging Techniques Setting ...

Read More

Generating range of numbers 1...n in SAP HANA

Ali
Ali
Updated on 13-Mar-2026 666 Views

In SAP HANA, you can generate a range of numbers from 1 to n using different approaches. This is particularly useful when you need to populate tables with sequential data or create test datasets. Method 1: Using FOR Loop You can use a FOR loop to iterate through a range of numbers and insert them into a table − FOR START_CID IN 1..1000 DO INSERT INTO "TEST_TABLE" VALUES(START_CID, ''); END FOR; This loop will iterate from 1 to 1000 and insert each number as a CID value along with an ...

Read More

Using &gt operators in SAP HANA

Johar Ali
Johar Ali
Updated on 13-Mar-2026 220 Views

When working with SAP HANA queries that contain comparison operators like > (greater than) in XML contexts, you need to use CDATA sections. The term CDATA means Character Data. CDATA is defined as blocks of text that are not parsed by the XML parser, but are otherwise recognized as markup. The predefined XML entities such as , and & require entity encoding and are generally difficult to read in the markup. Instead of writing > for the greater than operator, CDATA sections allow you to use the actual > symbol directly. CDATA Section Syntax Following is the ...

Read More

Getting Error message "Object doesn't support property or method 'attachEvent'" in IE11 to call SAP system

Johar Ali
Johar Ali
Updated on 13-Mar-2026 496 Views

Note that attachEvent is no longer supported in IE11 and you should use addEventListener that can be used to bind specific function to an event. Using attachEvent in Older IE Versions In older versions of IE (IE8 and below), you can use attachEvent like this − object.attachEvent(event, pDisp) Parameters event [in] Type: String A String that specifies any of the standard DHTML Events. ...

Read More

Linking ABAP Dynpro screen elements to program variables

Amit Sharma
Amit Sharma
Updated on 13-Mar-2026 648 Views

You can make the connection between ABAP Dynpro screen elements and program variables by using the name of Global variables. A Global variable can be defined by using this code − DATA matnr TYPE MATNR. This creates a global variable matnr of type MATNR. You can also define DDIC structure or table references using the TABLES statement − TABLES: MARA. Once you have declared the table or structure, you can reference the fields of table/structure ...

Read More
Showing 171–180 of 902 articles
« Prev 1 16 17 18 19 20 91 Next »
Advertisements