SAP C4C Articles

Found 4 articles

In ABAP, How to select all the data into my internal table using loops?

usharani
usharani
Updated on 13-Mar-2026 484 Views

In ABAP, there are different ways to select data into internal tables using loops and joins. Understanding the performance implications of different approaches is crucial for efficient programming. Using JOIN Statements with Internal Tables One approach is to join all tables in a single SELECT statement. Here's an example − SELECT t11~orgeh t11~msty t11~mshort t12~position t13~job t14~job_grade t14~scheme INTO gt_my_combined_table FROM zgerpt_rnk_min as t11 JOIN hrp1001 as t12 ON t11~orgeh = t12~objid JOIN hrp1001 as t13 ON t12~position = t13~objid ...

Read More

While using SAPJco 3.0.11 with Maven, I can't rename original archive sapjco3.jar

Manikanth Mani
Manikanth Mani
Updated on 13-Mar-2026 467 Views

When using SAPJco 3.0.11 with Maven, you may encounter issues when trying to rename the original sapjco3.jar archive. This problem occurs due to internal dependencies and naming conventions that the library expects. Solutions There are several approaches to handle this limitation − Using Maven Assembly Plugin If you need a standalone application, you can use the maven-assembly-plugin that can handle JAR packaging with renaming in the resulting artifacts. This plugin allows you to create custom assemblies while maintaining the original JAR structure internally. org.apache.maven.plugins maven-assembly-plugin ...

Read More

Checking table existence using Class and it's method in SE11 without using FM in ABAP

seetha
seetha
Updated on 13-Mar-2026 749 Views

To perform table existence checks without using Function modules, you can use the class cl_rebf_ddic_tabl. Note that Class methods are almost similar to function modules. They are defined as code blocks to perform specific functionality and provide a more object-oriented approach to DDIC operations. Example The following code demonstrates how to check if a table exists using the EXISTS method − CALL METHOD cl_rebf_ddic_tabl=>exists EXPORTING id_name = 'MARA' ...

Read More

Finding the table from which data is fetched in SAP

Giri Raju
Giri Raju
Updated on 13-Mar-2026 1K+ Views

You can get the data if it is displayed in a transaction. Here are the steps you need to follow to find the table from which data is fetched in SAP. Method 1: Using F1 Help and Technical Information This is the most straightforward method to identify the source table for any field displayed in SAP − First, point the cursor on the field for which you want to get the data Press F1 for help. This will open a ...

Read More
Showing 1–4 of 4 articles
« Prev 1 Next »
Advertisements