[BW] BCT-FI: Extracting FI line items up to the current date
Note 485958
In r/3, set BWFIOVERLA in BWOM_SETTINGS to X.
Note 485958
In r/3, set BWFIOVERLA in BWOM_SETTINGS to X.
check the ppt in yahoo mail
and note 654982 ( for issue invalid host name to issue cookie )
set icm/host_name_full = xxx.xxx.com
Use system login in sicf service
(If the host name setting is incorrect, the login will popup for user name and password.)
Note 793847 and 868700
font problem -
note 531668 for sem - 596825 fro BW
set (細明體 =) MingLiU for chinese font in the following two files
G:\usr\sap\BWJ\DVEBMGS00\igs\conf\gfwchart
&
G:\usr\sap\BWJ\DVEBMGS00\igs\conf\xmlchart
trace = 2 for debug..check trc file in log folder
report RSCPINST (add ZF )
zcsa/installed_languages = MDE (ZF+EN+DE)
SDM command execution fails with the errors:
ERROR: Another SDM is running already for this SDM_HOME directory. Exiting.
Processing error. Return code: 4
or
SDM is integrated in JStartupFramework. No repository changing commands are possible.
Processing error. Return code: 4
Failed SDM command
The reason of the fisrt error:
There is a started SDM server on the system. All SDM commands have to be executed when there is no started SDM server.
The reason of the second error:
The executed command can be run only if SDM is in standalone mode.
Solution for the first error:
Stop the started SDM server as you use jcmon (for Windows and UNIX) or MMC (for Windows), if it is in integrated mode or follow the next steps:
1.Open a console to the system.
2.Go to /usr/sap/
3.Run
StopServer.bat (for Windows)
./StopServer.sh (for UNIX)
Solution for the second error:
Follow the next steps:
1.Open a console to the system.
2.Go to /usr/sap/
3.Run
sdm.bat jstartup "mode=standalone" (for Windows)
./sdm.sh jstartup mode=standalone (for UNIX)
It will be better to return SDM in the initial state after the command execution.
To set SDM mode to integrated (if SDM has been in it), use the steps:
1.Open a console to the system.
2.Go to /usr/sap/
3.Run
sdm.bat jstartup "mode=integrated" (for Windows)
./sdm.sh jstartup mode=integrated (for UNIX)
To start SDM server (if it has been started), use again jcmon (for Windows and UNIX) or MMC (for Windows) if SDM is in integrated mode or follow the next steps:
1.Open a console to the system.
2.Go to /usr/sap/
3.Run
StartServer.bat (for Windows)
./StartServer.sh (for UNIX)
You can apply this note to know the PSA table for specific request
*&---------------------------------------------------------------------*
*& Report ZGET_PSA_TAB *
*& *
*&---------------------------------------------------------------------*
*& *
*& This report belongs to note 500966. *
*& *
*& Version 1.0 *
*& *
*& Function: *
*& ========= *
*& This report determins the name of a PSA table for a certain *
*& request *
*& *
*& Attributes: *
*& =========== *
*& Type: executable program *
*&---------------------------------------------------------------------*
REPORT ZGET_PSA_TAB .
type-pools:
rsa.
INCLUDE.
parameters:
request type RSREQUNR default 'REQU_EIUN4YI1LS86EWJNMWY58TDO9'.
data:
ld_odsname_db type RSA_ODSDBNAME,
ls_rsseldone type rsseldone.
start-of-selection.
write:/ 'Get PSA table:'.
uline.
select single * from rsseldone into ls_rsseldone
where
rnr eq request.
if sy-subrc ne 0.
write: / icon_led_red as icon, 'ERROR: Request', request,
' does not exist!'.
else.
write: / icon_led_green as icon, 'Request:', at 30 request .
uline.
write: / icon_led_green as icon, 'DataSource:',
ls_rsseldone-oltpsource
under request.
write: / icon_led_green as icon, 'Selection Date:',
ls_rsseldone-seldate
under request,
ls_rsseldone-seltime.
endif.
CALL FUNCTION 'RSAR_ODS_NAME_GET'
EXPORTING
I_LOGSYS = ls_rsseldone-logsys
I_ISOURCE = ls_rsseldone-oltpsource
I_ISTYPE = ls_rsseldone-typ "changed 12.03.2002
I_DATE = ls_rsseldone-seldate
* I_VERSION =
* I_SELTYPE = 'D'
* I_SEGMENT_ID =
IMPORTING
* E_ODSNAME =
E_ODSNAME_DB = ld_odsname_db
* E_ODS_TABTYPE =
* E_S_ODS =
* E_T_ODSFIELDS =
* E_PARTITIONED =
EXCEPTIONS
PARAMETER_FAILURE = 1
NO_ODS_FOUND = 2
NO_FIELDS_TO_ODS = 3
OTHERS = 4
.
uline.
IF SY-SUBRC <> 0.
write:/ icon_led_red as icon, 'ERROR: No PSA table found !'.
else.
write:/ icon_led_green as icon, 'Name of PSA table:',
ld_odsname_db under request.
ENDIF.