michał_badura
Participant
Member since ‎05-26-2010

User Statistics

  • 63 Posts
  • 3 Solutions
  • 137 Kudos given
  • 56 Kudos received

User Activity

Hi all,I have encountered an interesting phenomenon while re-raising a class-based exception. To not waste your precious time, here's the code: CLASS exception_1 DEFINITION INHERITING FROM cx_static_check. ENDCLASS. CLASS exception_2 DEFINITION INHE...
In ABAP it's quite a common requirement to fetch text to a fixed value from domain, e.g. Customer Production Program for value K of domain RSTAT. How to do it?   The classic way of fetching the values, beside selecting them directly from database t...
Hello experts! I'm facing a problem in ABAP SQL, and don't know, whether it's some kind of undocumented feature, or is my database system doing something strange. The issue can be observed by selecting data with GROUP BY addition, but without ORDER...
Hi all, I'm trying to set up our API Portal. API Management, API Portal is subscribed for my subaccount and it's also entitled for API Management, API Portal with the service plans apim-as-route-service and on-premise-connectivity. No other service p...
Hi all, I have a problem using regexes with word boundaries. First of all: my goal. I want to remove all words in my text, that are shorter than, let's say, 5 characters. As usually, I started playing with DEMO_REGEX_TOY. First try: \<\S{1,5}\>. ...