Credit Memo API AR_CREDIT_MEMO_API_PUB.CREATE_REQUEST end with error,

Hey Guys,
I have to create credit memo for invoice but the api API AR_CREDIT_MEMO_API_PUB.CREATE_REQUEST end with the following error.
Error Calling arp_process_header.post_commit ORA-20001:
Failure encountered in AR_CREDIT_MEMO_API_PUB.Create_request call to arw_cmreq_cover.ar_request_cm
My environment detail are following
Database : Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
Application : 12.0.6
Patch Level - R12.AR.A.6
Kindly help me its urgent bases
Regards
Mazhar Hussain

The code is following
CREATE OR REPLACE PACKAGE BODY DMAPAR03_PVT AS
NAME: DMAPAR03_PVT
PURPOSE: CREATING CREDIT MEMO FOR INVOICES
REVISIONS:
Ver Date Author Description
1.0 29-Dec-2011 MAZHAR HUSSAIN 1. Created this package.
PROCEDURE CREATE_CM(
ERRBUF OUT VARCHAR2,
RETCODE OUT VARCHAR2,
P_ORG_ID IN NUMBER,
P_TRX_TYPE IN NUMBER,
P_TRX_NUM_FR IN VARCHAR2,
P_TRX_NUM_TO IN VARCHAR2
IS
V_TRX_DATE DATE := '31-AUG-2011';
CURSOR C_TRX
IS
SELECT TRX.TRX_NUMBER, TRX.CUSTOMER_TRX_ID, RS.CREDIT_MEMO_BATCH_SOURCE_ID CM_SOURCE,
NVL (SUM (TL.EXTENDED_AMOUNT), 0) LINE_AMT,
(SELECT NVL (SUM (L.EXTENDED_AMOUNT), 0)
FROM RA_CUSTOMER_TRX_LINES_ALL L
WHERE L.CUSTOMER_TRX_ID = TRX.CUSTOMER_TRX_ID
AND L.LINE_TYPE = 'TAX') TAX_AMT, RS.NAME SOURCE_NAME,
RS.DEFAULT_INV_TRX_TYPE DEF_TRX_TYPE, TYP.NAME TRX_TYPE_NAME,
RS.BATCH_SOURCE_ID, TYP.CREDIT_MEMO_TYPE_ID
FROM RA_CUSTOMER_TRX_ALL TRX,
RA_CUSTOMER_TRX_LINES_ALL TL,
RA_CUST_TRX_TYPES_ALL TYP,
RA_BATCH_SOURCES_ALL RS
WHERE 1 = 1
AND TRX.TRX_NUMBER BETWEEN NVL (P_TRX_NUM_FR, TRX.TRX_NUMBER)
AND NVL (P_TRX_NUM_TO, TRX.TRX_NUMBER)
AND TRX.CUSTOMER_TRX_ID = TL.CUSTOMER_TRX_ID
AND RS.BATCH_SOURCE_ID = TRX.BATCH_SOURCE_ID
AND TYP.CUST_TRX_TYPE_ID = TRX.CUST_TRX_TYPE_ID
AND TYP.TYPE != 'CM'
AND TYP.CUST_TRX_TYPE_ID = P_TRX_TYPE
AND TRX.TRX_DATE <= V_TRX_DATE
AND TL.LINE_TYPE = 'LINE'
AND TRX.ORG_ID = P_ORG_ID
AND NVL (TRX.ATTRIBUTE7, 'N') != 'Y' --PREVENT DUPLICATE IMPORT
AND TRX.ATTRIBUTE2 IS NOT NULL ------ MIGRATION REP
GROUP BY TRX.TRX_NUMBER, TRX.CUSTOMER_TRX_ID, RS.NAME, TYP.NAME,
RS.DEFAULT_INV_TRX_TYPE, RS.CREDIT_MEMO_BATCH_SOURCE_ID,
RS.BATCH_SOURCE_ID, TYP.CREDIT_MEMO_TYPE_ID
ORDER BY 1 ;
V_MSG_COUNT NUMBER;
V_MSG_DATA VARCHAR2 (2000);
V_RETURN_STATUS VARCHAR2 (1);
V_REQUEST_ID NUMBER;
V_CM_REASON VARCHAR2(100) := 'A/R ERROR';
V_DUMMY VARCHAR2(240);
V_CM_TRX_NUM RA_CUSTOMER_TRX_ALL.TRX_NUMBER%TYPE;
V_CM_TRX_ID RA_CUSTOMER_TRX_ALL.CUSTOMER_TRX_ID%TYPE;
V_TRX_SOURCE VARCHAR2(100);
V_ORG_NAME VARCHAR2(100);
BEGIN
-- DBMS_SUPPORT.START_TRACE;
BEGIN
SELECT NAME INTO V_ORG_NAME
FROM HR_OPERATING_UNITS
WHERE ORGANIZATION_ID = P_ORG_ID;
END;
IF UPPER(V_ORG_NAME) LIKE 'CN003 (OU)'
THEN
V_TRX_SOURCE := 'CN003_CM_MIGRATION';
ELSE
V_TRX_SOURCE := 'CN001_CM_MIGRATION';
END IF;
FND_GLOBAL.APPS_INITIALIZE
(USER_ID => FND_PROFILE.VALUE('USER_ID'),
RESP_ID => FND_PROFILE.VALUE('RESP_ID'),
RESP_APPL_ID => FND_PROFILE.VALUE('RESP_APPL_ID'),
SECURITY_GROUP_ID => 0
MO_GLOBAL.SET_POLICY_CONTEXT ('S', P_ORG_ID);
ARP_GLOBAL.INIT_GLOBAL;
FOR C_TRX_ROW IN C_TRX
LOOP
/*F P_TRX_TYPE <> NVL(C_TRX_ROW.DEF_TRX_TYPE, -1)
THEN
FND_FILE.PUT_LINE (FND_FILE.OUTPUT,'Default Transaction Type Not Defined
or Not Match with Invoice Transaction Type on Transaction Source: '
||C_TRX_ROW.SOURCE_NAME);
EXIT;
ELSIF
*/ IF C_TRX_ROW.BATCH_SOURCE_ID <> NVL(C_TRX_ROW.CM_SOURCE, -1)
THEN
FND_FILE.PUT_LINE (FND_FILE.OUTPUT,'Credit Memo Batch Source Not Defined
or Not Match with Invoice Transaction Source on Transaction Source: '
||C_TRX_ROW.SOURCE_NAME);
EXIT;
ELSIF C_TRX_ROW.CREDIT_MEMO_TYPE_ID IS NULL
THEN
FND_FILE.PUT_LINE (FND_FILE.OUTPUT,'Credit Memo Transaction Type not Assigned on
Invoice Transaction Type : '||C_TRX_ROW.TRX_TYPE_NAME);
EXIT;
ELSE
BEGIN
AR_CREDIT_MEMO_API_PUB.CREATE_REQUEST
(P_API_VERSION => 1.0,
P_INIT_MSG_LIST => FND_API.G_TRUE,
P_COMMIT => FND_API.G_FALSE,
P_VALIDATION_LEVEL => FND_API.G_VALID_LEVEL_FULL,
P_CUSTOMER_TRX_ID => C_TRX_ROW.CUSTOMER_TRX_ID,
P_LINE_CREDIT_FLAG => 'N',
P_LINE_AMOUNT => -C_TRX_ROW.LINE_AMT,
P_TAX_AMOUNT => -C_TRX_ROW.TAX_AMT,
P_CM_REASON_CODE => V_CM_REASON,
P_SKIP_WORKFLOW_FLAG => 'Y',
P_CREDIT_METHOD_INSTALLMENTS => NULL,
P_CREDIT_METHOD_RULES => NULL,
-- P_BATCH_SOURCE_NAME => C_TRX_ROW.SOURCE_NAME,
P_BATCH_SOURCE_NAME => V_TRX_SOURCE,
P_ORG_ID => P_ORG_ID,
P_DISPUTE_DATE => V_TRX_DATE,
-- P_TRX_NUMBER => 'CM-'||C_TRX_ROW.TRX_NUMBER,
X_REQUEST_ID => V_REQUEST_ID,
X_RETURN_STATUS => V_RETURN_STATUS,
X_MSG_COUNT => V_MSG_COUNT,
X_MSG_DATA => V_MSG_DATA
FND_MSG_PUB.COUNT_AND_GET (P_ENCODED => FND_API.G_FALSE,
P_COUNT => V_MSG_COUNT,
P_DATA => V_MSG_DATA
DBMS_OUTPUT.PUT_LINE ('Return Status ==> ' || V_RETURN_STATUS);
DBMS_OUTPUT.PUT_LINE ('Credit Memo request_id ==> ' || V_REQUEST_ID);
DBMS_OUTPUT.PUT_LINE ('V_msg_count ==> ' || V_MSG_COUNT);
-- FND_MESSAGE.RETRIEVE (V_DUMMY);
DBMS_OUTPUT.PUT_LINE('Error in Create Credit Transaction:'
|| SUBSTR (SQLERRM, 1, 80)||' -- '||V_DUMMY
-- FND_FILE.PUT_LINE (FND_FILE.OUTPUT,'Return Status ==> ' || V_RETURN_STATUS);
-- FND_FILE.PUT_LINE (FND_FILE.OUTPUT,'Credit Memo request_id ==> ' || V_REQUEST_ID);
-- FND_FILE.PUT_LINE (FND_FILE.OUTPUT,'V_msg_count ==> ' || V_MSG_COUNT);
IF V_RETURN_STATUS = FND_API.G_RET_STS_SUCCESS
THEN
IF V_REQUEST_ID IS NOT NULL
THEN SHOW CM TRX NUMBER
BEGIN
SAVEPOINT NO_DATA;
SELECT TRX.TRX_NUMBER, TRX.CUSTOMER_TRX_ID
INTO V_CM_TRX_NUM, V_CM_TRX_ID
FROM RA_CM_REQUESTS R, RA_CUSTOMER_TRX_ALL TRX
WHERE R.REQUEST_ID = V_REQUEST_ID
AND R.CM_CUSTOMER_TRX_ID = TRX.CUSTOMER_TRX_ID
AND R.CUSTOMER_TRX_ID = C_TRX_ROW.CUSTOMER_TRX_ID;
FND_FILE.PUT_LINE (FND_FILE.OUTPUT, V_RETURN_STATUS|| ' - AR invoice: '
|| C_TRX_ROW.TRX_NUMBER
|| ' | Generated Credit Transaction Number: '
|| V_CM_TRX_NUM||' | Success: '||V_MSG_DATA);
DBMS_OUTPUT.PUT_LINE ( 'AR invoice: '
|| C_TRX_ROW.TRX_NUMBER
|| ' | Generated Credit Transaction Number: '
|| V_CM_TRX_NUM||' | Success: '||V_MSG_DATA);
---REMARKED THE AR INVOICE WAS GENERATED CM--
UPDATE RA_CUSTOMER_TRX_ALL TRX
SET TRX.ATTRIBUTE7 = 'Y',
TRX.ATTRIBUTE8 = V_CM_TRX_ID,
TRX.ATTRIBUTE9 = V_CM_TRX_NUM,
TRX.ATTRIBUTE10 = V_REQUEST_ID,
TRX.INTERFACE_HEADER_ATTRIBUTE12 = NULL
WHERE 1 = 1
AND TRX.ORG_ID = P_ORG_ID
AND TRX.CUSTOMER_TRX_ID = C_TRX_ROW.CUSTOMER_TRX_ID;
UPDATE RA_CUSTOMER_TRX_ALL TRX
SET TRX.TRX_DATE = V_TRX_DATE
WHERE 1 = 1
AND TRX.ORG_ID = P_ORG_ID
AND TRX.CUSTOMER_TRX_ID = V_CM_TRX_ID;
UPDATE RA_CUSTOMER_TRX_LINES_ALL RCTL2
SET RCTL2.INTERFACE_LINE_ATTRIBUTE12 = NULL
WHERE RCTL2.CUSTOMER_TRX_ID = C_TRX_ROW.CUSTOMER_TRX_ID
AND RCTL2.ORG_ID = P_ORG_ID
AND RCTL2.LINE_TYPE = 'LINE'
AND RCTL2.INTERFACE_LINE_ATTRIBUTE12 IS NOT NULL;
COMMIT;
EXCEPTION WHEN NO_DATA_FOUND
THEN
FND_FILE.PUT_LINE (FND_FILE.OUTPUT, 'AR invoice: '
|| C_TRX_ROW.TRX_NUMBER
|| ' | Generated Credit Transaction Number not found. '
DBMS_OUTPUT.PUT_LINE ( 'AR invoice: '
|| C_TRX_ROW.TRX_NUMBER
|| ' | Generated Credit Transaction Number not found. '
ROLLBACK TO NO_DATA;
---REMARKED THE AR INVOICE WAS GENERATED CM--
END;
END IF;
END IF;
IF V_RETURN_STATUS = FND_API.G_RET_STS_UNEXP_ERROR
OR V_RETURN_STATUS = FND_API.G_RET_STS_ERROR
THEN
FND_FILE.PUT_LINE (FND_FILE.OUTPUT,'Invoice Number: '||C_TRX_ROW.TRX_NUMBER||
' | Error:' || V_MSG_DATA );
DBMS_OUTPUT.PUT_LINE ('Error:' || V_MSG_DATA
||' | For Invoice Number: '||C_TRX_ROW.TRX_NUMBER);
END IF;
IF V_MSG_COUNT > 1
THEN
V_MSG_COUNT := 0;
LOOP
V_MSG_DATA :=
FND_MSG_PUB.GET (FND_MSG_PUB.G_NEXT, FND_API.G_FALSE);
IF V_MSG_DATA IS NULL
THEN
EXIT;
END IF;
FND_FILE.PUT_LINE (FND_FILE.OUTPUT, 'msg_data:' || V_MSG_DATA);
DBMS_OUTPUT.PUT_LINE ( 'msg_data:' || V_MSG_DATA);
END LOOP;
END IF;
EXCEPTION
WHEN OTHERS
THEN
FND_MESSAGE.RETRIEVE (V_DUMMY);
FND_FILE.PUT_LINE (FND_FILE.OUTPUT,
'Error in Create Credit Transaction:'
|| SUBSTR (SQLERRM, 1, 80)||' -- '||V_DUMMY
DBMS_OUTPUT.PUT_LINE('Error in Create Credit Transaction:'
|| SUBSTR (SQLERRM, 1, 80)||' -- '||V_DUMMY
END;
END IF;
END LOOP;
END CREATE_CM;
END DMAPAR03_PVT;
/

Similar Messages

  • Automatic update from 10.0.0 to 10.0.1 ends with error 1603

    - System: Windows XP Professional SP3
    - "Automatically install updates" is set
    - logged in as local administrator
    - the update download works, the installation ends with error 1603 ("fatal installation error" or something, in German)
    - about 80 machines here, all failing
    What's wrong with the update?

    - The installation of 10.0.0 went by ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/10.0.0/de_DE/AdbeRdr1000_de_DE.exe.
    - What does AIP mean in this case?
    - The drive is C:, no substituted drive or encrypted disk.
    - The name of the drive is System.
    - The language is German.
    - The latest MSI....log:
    Fehler 1321. Installer besitzt keine ausreichenden Berechtigungen, um diese Datei zu verändern: C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\WindowsMedia.mpp.
    Property(S): Text = 0
    Property(S): DiskPrompt = [1]
    Property(S): Registration = No
    Property(S): UpgradeCode = {A6EADE66-0000-0000-484E-7E8A45000000}
    Property(S): RedirectedDllSupport = 2
    Property(S): MsiWin32AssemblySupport = 5.1.2600.5512
    Property(S): MsiNetAssemblySupport = 2.0.50727.3053
    Property(S): Date = 15.2.2011
    Property(S): Time = 09:54:42
    Property(S): Installed = 2010/11/10 13:59:40
    Property(S): TTCSupport = 1
    Property(S): ColorBits = 32
    Property(S): TextHeight = 16
    Property(S): BorderSide = 1
    Property(S): BorderTop = 1
    Property(S): CaptionHeight = 26
    Property(S): ScreenY = 1024
    Property(S): ScreenX = 1280
    Property(S): SystemLanguageID = 1031
    Property(S): ComputerName = OBST
    Property(S): UserLanguageID = 1031
    Property(S): UserSID = S-1-5-21-527237240-1563985344-725345543-500
    Property(S): LogonUser = Administrator
    Property(S): AdminUser = 1
    Property(S): VirtualMemory = 7740
    Property(S): PhysicalMemory = 1984
    Property(S): Intel = 15
    Property(S): ShellAdvtSupport = 1
    Property(S): OLEAdvtSupport = 1
    Property(S): GPTSupport = 1
    Property(S): RecentFolder = C:\Dokumente und Einstellungen\Administrator\Recent\
    Property(S): PrintHoodFolder = C:\Dokumente und Einstellungen\Administrator\Druckumgebung\
    Property(S): NetHoodFolder = C:\Dokumente und Einstellungen\Administrator\Netzwerkumgebung\
    Property(S): ROOTDRIVE = D:\
    Property(S): IS_CURRENT_PDFOWNER = 1
    Property(S): RemoteAdminTS = 1
    Property(S): MsiNTProductType = 1
    Property(S): ServicePackLevelMinor = 0
    Property(S): ServicePackLevel = 3
    Property(S): WindowsBuild = 2600
    Property(S): ISSETUPFILESCOMPLETED = Completed
    Property(S): SUPPORTDIR = C:\DOKUME~1\ADMINI~1\LOKALE~1\Temp\{AC76BA86-7AD7-1031-7B44-AA0000000001}
    Property(S): VersionMsi = 3.01
    Property(S): ACTION = INSTALL
    Property(S): VersionNT = 501
    Property(S): LockRegPermissions = CLASSES_ROOT\AcroIEHelper.AcroIEHlprObj@@1@@131097@@CLASSES_ROOT\AcroIEHelper.AcroIEHlprO bj@@22@@983103@@CLASSES_ROOT\AcroIEHelper.AcroIEHlprObj@@26@@131097@@CLASSES_ROOT\AcroIEHe lper.AcroIEHlprObj.1@@1@@131097@@CLASSES_ROOT\AcroIEHelper.AcroIEHlprObj.1@@22@@983103@@CL ASSES_ROOT\AcroIEHelper.AcroIEHlprObj.1@@26@@131097@@CLASSES_ROOT\AcroPDF.FDF@@1@@131097@@ CLASSES_ROOT\AcroPDF.FDF@@22@@983103@@CLASSES_ROOT\AcroPDF.FDF@@26@@131097@@CLASSES_ROOT\A croPDF.FDF.1@@1@@131097@@CLASSES_ROOT\AcroPDF.FDF.1@@22@@983103@@CLASSES_ROOT\AcroPDF.FDF. 1@@26@@131097@@CLASSES_ROOT\AcroPDF.PDF@@1@@131097@@CLASSES_ROOT\AcroPDF.PDF@@22@@983103@@ CLASSES_ROOT\AcroPDF.PDF@@26@@131097@@CLASSES_ROOT\AcroPDF.PDF.1@@1@@131097@@CLASSES_ROOT\ AcroPDF.PDF.1@@22@@983103@@CLASSES_ROOT\AcroPDF.PDF.1@@26@@131097@@CLASSES_ROOT\AppID\{BBA A0E44-3862-490C-8E63-AC2D2D6EF733}@@1@@131097@@CLASSES_ROOT\AppID\{BBAA0E44-3862-490C-8E63 -AC2D2D6EF733}@@22@@983103@@CLASSES_ROOT\AppID\{BBAA0E44-3862-490C-8E63-AC2D2D6EF733}@@26@ @131097@@CLASSES_ROOT\AppID\AcroPDF.DLL@@1@@131097@@CLASSES_ROOT\AppID\AcroPDF.DLL@@22@@98 3103@@CLASSES_ROOT\AppID\AcroPDF.DLL@@26@@131097@@CLASSES_ROOT\CLSID\{06849E9F-C8D7-4D59-B 87D-784B7D6BE0B3}@@1@@131097@@CLASSES_ROOT\CLSID\{06849E9F-C8D7-4D59-B87D-784B7D6BE0B3}@@2 2@@983103@@CLASSES_ROOT\CLSID\{06849E9F-C8D7-4D59-B87D-784B7D6BE0B3}@@26@@131097@@CLASSES_ ROOT\CLSID\{5BB2200E-5672-4A32-902A-5A98DB1C58DC}@@1@@131097@@CLASSES_ROOT\CLSID\{5BB2200E -5672-4A32-902A-5A98DB1C58DC}@@22@@983103@@CLASSES_ROOT\CLSID\{5BB2200E-5672-4A32-902A-5A9 8DB1C58DC}@@26@@131097@@CLASSES_ROOT\CLSID\{CA8A9780-280D-11CF-A24D-444553540000}@@1@@1310 97@@CLASSES_ROOT\CLSID\{CA8A9780-280D-11CF-A24D-444553540000}@@22@@983103@@CLASSES_ROOT\CL SID\{CA8A9780-280D-11CF-A24D-444553540000}@@26@@131097@@CLASSES_ROOT\CLSID\{EE5A151A-AD2A- 4CEE-AD65-228B59F5B4AD}@@1@@131097@@CLASSES_ROOT\CLSID\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4 AD}@@22@@983103@@CLASSES_ROOT\CLSID\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@26@@131097@@CL ASSES_ROOT\Interface\{3B813CE7-7C10-4F84-AD06-9DF76D97A9AA}@@1@@131097@@CLASSES_ROOT\Inter face\{3B813CE7-7C10-4F84-AD06-9DF76D97A9AA}@@22@@983103@@CLASSES_ROOT\Interface\{3B813CE7- 7C10-4F84-AD06-9DF76D97A9AA}@@26@@131097@@CLASSES_ROOT\Interface\{6E67BCC1-D776-44BB-9DC8- C09F542C3CB6}@@1@@131097@@CLASSES_ROOT\Interface\{6E67BCC1-D776-44BB-9DC8-C09F542C3CB6}@@2 2@@983103@@CLASSES_ROOT\Interface\{6E67BCC1-D776-44BB-9DC8-C09F542C3CB6}@@26@@131097@@CLAS SES_ROOT\Interface\{E790E1D1-9DE8-4853-8AC6-933D4FD9C927}@@1@@131097@@CLASSES_ROOT\Interfa ce\{E790E1D1-9DE8-4853-8AC6-933D4FD9C927}@@22@@983103@@CLASSES_ROOT\Interface\{E790E1D1-9D E8-4853-8AC6-933D4FD9C927}@@26@@131097@@CLASSES_ROOT\Interface\{EE5A151A-AD2A-4CEE-AD65-22 8B59F5B4AD}@@1@@131097@@CLASSES_ROOT\Interface\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@22@ @983103@@CLASSES_ROOT\Interface\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@26@@131097@@CLASSE S_ROOT\TypeLib\{05BFD3F1-6319-4F30-B752-C7A22889BCC4}@@1@@131097@@CLASSES_ROOT\TypeLib\{05 BFD3F1-6319-4F30-B752-C7A22889BCC4}@@22@@983103@@CLASSES_ROOT\TypeLib\{05BFD3F1-6319-4F30- B752-C7A22889BCC4}@@26@@131097@@CLASSES_ROOT\TypeLib\{5F226421-415D-408D-9A09-0DCD94E25B48 }@@1@@131097@@CLASSES_ROOT\TypeLib\{5F226421-415D-408D-9A09-0DCD94E25B48}@@22@@983103@@CLA SSES_ROOT\TypeLib\{5F226421-415D-408D-9A09-0DCD94E25B48}@@26@@131097
    Property(S): DefragmentFiles = IMM_SUCCESS;C:\Programme\Adobe\Reader 10.0\;Software\Adobe\Acrobat Reader\;2;Leistung wird optimiert...;[1]% des Vorgangs abgeschlossen;HINWEIS: Die Installation wurde erfolgreich abgeschlossen. Da Ihre Festplatte jedoch fragmentiert ist, kann das Programm eventuell nicht so schnell wie normalerweise möglich starten. Zur Optimierung der Systemleistung sollten Sie die Festplatte defragmentieren und anschließend das Programm in der Systemsteuerung unter "Software" reparieren.
    ;|rdr|\ace.dll;|rdr|\acrord32.dll;|rdr|\acrord32.exe;|rdr|\agm.dll;|rdr|\bib.dll;|rdr|\coo ltype.dll;|rdr|\plug_ins\accessibility.api;|rdr|\plug_ins\acroform.api;|rdr|\plug_ins\anno ts.api;|rdr|\plug_ins\checkers.api;|rdr|\plug_ins\digsig.api;|rdr|\plug_ins\escript.api;|r dr|\plug_ins\ia32.api;|rdr|\plug_ins\makeaccessible.api;|rdr|\plug_ins\multimedia.api;|rdr |\plug_ins\pddom.api;|rdr|\plug_ins\ppklite.api;|rdr|\plug_ins\ReadOutLoud.api;|rdr|\plug_ ins\reflow.api;|rdr|\plug_ins\saveasrtf.api;|rdr|\plug_ins\search.api;|rdr|\plug_ins\sendm ail.api;|rdr|\plug_ins\spelling.api;|rdr|\plug_ins\updater.api;|rdr|\plug_ins\eBook.api;|r dr|\plug_ins\weblink.api;|rdr|\plug_ins\dva.api;35029023
    Property(S): FileTypesOwnerRestore = AcroExch.FDFDoc@@0@@PDF@@AcroExch.XFDFDoc@@0@@PDF@@AcroExch.XDPDoc@@0@@PDF@@AcroExch.SecS tore@@0@@PDF@@AcroExch.Document.7@@0@@PDF@@AcroExch.Document@@0@@PDF@@.pdf@@0@@PDF@@.secst ore@@0@@PDF@@AcroAccess.AcrobatAccess@@0@@PDF@@AcroExch.Profile@@0@@PDF@@AcroExch.RMFFile@ @0@@PDF@@AcroIEHelper.AcroIEHlprObj@@0@@PDF@@AcroPDF.PDF@@0@@PDF@@AFormAut.App@@0@@PDF@@Ap pID\{6236FF8C-E747-4173-86D3-99F511B61DF3}@@0@@PDF@@AppID\{BBAA0E44-3862-490C-8E63-AC2D2D6 EF733}@@0@@PDF@@AppID\AcroPDF.DLL@@0@@PDF@@AppID\PDFPrevHndlr.DLL@@0@@PDF@@CLSID\{06849E9F -C8D7-4D59-B87D-784B7D6BE0B3}@@0@@PDF@@CLSID\{12BA069D-0FC6-4577-97C6-5DF634CE6E84}@@0@@PD F@@CLSID\{17F2E344-8227-4AA7-A25A-E89424566BBA}@@0@@PDF@@CLSID\{49400A7C-81A8-4F52-8CCE-D5 4739EE87EC}@@0@@PDF@@CLSID\{5BB2200E-5672-4A32-902A-5A98DB1C58DC}@@0@@PDF@@CLSID\{7CD069A1 -50AA-11D1-B8F0-00A0C9259304}@@0@@PDF@@CLSID\{98D9A6F1-4696-4B5E-A2E8-36B3F9C1E12C}@@0@@PD F@@CLSID\{B801CA65-A1FC-11D0-85AD-444553540000}@@0@@PDF@@CLSID\{BD57A9B2-4E7D-4892-9107-9F 4106472DA4}@@0@@PDF@@CLSID\{C523F39F-9C83-11D3-9094-00104BD0D535}@@0@@PDF@@CLSID\{CA8A9780 -280D-11CF-A24D-444553540000}@@0@@PDF@@CLSID\{D38406DA-E8AA-484b-B80D-3D3DBDCC2FB2}@@0@@PD F@@CLSID\{DC6EFB56-9CFA-464D-8880-44885D7DC193}@@0@@PDF@@CLSID\{DF9A1DA0-23C0-101B-B02E-FD FDFDFDFDFD}\AutoTreatAs@@0@@PDF@@CLSID\{DF9A1DA0-23C0-101B-B02E-FDFDFDFDFDFD}\TreatAs@@0@@ PDF@@CLSID\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@0@@PDF@@Interface\{17F2E344-8227-4AA7-A 25A-E89424566BBA}@@0@@PDF@@Interface\{36DE898D-AD48-40A5-B4B2-123F916BFBAB}@@0@@PDF@@Inter face\{3B813CE7-7C10-4F84-AD06-9DF76D97A9AA}@@0@@PDF@@Interface\{4A894040-247E-4AFF-BB08-34 89E9905235}@@0@@PDF@@Interface\{5007373A-20D7-458F-9FFB-ABC900E3A831}@@0@@PDF@@Interface\{ 618736E0-3C3D-11CF-810C-00AA00389B71}@@0@@PDF@@Interface\{673E8452-7646-11D1-B90B-00A0C925 9304}@@0@@PDF@@Interface\{7CD069A0-50AA-11D1-B8F0-00A0C9259304}@@0@@PDF@@Interface\{81F9B4 4F-BA3A-4F5D-9B51-090C74A9B3A4}@@0@@PDF@@Interface\{8D46C1B6-BBAB-450D-A61F-4DDC898B21D4}@ @0@@PDF@@Interface\{9B4CD3E6-4981-101B-9CA8-9240CE2738AE}@@0@@PDF@@Interface\{E790E1D1-9DE 8-4853-8AC6-933D4FD9C927}@@0@@PDF@@Interface\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@0@@PD F@@Interface\{F9F2FE81-F764-4BD0-AFA5-5DE841DDB625}@@0@@PDF@@MIME\Database\Content Type\application/pdf@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xdp+xml@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xfd+xml@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xfdf@@0@@PDF@@MIME\Database\Content Type\application/vnd.fdf@@0@@PDF@@PDFPrevHndlr.PDFPreviewHandler@@0@@PDF@@PDFPrevHndlr.PD FPreviewHandler.1@@0@@PDF@@SOFTWARE\Classes\AcroBroker.Broker@@2@@PDF@@SOFTWARE\Classes\Ac roBroker.Broker.1\CLSID@@2@@PDF@@SOFTWARE\Classes\AcroBroker.Broker\CLSID@@2@@PDF@@SOFTWAR E\Classes\AcroBroker.Broker\CurVer@@2@@PDF@@SOFTWARE\Classes\AcroBroker.Broker1@@2@@PDF@@S OFTWARE\Classes\AppID\{F2383816-917A-46CC-AD2A-5013BED3800F}@@2@@PDF@@SOFTWARE\Classes\App ID\AcroBroker.EXE@@2@@PDF@@SOFTWARE\Classes\Interface\{D3F22039-E3CF-4FC4-9A30-426A46056B8 C}@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}@@2@@PDF@@SOFTW ARE\Classes\TypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}\1.0@@2@@PDF@@SOFTWARE\Classes\T ypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}\1.0\0@@2@@PDF@@SOFTWARE\Classes\TypeLib\{417 38EEA-442F-477F-92CF-2889BD6CD7E7}\1.0\0\win32@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA -442F-477F-92CF-2889BD6CD7E7}\1.0\FLAGS@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA-442F-4 77F-92CF-2889BD6CD7E7}\1.0\HELPDIR@@2@@PDF@@TypeLib\{0F6D3808-7974-4B1A-94C2-3200767EACE8} @@0@@PDF@@TypeLib\{41C5FFFE-36DD-415D-9ED0-2976A342A1C8}@@0@@PDF@@TypeLib\{E64169B3-3592-4 7d2-816E-602C5C13F328}@@0@@PDF
    Property(S): ProcessDeleteFilesEx = Leame.htm@@INSTALLDIR
    Property(S): RegisterProperties = CACHE_DIR@@C:\Programme\Adobe\Reader 10.0\Setup Files\{AC76BA86-7AD7-1031-7B44-AA0000000001}\@@ProductName@@Adobe Reader X (10.0.1) - Deutsch@@OriginalDatabase@@C:\WINDOWS\Installer\4866b7.msi@@REMOVE@@@@WindowsFolder@@C:\W INDOWS\@@SetupCacheExport@@ @@ALLUSERS@@1@@REINSTALLMODE@@omus@@PLUG_INS@@C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\@@DefragResetProgress@@No@@ALLUSERS_APPDATA_ADOBE@@C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\@@DEFAULT_VERB@@Read@@IS_CURRENT_PDFOWNER@@1@@ACTIVE_X@@C:\Pr ogramme\Gemeinsame Dateien\Adobe\Acrobat\ActiveX\@@Installed@@2010/11/10 13:59:40@@READER@@C:\Programme\Adobe\Reader 10.0\Reader\@@ProductCode@@{AC76BA86-7AD7-1031-7B44-AA0000000001}@@DeleteUpdateFolder@@Ye s
    Property(S): FileTypesOwnerBackup = AcroExch.FDFDoc@@0@@PDF@@AcroExch.XFDFDoc@@0@@PDF@@AcroExch.XDPDoc@@0@@PDF@@AcroExch.SecS tore@@0@@PDF@@AcroExch.Document.7@@0@@PDF@@AcroExch.Document@@0@@PDF@@.pdf@@0@@PDF@@.secst ore@@0@@PDF@@AcroAccess.AcrobatAccess@@0@@PDF@@AcroExch.Profile@@0@@PDF@@AcroExch.RMFFile@ @0@@PDF@@AcroIEHelper.AcroIEHlprObj@@0@@PDF@@AcroPDF.PDF@@0@@PDF@@AFormAut.App@@0@@PDF@@Ap pID\{6236FF8C-E747-4173-86D3-99F511B61DF3}@@0@@PDF@@AppID\{BBAA0E44-3862-490C-8E63-AC2D2D6 EF733}@@0@@PDF@@AppID\AcroPDF.DLL@@0@@PDF@@AppID\PDFPrevHndlr.DLL@@0@@PDF@@CLSID\{06849E9F -C8D7-4D59-B87D-784B7D6BE0B3}@@0@@PDF@@CLSID\{12BA069D-0FC6-4577-97C6-5DF634CE6E84}@@0@@PD F@@CLSID\{17F2E344-8227-4AA7-A25A-E89424566BBA}@@0@@PDF@@CLSID\{49400A7C-81A8-4F52-8CCE-D5 4739EE87EC}@@0@@PDF@@CLSID\{5BB2200E-5672-4A32-902A-5A98DB1C58DC}@@0@@PDF@@CLSID\{7CD069A1 -50AA-11D1-B8F0-00A0C9259304}@@0@@PDF@@CLSID\{98D9A6F1-4696-4B5E-A2E8-36B3F9C1E12C}@@0@@PD F@@CLSID\{B801CA65-A1FC-11D0-85AD-444553540000}@@0@@PDF@@CLSID\{BD57A9B2-4E7D-4892-9107-9F 4106472DA4}@@0@@PDF@@CLSID\{C523F39F-9C83-11D3-9094-00104BD0D535}@@0@@PDF@@CLSID\{CA8A9780 -280D-11CF-A24D-444553540000}@@0@@PDF@@CLSID\{D38406DA-E8AA-484b-B80D-3D3DBDCC2FB2}@@0@@PD F@@CLSID\{DC6EFB56-9CFA-464D-8880-44885D7DC193}@@0@@PDF@@CLSID\{DF9A1DA0-23C0-101B-B02E-FD FDFDFDFDFD}\AutoTreatAs@@0@@PDF@@CLSID\{DF9A1DA0-23C0-101B-B02E-FDFDFDFDFDFD}\TreatAs@@0@@ PDF@@CLSID\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@0@@PDF@@Interface\{17F2E344-8227-4AA7-A 25A-E89424566BBA}@@0@@PDF@@Interface\{36DE898D-AD48-40A5-B4B2-123F916BFBAB}@@0@@PDF@@Inter face\{3B813CE7-7C10-4F84-AD06-9DF76D97A9AA}@@0@@PDF@@Interface\{4A894040-247E-4AFF-BB08-34 89E9905235}@@0@@PDF@@Interface\{5007373A-20D7-458F-9FFB-ABC900E3A831}@@0@@PDF@@Interface\{ 618736E0-3C3D-11CF-810C-00AA00389B71}@@0@@PDF@@Interface\{673E8452-7646-11D1-B90B-00A0C925 9304}@@0@@PDF@@Interface\{7CD069A0-50AA-11D1-B8F0-00A0C9259304}@@0@@PDF@@Interface\{81F9B4 4F-BA3A-4F5D-9B51-090C74A9B3A4}@@0@@PDF@@Interface\{8D46C1B6-BBAB-450D-A61F-4DDC898B21D4}@ @0@@PDF@@Interface\{9B4CD3E6-4981-101B-9CA8-9240CE2738AE}@@0@@PDF@@Interface\{E790E1D1-9DE 8-4853-8AC6-933D4FD9C927}@@0@@PDF@@Interface\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@0@@PD F@@Interface\{F9F2FE81-F764-4BD0-AFA5-5DE841DDB625}@@0@@PDF@@MIME\Database\Content Type\application/pdf@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xdp+xml@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xfd+xml@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xfdf@@0@@PDF@@MIME\Database\Content Type\application/vnd.fdf@@0@@PDF@@PDFPrevHndlr.PDFPreviewHandler@@0@@PDF@@PDFPrevHndlr.PD FPreviewHandler.1@@0@@PDF@@SOFTWARE\Classes\AcroBroker.Broker@@2@@PDF@@SOFTWARE\Classes\Ac roBroker.Broker.1\CLSID@@2@@PDF@@SOFTWARE\Classes\AcroBroker.Broker\CLSID@@2@@PDF@@SOFTWAR E\Classes\AcroBroker.Broker\CurVer@@2@@PDF@@SOFTWARE\Classes\AcroBroker.Broker1@@2@@PDF@@S OFTWARE\Classes\AppID\{F2383816-917A-46CC-AD2A-5013BED3800F}@@2@@PDF@@SOFTWARE\Classes\App ID\AcroBroker.EXE@@2@@PDF@@SOFTWARE\Classes\Interface\{D3F22039-E3CF-4FC4-9A30-426A46056B8 C}@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}@@2@@PDF@@SOFTW ARE\Classes\TypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}\1.0@@2@@PDF@@SOFTWARE\Classes\T ypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}\1.0\0@@2@@PDF@@SOFTWARE\Classes\TypeLib\{417 38EEA-442F-477F-92CF-2889BD6CD7E7}\1.0\0\win32@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA -442F-477F-92CF-2889BD6CD7E7}\1.0\FLAGS@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA-442F-4 77F-92CF-2889BD6CD7E7}\1.0\HELPDIR@@2@@PDF@@TypeLib\{0F6D3808-7974-4B1A-94C2-3200767EACE8} @@0@@PDF@@TypeLib\{41C5FFFE-36DD-415D-9ED0-2976A342A1C8}@@0@@PDF@@TypeLib\{E64169B3-3592-4 7d2-816E-602C5C13F328}@@0@@PDF
    Property(S): LockFilePermissions = C:\Programme\Gemeinsame Dateien\Adobe\Acrobat\ActiveX\@@1@@1179817@@C:\Programme\Gemeinsame Dateien\Adobe\Acrobat\ActiveX\@@22@@2032127@@C:\Programme\Gemeinsame Dateien\Adobe\Acrobat\ActiveX\@@26@@1179817@@C:\Programme\Adobe\Reader 10.0\Resource\CMap\@@1@@1179817@@C:\Programme\Adobe\Reader 10.0\Resource\CMap\@@22@@2032127@@C:\Programme\Adobe\Reader 10.0\Resource\CMap\@@26@@1179817@@C:\Programme\Adobe\Reader 10.0\Reader\Adobe.Reader.Dependencies.manifest@@1@@1179817@@C:\Programme\Adobe\Reader 10.0\Reader\Adobe.Reader.Dependencies.manifest@@22@@2032127@@C:\Programme\Adobe\Reader 10.0\Reader\Adobe.Reader.Dependencies.manifest@@26@@2032127
    Property(S): ADOBE_COMMON_ACROBAT = C:\Programme\Gemeinsame Dateien\Adobe\Acrobat\
    Property(S): ACTIVE_X = C:\Programme\Gemeinsame Dateien\Adobe\Acrobat\ActiveX\
    Property(S): ProgramFilesFolder = C:\Programme\
    Property(S): ADOBE = C:\Programme\Adobe\
    Property(S): CommonFilesFolder = C:\Programme\Gemeinsame Dateien\
    Property(S): ADOBE_COMMON = C:\Programme\Gemeinsame Dateien\Adobe\
    Property(S): AIR = C:\Programme\Adobe\Reader 10.0\Reader\AIR\
    Property(S): READER = C:\Programme\Adobe\Reader 10.0\Reader\
    Property(S): TARGETDIR = D:\
    Property(S): ALLUSERSPROFILE = C:\Dokumente und Einstellungen\All Users\
    Property(S): CommonAppDataFolder = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\
    Property(S): ALLUSERS_APPDATA_ADOBE = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\
    Property(S): ALLUSERS_APPDATA_ADOBE_ACROBAT = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\Acrobat\
    Property(S): ALLUSERS_APPDATA_ADOBE_ACROBAT_9 = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\Acrobat\10.0\
    Property(S): ALLUSERS_APPDATA_ADOBE_ACROBAT_9_REPLICATE = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\Acrobat\10.0\Replicate\
    Property(S): ALLUSERS_APPDATA_ADOBE_ACROBAT_9_REPLICATE_SECURITY = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\Acrobat\10.0\Replicate\Security\
    Property(S): PLUG_INS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\
    Property(S): ANNOTATIONS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\
    Property(S): ARM = C:\Programme\Gemeinsame Dateien\Adobe\ARM\
    Property(S): ARM_1.0 = C:\Programme\Gemeinsame Dateien\Adobe\ARM\1.0\
    Property(S): AdminToolsFolder = C:\Dokumente und Einstellungen\All Users\Startmenü\Programme\Verwaltung\
    Property(S): AppDataFolder = C:\Dokumente und Einstellungen\Administrator\Anwendungsdaten\
    Property(S): BROWSER = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): BROWSER_IE = C:\Programme\Internet Explorer\Plugins\
    Property(S): CACHE_SETUP_FILES = C:\Programme\Adobe\Reader 10.0\Setup Files\
    Property(S): CACHE_DIR = C:\Programme\Adobe\Reader 10.0\Setup Files\{AC76BA86-7AD7-1031-7B44-AA0000000001}\
    Property(S): INSTALLDIR = C:\Programme\Adobe\Reader 10.0\
    Property(S): RESOURCE = C:\Programme\Adobe\Reader 10.0\Resource\
    Property(S): CIDFONT = C:\Programme\Adobe\Reader 10.0\Resource\CIDFont\
    Property(S): CMAP = C:\Programme\Adobe\Reader 10.0\Resource\CMap\
    Property(S): COMMON_ADOBE_HELP = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\
    Property(S): COMMON_ADOBE_HELP_CAT = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\ca_ES\
    Property(S): COMMON_ADOBE_HELP_CHS = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\zh_CN\
    Property(S): COMMON_ADOBE_HELP_CHT = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\zh_TW\
    Property(S): COMMON_ADOBE_HELP_CZE = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\cs_CZ\
    Property(S): COMMON_ADOBE_HELP_DAN = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\da_DK\
    Property(S): COMMON_ADOBE_HELP_DEU = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\de_DE\
    Property(S): COMMON_ADOBE_HELP_ENU = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\en_US\
    Property(S): COMMON_ADOBE_HELP_ESP = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\es_ES\
    Property(S): COMMON_ADOBE_HELP_EUQ = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\eu_ES\
    Property(S): COMMON_ADOBE_HELP_FRA = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\fr_FR\
    Property(S): COMMON_ADOBE_HELP_HRV = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\hr_HR\
    Property(S): COMMON_ADOBE_HELP_HUN = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\hu_HU\
    Property(S): COMMON_ADOBE_HELP_ITA = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\it_IT\
    Property(S): COMMON_ADOBE_HELP_JPN = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\ja_JP\
    Property(S): COMMON_ADOBE_HELP_KOR = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\ko_KR\
    Property(S): COMMON_ADOBE_HELP_NLD = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\nl_NL\
    Property(S): COMMON_ADOBE_HELP_NOR = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\nb_NO\
    Property(S): COMMON_ADOBE_HELP_POL = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\pl_PL\
    Property(S): COMMON_ADOBE_HELP_PTB = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\pt_BR\
    Property(S): COMMON_ADOBE_HELP_RUM = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\ro_RO\
    Property(S): COMMON_ADOBE_HELP_RUS = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\ru_RU\
    Property(S): COMMON_ADOBE_HELP_SKY = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\sk_SK\
    Property(S): COMMON_ADOBE_HELP_SLV = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\sl_SI\
    Property(S): COMMON_ADOBE_HELP_SUO = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\fi_FI\
    Property(S): COMMON_ADOBE_HELP_SVE = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\sv_SE\
    Property(S): COMMON_ADOBE_HELP_TUR = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\tr_TR\
    Property(S): COMMON_ADOBE_HELP_UKR = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\uk_UA\
    Property(S): COMMON_LINGUISTIC = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\
    Property(S): COMMON_ADOBE_PROVIDERS = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\Providers\
    Property(S): COMMON_ADOBE_PROVIDERS_PROXIMITY = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\Providers\Proximity\
    Property(S): COMMON_ADOBE_PROVIDERS_PROXIMITY_1100 = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\Providers\Proximity\11.00\
    Property(S): COMMON_ADOBE_PROVIDERS_PROXIMITY_1100_NCL3S4PNTX = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\Providers\Proximity\11.00\NC-L3S4PNTX\
    Property(S): COMMON_LINGUISTIC_LANGUAGENAMES = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\LanguageNames2\
    Property(S): CommonFiles64Folder = D:\
    Property(S): DOCSETTINGS = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\
    Property(S): DOCSETTINGS_PORTFOLIO = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\
    Property(S): DOCSETTINGS_PORTFOLIO_CHS = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\CHS\
    Property(S): DOCSETTINGS_PORTFOLIO_CHT = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\CHT\
    Property(S): DOCSETTINGS_PORTFOLIO_CZE = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\CZE\
    Property(S): DOCSETTINGS_PORTFOLIO_DAN = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\DAN\
    Property(S): DOCSETTINGS_PORTFOLIO_DEU = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\DEU\
    Property(S): DOCSETTINGS_PORTFOLIO_ENU = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\ENU\
    Property(S): DOCSETTINGS_PORTFOLIO_ESP = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\ESP\
    Property(S): DOCSETTINGS_PORTFOLIO_FRA = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\FRA\
    Property(S): DOCSETTINGS_PORTFOLIO_HRV = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\HRV\
    Property(S): DOCSETTINGS_PORTFOLIO_HUN = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\HUN\
    Property(S): DOCSETTINGS_PORTFOLIO_ITA = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\ITA\
    Property(S): DOCSETTINGS_PORTFOLIO_JPN = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\JPN\
    Property(S): DOCSETTINGS_PORTFOLIO_KOR = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\KOR\
    Property(S): DOCSETTINGS_PORTFOLIO_NLD = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\NLD\
    Property(S): DOCSETTINGS_PORTFOLIO_NOR = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\NOR\
    Property(S): DOCSETTINGS_PORTFOLIO_POL = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\POL\
    Property(S): DOCSETTINGS_PORTFOLIO_PTB = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\PTB\
    Property(S): DOCSETTINGS_PORTFOLIO_RUM = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\RUM\
    Property(S): DOCSETTINGS_PORTFOLIO_RUS = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\RUS\
    Property(S): DOCSETTINGS_PORTFOLIO_SKY = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\SKY\
    Property(S): DOCSETTINGS_PORTFOLIO_SLV = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\SLV\
    Property(S): DOCSETTINGS_PORTFOLIO_SUO = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\SUO\
    Property(S): DOCSETTINGS_PORTFOLIO_SVE = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\SVE\
    Property(S): DOCSETTINGS_PORTFOLIO_TUR = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\TUR\
    Property(S): DOCSETTINGS_PORTFOLIO_UKR = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\UKR\
    Property(S): DesktopFolder = C:\Dokumente und Einstellungen\All Users\Desktop\
    Property(S): ESL_DIR = C:\Programme\Adobe\Reader 10.0\Esl\
    Property(S): FONT = C:\Programme\Adobe\Reader 10.0\Resource\Font\
    Property(S): FavoritesFolder = C:\Dokumente und Einstellungen\Administrator\Favoriten\
    Property(S): FontsFolder = C:\WINDOWS\Fonts\
    Property(S): GlobalAssemblyCache = D:\
    Property(S): IDTEMPLATES = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\
    Property(S): IDTEMPLATES_CAT = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\CAT\
    Property(S): IDTEMPLATES_CHS = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\CHS\
    Property(S): IDTEMPLATES_CHT = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\CHT\
    Property(S): IDTEMPLATES_CZE = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\CZE\
    Property(S): IDTEMPLATES_DAN = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\DAN\
    Property(S): IDTEMPLATES_DEU = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\DEU\
    Property(S): IDTEMPLATES_ENU = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\ENU\
    Property(S): IDTEMPLATES_ESP = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\ESP\
    Property(S): IDTEMPLATES_EUQ = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\EUQ\
    Property(S): IDTEMPLATES_FRA = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\FRA\
    Property(S): IDTEMPLATES_HRV = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\HRV\
    Property(S): IDTEMPLATES_HUN = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\HUN\
    Property(S): IDTEMPLATES_ITA = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\ITA\
    Property(S): IDTEMPLATES_JPN = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\JPN\
    Property(S): IDTEMPLATES_KOR = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\KOR\
    Property(S): IDTEMPLATES_NLD = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\NLD\
    Property(S): IDTEMPLATES_NOR = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\NOR\
    Property(S): IDTEMPLATES_POL = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\POL\
    Property(S): IDTEMPLATES_PTB = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\PTB\
    Property(S): IDTEMPLATES_RUM = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\RUM\
    Property(S): IDTEMPLATES_RUS = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\RUS\
    Property(S): IDTEMPLATES_SKY = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\SKY\
    Property(S): IDTEMPLATES_SLV = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\SLV\
    Property(S): IDTEMPLATES_SUO = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\SUO\
    Property(S): IDTEMPLATES_SVE = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\SVE\
    Property(S): IDTEMPLATES_TUR = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\TUR\
    Property(S): IDTEMPLATES_UKR = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\UKR\
    Property(S): READER_9.0 = C:\Programme\Adobe\Reader 10.0\
    Property(S): JAVASCRIPTS = C:\Programme\Adobe\Reader 10.0\Reader\Javascripts\
    Property(S): LEGAL = C:\Programme\Adobe\Reader 10.0\Reader\Legal\
    Property(S): LEGAL_CAT = C:\Programme\Adobe\Reader 10.0\Reader\Legal\CAT\
    Property(S): LEGAL_CHS = C:\Programme\Adobe\Reader 10.0\Reader\Legal\CHS\
    Property(S): LEGAL_CHT = C:\Programme\Adobe\Reader 10.0\Reader\Legal\CHT\
    Property(S): LEGAL_CZE = C:\Programme\Adobe\Reader 10.0\Reader\Legal\CZE\
    Property(S): LEGAL_DAN = C:\Programme\Adobe\Reader 10.0\Reader\Legal\DAN\
    Property(S): LEGAL_DEU = C:\Programme\Adobe\Reader 10.0\Reader\Legal\DEU\
    Property(S): LEGAL_ENU = C:\Programme\Adobe\Reader 10.0\Reader\Legal\ENU\
    Property(S): LEGAL_ESP = C:\Programme\Adobe\Reader 10.0\Reader\Legal\ESP\
    Property(S): LEGAL_EUQ = C:\Programme\Adobe\Reader 10.0\Reader\Legal\EUQ\
    Property(S): LEGAL_FRA = C:\Programme\Adobe\Reader 10.0\Reader\Legal\FRA\
    Property(S): LEGAL_HRV = C:\Programme\Adobe\Reader 10.0\Reader\Legal\HRV\
    Property(S): LEGAL_HUN = C:\Programme\Adobe\Reader 10.0\Reader\Legal\HUN\
    Property(S): LEGAL_ITA = C:\Programme\Adobe\Reader 10.0\Reader\Legal\ITA\
    Property(S): LEGAL_JPN = C:\Programme\Adobe\Reader 10.0\Reader\Legal\JPN\
    Property(S): LEGAL_KOR = C:\Programme\Adobe\Reader 10.0\Reader\Legal\KOR\
    Property(S): LEGAL_NLD = C:\Programme\Adobe\Reader 10.0\Reader\Legal\NLD\
    Property(S): LEGAL_NOR = C:\Programme\Adobe\Reader 10.0\Reader\Legal\NOR\
    Property(S): LEGAL_POL = C:\Programme\Adobe\Reader 10.0\Reader\Legal\POL\
    Property(S): LEGAL_PTB = C:\Programme\Adobe\Reader 10.0\Reader\Legal\PTB\
    Property(S): LEGAL_RUM = C:\Programme\Adobe\Reader 10.0\Reader\Legal\RUM\
    Property(S): LEGAL_RUS = C:\Programme\Adobe\Reader 10.0\Reader\Legal\RUS\
    Property(S): LEGAL_SKY = C:\Programme\Adobe\Reader 10.0\Reader\Legal\SKY\
    Property(S): LEGAL_SLV = C:\Programme\Adobe\Reader 10.0\Reader\Legal\SLV\
    Property(S): LEGAL_SUO = C:\Programme\Adobe\Reader 10.0\Reader\Legal\SUO\
    Property(S): LEGAL_SVE = C:\Programme\Adobe\Reader 10.0\Reader\Legal\SVE\
    Property(S): LEGAL_TUR = C:\Programme\Adobe\Reader 10.0\Reader\Legal\TUR\
    Property(S): LEGAL_UKR = C:\Programme\Adobe\Reader 10.0\Reader\Legal\UKR\
    Property(S): LOCALE = C:\Programme\Adobe\Reader 10.0\Reader\Locale\
    Property(S): LOCALE_CA_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ca_ES\
    Property(S): LOCALE_CS_CZ = C:\Programme\Adobe\Reader 10.0\Reader\Locale\cs_CZ\
    Property(S): LOCALE_DA_DK = C:\Programme\Adobe\Reader 10.0\Reader\Locale\da_DK\
    Property(S): LOCALE_DE_DE = C:\Programme\Adobe\Reader 10.0\Reader\Locale\de_DE\
    Property(S): LOCALE_ES_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\es_ES\
    Property(S): LOCALE_EU_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\eu_ES\
    Property(S): LOCALE_FI_FI = C:\Programme\Adobe\Reader 10.0\Reader\Locale\fi_FI\
    Property(S): LOCALE_FR_FR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\fr_FR\
    Property(S): LOCALE_HR_HR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\hr_HR\
    Property(S): LOCALE_HU_HU = C:\Programme\Adobe\Reader 10.0\Reader\Locale\hu_HU\
    Property(S): LOCALE_IT_IT = C:\Programme\Adobe\Reader 10.0\Reader\Locale\it_IT\
    Property(S): LOCALE_JA_JP = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ja_JP\
    Property(S): LOCALE_KO_KR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ko_KR\
    Property(S): LOCALE_NB_NO = C:\Programme\Adobe\Reader 10.0\Reader\Locale\nb_NO\
    Property(S): LOCALE_NL_NL = C:\Programme\Adobe\Reader 10.0\Reader\Locale\nl_NL\
    Property(S): LOCALE_PL_PL = C:\Programme\Adobe\Reader 10.0\Reader\Locale\pl_PL\
    Property(S): LOCALE_PT_BR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\pt_BR\
    Property(S): LOCALE_RO_RO = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ro_RO\
    Property(S): LOCALE_RU_RU = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ru_RU\
    Property(S): LOCALE_SK_SK = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sk_SK\
    Property(S): LOCALE_SL_SI = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sl_SI\
    Property(S): LOCALE_SV_SE = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sv_SE\
    Property(S): LOCALE_TR_TR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\tr_TR\
    Property(S): LOCALE_UK_UA = C:\Programme\Adobe\Reader 10.0\Reader\Locale\uk_UA\
    Property(S): LOCALE_ZH_CN = C:\Programme\Adobe\Reader 10.0\Reader\Locale\zh_CN\
    Property(S): LOCALE_ZH_TW = C:\Programme\Adobe\Reader 10.0\Reader\Locale\zh_TW\
    Property(S): LocalAppDataFolder = C:\Dokumente und Einstellungen\Administrator\Lokale Einstellungen\Anwendungsdaten\
    Property(S): MOZILLA_1 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_2 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_3 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_4 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_5 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_6 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_7 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_8 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MPP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\
    Property(S): MPP_CZE = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_CZE\
    Property(S): MPP_HRV = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_HRV\
    Property(S): MPP_HUN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_HUN\
    Property(S): MPP_POL = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_POL\
    Property(S): MPP_RUM = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_RUM\
    Property(S): MPP_RUS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_RUS\
    Property(S): MPP_SKY = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_SKY\
    Property(S): MPP_SLV = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_SLV\
    Property(S): MPP_TUR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_TUR\
    Property(S): MPP_UKR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_UKR\
    Property(S): MULTIMEDIA_MPP_CAT = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_CHS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_CHT = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_DAN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_DEU = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_ESP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_EUQ = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_FRA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_ITA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_JAPN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_KOR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_NLD = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_NOR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_PTB = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_SUO = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_SVE = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MyPicturesFolder = C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\Eigene Bilder\
    Property(S): NETSCAPE_3 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): NETSCAPE_4 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): PFM = C:\Programme\Adobe\Reader 10.0\Resource\Font\PFM\
    Property(S): PLUGINS_3D = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins3d\
    Property(S): PLUGINS_3D_PRC = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins3d\prc\
    Property(S): PLUG_INS_ACROFORM = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\AcroForm\
    Property(S): PLUG_INS_ACROFORM_PMP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\AcroForm\PMP\
    Property(S): PersonalFolder = C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\
    Property(S): PrimaryVolumePath = D:\
    Property(S): ProgramFiles64Folder = D:\
    Property(S): ProgramMenuFolder = C:\Dokumente und Einstellungen\All Users\Startmenü\Programme\
    Property(S): SASIPREP = C:\Programme\Adobe\Reader 10.0\Resource\SaslPrep\
    Property(S): SERVICES = C:\Programme\Adobe\Reader 10.0\Reader\Services\
    Property(S): SERVICES_CA_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ca_ES\Services\
    Property(S): SERVICES_CS_CZ = C:\Programme\Adobe\Reader 10.0\Reader\Locale\cs_CZ\Services\
    Property(S): SERVICES_DA_DK = C:\Programme\Adobe\Reader 10.0\Reader\Locale\da_DK\Services\
    Property(S): SERVICES_DE_DE = C:\Programme\Adobe\Reader 10.0\Reader\Locale\de_DE\Services\
    Property(S): SERVICES_ES_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\es_ES\Services\
    Property(S): SERVICES_EU_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\eu_ES\Services\
    Property(S): SERVICES_FI_FI = C:\Programme\Adobe\Reader 10.0\Reader\Locale\fi_FI\Services\
    Property(S): SERVICES_FR_FR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\fr_FR\Services\
    Property(S): SERVICES_HR_HR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\hr_HR\Services\
    Property(S): SERVICES_HU_HU = C:\Programme\Adobe\Reader 10.0\Reader\Locale\hu_HU\Services\
    Property(S): SERVICES_IT_IT = C:\Programme\Adobe\Reader 10.0\Reader\Locale\it_IT\Services\
    Property(S): SERVICES_JA_JP = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ja_JP\Services\
    Property(S): SERVICES_KO_KR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ko_KR\Services\
    Property(S): SERVICES_NB_NO = C:\Programme\Adobe\Reader 10.0\Reader\Locale\nb_NO\Services\
    Property(S): SERVICES_NL_NL = C:\Programme\Adobe\Reader 10.0\Reader\Locale\nl_NL\Services\
    Property(S): SERVICES_PL_PL = C:\Programme\Adobe\Reader 10.0\Reader\Locale\pl_PL\Services\
    Property(S): SERVICES_PT_BR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\pt_BR\Services\
    Property(S): SERVICES_RO_RO = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ro_RO\Services\
    Property(S): SERVICES_RU_RU = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ru_RU\Services\
    Property(S): SERVICES_SK_SK = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sk_SK\Services\
    Property(S): SERVICES_SL_SI = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sl_SI\Services\
    Property(S): SERVICES_SV_SE = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sv_SE\Services\
    Property(S): SERVICES_TR_TR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\tr_TR\Services\
    Property(S): SERVICES_UK_UA = C:\Programme\Adobe\Reader 10.0\Reader\Locale\uk_UA\Services\
    Property(S): SERVICES_ZH_CN = C:\Programme\Adobe\Reader 10.0\Reader\Locale\zh_CN\Services\
    Property(S): SERVICES_ZH_TW = C:\Programme\Adobe\Reader 10.0\Reader\Locale\zh_TW\Services\
    Property(S): SPPLUGINS = C:\Programme\Adobe\Reader 10.0\Reader\SPPlugins\
    Property(S): STAMP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\
    Property(S): STAMP_CAT = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\CAT\
    Property(S): STAMP_CHS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\CHS\
    Property(S): STAMP_CHT = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\CHT\
    Property(S): STAMP_CZE = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\CZE\
    Property(S): STAMP_DAN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\DAN\
    Property(S): STAMP_DEU = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\DEU\
    Property(S): STAMP_ENU = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\ENU\
    Property(S): STAMP_ESP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\ESP\
    Property(S): STAMP_EUQ = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\EUQ\
    Property(S): STAMP_FRA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\FRA\
    Property(S): STAMP_HRV = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\HRV\
    Property(S): STAMP_HUN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\HUN\
    Property(S): STAMP_ITA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\ITA\
    Property(S): STAMP_JPN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\JPN\
    Property(S): STAMP_KOR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\KOR\
    Property(S): STAMP_NLD = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\NLD\
    Property(S): STAMP_NOR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\NOR\
    Property(S): STAMP_POL = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\POL\
    Property(S): STAMP_PTB = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\PTB\
    Property(S): STAMP_RUM = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\RUM\
    Property(S): STAMP_RUS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\RUS\
    Property(S): STAMP_SKY = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\SKY\
    Property(S): STAMP_SLV = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\SLV\
    Property(S): STAMP_SUO = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\SUO\
    Property(S): STAMP_SVE = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\SVE\
    Property(S): STAMP_TUR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\TUR\
    Property(S): STAMP_UKR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\UKR\
    Property(S): SendToFolder = C:\Dokumente und Einstellungen\Administrator\SendTo\
    Property(S): StartMenuFolder = C:\Dokumente und Einstellungen\All Users\Startmenü\
    Property(S): StartupFolder = C:\Dokumente und Einstellungen\All Users\Startmenü\Programme\Autostart\
    Property(S): System16Folder = C:\WINDOWS\system\
    Property(S): System64Folder = D:\
    Property(S): SystemFolder = C:\WINDOWS\system32\
    Property(S): TRACKER = C:\Programme\Adobe\Reader 10.0\Reader\Tracker\
    Property(S): TYPESPT = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\
    Property(S): TYPESPT_UNICODE = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\
    Property(S): TYPESPT_UNICODE_ICU = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\ICU\
    Property(S): TYPESPT_UNICODE_MAPPINGS = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\Mappings\
    Property(S): TYPESPT_UNICODE_MAPPINGS_ADOBE = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\Mappings\Adobe\
    Property(S): TYPESPT_UNICODE_MAPPINGS_MAC = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\Mappings\Mac\
    Property(S): TYPESPT_UNICODE_MAPPINGS_WIN = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\Mappings\win\
    Property(S): TempFolder = C:\DOKUME~1\ADMINI~1\LOKALE~1\Temp\
    Property(S): TemplateFolder = C:\Dokumente und Einstellungen\All Users\Vorlagen\
    Property(S): USERPROFILE = C:\Dokumente und Einstellungen\Administrator\
    Property(S): VDKHOME = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\
    Property(S): VDKHOME_DEU = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\DEU\
    Property(S): VDKHOME_ENU = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\ENU\
    Property(S): VDKHOME_ESP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\ESP\
    Property(S): VDKHOME_FRA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\FRA\
    Property(S): VDKHOME_ITA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\ITA\
    Property(S): VDKHOME_NLD = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\NLD\
    Property(S): VDKHOME_SVE = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\SVE\
    Property(S): WindowsFolder = C:\WINDOWS\
    Property(S): WindowsVolume = C:\
    Property(S): QFEUpgrade = 2
    Property(S): VersionDatabase = 300
    Property(S): MsiUISourceResOnly = 1
    Property(S): PRODUCTLANGUAGE = 1031
    Property(S): WindowsFolder.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\
    Property(S): SystemFolder.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\system32\
    Property(S): WinSxsDirectory.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\
    Property(S): payload_ul.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_bcb86ed6ac711f 91\
    Property(S): payload.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_d08d0375\
    Property(S): WinSxsManifests.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\Manifests\
    Property(S): WinSxsPolicies.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\Policies\
    Property(S): policydir.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\Policies\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_1742743b\
    Property(S): policydir_ul.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_1742743b\
    Property(S): CLIENTPROCESSID = 884
    Property(S): ALLUSERS = 1
    Property(S): Dummy_Microsoft_VC90_CRT_x86.0138F525_6C8A_333F_A105_14AE030B9A54 = 1
    Property(S): WinSxsDirectory.21022.08.policy_9_0_Microsoft_VC90_CRT_x86.RTM.52105B6B_A3EF_3A90_882A_94 7B287C203A = C:\WINDOWS\winsxs\
    Property(S): payload_ul.21022.08.policy_9_0_Microsoft_VC90_CRT_x86.RTM.52105B6B_A3EF_3A90_882A_947B287 C203A = C:\WINDOWS\winsxs\x86_policy.9.0.microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_60a 5df56e60dc5df\
    Property(S): WinSxsPolicies.21022.08.policy_9_0_Microsoft_VC90_CRT_x86.RTM.52105B6B_A3EF_3A90_882A_947 B287C203A = C:\WINDOWS\winsxs\Policies\
    Property(S): policydir.21022.08.policy_9_0_Microsoft_VC90_CRT_x86.RTM.52105B6B_A3EF_3A90_882A_947B287C 203A = C:\WINDOWS\winsxs\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f 75\
    Property(S): WindowsFolder.21022.08.policy_9_0_Microsoft_VC90_CRT_x86.RTM.52105B6B_A3EF_3A90_882A_947B 287C203A = C:\WINDOWS\
    Property(S): Dummy_policy_9_0_Microsoft_VC90_CRT_x86.52105B6B_A3EF_3A90_882A_947B287C203A = 1
    Property(S): OriginalDatabase = C:\WINDOWS\Installer\4866b7.msi
    Property(S): CLIENTUILEVEL = 3
    Property(S): UILevel = 2
    Property(S): DATABASE = C:\WINDOWS\Installer\4866b7.msi
    Property(S): CURRENTDIRECTORY = C:\Dokumente und Einstellungen\Administrator
    Property(S): PATCH = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\ARM\Reader_10.0.0\AdbeRdrUpd1001_Tier1.msp
    Property(S): ProductToBeRegistered = 1
    Property(S): USERNAME = Landesarchiv Baden-Württemberg
    Property(S): RDR1001 = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\ARM\Reader_10.0.0\AdbeRdrUpd1001_Tier1.msp
    Property(S): PATCHNEWSUMMARYCOMMENTS = Contact:  Your local administrator
    Property(S): MIN_SYSTEM = C:\WINDOWS\system32\Shdocvw.dll
    Property(S): AS_INSTALLDIR = C:\Programme\Adobe\Reader 10.0\
    Property(S): AS_OPTIMIZE_ENABLED = YES
    Property(S): AS_REPAIR_VERSION_LIST = A
    Property(S): AS_OPTIMIZE_STATUS = #1
    Property(S): READER_APP_PATH = C:\Programme\Adobe\Reader 10.0\Reader\AcroRd32.exe
    Property(S): IE_VERSION = 8.0.6001.18702
    Property(S): READER_PATH = C:\Programme\Adobe\Reader 10.0\Reader\
    Property(S): ProductCode = {AC76BA86-7AD7-1031-7B44-AA0000000001}
    Property(S): ApplicationUsers = AllUsers
    Property(S): AgreeToLicense = No
    Property(S): _IsMaintenance = Reinstall
    Property(S): SetupType = Typical
    Property(S): _IsSetupTypeMin = Typical
    Property(S): ARPCONTACT = Kundendienst
    Property(S): PATCHNEWSUMMARYSUBJECT = ADOBER~1.0|Adobe Reader X (10.0.1)
    Property(S): ARPHELPLINK = http://www.adobe.de/support/main.html
    Property(S): ARPREADME = C:\Programme\Adobe\Reader 10.0\Liesmich.htm
    Property(S): ARPURLINFOABOUT = http://www.adobe.de/support/main.html
    Property(S): ARPURLUPDATEINFO = http://www.adobe.de/support/main.html
    Property(S): DefaultUIFont = Tahoma8
    Property(S): ErrorDialog = SetupError
    Property(S): INSTALLLEVEL = 100
    Property(S): ISSCRIPT_VERSION_MISSING = Die InstallScript-Engine fehlt auf diesem Computer. Falls verfügbar, führen Sie ISScript.msi aus oder wenden Sie sich an den Technischen Support.
    Property(S): Manufacturer = Adobe Systems Incorporated
    Property(S): PIDTemplate = 12345<###-%%%%%%%>@@@@@
    Property(S): ProductID = none
    Property(S): ProductLanguage = 1031
    Property(S): ProductName = Adobe Reader X (10.0.1) - Deutsch
    Property(S): ProductVersion = 10.0.1
    Property(S): ProgressType0 = install
    Property(S): ProgressType1 = Installing
    Property(S): ProgressType2 = installed
    Property(S): ProgressType3 = installs
    Property(S): RebootYesNo = Yes
    Property(S): ReinstallModeText = omus
    Property(S): TRACKINGKEY = Software\Adobe\Acrobat Reader\7.0
    Property(S): ARPPRODUCTICON = SC_Reader.ico
    Property(S): Cancel = 0
    Property(S): RadioGroup = 0
    Property(S): TypicalText = 0
    Property(S): ARPCOMMENTS =   
    Property(S): ERROR_MIN_OVER_BIG = Setup hat eine funktionsreichere Produktversion auf Ihrem System gefunden. Setup wird jetzt beendet.
    Property(S): SecureCustomProperties = DEFAULT_VERB;ACTIONPROPERTY;ELEMENTS;RDRMIN;RDRBIG;RDRBIG_8X;RDRBIG_9X;UT_FRB;UT_FRS;UT_A T;UT_AP1;UT_AP2;UT_AS1;UT_AS2;UT_A3D;UT_6X;UT_7X;UT_MM61;UT_MM62;UT_MM63;UT_EB61;UT_EB62;U T_EB63;AS_OPTIMIZE_ENABLED;ACROBAT_APP_PATH;AS_HKCR_EXE;PDFSHELL_LOCALSERVER_COMMAND;PDF_D EFAULTICON;PDF_PREVIEW_HANDERLER_DLL;PDF_PREVIEW_HANDERLER_HELPDIR;DISABLE_PDFOWNERSHIP_RE STORE;PDF_INPROCSERVER_VIEWERPS;READER_PATH
    Property(S): BrandName = Adobe Reader X (10.0.1)
    Property(S): ISVROOT_PORT_NO = 0
    Property(S): PATCHNEWPACKAGECODE = {87B556E3-4C96-42CE-90B1-4E0B3D7B0A9B}
    Property(S): IsMinIE_Message = Internet Explorer 6.0 oder höher erforderlich.  Ein Upgrade für Internet Explorer erhalten Sie unter www.microsoft.com.
    Property(S): ISLANGFLAG = DEU
    Property(S): FilesLabel = 0
    Property(S): DisallowRunFromSource = 1
    Property(S): AppsInUseSilentAbort = Es wird ein Vorgang ausgeführt, der nicht vom Installationsprogramm beendet werden kann.  Schließen Sie vor einem erneuten Versuche alle Anwendungen oder starten Sie Ihrem Computer neu.
    Property(S): ENABLE_CACHE_FILES = YES
    Property(S): OLE_VERB_OPEN = Ö&ffnen,0,2
    Property(S): REINSTALLMODE = omus
    Property(S): Elevated = 1
    Property(S): ENABLE_OPTIMIZATION = YES
    Property(S): ERROR_DEFRAG_MSG = Leistung wird optimiert...
    Property(S): ERROR_DEFRAG_ADTEMPLATE = [1]% des Vorgangs abgeschlossen
    Property(S): ERROR_CANNOT_OPTIMIZE_DISK = HINWEIS: Die Installation wurde erfolgreich abgeschlossen. Da Ihre Festplatte jedoch fragmentiert ist, kann das Programm eventuell nicht so schnell wie normalerweise möglich starten. Zur Optimierung der Systemleistung sollten Sie die Festplatte defragmentieren und anschließend das Programm in der Systemsteuerung unter "Software" reparieren.
    Property(S): EULA_ACCEPT = NO
    Property(S): DISABLE_BROWSER_INTEGRATION = NO
    Property(S): AcroIEHelper_Description = Adobe PDF Reader
    Property(S): DEFAULT_VERB = Read
    Property(S): ADMIN_INSTALL = NO
    Property(S): AdminProperties = ADMIN_INSTALL
    Property(S): REMOVE_PREVIOUS = YES
    Property(S): SYNCHRONIZER = YES
    Property(S): OpenWith = Mit Adobe Reader X öffnen
    Property(S): SetupCacheExport = 
    Property(S): LC_UNSUPPORTED_OS = Diese Anwendung kann nicht auf diesem Betriebssystem installiert werden. Die Installation wird beendet. Prüfen Sie die Mindestsystemanforderungen unter http://www.adobe.com/go/reader_system_reqs_de.
    Property(S): ApplicationList = 0
    Property(S): DEFAULT_ATTACHMENT_WHITELIST = version:1|.ade:3|.adp:3|.app:3|.arc:3|.arj:3|.asp:3|.bas:3|.bat:3|.bz:3|.bz2:3|.cab:3|.ch m:3|.class:3|.cmd:3|.com:3|.command:3|.cpl:3|.crt:3|.csh:3|.desktop:3|.dll:3|.exe:3|.fxp:3 |.gz:3|.hex:3|.hlp:3|.hqx:3|.hta:3|.inf:3|.ini:3|.ins:3|.isp:3|.its:3|.job:3|.js:3|.jse:3| .ksh:3|.lnk:3|.lzh:3|.mad:3|.maf:3|.mag:3|.mam:3|.maq:3|.mar:3|.mas:3|.mat:3|.mau:3|.mav:3 |.maw:3|.mda:3|.mdb:3|.mde:3|.mdt:3|.mdw:3|.mdz:3|.msc:3|.msi:3|.msp:3|.mst:3|.ocx:3|.ops: 3|.pcd:3|.pi:3|.pif:3|.prf:3|.prg:3|.pst:3|.rar:3|.reg:3|.scf:3|.scr:3|.sct:3|.sea:3|.shb: 3|.shs:3|.sit:3|.tar:3|.taz:3|.tgz:3|.tmp:3|.url:3|.vb:3|.vbe:3|.vbs:3|.vsmacros:3|.vss:3| .vst:3|.vsw:3|.webloc:3|.ws:3|.wsc:3|.wsf:3|.wsh:3|.z:3|.zip:3|.zlo:3|.zoo:3|.pdf:2|.fdf:2 |.jar:3|.pkg:3|.tool:3|.term:3
    Property(S): EXEC_MENU_WHITELIST = Close|GeneralInfo|Quit|FirstPage|PrevPage|NextPage|LastPage|ActualSize|FitPage|FitWidth|F itHeight|SinglePage|OneColumn|TwoPages|TwoColumns|ZoomViewIn|ZoomViewOut|ShowHideBookmarks |ShowHideThumbnails|Print|GoToPage|ZoomTo|GeneralPrefs|SaveAs|FullScreen|OpenOrganizer|Sca n|Web2PDF:OpnURL|AcroSendMail:SendMail|Spelling:Check Spelling|PageSetup|Find|FindSearch|GoBack|GoForward|FitVisible|ShowHideToolbarEditing|Sho wHideToolbarCommenting|ShowHideToolbarEdit|ShowHideToolbarFile|ShowHideToolbarFind|ShowHid eToolbarForms|ShowHideToolbarMeasuring|ShowHideToolbarData|ShowHideToolbarPageDisplay|Show HideToolbarNavigation|ShowHideToolbarPrintProduction|ShowHideToolbarRedaction|ShowHideTool barBasicTools|ShowHideToolbarTasks|ShowHideToolbarTypewriter|PropertyToolbar|ShowHideArtic les|ShowHideFileAttachment|ShowHideAnnotManager|ShowHideFields|ShowHideOptCont|ShowHideMod elTree|ShowHideSignatures|InsertPages|ExtractPages|ReplacePages|DeletePages|CropPages|Rota tePages|AddFileAttachment|FindCurrentBookmark|BookmarkShowLocation|GoBackDoc|GoForward|Doc HelpUserGuide|HelpReader|rolReadPage|HandMenuItem|ZoomDragMenuItem|Annots:Tool:InkMenuItem |CollectionHome|CollectionDetails|CollectionPreview|CollectionShowRoot
    Property(S): PDF_Integration = 1
    Property(S): Browser_Integration = 2
    Property(S): ARPNOREPAIR = 1
    Property(S): ActionTextLabel = 0
    Property(S): CurrentPdfOwner = 0
    Property(S): ReadmeHtml = Liesmich.htm
    Property(S): OprimizeError2 = 0
    Property(S): ReaderProcessPopup = 0
    Property(S): BrandNameMajorVer = Adobe Reader X
    Property(S): DefragResetProgress = No
    Property(S): PROGMSG_IIS_REMOVESITE = Website auf Port %d wird entfernt
    Property(S): PROGMSG_IIS_CREATEVROOT = Virtuelles IIS-Verzeichnis %s wird erstellt
    Property(S): PROGMSG_IIS_CREATEVROOTS = Virtuelle IIS-Verzeichnisse werden erstellt...
    Property(S): PROGMSG_IIS_EXTRACTDONE = Extrahierte Informationen für virtuelle IIS-Verzeichnisse…
    Property(S): PROGMSG_IIS_REMOVEVROOT = Virtuelles IIS-Verzeichnis %s wird entfernt
    Property(S): PROGMSG_IIS_REMOVEVROOTS = Virtuelle IIS-Verzeichnisse werden entfernt...
    Property(S): PROGMSG_IIS_ROLLBACKVROOTS = Änderungen am virtuellen Verzeichnis und der Website werden rückgängig gemacht…
    Property(S): PROGMSG_IIS_EXTRACT = Informationen für virtuelle IIS-Verzeichnisse werden extrahiert…
    Property(S): IS_COMPLUS_PROGRESSTEXT_COST = Costing der COM+-Anwendung: [1]
    Property(S): IS_COMPLUS_PROGRESSTEXT_INSTALL = COM+-Anwendung installieren: [1]
    Property(S): IS_COMPLUS_PROGRESSTEXT_UNINSTALL = COM+-Anwendung deinstallieren: [1]
    Property(S): IS_SQLSERVER_AUTHENTICATION = 0
    Property(S): IS_SQLSERVER_USERNAME = sa
    Property(S): _5789b66a5ab8e = {AC76BA80-0010-7AD7-0000-000000000000}
    Property(S): AttentionCloseReader = 0
    Property(S): RunTimeProperties = CACHE_DIR;ProductName;OriginalDatabase;REMOVE;WindowsFolder;SetupCacheExport;ALLUSERS;REI NSTALLMODE;PLUG_INS;DefragResetProgress;ALLUSERS_APPDATA_ADOBE;DEFAULT_VERB;IS_CURRENT_PDF OWNER;ACTIVE_X;Installed;READER;ProductCode
    Property(S): DV = 10.0
    Property(S): MSIRESTARTMANAGERCONTROL = Disable
    Property(S): IS_PROGMSG_XML_COSTING = Speicherplatzanalyse für XML-Dateien...
    Property(S): IS_PROGMSG_XML_CREATE_FILE = XML-Datei %s wird erstellt…
    Property(S): IS_PROGMSG_XML_FILES = Änderungen an XML-Datei werden durchgeführt...
    Property(S): IS_PROGMSG_XML_REMOVE_FILE = XML-Datei %s wird entfernt…
    Property(S): IS_PROGMSG_XML_ROLLBACK_FILES = Änderungen an der XML-Datei werden rückgängig gemacht…
    Property(S): IS_PROGMSG_XML_UPDATE_FILE = XML-Datei %s wird aktualisiert…
    Property(S): PROGMSG_IIS_CREATEAPPPOOLS = Anwendungspools werden erstellt...
    Property(S): PROGMSG_IIS_CREATEAPPPOOL = Anwendungspool %s wird erstellt
    Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSION = Webdiensterweiterung wird erstellt
    Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSIONS = Webdiensterweiterungen werden erstellt...
    Property(S): PROGMSG_IIS_REMOVEAPPPOOL = Anwendungspool wird entfernt
    Property(S): PROGMSG_IIS_REMOVEAPPPOOLS = Anwendungspools werden entfernt...
    Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSION = Webdiensterweiterung wird entfernt
    Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSIONS = Webdiensterweiterungen werden entfernt...
    Property(S): PROGMSG_IIS_ROLLBACKAPPPOOLS = Rollback der Anwendungspools wird durchgeführt...
    Property(S): PROGMSG_IIS_ROLLBACKWEBSERVICEEXTENSIONS = Rollback der Webdiensterweiterungen wird durchgeführt...
    Property(S): RestartManagerOption = CloseRestart
    Property(S): AppsInUseUnknownAcrobatApps = Anwendungen, die Adobe Reader oder Adobe Acrobat verwenden
    Property(S): EmbdUI = 1
    Property(S): ADOBE_LINK = http://www.adobe.com
    Property(S): _WebLinkChecked = 0
    Property(S): CurrentProduct = 0
    Property(S): DWUSLINK = CEFB870FBECC80BF79AC97C8298C978FD9DCB78FCEDC5098CE8B974F99DBF0F8CEEC50A809AC
    Property(S): PROCESSPATHWITHID = %s mit Prozess-ID: %d
    Property(S): LANG_LIST = ENU,FRA,DEU,JPN,ITA,ESP,NLD,PTB,SVE,DAN,SUO,NOR,CHS,CHT,KOR,BGR,CZE,ETI,HRV,HUN,LTH,LVI,P OL,RUM,RUS,SKY,SLV,TUR,UKR,EUQ,CAT
    Property(S): PROGMSG_IIS_EXTRACTDONEz = Extrahierte Informationen für virtuelle IIS-Verzeichnisse…
    Property(S): PROGMSG_IIS_EXTRACTzDONE = Extrahierte Informationen für virtuelle IIS-Verzeichnisse…
    Property(S): UNKNOWNPROCESSWITHID = Unbekannter Prozess, Prozess-ID: %d
    Property(S): Square = 1
    Property(S): ISReleaseFlags = DEU,READERBIG
    Property(S): ARPINSTALLLOCATION = C:\Programme\Adobe\Reader 10.0\Reader\
    Property(S): REBOOT = ReallySuppress
    Property(S): PROGID7_ALTERNATE_COMMAND = C:\Programme\Adobe\Reader 10.0\Reader\AcroRd32.exe
    Property(S): Privileged = 1
    Property(S): ProductState = 5
    Property(S): PackageCode = {BD57EC66-1056-4364-B04A-9E07AA7034E9}
    Property(S): MSPSRC45466C95489046819B84B790C8373C71 = C:\WINDOWS\Installer\14946e.msp
    Property(S): CostingComplete = 1
    Property(S): OutOfDiskSpace = 0
    Property(S): OutOfNoRbDiskSpace = 0
    Property(S): PrimaryVolumeSpaceAvailable = 0
    Property(S): PrimaryVolumeSpaceRequired = 0
    Property(S): PrimaryVolumeSpaceRemaining = 0
    Property(S): REINSTALL = SearchAndIndex,MultimediaPlugin,ReaderProgramFiles,ReaderBrowserIntegration,Accessibility _Plugins,Atmosphere_3D,AdobeCommonLinguistics_Big,Updater,Plugins
    Property(S): AS_HKCR_EXE = "C:\Programme\Adobe\Reader 10.0\Reader\AcroRd32.exe"
    Property(S): PDFSHELL_LOCALSERVER_COMMAND = "C:\Programme\Adobe\Reader 10.0\Reader\AcroRd32Info.exe" /PDFShell
    Property(S): PDF_DEFAULTICON = C:\WINDOWS\Installer\{AC76BA86-7AD7-1031-7B44-AA0000000001}\PDFFile_8.ico,0
    Property(S): PDF_PREVIEW_HANDERLER_DLL = C:\Programme\Adobe\Reader 10.0\Reader\pdfprevhndlr.dll
    Property(S): PDF_PREVIEW_HANDERLER_HELPDIR = C:\Programme\Adobe\Reader 10.0\Reader\
    Property(S): PDF_INPROCSERVER_VIEWERPS = C:\Programme\Adobe\Reader 10.0\Reader\ViewerPS.dll
    === Protokollierung beendet: 15.02.2011  09:54:43 ===

  • Transport control program tp ended with error code 0212

    Hi all,
    I have created a two system landscape of development & production server. But while I am releasing any request from develpoment server a error is showing: " Transport control program tp ended with error code 0212 Errors: could not access file as supposed (see dev_tp or S".I have chosen development server as domain controller. TMS alert viewer error message also contains the following information------>command: TMS_MGR_READ_TRANSPORT_QUEUE
                                                                           service: transport service
                                                                           start : online
                                                                           Function: TMS_TP_SHOW_BUFFER
                                                                           message: TP_REPORTED_ERROR
    In import monitor it's showing : "tp finished: could not access file as supposed (see dev_tp or SLOG1113.K"
    Can you tell me how to resolve this issue?

    dev_tp contains:    
    This is R3trans.exe version 6.14 (release 700 - 09.04.10 - 11:26:00).
    unicode enabled version
    usage: R3trans.exe [<options>] <control_file>
    The control_file describes what R3trans has to do.
    The following options are possible:
    -c f1 f2 : Copy file f1 to f2 with character set conversion.
    -d       : DB connect. Test if SAP database is available.
    -i file  : Import from file without using a control file.
    -l file  : List the contents of file to the log file.
    -m file  : List the contents of file to allow tp to create a cofile.
    -t       : Test. All database changes are rolled back.
    -t4      : Trace level 4. Switch on developer trace.
    -u <int> : Unconditional modes. See below.
    -v       : Verbose. Write more details to the log file.
    -w file  : Log file. The default log file is 'trans.log'.
    -x       : DB connect without access on any SAP table.
    R3trans.exe finished (0012).
    & the slog file is not there in the trans/log directory

  • The report l runs very night and gets ended with error

    Dear all,
    I am facing a problem in solution manger. There is an report (Program/Command  RDSMOPSOL_MONIREFRESH ) will runs very night and get ended with error and there is Run-time error "MESSAGE_TYPE_X".
    Please suggest how to solve the problem.
    Is this report is necessary   for the system because it is not mention in the sap stand jobs.
    SM37 log
    Job started
    Step 001 started (program RDSMOPSOL_MONIREFRESH, variant &0000000000875, user ID BASIS)
    Opening and closing session started. Session SM2000000000065
    Opening and closing the session was successful. Session: SM2000000000065
    Opening and closing session started. Session SM2000000000005
    ABAP/4 processor: MESSAGE_TYPE_X
    Job cancelled
    SM:CSA SESSION REFRESH
    No. Program/Command       Prog. type Spool list Parameter      User  Lang.
    1  RDSMOPSOL_MONIREFRESH ABAP                  &0000000000876 BASIS EN
    Sm21 log
    00:00:50 DIA 00 000 SAPSYS            EEA OPERATION MODES: Switch to operation mode Normal triggered
    00:30:57 BTC 08 200 BASIS             R68 Perform rollback
    00:30:57 BTC 08 200 BASIS             AB0 Run-time error "MESSAGE_TYPE_X" occurred
    00:30:57 BTC 08 200 BASIS             AB1 > Short dump "081112 003057 sapsm BASIS " generated
    00:30:57 BTC 08 200 BASIS             D01 Transaction Canceled 00 671 ( MESSAGE_TYPE_X 20081112003057sapsm BASIS 2001 )
    00:30:57 BTC 08 200 BASIS             R68 Perform rollback
    00:30:57 BTC 08 200 BASIS             AB0 Run-time error "MESSAGE_TYPE_X" occurred
    Details
    Recording at local and central time........................ 12.11.2008 00:30:57
    Task................ 05312 . 08 B8 BTC background processor No. 08
    User................ BASIS
    Client.............. 200
    Terminal............
    Session............. 1
    Transaction code....
    Program name........
    Problem class....... T    Transaction Problem
    Development class... SABP
    Further details for this message type
    Module name......... abdynpro
    Line................ 1133
    Error text.......... ab_jmess
    Documentation for system log message AB 0 :
    The specified runtime error has occurred in the system.
    Parameter
      a.. MESSAGE_TYPE_X
    Technical details
    File................ 000048
    Position............ 0000253620
    Entry type.......... l      ( Error (Module, Row)            )
    Message ID.......... AB 0
    Variable parts...... ab_jmess                                            abdynpro1133
    Time     Ty. Nr Cl. User         Tcod MNo Text                                                                    Date : 12.11.08
    00:30:57 BTC 08 200 BASIS             AB1 > Short dump "081112 003057 sapsm BASIS " generated
    etails
    ecording at local and central time........................ 12.11.2008 00:30:57
    ask................ 05312 . 08 B8 BTC background processor No. 08
    ser................ BASIS
    lient.............. 200
    erminal............
    ession............. 1
    ransaction code....
    rogram name........
    roblem class....... K    SAP Web AS Problem
    evelopment class... SABP
    BAP Mini dump
    ate................ 20081112
    ime................ 003057
    ost................ sapsm
    ser................ BASIS
    ocumentation for system log message AB 1 :
    A short dump was generated for the specified program termination.
    You can analyze this short dump in the system log evaluation by
    selecting this line or evaluating Table SNAP (Transaction ST22).
    echnical details
    ile................ 000048
    osition............ 0000253800
    ntry type.......... s      ( ABAP Runtime Error             )
    essage ID.......... AB 1
    ariable parts...... 081112003057sapsm   BASIS
    Time     Ty. Nr Cl. User         Tcod MNo Text                                                                    Date : 12.11.08
    00:30:57 BTC 08 200 BASIS             D01 Transaction Canceled 00 671 ( MESSAGE_TYPE_X 20081112003057sapsm BASIS 2001 )
    Details
    Recording at local and central time........................ 12.11.2008 00:30:57
    Task................ 05312 . 08 B8 BTC background processor No. 08
    User................ BASIS
    Client.............. 200
    Terminal............
    Session............. 1
    Transaction code....
    Program name........
    Problem class....... K    SAP Web AS Problem
    Development class... SDYN
    Module name.........
    Location............
    T100................ 00                  671
    Parameters..........
    Documentation for system log message D0 1 :
    The transaction has been terminated.  This may be caused by a
    termination message from the application (MESSAGE Axxx) or by an
    error detected by the SAP System due to which it makes no sense to
    proceed with the transaction.  The actual reason for the termination
    is indicated by the T100 message and the parameters.
    Additional documentation for message 00                  671
    ABAP/4 processor: &
    No documentation exists for message 00671
    Parameter
      a.. MESSAGE_TYPE_X
    00:30:57 BTC 08 200 BASIS             R68 Perform rollback
    Details
    Recording at local and central time........................ 12.11.2008 00:30:57
    Task................ 05312 . 08 B8 BTC background processor No. 08
    User................ BASIS
    Client.............. 200
    Terminal............
    Session............. 1
    Transaction code....
    Program name........
    Problem class....... W    Warning
    Development class... STSK
    Further details for this message type
    Module name......... thxxhead
    Line................ 1240
    Error text..........
    Caller.............. ThIRoll
    Reason/called....... roll ba
    Documentation for system log message R6 8 :
    An error has causes an SAP rollback.  All database updates are reset.
    Technical details
    File................ 000048
    Position............ 0000254520
    Entry type.......... m      ( Error (Function,Module,Row)    )
    Message ID.......... R6 8
    Variable parts......                                       ThIRollroll bathxxhead1240
    Regards,
    Shiva

    Hi karteek,
    I have check there is Switch of operation mode but when I have checked the t-code sm63 there is no new mode are in normal mode.
    There is  one thing I want to ask dose this report (Program/Command RDSMOPSOL_MONIREFRESH )  run   in your system or any one server because I have think there is some problem in job shued
    and is also not mention in the sap stand jobs.
    there is an error in sm21 in job.
    BASIS        SM36 EFK BP_CHECK_REPORT_VALUES: Invalid program values found. Reason:
    BASIS        SM36 EFC > Program RDSMOPSOL_MONIREFRESH has no variants, but a variant was specified
    Is this SM37 log
    Job started
    Step 001 started (program RDSMOPSOL_MONIREFRESH, variant &0000000000875, user ID BASIS)
    Opening and closing session started. Session SM2000000000065
    Opening and closing the session was successful. Session: SM2000000000065
    Opening and closing session started. Session SM2000000000005
    ABAP/4 processor: MESSAGE_TYPE_X
    Job cancelled
    Sm21 log
    SAPSYS            EEA OPERATION MODES: Switch to operation mode Normal triggered
    BASIS             R68 Perform rollback
    BASIS             AB0 Run-time error "MESSAGE_TYPE_X" occurred
    BASIS             AB1 > Short dump "081111 003056 sapsm BASIS " generated
    BASIS             D01 Transaction Canceled 00 671 ( MESSAGE_TYPE_X 20081111003056sapsm BASIS 2001 )
    BASIS             R68 Perform rollback
    BASIS             R49 Communication error, CPIC return code 017, SAP return code 223
    BASIS             R64 > CPI-C function: CMINIT(SAP)
    *BASIS        SM36 EFK BP_CHECK_REPORT_VALUES: Invalid program values found. Reason:*
    *BASIS        SM36 EFC > Program RDSMOPSOL_MONIREFRESH has no variants, but a variant was*
    specified
    BASIS             R68 Perform rollback
    BASIS             AB0 Run-time error "MESSAGE_TYPE_X" occurred
    BASIS             AB1 > Short dump "081111 220948 sapsm BASIS " generated
    BASIS             D01 Transaction Canceled 00 671 ( MESSAGE_TYPE_X 20081111220948sapsm BASIS 2001 )
    Details Page 2 Line 6 System Log: Local Analysis of sapsm                     1
    Time     Ty. Nr Cl. User         Tcod MNo Text
    00:00:51 DIA 00 000 SAPSYS            EEA OPERATION MODES: Switch to operation mode Normal triggered
    Details
    Recording at local and central time........................ 13.11.2008 00:00:51
    Task................ 04100 . 00 D0 Dialog work process No. 00
    User................ SAPSYS
    Client.............. 000
    Terminal............
    Session............. 1
    Transaction code....
    Program name........
    Problem class....... S    Operation Trace
    Development class... SBTC
    Sm63
      Start/end time   Name of the active operation mode
       00.00 - 01.00    Normal
       01.00 - 02.00    Normal
       02.00 - 03.00    Normal
       03.00 - 04.00    Normal
       04.00 - 05.00    Normal
       05.00 - 06.00    Normal
       06.00 - 07.00    Normal
       07.00 - 08.00    Normal
       08.00 - 09.00    Normal
       09.00 - 10.00    Normal
       10.00 - 11.00    Normal
       11.00 - 12.00    Normal
       12.00 - 13.00    Normal
       13.00 - 14.00    Normal
       14.00 - 15.00    Normal
       15.00 - 16.00    Normal
       16.00 - 17.00    Normal
       17.00 - 18.00    Normal
       18.00 - 19.00    Normal
       19.00 - 20.00    Normal
       20.00 - 21.00    Normal
       21.00 - 22.00    Normal
       22.00 - 23.00    Normal
       23.00 - 00.00    Normal
    Regards,

  • 'import (8) ended with errors' i got this error

    Hi experts,
    while transporting request no from devlopment to production the following error is displayed in SE09 TCODE.
    IMPORT (8) ENDED WITH ERRORS. More details of this error message is
    transport request : glpk901850
    system :glp
    tp path : tp
    version and release :372.04.29 700
    main import
    ended with return code => 8.
    how to solve this error.
    pls help me  in this

    duplicate post locked.
    Thomas

  • Transport control program tp ended with error code 0208

    Hello
    I installed minisap NW2004s on XP/SP2 VMWARE 4.5. The installation it self's works fine, but have some problems in the stms. when i call the transport queue there appears an error as follow:
    System   NSP              Command  TMS_MGR_READ_TRANSPORT_QUEUE 
    Client   000              Service  Transport Service            
    User     TMSADM           Start    Online                       
    Date     12.10.2006       Function TMS_TP_SHOW_BUFFER           
    Time     07:13:13         Message  TP_REPORTED_ERROR            
    Transport control program tp ended with error code 0208
    Errors: error in transportprofil (param missing
    unknown,.
    Any Idea? Thanks for your help.
    Regards, George

    Hi
    You can edit the parameter profile using RZ10 and RZ11. You should not copy but manually edit the parameters. Also you need to make a consistency check so that the parameters will be copied to the database from the OS level. You will find an option to perform consistency check in RZ11.
    Hope that helps.

  • Transport control program tp ended with error code 0211

    Dear Experts,
    I have a problem in doing the import after the client export was successfully done.
    I am actaully tring to do a client import/export from the PRD server to DEV server.
    On PRD the client is 900 and on the DEV the client is 240.
    I have manually copied the transport requests created into the
    /usr/sap/trans/cofiles and /usr/sap/trans/data folders to the same on the DEV server.
    After coping them,
    I have tried to add these transport requests to the DEV server queue, i get the following error message
    Transport control program tp ended with error code 0211
    Message no. XT200
    Diagnosis
    An error occurred when executing a tp command.
      Command: ADDTOBUFFER RT2KT00014 RT1 pf=/usr/sap/trans/bin/T
      Return code: 0211
      Error text: no info about transport request found
      Request: RT2KT00014
    System Response
    The function terminates.
    Procedure
    Correct the error and execute the command again if necessary.
    After this I have tried to add the transports to the buffer at the OS level using the command
    ./tp pf=TPPARAM addtobuffer "RT2KT00014" RT1 U18 by going to the folder
    /usr/sap/trans/bin
    But it says that the tp is not found.
    I have also checked the permissions for the TRANS folder, it has full access i.e 777
    This is where i am struck, and the client has to be imported asap as the requirement for the SUPPORT TEAM is very urgent.
    We are on AIX, Oracle 10G and ECC6
    Thanks and regards
    Harry

    Dear Imtiaz,
    Thanks for your quick fire reply...
    The link helped me but it could not resolve my issue..
    Infact i found it my self that the transport requests had to be given full FILE PERMISSIONS at the OS level
    I logged in as ROOT
    and changed directory to /usr/sap/trans/cofile and gave the command
    chmod 777 RT00014.RT2 and
    chmod 777 RX00014.RT2
    and then went to STMS>SYSTEMS>Import View>Extras>Other requests--> Add ..
    Here i added the request nos and then it added up in the queue and then i started the import.
    Anyway thank you very for your reply..
    Awareded points to you.
    Thanks and regards
    Harry...

  • Transport control program tp ended with error code 0247

    Hi,
    Our landscape is such that any transport request once released, gets imported to Q system immediately. However there is another system (another box REG - regression testing) to which I would like to import a request but the transport queue of REG system does not show the request. So I tried to explicitly add it to the queue but I get the following error message, 'Transport control program tp ended with error code 0247.
    There doesn't seem to be a problem with data & CO files as the same request is in Q system and the changes are all transported successfully.
    This request is a transport of copy that contains some ABAP code. (changes to the relevant package can be saved only in local requests therefore transport of copy is recommended to transport the changes).
    The changes appear correctly in Q system but for REG system the request neither appears in the queue nor be added to it.
    Can someone advise where the problem is.
    Cheers,
    KC

    Hi
    When the REG system is not in the system landscape, probably you may not have Data & Co files in that system & you need to have those files separately in the REG system path & then import it.
    Do consult Basis team on this issue.
    Thanks,
    Murali.

  • STMS: Transport control program tp ended with error code 0232

    Dear ERP Gurus,
    I just encountered problem with STMS in my PRD system. The import is just stuck up on "tp connecting to database". It won't continue unitl the system gives me this error message:
    Transport control program tp ended with error code 0232
    Errors: connect failed
    The tp System log says:
    ERROR: Connect to PRD failed (20090227135454, probably wrong environment)
    I have verified that the suggestion in SAP Note 165708 has already been implemented in our DEV, QAS, and PRD instances.
    Any idea why I am having this problem? Imports were running fine yesterday. Please help.
    Your prompt response is highly appreciated.
    Thanks a lot.
    Best Regards,
    Albert

    Hi Albert,
    First check import monitor and delete all requests from queue, which are still getting imported.
    And go to /usr/sap/trans/tmp and mv all those tmp files to other location.
    Then kill all OS jobs which are getting execute with tp.
    Check all jobs are runnig fine, related to transportation. If not reschedule the same.
    Then start importing.
    Before doing this just check whether your stms related RFCs are working fine.
    I think One of your RFC is getting struck. just try to change ip or hostname accordingly and try.
    Regards
    Nick Loy

  • Transport control program tp ended with error code 0232

    Dear all
    I've change password for user SAPSR3 by mistake
    the result from brtools is "password changed successfully in table OPS$CAPADM.SAPUSER for user SAPSR3"
    after that i can not transport to my production client
    with error : TP_REPORTED_ERROR
    Transport control program tp ended with error code 0232
    Can anybody help me please
    thanks & rgds,
    Della

    I've changed my SAPSR3 password to sap but still error
    this is the error log from Check Transport Tool
    DB Connect            Link to database failed
    This is tp version 372.04.70 (release 700, unicode enabled)
    Warning: Parameter DBLIBPATH is no longer used.
    ERROR: Connect to CAP failed (20091217174435, probably wrong environmen
    TRACE-INFO: 1:  [dev trc     ,00000]  Thu Dec 17 17:44:35 2009
    0.007435
    TRACE-INFO: 2:  [dev trc     ,00000]  DlLoadLib() success: dlopen("/usr
    0.007448
    TRACE-INFO: 3:  [dev trc     ,00000]  Got
    LIBPATH=/usr/sap/CAP/DVEBMGS32/exe:/usr/sap/CAP/DVEBMGS32/exe:/usr/lib
    lient from environment
    TRACE-INFO: 4:
    0.008053
    TRACE-INFO: 5:  [dev trc     ,00000]  Oracle Client Version: '10.2.0.2.
    0.008140
    TRACE-INFO: 6:  [dev trc     ,00000]    >oci_initialize(con_hdl=0, char
    0.008158
    TRACE-INFO: 7:  [dev trc     ,00000]  application info callback registe
    0.008173
    TRACE-INFO: 8:  [dev trc     ,00000]  OCIEnvCreate(mode=16384=OCI_UTF16
    0.010330
    TRACE-INFO: 9:  [dev trc     ,00000]  Client character set UTF16 -> UTF
    0.010421
    TRACE-INFO: 10:  [dev trc     ,00000]  Client NLS setting (OCINlsGetInf

  • Transport Controll Program tp ended with error  code 0012

    we have 3 instances 1 DEV 2 TEST 3 PROD.
    in TCODE:STMS by clicking 'system overview' icon
    all systems are showing and domain controller is PROD,
    and <u>Test System also defined as Transport Domain Cotroller.</u>
    earlier STMS scenario: Transport Route is from DEV to PROD system not to the TEST system.
    what I have done:
    deleted the Transpor Domain Controller of the TEST system and kept as test system.
    create routes from DEV to TEST to PROD.
    present STMS problem:
    when I am sending Request from the DEV to TEST Request going smootly. but at TEST sytem while importing the Request it is giving the ERROR as  "<b>Transport control program tp ended with error code 0012</b>"
    please help out me....as soon as possible.

    This is definitely the wrong forum for your post. Please repost properly.
    Regards, Klaus

  • Transport control program tp ended with error code 0008

    Hi !
    I trying to realize an export of client like that :
    Source Client                     400
    Target System:                    ASI
    Copy Type                         Client Export
    Profile                           SAP_RECO
    Status                            Ended with Errors
    User                              ST01051
    Start on                          17.06.2009 / 17:41:00
    Last Entry on                     18.06.2009 / 00:20:40
    Transport Requests
    - Client-Specific                 ASIKT00028
    - Texts                           ASIKX00028
    The export ended with this error :
    Transport control program tp ended with error code 0008
    Error when exporting request ASIKT00028 00:20:39
    Program ended with error or warning, return code: F
    What happen ?
    If somebody can help me to solve this problem ?
    Regards,
    Johan

    hai johan ,
    of the return code is 008 then it is error,
    what have u transported  to target just chekc the log an du might find the error ,
    just click the expand button of the error and u will get the detials what errror occured
    may be some objects might be inactive just chekc once
    m.a

  • Transport control program tp ended with error code 0249

    Hello guys,
          I am facing an when importing transport.  After I click import to the transport in STMS, before it runs, a message window is displayed immediately. This was working find until last week, any kind of transport is followed by the same error.
    Transport control program tp ended with error code 0249
    Message no. XT200
    Diagnosis
    An error occurred when executing a tp command.
      Command: IMPORT BWDK903312 BIW client200 U0 pf=
    sapbiw1a\s
      Return code: 0249
      Error text: connect failed due to DbSL load lib failure
    Has anyone faced this error while trying to import a transport? I have not found the same error in sdn (0249)
    help will be appreciated.
    thanks
    DGF

    Your are right, but which is the Basis forum?
    Business Process Expert 
    Database & OS Platforms  ABAP Development 
    Enterprise SOA  Portal 
    Emerging Technologies 
    SAP Solutions 
    Business Intelligence 
    Scripting Languages 
    SAP Business One  Industries 
    Community Discussions 
    SAP NetWeaver  Application Server  Integration and Certification Center (ICC) 

  • Transport control program tp ended with error code 0016

    Hello colleagues,
    We are getting the following error when exporting system HRP to HRI:
    Transport program TP started successfully for HRPKX00005 21:25:45                                                                
    |   Transport control program tp ended with error code 0016                                                                           
    |   Error exporting request HRPKT00005 00:59:50                                                                               
    |   Program ended with error or warning, return code: F                                                                            
    |   Runtime (seconds)         :         13.876                                                                               
    |   End of processing: 00:59:50               
    Please could you kindly help us to solve the issue?
    Thanks in advance.
    Best regards
    Edited by: Víctor Barahona Cimas on Nov 12, 2009 3:33 PM

    ok thanks

  • Transport control program tp ended with error code 0203

    when i import queue and transport queue from dev to prd ,error show:
    Transport control program tp ended with error code 0203
    Message no. XT200
    Diagnosis
    An error occurred when executing a tp command.
      Command: IMPORT DEVK900298 P01 clientP01 U0 pf=/usr/sap/tra
      Return code: 0203
      Error text: wrong syntax in tp call
      Request: DEVK900298
    System Response
    The function terminates.
    Procedure
    Correct the error and execute the command again if necessary.

    Dear Allen,
    The transport control program tp collects all return codes that occur when a tp command is executed. From all of these single return codes, a combined return code is calculated that tp outputs as a result at the end the command. During an import, for example, all return codes for individual import steps are handled. If a special return code does not occur, then the combined return code at the end is the maximum of individual return codes that occur. In addition to the value of the return code, tp also gives a short description of this return code. You can display this short description using the command explainrc.
    Normally, all return codes that occur originate from individual transport steps. Since these individual return codes can only have the following values 0, 4, 6, 8, 12, 13, 14, 16, the combined return code also has one of these values. However, if a general error occurs, a single return code over 200 is generated. For example, this could arise if tp cannot establish a connection to the database. The maximum return code for all single transport steps is output in a separate message before specifying the combined returned code. In this case, the combined return code is always the return code of the general error message.
    <b>tp Commands:</b>
    tp addtobuffer <request> <sapsid>
    As of Release 4.6A, an explicit addtobuffer command leaves the position of the entry unchanged, if the relevant transport request is already in the buffer. Only the status of the entry is changed:
    Unconditional modes appearing in the command line are added to the unconditional modes in the buffer.
    All the steps of the entry are re-initialized.
    If the entry found is not an initial entry, the import step for the command file is set to *4000 .
    Before you call this command and its options, consider the effects of changing the import sequence.
    tp cleanbuffer <sapsid>
    This deletes successfully imported change requests from the list of requests that are marked for import into the SAP System <SAPSID>. This function is contained in the commands tp import all <sapsid> and tp put <sapsid> .
    tp delfrombuffer <request> <sapsid>
    If the specified request is marked for import into the specified SAP System, this flag is deleted from the import list.
    Before you call this command, consider the effects of changing the import sequence.
    As of Release 4.6A: If a transport request was only partially imported, you can delete this type of transport request from the buffer. However, if a deleted transport request is placed in the buffer (without having been initially or completely imported), the attributes of the old entry are reactivated. This means the return codes, the unconditional modes and tags of the deleted entry appear in the new entry.
    tp delstopmark <sapsid>
    If the list of requests marked for import into the specified SAP System contains a STOP mark, the mark is deleted.
    tp export <request>
    This exports the complete request from the source system. This command starts the export of a request from the operating system level. Only use this command in exceptional cases. The SAP System uses the command expwbo to release requests from CTS transactions.
    tp reformatbuffer <sapsid> [options]
    This automatically reformats the entire buffer.
    As of Release 4.5A, there are 2 different formats for buffer entries. (As of Release 4.5A, tp can work with both formats, and with a puffer containing heterogeneous entries. As of Release 4.6A, tp can work with 3 formats.)
    However, in certain cases entries with the old formatting have to be reformatted during the normal run of tp . In this case, the entire buffer is automatically reformatted.
    If you use the options downtorelease and Iagree for command reformatbuffer , you can format the buffer so that its formatting is compatible with an older release:
    Option downtorelease <Release>
    The command reformatbuffer with this option formats the buffer so that the formatting corresponds to the one used in an old release. This is necessary if tp writes buffer entries to the buffer of another system, but uses a buffer format that the transport control programs does not understand in this system.
    Since older formats cannot store the same amount of information as the newer ones, some information contained in the original buffer may not be stored in the unformatted buffer. This may lead to data loss.
    To avoid data loss, the original buffer is stored. In addition, you have the following functions:
    Displaying the unformatted buffer (using showbuffer <SID> )
    Displaying the original buffer (using showbuffer buffer=<SID>SAV )
    Accepting the unformatted buffer (using reformatbuffer and the option Iagree yes )
    Resetting the changes (using reformatpuffer and the option Iagree no )
    If you call reformatpuffer using downtorelease , tp displays in detail if information was lost by reformatting, and what that information was. tp also names the commands that is has to execute to accept or reject the changes.
    If you use the option downtorelease , you must also specify the option Iagree with yes or no . You cannot use the transport system until you decide to accept or reject the changes.
    Option Iagree
    Here are the following values for this option:
    yes ( true )
    Accept the change made by tp reformatbuffer <SID> downtorelease <rel>
    In this case, tp deleted the buffer semaphore file that was lifted for security reasons at the first call of reformatbuffer
    no ( false )
    Reject the change made by tp reformatbuffer <SID> downtorelease <rel> In this case, tp copies the backup of the original buffer back and deletes the buffer semaphore file that was lifted for security reasons at the first call of reformatbuffer
    tp setstopmark <sapsid>
    A special STOP mark is added to the list of requests registered for import into the specified SAP System. The commands tp import all <sapsid> and tp put <sapsid> only process the requests in front of this stop mark.
    If there is no stop mark, it is automatically generated by the commands
    tp import all <sapsid> and tp put <sapsid> .
    When all the requests in front of the stop mark have been imported successfully, at the end of all the calls the related marks and the mark itself are deleted.
    A STOP mark can only be placed at the end of the change requests that have already been marked. In addition, it can only be set if no other mark of the same kind already exists.
    tp showparams <sapsid>
    This tp function displays which values the individual parameters of the transport profile have for the current SAP System.
    tp verse <request>
    This creates versions of the objects in the specified request. This transport step is contained in command export .
    As of Release 4.5A, more actions that prepare the export are performed in this step.
    Thanks and Regards,
    Naveen.

Maybe you are looking for