Author |
Message |
Topic: Getting data in parallel in a report. |
admin
Replies: 0
Views: 491
|
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: 516
|
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: 608
|
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: 8653
|
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: 9725
|
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: 9164
|
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: 9350
|
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: 10874
|
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: 6684
|
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: 6822
|
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: 12209
|
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: 4932
|
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 ... |
Topic: День рождения у VGA! |
admin
Replies: 34
Views: 49592
|
Forum: Talks | Беседка Posted: Fri Mar 07, 2014 12:23 pm Subject: День рождения у VGA! |
Спасибо большое, коллеги!  |
Topic: Link between spool request & abap program |
admin
Replies: 0
Views: 11591
|
Forum: List Generation, LDB, Spool Process, SAP Query, Report Painter Posted: Tue Feb 18, 2014 4:27 pm Subject: Link between spool request & abap program |
Q:
Hi all,
I m looking for the link table between a spool request and the corresponding job and abap program.
I want to select all spool requests generated via een job via een abap program.
Some ... |
Topic: Set ABC indicator in Material Master |
admin
Replies: 0
Views: 11888
|
Forum: ММ Posted: Wed Sep 25, 2013 12:21 pm Subject: Set ABC indicator in Material Master |
Author: Rich Heilman
report zrich_0001 .
data: headdata type bapimathead.
data: plantdata type bapi_marc.
data: plantdatax type bapi_marcx.
data: return type bapiret2 .
... |
|