This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:RFCDEMO="urn:sap-com:document:sap:rfc:functions"> | |
<SOAP-ENV:Header/> | |
<SOAP-ENV:Body> | |
<RFCDEMO:BAPI_USER_GET_DETAIL> | |
<USERNAME>USER</USERNAME> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Name DB | |
ABSOLUTE DB6 MSS | |
ACCESS ORA | |
ACQUIRE DB6,SAA | |
ADA INF | |
ADD ORA SAA DB4 | |
ALIAS DB4 | |
ALL ORA,DB4,INF | |
ALLOCATE DB6 MSS DB4 | |
ALTER ORA SAA DB4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data: lr_tab type ref to data. | |
field-symbols <lt_tab> type table. | |
try. | |
create data lr_tab type standard table of (iv_table_name). | |
assign lr_tab->* to <lt_tab>. | |
catch cx_sy_create_data_error. | |
ev_exmessage = 'Error in data creation' && iv_table_name. "#EC NOTEXT | |
ev_rc = 4. | |
return. | |
endtry. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DATA: BEGIN OF T_FIELDS OCCURS 0, "Feldliste im SELECT-Statement | |
FNAME LIKE DNTAB-FIELDNAME, | |
END OF T_FIELDS. | |
DATA: BEGIN OF G_FIELDS OCCURS 0, "Group by for HDB-Select | |
FNAME LIKE DNTAB-FIELDNAME, | |
END OF G_FIELDS. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*"* use this source file for any type of declarations (class | |
*"* definitions, interfaces or type declarations) you need for | |
*"* components in the private section | |
types: | |
begin of event_rec, | |
evt_name type string, | |
sort_order type i, | |
end of event_rec. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REPORT Z_FINDREDEF. | |
PARAMETERS p_clas TYPE seoclsname DEFAULT 'CL_GUI_CONTROL'. | |
PARAMETERS p_meth TYPE seocpdname DEFAULT 'FREE'. | |
CLASS lcl_main DEFINITION. | |
PUBLIC SECTION. | |
METHODS on_double_click |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*&---------------------------------------------------------------------* | |
*& Report ZUPLOADEXCEL | |
*& | |
*&---------------------------------------------------------------------* | |
*& | |
*& | |
*&---------------------------------------------------------------------* | |
REPORT ZUPLOADEXCEL NO STANDARD PAGE HEADING. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CLASS zcl_abapgit_user_exit DEFINITION | |
PUBLIC | |
FINAL | |
CREATE PUBLIC. | |
PUBLIC SECTION. | |
INTERFACES: | |
zif_abapgit_exit. | |
PROTECTED SECTION. | |
PRIVATE SECTION. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REPORT zminesweeper NO STANDARD PAGE HEADING LINE-SIZE 125. | |
* ------------------------------------------------------------ | |
* ABAP Minesweeper | |
* (c) Andrey Timofeev | |
* http://mrand.name/sap-abap | |
* license: free, "as is" | |
* ------------------------------------------------------------ | |
* Installation: compile and run. | |
* (for SAP 4.x, use http://mrand.name/sap-abap/sweeper4.txt) | |
* ------------------------------------------------------------ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*&---------------------------------------------------------------------* | |
*& Report ZSDN_WDY_OTR_EDITOR | |
*& | |
*&---------------------------------------------------------------------* | |
REPORT zsdn_wdy_otr_translator. | |
TABLES: wdy_component. | |
********************************************************************** | |
* Global Types Declaration * |
OlderNewer