sh4il3sh
Participant
Member since ‎09-11-2018

User Statistics

  • 97 Posts
  • 2 Solutions
  • 84 Kudos given
  • 23 Kudos received

User Activity

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...
Hello,I am calling the proxy BusinessPartnerSUITEBulkReplicateRequest_In to create BusinessPartners.It would not throw an error message/runtime error even after COMMIT_WORK but the errors are to be seen in T-Code MDS_PPO2. Example Error: Tax code 2 9...
Hello Experts,I have an internal table which is of Dynamic Type created as below: METHOD BUILD_LOG:FIELD-SYMBOLS: <lt_tabinput> TYPE ANY TABLE.ASSIGN (iv_tabname) TO <lt_tabinput>. "iv_taname is importing param of method.ENDMETHOD.above makes <lt_...
Hi Experts,I have below code: LOOP AT it_sales ASSIGNING <ls_sales>. customer-sales_arrangement = VALUE #( BASE customer-sales_arrangement ( partner_functions = VALUE #( FOR <ls_pf> IN it_price WHERE ( vkorg = <ls_sales>-vkorg AND vt...