Posts

Showing posts from September, 2019

Sorting in SAP ABAP ALV Report

 Sorting in SAP ABAP ALV Report Using the Sort Table, the user can sort the output and he can expect subtotals in the output result. here, we discuss the importance of the sort table importance and its use in ALV Reports. Sort Criteria, The Table IT_SORT is populated with the sort criteria for the different fields. The caller specifies the essential list's sorting and/or subtotaling in the internal table IT_SORT. This internal table has the following fields: -         spos :  Sort sequence -         fieldname :  Internal output table field name -         tabname : Only relevant for hierarchical-sequential lists. Name of the internal output table. -         up : 'X' = sort in ascending order -         down : 'X' = sort in descending order -         subtot : 'X' = subtotal at group value change -    ...

SAP ABAP Material and Tutorials

SAP ABAP Material and Tutorials Somebody wants to learn  SAP ABAP Language, but practice and reading Material is not available. In the market, you can find only basic SAP ABAP Books, but not available practice material, keeping that requirement in my mind, here I am providing the SAP ABAP Course all practical Tutorials and material, you can take a print out them, read them, and practice it, you can get real-time experience. Moreover, here I am providing material with screenshots and step-by-step tutorials which you can practice and read as well as material of SAP ABAP interview questions which are used for freshers and experienced candidates and real-time purposes. ABAP (Advanced Business Application Programming) is the default programming language for SAP applications. This course will teach you the basics of developing ABAP programming. If you are a complete freshman, take the SAP Beginner Course . How to create a material in SAP? Create Material in SAP. ...

How to Pass Selection-screen Information in SAP ABAP ALV Report

How to Pass Selection-screen Information in SAP ABAP ALV Report In the previous post, we have discussed How to Define SAP ABAP ALV Report Output list description, SAP ABAP ALV Reports data declaration, Events Table, Selecting the optional Variants and Output Field Characteristics and their importance in the ALV report, from this post, we will learn about Pass Selection-screen Information in SAP ABAP ALV Report. This step is required to get the selection screen information in the report output. The prerequisite is to set the parameter LAYOUT-GET_SELINFOS of the IMPORTING structure. The parameters to be passed in the IS_SEL_HIDE table are: o mode:              'R' = only the entries are given in the internal table IS_SEL_HIDE-T_ENTRIES      Is output in the pop-up. Selection info, which the list tool read in the selection screen (when called by a report with a selection screen), is replaced by the values passed. 'S' = ...