SuhaSaha
Advisor
Advisor
Member since ‎07-29-2007

User Statistics

  • 6,736 Posts
  • 718 Solutions
  • 1,026 Kudos given
  • 482 Kudos received

User Activity

As per this comment in this clean ABAP discussion thread, the ideal scenario to handle exceptions would be like this: class LCX_APPLICATION_ERROR definition inheriting from CX_STATIC_CHECK. endclass. class LCX_INTERNAL_ERROR definition inheriting ...
REDUCE has been around since ABAP Release 740. There have been some useful blogs on it, especially this one from Horst Keller. I love REDUCE and never miss a chance of using it. The typical use cases for me are summing up or concatenating the conten...
I like using ABAP functional operators in my daily coding, but sometimes i question the readability (CLEANliness) of the such coding blocks. What i currently have: R_RESULT = cond #( when I_PARAM is initial and UTILITY->FOO( ) <> ...
Apparently if a (selection) screen element is defined using the predefined ABAP-Type 'd', the automatic date help is not displayed. Tbh, i came across this problem for the first time today, when defining a utility report (for PoC purposes). PARAMET...
Hello, I am modelling a BRF+ "Search Tree" for calculating the BuPa credit worthiness. The algorithm looks something like this: Check1: If true, RESULT-RATING = 'A1' + RESULT-SOURCE = 'Check1' ; ELSECheck2: If true, RESULT-RATING = 'A2' + RESUL...