To begin creating a program, access the ABAP Editor either via transaction code SE38, or by navigating the SAP menu tree to Tools → ABAP Workbench → Development, in which the ABAP Editor is found. Double-click to execute. A note to begin:it is advisable to keep the programs created as...
SAP Managed Tags: ABAP Development Hi Jitendra, It's because the ZZNETPR component of your WA_BAPI_TE_ITEM structure is defined as Packed [ P(8) Decimals 2 ] Unicode can't handle it. Ideally it should be changed to Character type (c) with a length of 16 or 17 to account for ...
SAP Managed Tags: ABAP Development Hi Please ignore my previous post. Type-group is used to declare the different data declarations under single type group. if we want create our own type group go for se11 and create the type group.Please find the given below example for your reference....
SAP Managed Tags: ABAP Development Hi, Try this Declare DATA numeric_data(10) TYPE c VALUE '0123456789'. CA CHECKS EACH CHARACTER IN THE STRING IF MVALUE CA numeric_data . ELSE ENDIF. REWARD PTS TO USEFUL ANSWERS PANKAJ Reply Former Member In response to Former Member 2006 Aug 14...
How to display summary details at then end of a alv grid? Go to solution Former Member 2007 Jun 11 8:04 AM 0 Kudos 2,893 SAP Managed Tags: ABAP Development Hi. i have a ALV grid with 4 columns. also i need to print summary details at the end of the grid.. eg....
SAP Managed Tags: ABAP Development Hi declare a variable v_no type P decimals 2 value '44567.98'. v_no_i type I. v_num(13) type N. v_no_i = v_no * 100. move v_no_i to v_num. regards Anji Reply Former Member 2007 Oct 02 1:50 PM 0 Kudos 230 SAP Managed Tag...