former_member671289
Explorer
Member since ‎08-16-2014

User Statistics

  • 23 Posts
  • 0 Solutions
  • 13 Kudos given
  • 2 Kudos received

User Activity

I need to display NET Sales of my company in Rupees in a Story that I am making on the SAP Analytics Cloud. Currently, there is an option of displaying it in millions or Billions in USD but not in rupees. How can I do that? I have already made a co...
I have made a screen with Table Control. When I try to activate, it is giving me an error. Kindly advise. *&---------------------------------------------------------------------* *& Module Pool ZABAP_PRACTICE2_MODULE *& *&--------------------...
I am learning ABAP. When I activate any of the code I have to choose Object Type from the list of Objects. Sometimes I have to select some specific Objects for activating screens. Till now I am just activating default selected options but now sometim...
I am trying to make a simple screen with 2 Input/Output Fields and One Button. Here is the full code : *&---------------------------------------------------------------------* *& Module Pool ZABAP_PRACTICE2_MODULE *& *&----------------------...
I have come across the following code and it confused me. Kindly see the following code : DATA: BEGIN OF itab OCCURS 0, letter TYPE c, END OF itab. itab-letter = 'a'. APPEND itab. itab-letter = 'b'. APPEND itab. itab-letter = 'c'. APPEND itab...