1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: BAPI
- (C) Copyright IBM Corp. 2005, 2010
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <BAPIINTConfiguration version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="bapiint_config.xsd">
- <!-- Target path for BAPI trace files -->
- <bapiTracePath value="..\logs"/>
- <!-- Trace level. 0 means no tracing. The following values does change the tracing level 1,10,100,200 (9999 only for developers) -->
- <!--bapiTraceLevel value="0"/-->
- <!-- Value indicates if the tracel level can be set by logon structure. 0=off (default), 1=on(if not activated), 2=on(overwrite setting bapiTraceLevel) -->
- <bapiTraceByLogon value="0"/>
- <!-- Flag indicates if cell data should be available at the trace file -->
- <bapiTraceSuppressVals value="false"/>
- <!-- Defines the formatting of MDX trace output. 0=Non formatted, 1=Formatted, 2=SAP Formatted -->
- <bapiMDXFormat value="2"/>
- <!-- Activation/deactivation of the table dump feature. Please note that not all tables will be traced -->
- <!--bapiTraceTabDmp value="false"/-->
- <!-- Maximum number of rows for table dump -->
- <bapiTraceTabMax value="200"/>
- <!-- Maximum number of columns for table dump -->
- <bapiTraceTabCols value="11"/>
- <!-- Should be each field written into a seperate line -->
- <bapiTraceTabBreaks value="false"/>
- <!-- Activation/deactivation of RFC tracing. Please note environment variable settings will be overwritten -->
- <bapiTraceRfc value="false"/>
- <!-- Should we perform additional connection checks to ensure a valid RFC handle 0 = off, 1 = connection only, 2 = always. -->
- <bapiCheckConnection value="0"/>
- <!-- Activation/deactivation of the support for local RFc memory allocation. -->
- <bapiLocalRFCAlloc value="false"/>
- <!-- Activation/deactivation of the support for RFC password changer. -->
- <bapiSupportPWChanger value="true"/>
- <!-- Activation/deactivation of IPF logging -->
- <bapiLogging value="false"/>
- <!-- Activation/deactivation of time measurement. 1=BAPI runtime, 2=Detailed BAPI runtime, 3=Detailed BAPI runtime plus statistic -->
- <!--bapiTimeKeeperLevel value="0"/-->
- <!-- Measurement of the time between 2 BAPI calls -->
- <bapiCallDelayRec value="0"/>
- <!-- Size for SAP stream buffer (shouldn't be changed for now) -->
- <bapiStreamBuffer value="0"/>
- <!-- Activation of UNICODE communication structures (shouldn't be changed for now) -->
- <bapiUseUC value="false"/>
- <!-- Activation/Deactivation of ABAP debugging -->
- <bapiAbapDebug value="false"/>
- <!-- Activation/Deactivation of transactional calls -->
- <bapiTransCall value="false"/>
- <!-- Perform automatic upper case conversion if necessary. -->
- <bapiCharConv value="true"/>
- <!-- Recording of method/function calls at the BAPI Interface (just a development feature and shouldn't be activated) -->
- <bapiCmdRecording value="false"/>
- <!-- Performing of cache reset on the SAP server (should be activated only in case of problems on the SAP server regarding cached tables) -->
- <bapiCacheReset value="0"/>
- <!-- Debug feature to detect multiple BAPI calls at the same time on the same connection (development feature) -->
- <bapiCallLocks value="false"/>
- <!-- Activation/deactivation of the support for RfcCancel(..) -->
- <bapiSupportCancel value="true"/>
- <!-- Maximum suspend time for cancel loop during a BAPI call. -->
- <bapiMaxSuspendTime value="200"/>
- <!-- Activation/deactivation of automatic password upper case conversion. Could be helpful to be compatible to RFC 6.20 environments -->
- <bapiPasswordConv value="false"/>
- <!-- If true, then the function parameter cache will be used -->
- <bapiUseFuncParamCache value="false"/>
- <!-- File containing cached parameters of SAP function modules -->
- <bapiFuncParamCache value="bapiFuncCache.txt"/>
- <!-- Should we perform a BAPI return check and throw an exception. 0 = off, 1 = only at Errors or Aborts, 2 = always if a message is there. -->
- <bapiCheckReturn value="1"/>
- <!-- BAPI return messages which should be throw an exception, independent from the bapiCheckReturn 1 or 2. Format : MSGID_1=MSGNUM_1 MSGID_2=MSGNUM_2. The default value 804:BRAIN represents the warning for authentication issues. -->
- <bapiRetMsgThrow value="BRAIN=804"/>
- <!-- Connection pool size. Used for re-usage of existing RFC connections. 0 = off, pool size should be between 10 and 500 -->
- <bapiConnectPoolSize value="0"/>
- <!-- Support for SSO tickets. 0 = off, 1 = on -->
- <bapiSSOSupport value="1"/>
- <!-- Library and path of the SNC Library (must be GSS-API v2 compatible). Please check SAP note 352295 for further details -->
- <bapiSNCLib value=""/>
- <!-- Server on which SNC should be used. Format "SERVER_SYSNR=Full_SNC_Name". Space represents the seperator for further servers. -->
- <bapiSNCServers value=""/>
- <!-- Ports which should be used for Messageserver connections. Replacement for entries at the OS "service" file. Format : SID_A=PORT_A SID_B=PORT_B ... -->
- <bapiMSSERV value="sapmsBWP=3600 sapmsP3U=3610 sapmsP7U=3610"/>
- <!-- Specify simulation mode. Normal operation = 0, Record = 1, Playback = 2 -->
- <bapiSimMode value="0"/>
- <!-- Specify the name of the file to read from during playback mode -->
- <bapiSimPlaybackFileName value="playback.trc"/>
- <!-- Specify if the data being recorded should be compressed -->
- <bapiSimCompressData value="false"/>
- <!-- Specify if the data being recorded should be modified in order to obscure the original data.-->
- <bapiSimModifyData value="false"/>
- <!-- Specify the maximum number of kilobytes to use for the read buffer during playback. 0 = Let application decide. -->
- <bapiSimReadBufferSize value="0"/>
- <!-- Mode to handle SAP role retrieval, 0=provided from CAM, 1=don't replace derived roles, 2=replace derived roles.-->
- <bapiReplDeriRoles value="0"/>
- <!-- Pre-check of logon credentials. 0 = means no pre-check, 1 = check logon credentials. -->
- <bapiChkLogCred value="0"/>
- </BAPIINTConfiguration>
|