Author |
Message |
Topic: Создание XML на основе XDS схемы |
admin
Replies: 1
Views: 2751
|
Forum: XML Posted: Thu Mar 02, 2023 8:39 pm Subject: Создание XML на основе XDS схемы |
1) Тран. J3RTAXREP - создаем иерархию системы отчетов на основе XDS схемы.
2) Создаем класс для провайдера данных ZCL_STAT ... |
Topic: ANST - анализ кода и поиск notes |
admin
Replies: 0
Views: 2369
|
Forum: Debugging Posted: Fri Feb 03, 2023 6:59 pm Subject: ANST - анализ кода и поиск notes |
ANST - мощная транзакция для трассировки запускаемой транзакции.
Покажет, какой стандартный код с разбивкой по ... |
Topic: Error Handling for Bundled Updates |
admin
Replies: 0
Views: 3472
|
Forum: SQL and Database Changes Posted: Fri Oct 14, 2022 11:18 am Subject: Error Handling for Bundled Updates |
Runtime errors can occur during execution of bundled updates. How are they handled? In general, COMMIT WORK processing occurs in the following order:
1) All dialog-task FORM routines logged with PE ... |
Topic: Getting data in parallel in a report. |
admin
Replies: 0
Views: 4232
|
Forum: Programming Techniques | Приемы программирования Posted: Sun Sep 05, 2021 4:28 pm Subject: Getting data in parallel in a report. |
Sometimes, to speed up a report, you have to do data processing in parallel.
*&---------------------------------------------------------------------*
*& Report zvga_parallel_tasks
*& ... |
Topic: Join between ekpo and lips |
admin
Replies: 0
Views: 4636
|
Forum: SD Posted: Sun Aug 22, 2021 10:08 pm Subject: Join between ekpo and lips |
Before ABAP 7.50 possible :
1. FOR ALL ENTRIES
2. Execute "native" SQL directly on the database connected to your ABAP software. This can be done with EXEC SQL or ADBC (class CL_SQL_STAT ... |
Topic: Debugging using SET PARAMETER ID |
admin
Replies: 0
Views: 2686
|
Forum: Debugging Posted: Fri Jun 11, 2021 11:54 am Subject: Debugging using SET PARAMETER ID |
*--{ VGA QC31569:insert
* For debug set CRM_DEBUG_EXTERN = X in Custom Parameters (su3)
DATA: lv_debug TYPE as4flag.
GET PARAMETER ID 'CRM_DEBUG_EXTERN' FIELD lv_de ... |
Topic: Upload from Excel to Internal table (different functions) |
admin
Replies: 0
Views: 12710
|
Forum: OLE2, Excel, WinWord Posted: Tue Dec 13, 2016 4:30 pm Subject: Upload from Excel to Internal table (different functions) |
*&---------------------------------------------------------------------*
*& Report ZUPLOAD_XLS
*&
*&---------------------------------------------------------------------*
*&
... |
Topic: Check amount field in event 01 of the table maintain |
admin
Replies: 0
Views: 13025
|
Forum: ABAP Dictionary Posted: Thu Nov 03, 2016 2:18 pm Subject: Check amount field in event 01 of the table maintain |
There are some issues with extract integer or decimals data from table EXTRACT in the events of table maintain generator.
Here is a trick:
There is a standard field that is updated if you loop at ... |
Topic: Fix CRM_ORDER019 (Document is being distributed) |
admin
Replies: 0
Views: 12472
|
Forum: CRM Posted: Fri Apr 22, 2016 11:33 am Subject: Fix CRM_ORDER019 (Document is being distributed) |
Fix CRM_ORDER019 'Document is being distributed; changes are not possible' error
FUNCTION zlru_order_save.
*"----------------------------------------------------------------------
*"*&quo ... |
Topic: Как проверить, что FM вызван через RFС |
admin
Replies: 0
Views: 12395
|
Forum: Interfaces | Интерфейсы Posted: Wed Sep 09, 2015 2:37 pm Subject: Как проверить, что FM вызван через RFС |
DATA rfcsi TYPE rfcsi.
CALL FUNCTION 'RFC_SYSTEM_INFO' DESTINATION 'BACK'
IMPORTING
rfcsi_export = rfcsi.
RFC_GET_ATTRIBUTES
RFC_WITHIN_SAME_SYSTEM |
Topic: Debug backgroud processes with restricted authorization |
admin
Replies: 0
Views: 12601
|
Forum: Programming Techniques | Приемы программирования Posted: Fri May 15, 2015 12:04 pm Subject: Debug backgroud processes with restricted authorization |
1) Set in Abap code:
DATA: lv_debug TYPE as4flag.
GET PARAMETER ID 'DEBUG' FIELD lv_debug.
IF lv_debug IS NOT INITIAL.
" delay for 1 seconds w/o CPU load
... |
Topic: CRM FAQ |
admin
Replies: 0
Views: 8731
|
Forum: CRM Posted: Thu Dec 25, 2014 10:35 am Subject: CRM FAQ |
BOL Browser (Transaction GENIL_BOL_BROWSER).
BOL Model (Transaction GENIL_MODEL_BROWSER)
Text determination procedure
Available Text Types for a particular transaction is defined in SPRO under p ... |
Topic: Display a Popup and Get Values from User |
admin
Replies: 0
Views: 9174
|
Forum: Programming Techniques | Приемы программирования Posted: Fri Oct 10, 2014 4:47 pm Subject: Display a Popup and Get Values from User |
In some cases, we are needed to get some inputs from the user at run-time of an application based on certain dynamic conditions.
Function Module POPUP_GET_VALUES can be used to display a popup to g ... |
Topic: Make all or individual fields of an ALV grid editable |
admin
Replies: 0
Views: 16276
|
Forum: ALV Grid / ALV Tree / ALV List Posted: Thu Oct 09, 2014 3:29 pm Subject: Make all or individual fields of an ALV grid editable |
The following program demonstrates how to make individual fields of an ALV grid editable (i.e. where NETPR greater than 10). Changes required from a basic ALV grid include adding a new field to ALV gr ... |
Topic: CRM ORDER change |
admin
Replies: 0
Views: 6818
|
Forum: CRM Posted: Fri Aug 22, 2014 5:46 pm Subject: CRM ORDER change |
data: lt_status type CRMT_STATUS_COMT,
ls_status like line of lt_status.
data: ch_inputfields type CRMT_INPUT_FIELD_TAB,
lt_sorted type CRMT_INPUT_FIELD_NAMES_TAB,
ls_s ... |
|