Sunday, April 23, 2006

[BW] BCT-FI: Extracting FI line items up to the current date

Note 485958
In r/3, set BWFIOVERLA in BWOM_SETTINGS to X.

[BW] Consulting: Delta repeat and status in monitor/data target

note 873694

[BW] Set up https in WAS 640

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.)



1. Set the following parameters in system profile:
icm/server_port_2 = PROT=HTTPSPORT=8080
icm/server_port_1 = PROT=SMTP,PORT=25
icm/server_port_0 = PROT=HTTP,PORT=8000
icm/HTTPS/verify_client = 1
ssf/name = SAPSECULIB
ssf/ssfapi_lib = G:\usr\sap\BWJ\SYS\exe\uc\NTI386\sapcrypto.dll
sec/libsapsecu = G:\usr\sap\BWJ\SYS\exe\uc\NTI386\sapcrypto.dll
ssl/ssl_lib = G:\usr\sap\BWJ\SYS\exe\uc\NTI386\sapcrypto.dll

2. SAPCRYPTOLIB can be download in service.sap.com/trust --> use customer oss id
copy SAPCRYPTOLIB to G:\usr\sap\BWJ\SYS\exe\uc\NTI386
3. restart system
4 . in strustsso --> create pse for SSL Server and SSL Client (Standard)

Thursday, April 20, 2006

[IGS] Unicode

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

[BW] Check or Extend Table sapce

RSORAT01 - Check Table Space
RSORATC5 - Check Table Extent

[BW] Maintain Drag and Drop setting in RSA1

Set drag and Drop in SM31 - RSADMINSV

Wednesday, April 19, 2006

[BW] Transport Report authorization Object

Program ID = R3TR
Object Type = SUSO

Tuesday, April 18, 2006

[BW] Unicode - RFC_CONVERSION_TABLE data extraction error

report RSCPINST (add ZF )
zcsa/installed_languages = MDE (ZF+EN+DE)

Sunday, April 16, 2006

[EP] RFC_ERROR_COMMUNICATION - Select one of the installed languages


Change the default login language for that user in SU01 to EN

Friday, April 14, 2006

[NW2004s] - 905856 Failed SDM command execution

apply sdm patches

1. uncar sdm.jar file to a temp dir
2. stop server and switch to standalong mode
sdm.bat jstartup "mode=standalone"
3. goto temp dir in step 1
run update.bat
parameter SDM install directory=G:\usr\sap\BWJ\DVEBMGS00\SDM\program
4. switch back to integrated mode
sdm.bat jstartup "mode=integrated"

Symptom

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

Other terms

Failed SDM command

Reason and Prerequisites

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

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///SDM/program

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///SDM/program

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///SDM/program

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///SDM/program

3.Run

StartServer.bat (for Windows)

./StartServer.sh (for UNIX)

Monday, April 10, 2006

[BW] Note 500966 Data is missing: Pre-analyzing the problem in the PSA

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.

[BW] Note 398041 (INFO: CO-OM/IM-Content (BW))

All the info regarding the CO extractors