sh4il3sh
Participant
Member since ‎09-11-2018

User Statistics

  • 105 Posts
  • 2 Solutions
  • 88 Kudos given
  • 23 Kudos received

User Activity

hello experts,here lt_schdx will only have only line because every time a new line is added, old ones are removed.if I had table declared beforehand I could use BASE but it's not allowed here.any alternative because BASE statement is not allowed, my ...
Question title is the error I get in complier:I simply want to concatenate all BAPI error messages, I can do with Reduce maybe.but now I am curious why am I getting error.ls_head is a structure with fields MSGTYP, MESSAGE(char1024) etc..I understand ...
I have below multiple IF statements which I want to see combined,I tried using ELSEIF and CASE but its not applicable here because the comparison operator is <> instead of =Below is the code:  IF <ls_load>-atnam <> 'AA'. IF VALUE #( ...
Hello Experts, I want my code to look short and also perform fast and I need some expert to confirm which is the right way from below two.PARALLEL CURSOR CODE:Sadly we cant shorten this with new syntaxes. (maybe line_index can help?)LOOP AT WHERE COD...
Hi,I am simply adding new rows to a table of type string, code below: et_aud = VALUE #( ( data = 'No of Successful Records: ' && |{ iv_suc }| ) ( data = 'No of Failed Records : ' && |{ iv_err }| ) ( data = '' ) ( data = COND #( W...