Trailsap

SALV_DEMO_TREE_SELECTIONS

SALV_DEMO_TREE_SELECTIONS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Check out the submitted Contribute related to this SAP report or see any standard documentation available. Also check out the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. If you would like […]

SALV_DEMO_TREE_SELECTIONS Read More »

SALV_DEMO_TREE_SETTINGS

The report SALV_DEMO_TREE_SETTINGS demonstrates the SALV TREE functionality cl_salv_tree (Fullscreen Tree) with a focus on setting a number of specific properties of items and nodes including  Display the leaves with checkboxesChange the folder iconsRemove Nodes Note: If there is no data displayed within the ALV tree report on your system you may be able to create the data by executing report BCALV_GENERATE_ALV_T_T2</p> ABAP code to call this SAP report using the submit statement SUBMIT SALV_DEMO_TREE_SETTINGS.

SALV_DEMO_TREE_SETTINGS Read More »

SALV_DEMO_TREE_SIMPLE

The SALV_DEMO_TREE_SIMPLE report demonstrates the basic usage of the Tree in ALV OM functionality implement by method cl_salv_tree (Fullscreen Tree, Tree) Note if no data is displayed on your system you may be able to create the data by executing report BCALV_GENERATE_ALV_T_T2 What is meant by an SAP ALV Tree The basic working of the ALV tree are nodes and subnodes(i.e. parent-child relationship ). These have to be added to the

SALV_DEMO_TREE_SIMPLE Read More »

SAP date_after_range error

If you are using SAP functionality to check a date, for example maybe you are using the below function module to check if a date is a working day or not you may get the date_after_range error. CALL FUNCTION ‘DATE_CHECK_WORKINGDAY’ EXPORTING date = ld_date factory_calendar_id = ‘GB’ message_type = ‘S’ EXCEPTIONS date_after_range = 1 date_before_range

SAP date_after_range error Read More »

SAP S_ALR Transactions

List of SAP S_ALR transactions: S_ALR_87007814 -MRM-Relevant Flow Types S_ALR_87007817 -Maintain Evaluaton Type S_ALR_87009287 -Securities: Fin. Transaction Types S_ALR_87009293 -Securities: Flow Types S_ALR_87009294 -Assign Flow Types S_ALR_87009295 -Assign Flow Types to Transact. Types S_ALR_87009296 -Define Derivation Procedures S_ALR_87009630 -Plan/Actual Comparison S_ALR_87009631 -Division Comparison S_ALR_87009632 -Ranking List by Customer Group S_ALR_87009633 -CM: Region/Business Area/Product Grp S_ALR_87009634

SAP S_ALR Transactions Read More »

CL_ESFSMP_PROPERTY_PROVIDER SAP Class

CL_ESFSMP_PROPERTY_PROVIDER is a standard SAP class available within R/3 SAP systems depending on your version and release level. Below is the standard documentation available for this class interface. You can view this information and more if you enter the class name CL_ESFSMP_PROPERTY_PROVIDER into the relevant SAP transaction such as SE24 or SE80.  Within the comments section below there

CL_ESFSMP_PROPERTY_PROVIDER SAP Class Read More »

CL_MOBILE_SYSTEM_LOGIN SAP Class – Logon Page for Mobile Devices

CL_MOBILE_SYSTEM_LOGIN is a standard SAP object class available within R/3 SAP systems depending on your version and release level. Below is the standard documentation available for this class interface including details of any methods, attributes, events etc… You can view this information and more if you enter the class name CL_MOBILE_SYSTEM_LOGINinto the relevant SAP transactions

CL_MOBILE_SYSTEM_LOGIN SAP Class – Logon Page for Mobile Devices Read More »

ABAP predefined data types such as Char, Date, Time, integer

Simple ABAP code to demonstrate the ABAP predefined data types such as Char, Date, Time, integer. Note you would usually have all the WRITE statements after all the data declarations but just makes it clearer to put them together for this example ABAP code list to demonstrate data types *&——————————-* *& Report ZABAP_DATA_TYPES *&——————————-* *&——————————-*

ABAP predefined data types such as Char, Date, Time, integer Read More »

Email ABAP report PDF

The below code to demonstrates how to email ABAP report PDF. It generates an ALV output of personal numbers (PERNRS) and then converts this to a PDF document. Its then sends an external email with the PDF as an attachment SAP ABAP report functionality used by this report Email address input selection screen fields Display

Email ABAP report PDF Read More »