Tag: abap

[ABAP from scratch] 5 Relevant Shortcuts To SAP/ABAP career

When you want to get somewhere, you can use weird shortcuts (from the joke below) or effective ones (e.g., using planes instead of cars). BUT, … What does it look like when it comes to getting into SAP/ABAP? What is the relevant shortcut?  (not similar to the picture above) Now, I’m bringing you 5 tips (based on our...

What is the difference between database table and internal table?

What is the difference between database table and internal table?

In today’s Coaching Session we are discussing what is the difference between database table and internal table within SAP. Do you know what is the difference between them? Here are all the questions we are discussing on this call: What’s the difference between internal tables and transparent tables? How can I access transparent tables? What’s the...

TIME_OUT ABAP Programming Error

Whenever ABAP program is executed for more than certain period of time, you may get the following runtime error. Category: ABAP Programming Error Runtime Errors: TIME_OUT When does it happen? If you run ABAP program typically by pressing F8 either in SE80 or SE38 (in foreground). What does it mean? SAP has defined system parameter which says that you...

How to trigger DATA_CHANGED event in CL_GUI_ALV_GRID

If you have problem getting changed data in ALV from DATA_CHANGED event, you must do the following: [sociallocker id=”1121″] Call method CHECK_CHANGED_DATA in PAI module. This method automatically triggers the DATA_CHANGED event. Example: go_alv_grid->check_changed_data( ). [/sociallocker]