SAP Managed Tags: ABAP Development ABAP Development Programming Tool View products (1) Hi, I need help! Does anyone have any examples of adding a new cust field to PO Item Detail screen with a user exit? In transactions ME21n, ME22n, ME23n I need to add a new field in PO Item...
Applying OPEN DATASET to a file already opened - in the same internal mode - triggers an exception of the type CX_SY_FILE_OPEN. The Return Code is set as follows: SY-SUBRC = 0: The file was opened. SY-SUBRC = 8: The file could not be opened. Example DATA: dsn(20) ...
SAP Managed Tags: ABAP Development hi Bill of material form an important component of the Production Planning SAP PP module. In many SAP interviews candidates are asked to explain the concept of Bill of material. discussing the same below. What is a Bill of Material BOM in the SAP Productio...
SAP Managed Tags: ABAP Development 1. The user exit is a point in a SAP program where a customer’s own program can be called. On upgrade, each user exit must be checked to ensure that it conforms to the standard system. 2. How to find user exits and to implement. Display the pro...
b)It is possible to have a smartform without a main window . c)Labels cannot be created in smartforms. d)Routines can be written in smartforms tool. e)Smartforms generates a function module when activated. Contributed by :SAP ABAP/4 Programming, Basis Administration, Configuration Hints and Ti...
SAP Managed Tags: ABAP Development AND \ OR is available in ABAP, you can use it like this , for example, IF ( sy-subrc NE 0 ) AND ( itab[] IS INITIAL ). ... ... ... ENDIF. For full documention type AND in ABAP editor and press F1. Hope this helps. Regards, Senthil...
SAP Managed Tags: ABAP Development Hello, there is no specific Full form of SLIS it contains all the Structures and Internal table declarations which are commonly used in ALV 1. Type-Pool. Its nothing but abap code, where some bunch of TYPES (data types) and some data declaration, is al...
SAP Managed Tags: ABAP Connectivity Hi OPEN DATASET stmt is used to open a file on applicaiton server either for reading or writing. Eg: OPEN DATASET <dsn> FOR [OUTPUT/INPUT] ... OUTPUT in above stmt identifies that we are opening the file for writing. INPUT in above stmt identified...
Fldate1-high = sy-datum. Append fldate1. * Here appending is required because fldate1 is int’ table This event is triggered when you execute your program for the first time i.e., before selection screen is displayed. AT SELECTION-SCREEN When user enters the values in the fields of ...
SAP Managed Tags: ABAP Connectivity Hi, I'm new to BDC. Can anyone please tell me what for type pool TRUX is used in BDC programs. What is TRUXS_T_TEXT_DATA. In the function 'TEXT_CONVERT_XLS_TO_SAP' what should be exported for I_TAB_RAW_DATA? Thanks in advance... Thanks &...