Creating Packages in Solaris 10

I have couple scripts (shell files) I need to package. How do I start packaging my files?
I got these files:
1. installCPU.sh
2. shutdb.sh
3. startdb.sh
4. startlsnrctl.sh
5. stoplsnrctl.sh
I need to put these files into a single package to help our System Admin (SA) to perform these instructions when he or she is in the field. I have done some reading and here what I came up with. I was told to create a pkginfo and prototype files. I managed the pkginfo file, but has no clue on the prototype file, but please see what I got below and give me some clues what to do next.
I just don't know where to include my shell scritps in the package creation procudure.
#pkginfo_file
CLASSES=none
BASEDIR=/h/USERS/local/oracle
TZ=PST
PATH=/sbin:/usr/sbin:/usr/bin:/usr/sadm/install/bin
PKG=SecPkgOracleCPU
NAME=pkg-get
VERSION=1.0
CATEGORY=system
DESC=Automate Oracle CPU install
VENDOR=Myinfo
EMAIL=[email protected]
PKGSAV=/var/sadm/pkg/SecPkgOracleCPU/save
#protofype_file (
i pkginfo
!default 0755 root bin
d none bin ? ? ?

If you want use [url ftp://ftp.sunfreeware.com/pub/freeware/SOURCES/make_package]make_package PERL script for create your package or see [url http://www.sunfreeware.com/pkgadd.html] sunfreeware link
Michele,
I followed the above instruction and was able to create the package, but can't do pkgtrans - s '/tmp/pkgname'. See what I get. Any iddea?
bash-3.00# pkgtrans -s 'pwd' /tmp/oracpu
pkgtrans: ERROR: unable to complete package transfer
- unable to obtain package volume

Similar Messages

  • Failed to create package using pkgmk

    Hello Experts!
    Im not sure whether this is the right place to post this topic in this forum. Sorry, if not. I want to create a package in solaris. Ive created pkginfo file and here are the contents
    PKG = Daemon
    ARCH = SPARC
    VERSION = 1.0
    NAME = sample
    CATEGORY = application
    and then ive created the prototype file using pkgproto
    command and the file contents are....
    !search /export/home/pp/Daemon
    i pkginfo=/export/home/pp/InfoFiles
    d none Daemon 0755 root other
    f none Daemon/Daemon.cpp 0644 root other
    f none Daemon/makefile 0644 root other
    f none Daemon/Daemon.o 0644 root other
    f none Daemon/samp.exe 0755 root other
    Now, when im trying to create a package using pkgmk its giving the following error:
    # pkgmk
    ## Building pkgmap from package prototype file.
    ERROR in prototype:
    no object for <pkginfo> found in local path
    pkgmk: ERROR: unable to build pkgmap from prototype file
    ## Packaging was not successful.
    NOTE: My current directory
    is /export/home/pp/InfoFiles
    The directory InfoFiles contains pkginfo and prototype files
    Where am i doing wrong??
    Any help would be greatly appreciated...
    Thanx in advance
    Latha

    HI
    I think the pkginfo command needs to point to the pkginfo file directly
    eg
    i pkginfo=/tmp/InfoFiles/pkginfo
    see th examples section in
    man -s4 prototype
    also in the pkginfo you need have no spaces in the lines
    eg
    PKG=Daemon
    not
    PKG = Daemon
    from man -s4 pkginfo
    tim.

  • Mod_jk2 package for Solaris 10 x86

    I need a mod_jk2 package for Solaris 10 x86 so it will be part of my installation, thus build is not good enough. Can anyone help?
    Oren

    Creator is now integrated into NetBeans. Download the Java + EE
    distribution of the NetBeans 6.1 release from netbeans.org.
    When you create a project, you will be led through a series of panels,
    where the last is Frameworks. Select the "Visual Web JavaServer Faces"
    framework. You will be familiar with the rest, and of course it will
    work on solarisx86.
    Have fun!
    /krys

  • Installing .rpm packages onto solaris 10.

    Hi,
    Can anyone help me by providing the steps to install .rpm package into solaris 10 os?
    Thanks

    RPM is just a packaging format, and the tools are available on the Solaris Software Companion CD, in the SFWrpm package. You would need to install the package on your system in order to get the RPM tools.
    But I think Pascal's point is that the payload is typically Linux binaries, so installing a Linux RPM on Solaris would not be productive. But you could certainly install a source package, for example, or create your own RPM containing Solaris binaries.
    -- Alan

  • Error while creating package

    Hi,
    I am trying to create this procedure inside a package but i am getting the below mentioned error, but when i run the SELECT statement alone, it works fine
    but when creating package it throws the error, can anyone please help me in this.
    PROCEDURE Selections(
    p_Last IN VARCHAR2,
    p_CurrentTime IN VARCHAR2,
    p_Selections OUT     NUMBER
    IS
    BEGIN
         SELECT CODE, AMOUNT,INSERT_DATE FROM
         (SELECT b.CODE, a.AMOUNT,a.INSERT_DATE, ROW_NUMBER()
         OVER(PARTITION BY b.CODE ORDER BY a.INSERT_DATE) AS SEQ
         FROM PAYMENTS a,SB b
    WHERE a.INSERT_DATE > p_Last
    AND a.INSERT_DATE <= p_CurrentTime
    AND a.TYPE = 'X'
    AND a.P_CODE IS NULL
    AND a.ACCT=b.C_CODE)
         WHERE SEQ = 1;
    END Selections;
    After throwing the error the cursor is positioned between OVER[CURSOR](PARTITION BY b.CODE ORDER BY a.INSERT_DATE) AS SEQ
    Error Message:
    PLS-00103: Encountered the symbol "(" when expecting one of the following:
    , from
    Thanks

    If you have to use dynamic SQL because of V 8i, try this (not tested):
    PROCEDURE Selections( 
       p_Last IN VARCHAR2,
       p_CurrentTime IN VARCHAR2,
       p_Selections OUT NUMBER
    IS
       l_code NUMBER;
       l_amount NUMBER;
       l_insert_date DATE;
    BEGIN
       execute immediate
       'SELECT code,'||
              'amount,'||
              'insert_date '||
       'FROM   ('||
              'SELECT b.code,'||
                     'a.amount,'||
                     'a.insert_date,'||
                     'row_number() over(PARTITION BY b.code ORDER BY a.insert_date) AS seq '||
              'FROM   payments a,'||
                     'sb b '||
              'WHERE  a.insert_date > p_last '||
              'AND    a.insert_date <= p_currenttime '||
              'AND    a.type = '||''''||'X '||''''||
              'AND    a.p_code IS NULL '||
              'AND    a.acct = b.c_code'||
              ') '||
       'WHERE  seq = 1'
       INTO   l_code,
              l_amount,
              l_insert_date
       dbms_output.put_line(l_code);
       dbms_output.put_line(l_amount);
       dbms_output.put_line(l_insert_date);
    END selections;Regards,
    Gerd

  • A question about creating packages as local objects in ABAP

    Hi,
    I have a question about creating packages with SE80. Whenever I create a new package it is assigned a new transport request. After that, I can create new programs inside this package, and each time I can choose whether to assign the new program to a transport request or just save it as a local object (I often do this for test programs that I don't transport and I remove them once my tests have been done).
    What I would like to ask is that, is it possible to create a package (and not just programs inside a given package) as a local object? so that every new object created in this package will be considered as a local object?
    Thanks in advane,
    Kind Regards,
    Dariyoosh

    Thomas Zloch wrote:
    Please also check the F1 help for the package field e.g. in SE80, SAP standard is in range A-S and U-X, namespaces start with "/", so you should be save. I am using the T namespace for temporary stuff since a long time and did not have a problem so far.
    > Thomas
    >
    > P.S. this applies to the package name only, of course
    Thank you very much for this remark, I checked F1 help for the package field and in fact as you mentioned these ranges are for local objects.
    Once again, thank you very much for your help.
    Kind Regards,
    Dariyoosh

  • I have to install only Adobe presenter from this whole application. I created package using AAMEE3.1

    I created package using AAMEE 3.1, using source of Adobe E-learning Suite 6.1 .
    During Package creation i selcted only Adobe Presenter 8. Package is serialized and also Adobe ID is there to login. Package created sucessfully. But when i run MSI it rollbacks during Installation.
    Below is the PDApp.log file:
    7/15/2013 09:07:21 [INFO] DeploymentManager - Build Version - 3.1.105.0
    7/15/2013 09:07:21 [INFO] DeploymentManager - Logging Level verbosity Set  to 4
    7/15/2013 09:07:21 [INFO] DeploymentManager - Executing the deferred custom action.
    7/15/2013 09:07:21 [INFO] DeploymentManager - Obtained the following as CustomActionData
    7/15/2013 09:07:21 [INFO] DeploymentManager - mode=install;sourceDir=C:\New folder (2)\Adobe Presenter 8\Build\;installDir=;origDB=C:\New folder (2)\Adobe Presenter 8\Build\Adobe Presenter 8.msi
    7/15/2013 09:07:21 [INFO] DeploymentManager - mode=install;sourceDir=C:\New folder (2)\Adobe Presenter 8\Build\;installDir=;origDB=C:\New folder (2)\Adobe Presenter 8\Build\Adobe Presenter 8.msi
    7/15/2013 09:07:21 [INFO] DeploymentManager - Original database path is : C:\New folder (2)\Adobe Presenter 8\Build\Adobe Presenter 8.msi
    7/15/2013 09:07:21 [INFO] DeploymentManager - OptionXML saved at location :: D:\Users\Vmbuild\AppData\Local\Temp\{0EAD2103-39AF-4D85-B942-CAC0E462C482}\\{9CB14C72-1E7 1-49C0-A7D8-559F1DC35661}
    7/15/2013 09:07:21 [INFO] DeploymentManager - Build Version - 3.1.105.0
    7/15/2013 09:07:21 [INFO] DeploymentManager - Logging Level verbosity Set  to 4
    7/15/2013 09:07:21 [INFO] DeploymentManager - Initializing Custom Action Data from parameters
    7/15/2013 09:07:21 [INFO] Utilities - Folder does not exist
    7/15/2013 09:07:21 [INFO] DeploymentManager - Provisioning Tool path is (D:\Users\Vmbuild\AppData\Local\Temp\{0EAD2103-39AF-4D85-B942-CAC0E462C482}\\{731F139B-D8 D6-4870-AA90-9626C4D6D4E2}).
    7/15/2013 09:07:21 [INFO] DeploymentManager - Starting to run the custom action for install mode
    7/15/2013 09:07:21 [INFO] DeploymentManager - STEP 1: Starting to parse Option XML.
    7/15/2013 09:07:21 [INFO] DeploymentManager - Deployment XML created at path :: D:\Users\Vmbuild\AppData\Local\Temp\{2592DDC9-72BD-430A-B2EA-C2839B69B46E}\\{709B4BF9-4A0 5-4D3E-BC48-850DE16D5A85}
    7/15/2013 09:07:21 [INFO] DeploymentManager - Deployment Manager is running in Install Mode.
    7/15/2013 09:07:21 [INFO] DeploymentManager - Self-Update BootStrapper Relative Path doesn't exist.
    7/15/2013 09:07:21 [INFO] DeploymentManager - Override XML created at path :: D:\Users\Vmbuild\AppData\Local\Temp\{2592DDC9-72BD-430A-B2EA-C2839B69B46E}\\{61E5FBB2-8F4 C-4909-9A3F-823EC1DE99F5}
    7/15/2013 09:07:21 [INFO] DeploymentManager - No of updates found (0).
    7/15/2013 09:07:21 [INFO] DeploymentManager - STEP 2: Starting to launch media Bootstrapper.
    7/15/2013 09:07:21 [INFO] DeploymentManager - Bootstrapper launch location is :: C:\New folder (2)\Adobe Presenter 8\Build\Setup\Set-up.dat
    7/15/2013 09:07:22 [INFO] Setup - Build Version - 6.2.136.0
    7/15/2013 09:07:22 [INFO] Setup - Logging Level verbosity Set  to 4
    7/15/2013 09:07:22 [INFO] Setup - Start Adobe Setup
    7/15/2013 09:07:22 [INFO] Setup - TimeLog: Bootstrapper Start
    7/15/2013 09:07:22 [INFO] Setup - TimeLog: Start initial checks
    7/15/2013 09:07:22 [INFO] Setup - Action specified - "install"
    7/15/2013 09:07:22 [ERROR] Setup - Error parsing command line arguments at - "DISABLE_CCM_DESKTOPSHORTCUT".
    Expected arguments are -
        --mode=silent
        --overrideFile="<FilePath>"
    7/15/2013 09:07:22 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\resources\setup.xml
    7/15/2013 09:07:22 [INFO] PIM - XML is valid
    7/15/2013 09:07:22 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:22 [INFO] Setup - Found 7 packages in setup manifest
    7/15/2013 09:07:23 [INFO] Utilities - Semaphore is not locked
    7/15/2013 09:07:23 [INFO] PIM - Build Version - 6.2.136.0
    7/15/2013 09:07:23 [INFO] PIM - Logging Level verbosity Set  to 4
    7/15/2013 09:07:23 [INFO] Utilities - File does not exist
    7/15/2013 09:07:23 [INFO] Utilities - File does not exist
    7/15/2013 09:07:23 [INFO] PIM - Build Version - 6.2.136.0
    7/15/2013 09:07:23 [INFO] PIM - Logging Level verbosity Set  to 4
    7/15/2013 09:07:23 [INFO] PIM - CREATE PIM Instance ...
    7/15/2013 09:07:23 [INFO] Utilities - File does not exist
    7/15/2013 09:07:23 [INFO] PIM - trying to createOrUpdatePIMDbSchema.
    7/15/2013 09:07:23 [INFO] PIM - Current db schema version on machine 1.
    7/15/2013 09:07:23 [INFO] PIM - Current db schema version to install 1.
    7/15/2013 09:07:23 [INFO] PIM - PIM DB Schema is up to date. Current schema version is 1.
    7/15/2013 09:07:23 [INFO] PIM - PIM Database is Up To Date.
    7/15/2013 09:07:23 [INFO] PIM - Updater Inventory location:C:\New folder (2)\Adobe Presenter 8\Build\Setup\resources\updaterinventory.dll
    7/15/2013 09:07:23 [INFO] PIM - Acquired System level ACF lock ...
    7/15/2013 09:07:23 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\core\PDApp.pimx
    7/15/2013 09:07:23 [INFO] PIM - XML is valid
    7/15/2013 09:07:23 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:23 [INFO] PIM - Package id 5AA1D762-31AF-4FC3-A0C0-66BF663B2117 is already installed
    7/15/2013 09:07:24 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\D6\D6.pimx
    7/15/2013 09:07:24 [INFO] PIM - XML is valid
    7/15/2013 09:07:24 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:24 [INFO] PIM - Package id 54FD72DC-72EC-4CDC-8828-F07C4E9E6FA2 is already installed
    7/15/2013 09:07:24 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DECore\DECore.pimx
    7/15/2013 09:07:24 [INFO] PIM - XML is valid
    7/15/2013 09:07:24 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:24 [INFO] PIM - Package id 6D2A548B-C50D-46BA-B83E-C8199C6A9406 is already installed
    7/15/2013 09:07:24 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DWA\DWA.pimx
    7/15/2013 09:07:24 [INFO] PIM - XML is valid
    7/15/2013 09:07:24 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:24 [INFO] PIM - Package id 99477136-88AD-496B-9551-BAE72699A32C is already installed
    7/15/2013 09:07:25 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\P6\P6.pimx
    7/15/2013 09:07:25 [INFO] PIM - XML is valid
    7/15/2013 09:07:25 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:25 [INFO] PIM - Package id FAFC744B-DDFB-4097-A41D-7E9539FEBAF9 is already installed
    7/15/2013 09:07:27 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\LWA\LWA.pimx
    7/15/2013 09:07:27 [INFO] PIM - XML is valid
    7/15/2013 09:07:27 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:27 [INFO] PIM - Package id B322281B-C04F-438E-82D7-7DA34A359526 is already installed
    7/15/2013 09:07:28 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\UWA\UWA.pimx
    7/15/2013 09:07:29 [INFO] PIM - XML is valid
    7/15/2013 09:07:29 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:29 [INFO] PIM - Package id B1313DE3-08DF-4834-91D9-CBD1A91488E5 is already installed
    7/15/2013 09:07:29 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\CCM\CCM.pimx
    7/15/2013 09:07:29 [INFO] PIM - XML is valid
    7/15/2013 09:07:29 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:29 [INFO] PIM - Package id F0158AAB-0779-4B40-A07D-3F2A21D47E74 is already installed
    7/15/2013 09:07:29 [INFO] PIM - pim_haveEnoughDiskSpaceToInstallPackages reqSize ... 29928536
    7/15/2013 09:07:29 [INFO] Setup - TimeLog: End initial checks
    7/15/2013 09:07:29 [INFO] Setup - TimeLog: Begin Installing
    7/15/2013 09:07:29 [INFO] Setup - Start Installing core package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\core\PDApp.pimx
    7/15/2013 09:07:29 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\core\PDApp.pimx
    7/15/2013 09:07:29 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\core\PDApp.pimx
    7/15/2013 09:07:29 [INFO] PIM - XML is valid
    7/15/2013 09:07:29 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:29 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\core\PDApp.pimx'
    7/15/2013 09:07:29 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\core\PDApp.pima'
    7/15/2013 09:07:29 [INFO] PIM - Package id 5AA1D762-31AF-4FC3-A0C0-66BF663B2117 is already installed
    7/15/2013 09:07:29 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:07:31 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:07:31 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:07:32 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:07:32 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:32 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:07:32 [INFO] PIM - Backup Folder Created
    7/15/2013 09:07:34 [INFO] Utilities - File does not exist
    7/15/2013 09:07:37 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\core\PDApp.pimx.
    7/15/2013 09:07:38 [INFO] Setup - Finished Installing core package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\core\PDApp.pimx, Return status: 0
    7/15/2013 09:07:38 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\D6\D6.pimx
    7/15/2013 09:07:38 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\D6\D6.pimx
    7/15/2013 09:07:38 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\D6\D6.pimx
    7/15/2013 09:07:38 [INFO] PIM - XML is valid
    7/15/2013 09:07:38 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:38 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\D6\D6.pimx'
    7/15/2013 09:07:38 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\D6\D6.pima'
    7/15/2013 09:07:38 [INFO] PIM - Package id 54FD72DC-72EC-4CDC-8828-F07C4E9E6FA2 is already installed
    7/15/2013 09:07:39 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:07:39 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:07:39 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:07:39 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:07:39 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:07:39 [INFO] PIM - Backup Folder Created
    7/15/2013 09:07:39 [INFO] Utilities - File does not exist
    7/15/2013 09:07:42 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\D6\D6.pimx.
    7/15/2013 09:07:42 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\D6\D6.pimx
    7/15/2013 09:07:42 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DECore\DECore.pimx
    7/15/2013 09:07:42 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DECore\DECore.pimx
    7/15/2013 09:07:42 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DECore\DECore.pimx
    7/15/2013 09:07:42 [INFO] PIM - XML is valid
    7/15/2013 09:07:42 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:42 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DECore\DECore.pimx'
    7/15/2013 09:07:42 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DECore\DECore.pima'
    7/15/2013 09:07:42 [INFO] PIM - Package id 6D2A548B-C50D-46BA-B83E-C8199C6A9406 is already installed
    7/15/2013 09:07:42 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:07:43 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:07:43 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:07:43 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:07:43 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:43 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:07:43 [INFO] PIM - Backup Folder Created
    7/15/2013 09:07:45 [INFO] Utilities - File does not exist
    7/15/2013 09:07:47 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DECore\DECore.pimx.
    7/15/2013 09:07:48 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DECore\DECore.pimx
    7/15/2013 09:07:48 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DWA\DWA.pimx
    7/15/2013 09:07:48 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DWA\DWA.pimx
    7/15/2013 09:07:48 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DWA\DWA.pimx
    7/15/2013 09:07:48 [INFO] PIM - XML is valid
    7/15/2013 09:07:48 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:48 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DWA\DWA.pimx'
    7/15/2013 09:07:48 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DWA\DWA.pima'
    7/15/2013 09:07:48 [INFO] PIM - Package id 99477136-88AD-496B-9551-BAE72699A32C is already installed
    7/15/2013 09:07:48 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:07:48 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:07:48 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:07:48 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:07:48 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:07:48 [INFO] PIM - Backup Folder Created
    7/15/2013 09:07:49 [INFO] Utilities - File does not exist
    7/15/2013 09:07:53 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DWA\DWA.pimx.
    7/15/2013 09:07:53 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\DWA\DWA.pimx
    7/15/2013 09:07:53 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\P6\P6.pimx
    7/15/2013 09:07:53 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\P6\P6.pimx
    7/15/2013 09:07:53 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\P6\P6.pimx
    7/15/2013 09:07:53 [INFO] PIM - XML is valid
    7/15/2013 09:07:53 [WARN] PIM - Failed to find Node
    7/15/2013 09:07:53 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\P6\P6.pimx'
    7/15/2013 09:07:53 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\P6\P6.pima'
    7/15/2013 09:07:53 [INFO] PIM - Package id FAFC744B-DDFB-4097-A41D-7E9539FEBAF9 is already installed
    7/15/2013 09:07:53 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:07:54 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:07:54 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:07:54 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:07:54 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:07:54 [INFO] PIM - Backup Folder Created
    7/15/2013 09:07:59 [INFO] Utilities - File does not exist
    7/15/2013 09:08:04 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\P6\P6.pimx.
    7/15/2013 09:08:04 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\P6\P6.pimx
    7/15/2013 09:08:04 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\LWA\LWA.pimx
    7/15/2013 09:08:04 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\LWA\LWA.pimx
    7/15/2013 09:08:04 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\LWA\LWA.pimx
    7/15/2013 09:08:04 [INFO] PIM - XML is valid
    7/15/2013 09:08:04 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:04 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\LWA\LWA.pimx'
    7/15/2013 09:08:04 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\LWA\LWA.pima'
    7/15/2013 09:08:04 [INFO] PIM - Package id B322281B-C04F-438E-82D7-7DA34A359526 is already installed
    7/15/2013 09:08:04 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:08:05 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:08:05 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:08:05 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:08:05 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:08:05 [INFO] PIM - Backup Folder Created
    7/15/2013 09:08:09 [INFO] Utilities - File does not exist
    7/15/2013 09:08:18 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\LWA\LWA.pimx.
    7/15/2013 09:08:18 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\LWA\LWA.pimx
    7/15/2013 09:08:18 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\UWA\UWA.pimx
    7/15/2013 09:08:18 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\UWA\UWA.pimx
    7/15/2013 09:08:18 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\UWA\UWA.pimx
    7/15/2013 09:08:18 [INFO] PIM - XML is valid
    7/15/2013 09:08:18 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:18 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\UWA\UWA.pimx'
    7/15/2013 09:08:19 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\UWA\UWA.pima'
    7/15/2013 09:08:19 [INFO] PIM - Package id B1313DE3-08DF-4834-91D9-CBD1A91488E5 is already installed
    7/15/2013 09:08:19 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:08:20 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:08:20 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:08:20 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:08:20 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:08:20 [INFO] PIM - Backup Folder Created
    7/15/2013 09:08:21 [INFO] Utilities - File does not exist
    7/15/2013 09:08:27 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\UWA\UWA.pimx.
    7/15/2013 09:08:27 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\UWA\UWA.pimx
    7/15/2013 09:08:27 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\CCM\CCM.pimx
    7/15/2013 09:08:27 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\CCM\CCM.pimx
    7/15/2013 09:08:27 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\CCM\CCM.pimx
    7/15/2013 09:08:27 [INFO] PIM - XML is valid
    7/15/2013 09:08:27 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:27 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\CCM\CCM.pimx'
    7/15/2013 09:08:27 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\CCM\CCM.pima'
    7/15/2013 09:08:28 [INFO] PIM - Package id F0158AAB-0779-4B40-A07D-3F2A21D47E74 is already installed
    7/15/2013 09:08:28 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:08:28 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:08:28 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:08:29 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:08:29 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:08:29 [INFO] PIM - Backup Folder Created
    7/15/2013 09:08:29 [INFO] Utilities - File does not exist
    7/15/2013 09:08:33 [INFO] Utilities - Path to Process :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe Process Directory :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities arguments being passed :"C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe" --register=true --createShortcut=true
    7/15/2013 09:08:33 [INFO] Utilities - Success in CreateProcess
    7/15/2013 09:08:35 [INFO] Utilities - Sucessfully launched and executed process...
    7/15/2013 09:08:35 [INFO] PIM - Successfully executed install modifier at path: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe'
    7/15/2013 09:08:35 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\CCM\CCM.pimx.
    7/15/2013 09:08:35 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\Setup\packages\CCM\CCM.pimx
    7/15/2013 09:08:35 [INFO] PIM - Processing ... _pimCreateOrUpdateAAMInventory
    7/15/2013 09:08:36 [INFO] PIM - Inventory Already present on the machine...
    7/15/2013 09:08:36 [INFO] Setup - TimeLog: End Installing. Now launching PDApp
    7/15/2013 09:08:37 [INFO] Setup - Deployment File Path not specified in command line arguments. Skipping payload deployment part
    7/15/2013 09:08:37 [INFO] Setup - =================  End Adobe Setup. Exit code: 0  =================
    7/15/2013 09:08:37 [INFO] PIM - PIMSqlite closeDB status 0
    7/15/2013 09:08:37 [INFO] PIM - FREE PIM Instance ...
    7/15/2013 09:08:37 [INFO] DeploymentManager - Build Version - 3.1.105.0
    7/15/2013 09:08:37 [INFO] DeploymentManager - Logging Level verbosity Set  to 4
    7/15/2013 09:08:37 [INFO] DeploymentManager - The return code from the Bootstrapper Process is (0).
    7/15/2013 09:08:37 [INFO] DeploymentManager - STEP 3: Starting to launch ASU AAM.
    7/15/2013 09:08:37 [INFO] DeploymentManager - Bootstrapper launch location is :: C:\New folder (2)\Adobe Presenter 8\Build\ASU\Set-up.dat
    7/15/2013 09:08:37 [INFO] Setup - Build Version - 6.2.136.0
    7/15/2013 09:08:37 [INFO] Setup - Logging Level verbosity Set  to 4
    7/15/2013 09:08:37 [INFO] Setup - Start Adobe Setup
    7/15/2013 09:08:37 [INFO] Setup - TimeLog: Bootstrapper Start
    7/15/2013 09:08:37 [INFO] Setup - TimeLog: Start initial checks
    7/15/2013 09:08:37 [INFO] Setup - Action specified - "install"
    7/15/2013 09:08:37 [ERROR] Setup - Error parsing command line arguments at - "DISABLE_CCM_DESKTOPSHORTCUT".
    Expected arguments are -
        --mode=silent
        --overrideFile="<FilePath>"
    7/15/2013 09:08:37 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\resources\setup.xml
    7/15/2013 09:08:37 [INFO] PIM - XML is valid
    7/15/2013 09:08:37 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:37 [INFO] Setup - Found 7 packages in setup manifest
    7/15/2013 09:08:37 [INFO] Utilities - Semaphore is not locked
    7/15/2013 09:08:37 [INFO] PIM - Build Version - 6.2.136.0
    7/15/2013 09:08:37 [INFO] PIM - Logging Level verbosity Set  to 4
    7/15/2013 09:08:37 [INFO] Utilities - File does not exist
    7/15/2013 09:08:37 [INFO] Utilities - File does not exist
    7/15/2013 09:08:37 [INFO] PIM - Build Version - 6.2.136.0
    7/15/2013 09:08:37 [INFO] PIM - Logging Level verbosity Set  to 4
    7/15/2013 09:08:37 [INFO] PIM - CREATE PIM Instance ...
    7/15/2013 09:08:37 [INFO] Utilities - File does not exist
    7/15/2013 09:08:38 [INFO] PIM - trying to createOrUpdatePIMDbSchema.
    7/15/2013 09:08:38 [INFO] PIM - Current db schema version on machine 1.
    7/15/2013 09:08:38 [INFO] PIM - Current db schema version to install 1.
    7/15/2013 09:08:38 [INFO] PIM - PIM DB Schema is up to date. Current schema version is 1.
    7/15/2013 09:08:38 [INFO] PIM - PIM Database is Up To Date.
    7/15/2013 09:08:38 [INFO] PIM - Updater Inventory location:C:\New folder (2)\Adobe Presenter 8\Build\ASU\resources\updaterinventory.dll
    7/15/2013 09:08:38 [INFO] PIM - Acquired System level ACF lock ...
    7/15/2013 09:08:38 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\core\PDApp.pimx
    7/15/2013 09:08:38 [INFO] PIM - XML is valid
    7/15/2013 09:08:38 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:38 [INFO] PIM - Package id 5AA1D762-31AF-4FC3-A0C0-66BF663B2117 is already installed
    7/15/2013 09:08:38 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\D6\D6.pimx
    7/15/2013 09:08:38 [INFO] PIM - XML is valid
    7/15/2013 09:08:38 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:38 [INFO] PIM - Package id 54FD72DC-72EC-4CDC-8828-F07C4E9E6FA2 is already installed
    7/15/2013 09:08:38 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DECore\DECore.pimx
    7/15/2013 09:08:38 [INFO] PIM - XML is valid
    7/15/2013 09:08:38 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:38 [INFO] PIM - Package id 6D2A548B-C50D-46BA-B83E-C8199C6A9406 is already installed
    7/15/2013 09:08:38 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DWA\DWA.pimx
    7/15/2013 09:08:38 [INFO] PIM - XML is valid
    7/15/2013 09:08:38 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:38 [INFO] PIM - Package id 99477136-88AD-496B-9551-BAE72699A32C is already installed
    7/15/2013 09:08:38 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\P6\P6.pimx
    7/15/2013 09:08:39 [INFO] PIM - XML is valid
    7/15/2013 09:08:39 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:39 [INFO] PIM - Package id FAFC744B-DDFB-4097-A41D-7E9539FEBAF9 is already installed
    7/15/2013 09:08:39 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\LWA\LWA.pimx
    7/15/2013 09:08:39 [INFO] PIM - XML is valid
    7/15/2013 09:08:39 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:39 [INFO] PIM - Package id B322281B-C04F-438E-82D7-7DA34A359526 is already installed
    7/15/2013 09:08:39 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\UWA\UWA.pimx
    7/15/2013 09:08:39 [INFO] PIM - XML is valid
    7/15/2013 09:08:39 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:39 [INFO] PIM - Package id B1313DE3-08DF-4834-91D9-CBD1A91488E5 is already installed
    7/15/2013 09:08:39 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\CCM\CCM.pimx
    7/15/2013 09:08:39 [INFO] PIM - XML is valid
    7/15/2013 09:08:39 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:39 [INFO] PIM - Package id F0158AAB-0779-4B40-A07D-3F2A21D47E74 is already installed
    7/15/2013 09:08:39 [INFO] PIM - pim_haveEnoughDiskSpaceToInstallPackages reqSize ... 29928536
    7/15/2013 09:08:39 [INFO] Setup - TimeLog: End initial checks
    7/15/2013 09:08:39 [INFO] Setup - TimeLog: Begin Installing
    7/15/2013 09:08:39 [INFO] Setup - Start Installing core package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\core\PDApp.pimx
    7/15/2013 09:08:39 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\core\PDApp.pimx
    7/15/2013 09:08:39 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\core\PDApp.pimx
    7/15/2013 09:08:39 [INFO] PIM - XML is valid
    7/15/2013 09:08:39 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:39 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\core\PDApp.pimx'
    7/15/2013 09:08:39 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\core\PDApp.pima'
    7/15/2013 09:08:39 [INFO] PIM - Package id 5AA1D762-31AF-4FC3-A0C0-66BF663B2117 is already installed
    7/15/2013 09:08:39 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:08:39 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:08:39 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:08:39 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:08:39 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:39 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:08:40 [INFO] PIM - Backup Folder Created
    7/15/2013 09:08:41 [INFO] Utilities - File does not exist
    7/15/2013 09:08:45 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\core\PDApp.pimx.
    7/15/2013 09:08:45 [INFO] Setup - Finished Installing core package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\core\PDApp.pimx, Return status: 0
    7/15/2013 09:08:45 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\D6\D6.pimx
    7/15/2013 09:08:45 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\D6\D6.pimx
    7/15/2013 09:08:45 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\D6\D6.pimx
    7/15/2013 09:08:45 [INFO] PIM - XML is valid
    7/15/2013 09:08:45 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:45 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\D6\D6.pimx'
    7/15/2013 09:08:45 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\D6\D6.pima'
    7/15/2013 09:08:45 [INFO] PIM - Package id 54FD72DC-72EC-4CDC-8828-F07C4E9E6FA2 is already installed
    7/15/2013 09:08:45 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:08:45 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:08:45 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:08:45 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:08:45 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:08:45 [INFO] PIM - Backup Folder Created
    7/15/2013 09:08:46 [INFO] Utilities - File does not exist
    7/15/2013 09:08:49 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\D6\D6.pimx.
    7/15/2013 09:08:49 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\D6\D6.pimx
    7/15/2013 09:08:49 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DECore\DECore.pimx
    7/15/2013 09:08:49 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DECore\DECore.pimx
    7/15/2013 09:08:49 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DECore\DECore.pimx
    7/15/2013 09:08:49 [INFO] PIM - XML is valid
    7/15/2013 09:08:49 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:49 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DECore\DECore.pimx'
    7/15/2013 09:08:49 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DECore\DECore.pima'
    7/15/2013 09:08:49 [INFO] PIM - Package id 6D2A548B-C50D-46BA-B83E-C8199C6A9406 is already installed
    7/15/2013 09:08:49 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:08:49 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:08:49 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:08:49 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:08:49 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:49 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:08:49 [INFO] PIM - Backup Folder Created
    7/15/2013 09:08:51 [INFO] Utilities - File does not exist
    7/15/2013 09:08:53 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DECore\DECore.pimx.
    7/15/2013 09:08:53 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DECore\DECore.pimx
    7/15/2013 09:08:53 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DWA\DWA.pimx
    7/15/2013 09:08:53 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DWA\DWA.pimx
    7/15/2013 09:08:53 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DWA\DWA.pimx
    7/15/2013 09:08:53 [INFO] PIM - XML is valid
    7/15/2013 09:08:53 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:53 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DWA\DWA.pimx'
    7/15/2013 09:08:53 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DWA\DWA.pima'
    7/15/2013 09:08:55 [INFO] PIM - Package id 99477136-88AD-496B-9551-BAE72699A32C is already installed
    7/15/2013 09:08:55 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:08:55 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:08:55 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:08:55 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:08:55 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:08:55 [INFO] PIM - Backup Folder Created
    7/15/2013 09:08:55 [INFO] Utilities - File does not exist
    7/15/2013 09:08:58 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DWA\DWA.pimx.
    7/15/2013 09:08:58 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\DWA\DWA.pimx
    7/15/2013 09:08:58 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\P6\P6.pimx
    7/15/2013 09:08:58 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\P6\P6.pimx
    7/15/2013 09:08:58 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\P6\P6.pimx
    7/15/2013 09:08:58 [INFO] PIM - XML is valid
    7/15/2013 09:08:58 [WARN] PIM - Failed to find Node
    7/15/2013 09:08:58 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\P6\P6.pimx'
    7/15/2013 09:08:58 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\P6\P6.pima'
    7/15/2013 09:08:59 [INFO] PIM - Package id FAFC744B-DDFB-4097-A41D-7E9539FEBAF9 is already installed
    7/15/2013 09:08:59 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:08:59 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:08:59 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:08:59 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:08:59 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:08:59 [INFO] PIM - Backup Folder Created
    7/15/2013 09:09:03 [INFO] Utilities - File does not exist
    7/15/2013 09:09:11 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\P6\P6.pimx.
    7/15/2013 09:09:11 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\P6\P6.pimx
    7/15/2013 09:09:11 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\LWA\LWA.pimx
    7/15/2013 09:09:11 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\LWA\LWA.pimx
    7/15/2013 09:09:11 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\LWA\LWA.pimx
    7/15/2013 09:09:11 [INFO] PIM - XML is valid
    7/15/2013 09:09:11 [WARN] PIM - Failed to find Node
    7/15/2013 09:09:11 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\LWA\LWA.pimx'
    7/15/2013 09:09:11 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\LWA\LWA.pima'
    7/15/2013 09:09:11 [INFO] PIM - Package id B322281B-C04F-438E-82D7-7DA34A359526 is already installed
    7/15/2013 09:09:11 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:09:11 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:09:11 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:09:12 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:09:12 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:09:12 [INFO] PIM - Backup Folder Created
    7/15/2013 09:09:15 [INFO] Utilities - File does not exist
    7/15/2013 09:09:23 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\LWA\LWA.pimx.
    7/15/2013 09:09:23 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\LWA\LWA.pimx
    7/15/2013 09:09:23 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\UWA\UWA.pimx
    7/15/2013 09:09:23 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\UWA\UWA.pimx
    7/15/2013 09:09:23 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\UWA\UWA.pimx
    7/15/2013 09:09:23 [INFO] PIM - XML is valid
    7/15/2013 09:09:23 [WARN] PIM - Failed to find Node
    7/15/2013 09:09:23 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\UWA\UWA.pimx'
    7/15/2013 09:09:23 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\UWA\UWA.pima'
    7/15/2013 09:09:24 [INFO] PIM - Package id B1313DE3-08DF-4834-91D9-CBD1A91488E5 is already installed
    7/15/2013 09:09:24 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:09:24 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:09:24 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:09:24 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:09:24 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:09:24 [INFO] PIM - Backup Folder Created
    7/15/2013 09:09:25 [INFO] Utilities - File does not exist
    7/15/2013 09:09:31 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\UWA\UWA.pimx.
    7/15/2013 09:09:32 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\UWA\UWA.pimx
    7/15/2013 09:09:32 [INFO] Setup - Start Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\CCM\CCM.pimx
    7/15/2013 09:09:32 [INFO] PIM - START installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\CCM\CCM.pimx
    7/15/2013 09:09:32 [INFO] PIM - Trying to access xml at path:C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\CCM\CCM.pimx
    7/15/2013 09:09:32 [INFO] PIM - XML is valid
    7/15/2013 09:09:32 [WARN] PIM - Failed to find Node
    7/15/2013 09:09:32 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\CCM\CCM.pimx'
    7/15/2013 09:09:32 [INFO] PIM - Validating package file: 'C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\CCM\CCM.pima'
    7/15/2013 09:09:32 [INFO] PIM - Package id F0158AAB-0779-4B40-A07D-3F2A21D47E74 is already installed
    7/15/2013 09:09:32 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    7/15/2013 09:09:33 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    7/15/2013 09:09:33 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    7/15/2013 09:09:33 [INFO] PIM - SUCCESS insertPackageUpdateList.
    7/15/2013 09:09:33 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    7/15/2013 09:09:33 [INFO] PIM - Backup Folder Created
    7/15/2013 09:09:33 [INFO] Utilities - File does not exist
    7/15/2013 09:09:35 [INFO] Utilities - Path to Process :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe Process Directory :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities arguments being passed :"C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe" --register=true --createShortcut=true
    7/15/2013 09:09:36 [INFO] Utilities - Success in CreateProcess
    7/15/2013 09:09:37 [INFO] Utilities - Sucessfully launched and executed process...
    7/15/2013 09:09:37 [INFO] PIM - Successfully executed install modifier at path: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe'
    7/15/2013 09:09:37 [INFO] PIM - SUCCESS installPackage at file C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\CCM\CCM.pimx.
    7/15/2013 09:09:37 [INFO] Setup - Finished Installing package - C:\New folder (2)\Adobe Presenter 8\Build\ASU\packages\CCM\CCM.pimx
    7/15/2013 09:09:37 [INFO] PIM - Processing ... _pimCreateOrUpdateAAMInventory
    7/15/2013 09:09:37 [INFO] PIM - Inventory Already present on the machine...
    7/15/2013 09:09:37 [INFO] Setup - TimeLog: End Installing. Now launching PDApp
    7/15/2013 09:09:37 [INFO] Setup - Deployment File Path not specified in command line arguments. Skipping payload deployment part
    7/15/2013 09:09:37 [INFO] Setup - =================  End Adobe Setup. Exit code: 0  =================
    7/15/2013 09:09:37 [INFO] PIM - PIMSqlite closeDB status 0
    7/15/2013 09:09:37 [INFO] PIM - FREE PIM Instance ...
    7/15/2013 09:09:37 [INFO] DeploymentManager - Build Version - 3.1.105.0
    7/15/2013 09:09:37 [INFO] DeploymentManager - Logging Level verbosity Set  to 4
    7/15/2013 09:09:37 [INFO] DeploymentManager - The return code from the Bootstrapper Process is (0).
    7/15/2013 09:09:37 [INFO] DeploymentManager - Correcting Dependencies in local db.
    7/15/2013 09:09:37 [INFO] DeploymentManager - No media db present on the machine.
    7/15/2013 09:09:37 [INFO] DeploymentManager - STEP 4: Starting to launch Adobe Installer.
    7/15/2013 09:09:37 [INFO] DeploymentManager - Obtained Adobe Common Folder Path.
    7/15/2013 09:09:37 [INFO] DeploymentManager - Adobe Installer launch location is :: C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    7/15/2013 09:16:50 [INFO] AAMEEUtilities - Process creation completed.
    7/15/2013 09:16:50 [FATAL] DeploymentManager - The return code from the Adobe Installer Process is (6).Stopping the installation process.
    7/15/2013 09:16:50 [INFO] DeploymentManager - Starting to clean the partially installed payloads.
    7/15/2013 09:16:50 [INFO] DeploymentManager - Undeployment XML created at path :: D:\Users\Vmbuild\AppData\Local\Temp\{2592DDC9-72BD-430A-B2EA-C2839B69B46E}\\{EE4FEE4B-4C1 3-44E5-8C22-230423DB10EF}
    7/15/2013 09:16:50 [INFO] DeploymentManager - Starting to launch the Adobe Installer for uninstall mode.
    7/15/2013 09:16:50 [INFO] DeploymentManager - Obtained Adobe Common Folder Path.
    7/15/2013 09:16:50 [INFO] DeploymentManager - C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe
    7/15/2013 09:20:21 [INFO] PIM-Uninstall - Build Version - 6.2.136.0
    7/15/2013 09:20:21 [INFO] PIM-Uninstall - Logging Level verbosity Set  to 4
    7/15/2013 09:20:21 [INFO] PIM-Uninstall - Start: Adobe Application Manager Uninstall...
    7/15/2013 09:20:21 [INFO] PIM-Uninstall - Get RIBS Product count
    7/15/2013 09:20:21 [INFO] PIM-Uninstall - RIBS Products install status
    7/15/2013 09:20:21 [INFO] PIM-Uninstall - Get NON RIBS Product count
    7/15/2013 09:20:21 [INFO] Utilities - Folder does not exist
    7/15/2013 09:20:21 [INFO] PIM-Uninstall - AAMRefs folder  does not exists. Non-Ribs products does not exist on the system
    7/15/2013 09:20:21 [INFO] PIM-Uninstall - NON RIBS Products install status
    7/15/2013 09:20:21 [INFO] Utilities - File does not exist
    7/15/2013 09:20:22 [INFO] Utilities - File does not exist
    7/15/2013 09:20:22 [INFO] PIM-Uninstall - Launching RemoveAAM from: C:\Program Files (x86)\Common Files\Adobe\RemoveAAM.bin
    7/15/2013 09:20:22 [INFO] UninstallAAM - argc: 2
    7/15/2013 09:20:22 [INFO] UninstallAAM - Loading PIM.dll from: C:\Program Files (x86)\Common Files\Adobe\AdobePIM.dll
    7/15/2013 09:20:22 [INFO] AAMEEUtilities - Process creation completed.
    7/15/2013 09:20:22 [INFO] DeploymentManager - The return code from the Adobe Installer Process is (0).
    7/15/2013 09:20:22 [INFO] DeploymentManager - Provisioning tool launch location is :: D:\Users\Vmbuild\AppData\Local\Temp\{0EAD2103-39AF-4D85-B942-CAC0E462C482}\\{731F139B-D8D 6-4870-AA90-9626C4D6D4E2}
    7/15/2013 09:20:22 [INFO] PIM-Uninstall - Build Version - 6.2.136.0
    7/15/2013 09:20:22 [INFO] PIM-Uninstall - Logging Level verbosity Set  to 4
    7/15/2013 09:20:22 [INFO] PIM-Uninstall - Killing all Non-Deployment workflows
    7/15/2013 09:20:22 [INFO] PIM-Uninstall - Check and wait on Adobe installer (Bootstrapper) if running...
    7/15/2013 09:20:22 [INFO] PIM-Uninstall - Check and wait on Adobe installer (RIBS) if running...
    7/15/2013 09:20:22 [INFO] PIM-Uninstall - Check and wait if ACF is locked...
    7/15/2013 09:20:22 [INFO] PIM-Uninstall - Check and close Adobe Application Manager notifiers...
    7/15/2013 09:20:22 [INFO] Utilities - Semaphore is not locked
    7/15/2013 09:20:22 [INFO] PIM - Executing install modifiers
    7/15/2013 09:20:22 [INFO] PIM - Build Version - 6.2.136.0
    7/15/2013 09:20:22 [INFO] PIM - Logging Level verbosity Set  to 4
    7/15/2013 09:20:22 [INFO] PIM - CREATE PIM Instance ...
    7/15/2013 09:20:22 [INFO] Utilities - File does not exist
    7/15/2013 09:20:22 [INFO] PIM - trying to createOrUpdatePIMDbSchema.
    7/15/2013 09:20:22 [INFO] PIM - Current db schema version on machine 1.
    7/15/2013 09:20:22 [INFO] PIM - Current db schema version to install 1.
    7/15/2013 09:20:22 [INFO] PIM - PIM DB Schema is up to date. Current schema version is 1.
    7/15/2013 09:20:22 [INFO] PIM - PIM Database is Up To Date.
    7/15/2013 09:20:23 [INFO] Utilities - Path to Process :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe Process Directory :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities arguments being passed :"C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe" --unregister=true --deleteShortcut=true
    7/15/2013 09:20:23 [INFO] Utilities - Success in CreateProcess
    7/15/2013 09:20:23 [INFO] AAMEEUtilities - Process creation completed.
    7/15/2013 09:20:23 [INFO] DeploymentManager - The return Code from Provisioning Tool (0).
    7/15/2013 09:20:23 [INFO] DeploymentManager - Provisioning Tool has successfully UnSerialize the product.
    7/15/2013 09:20:23 [INFO] DeploymentManager - The install workflow is terminating.
    7/15/2013 09:20:25 [INFO] Utilities - Sucessfully launched and executed process...
    7/15/2013 09:20:25 [INFO] PIM - Successfully executed uninstall modifier at path: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe'
    7/15/2013 09:20:25 [INFO] PIM - PIMSqlite closeDB status 0
    7/15/2013 09:20:25 [INFO] PIM - FREE PIM Instance ...
    7/15/2013 09:20:33 [INFO] UninstallAAM - Self delete called to delete RemoveAAM.bin and AdobePIM.dll...

    Office 2010 64 bit as dependency.
       2. Registry used to fool the application that 64 bit version of PowerPoint is already installed.
    Although source works with 32 bit powerPoint . but MSI need 64 bit powerpoint .

  • Creating Packages and Prefix in ABAP proxies

    HI,
    How to create Packages in ABAP .. while using custmized packages ZTAFE its giving the below error..
    Package ZTAFE has no use access to package
    interface SAI_TOOLS
    regards,
    Kishore

    Hi ,
    inculde the interface SAI_TOOLS under Use Access..
    check this doc creating a package....
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6066fbe8-edc4-2910-9584-a9601649747d
    hope this helps...

  • Why created package with SE80 can't be found in Transport Connection?

    We want to transport our custom InfoCubes from Developement environment to Test environment:
    RSA1 -> Transport Connection, select an InfoCube we created and drag it over to the right frame, group it by "In Dataflow Before and Afterwards".  The Package column shows it's attached to $TMP that we would have to change it to a custom package that it can be transported over.  We click the Package picture icon with a pencil trying to change the package attached from $TMP to a custom one, but can't find any custom package we created with SE80 from here.  Could someone tell us why?
    Thanks

    hey AHP,
    Yeh, if I run rsdcube and follow the menu you specified, I can assign the InfoCube to the custom package I created with SE80.  I wonder why it's to work in this way?  If clicking the Package picture icon with pencil in Transport Connection doesn't work or successfully to bring up the correct custom package we created, then why SAP has this stupid picture icon over there to mislead our developers?
    You asked me how we created the custom package, we created them with SE80. 
    BTW, someone says that's BASIS work to create package to do the transports in their companies, how about your company?  You don't have to create custom package and just assign the objects to the package BASIS creates for you?
    Also someone says the ideal transport strategy is to group by "Necessary" other than "Dataflow Before and Afterwards", how do you think?
    Thanks

  • Trying to create package and do not understand error message

    What is wrong with this statement. Its say ASH411APPROVALEMAIL_PKG is not declared. I am trying to create it. Whats wrong?
    ERROR MESSAGE
    I get the following error.
    Error at line 1: PLS-00201: IDENTIFIER 'ASH411APPROVALEMAIL_PKG' must be declared1. CREATE OR REPLACE PACKAGE BODY ASH411APPROVALEMAIL_PKG
    2. AS
    3. PROCEDURE ASH411APPROVALEMAIL_async (P_ATS_NO NUMBER
    CODE
    CREATE OR REPLACE PACKAGE BODY ASH411APPROVALEMAIL_PKG
    AS
    PROCEDURE ASH411APPROVALEMAIL_async (P_ATS_NO NUMBER)
    AS
    BEGIN
    DBMS_SCHEDULER.define_program_argument (program_name => 'ASH411APPROVALEMAIL',
    argument_position => 1,
    argument_name => 'P_ATS_NO',
    argument_type => 'NUMBER'
    --,DEFAULT_VALUE => whatever_value
    DBMS_SCHEDULER.ENABLE (NAME => 'ASH411APPROVALEMAIL');
    DBMS_SCHEDULER.create_job (job_name => 'ASH411APPROVALEMAIL_JOBNAME'
    || P_ATS_NO,
    program_name => 'ASH411APPROVALEMAIL',
    enabled => TRUE,
    comments => 'Comments'
    EXCEPTION
         WHEN NO_DATA_FOUND THEN
         null;
    END ASH411APPROVALEMAIL_async;
    end ASH411APPROVALEMAIL_PKG;

    Hi, Howard,
    csphard wrote:
    Now when I go back and create the package again with the procedures it say package body created but does not
    display anything."Package body created" is all it ever says (unless there's an error message).
    How do I see the procedures I just created when I ran the package again with the procedures?If you want to see the source code, look at the CREATE PACKAGE BODY command in the script you just ran, or query the data dictionary view user_source:
    SELECT       text
    FROM       user_source
    WHERE       name     = 'ASH411APPROVALEMAIL_PKG'
    AND       type     = 'PACKAGE BODY'
    ORDER BY  line
    ;

  • Creating Package

    hi sir,
    What is the t-code for creating package other than se80
    i got some problem with se80.
    thanks & regards
    prabhakar

    Moderator message - Welcome to SCN.
    You can learn a lot just by looking. If you need a transaction, go to the transaction builder (SE93) and look for transactions with the word package in the description.
    Rob

  • Problem with oracle packages CREATE PACKAGE some packagename in MaxDB

    Hi All,
    I am having Problems in Creating Packages from MaxDB ..Does MaxDB supports the CREATE PACKAGE <some packagename>concept ? if so please help me how to achieve in creating packages ..
    My sample Oracle package Creation is as follows:
    CREATE OR REPLACE PACKAGE BODY acs
    AS
      FUNCTION add_user (
        user_id     IN users.user_id%TYPE DEFAULT NULL,
        object_type     IN acs_objects.object_type%TYPE DEFAULT 'user',
        creation_date   IN acs_objects.creation_date%TYPE DEFAULT sysdate,
        creation_user   IN acs_objects.creation_user%TYPE DEFAULT NULL,
        creation_ip     IN acs_objects.creation_ip%TYPE DEFAULT NULL,
      ) RETURN users.user_id%TYPE
      IS
        v_user_id       users.user_id%TYPE;
        v_rel_id        membership_rels.rel_id%TYPE;
      BEGIN
        v_user_id := acs_user.new (user_id, object_type, creation_date,
                    creation_user, creation_ip, email, ...
        RETURN v_user_id;
      END;
    END acs;
    show errors Can you Please Explain me how to write the same Package in MaxDB?
    Thanks & Regards,
    Shanmukh
    Edited by: shanmukh babu on May 16, 2008 10:11 AM

    Hi Shanmukh,
    MaxDB does not have packages like you'll find them in Oracle.
    But you can define your own functions and procedures.
    From the code-example you posted, I would say that a procedure will do it ...
    I suggest that you first read the documentation on procedures [CREATE DBPROC Statement|http://maxdb.sap.com/doc/7_6/a7/41ee11605911d3a98800a0c9449261/frameset.htm]
    There you'll also find an example in the Tutorial section.
    Be aware that the procedural capabilities of MaxDB are far less enlarged as in Oracle - but they do exist and work in their realm.
    So porting a full PL/SQL application layer to MaxDB procedures may turn out to be quite difficult and/or not the best choice at all.
    KR Lars

  • When I do a package my adobe-id is sign in and is the default account. How can I fix so that no account is sign in when creating package. Regards Daniel

    When I do a package my adobe-id is sign in and is the default account. How can I fix so that no account is sign in when creating package. Regards Daniel

    Moving this discussion to the Enterprise Deployment for Creative Cloud, Creative Suite forum.

  • How can I create packages procedure & function in user-define Library

    hi.
    i am already created packages procedure & function in database and use so on.
    now i would like to create these in library file.
    please anyone give me example of any procedure or function to store in library.
    thanks
    Ali

    <FONT FACE="Arial" size=2 color="2D0000">> please send me one simple example for create library
    then create any function in library.
    2nd is any package can be create in library or not??
    Thanks S.K
    AliHave you checked the link?
    A simple example is provided.
    I think What I understood from your post is that, you want to put function/ Proc and want to call that as Library ..
    Which is not  possible.
    For exampel an external routine is a third-generation language procedure stored in a
    dynamic link library (DLL), registered with PL/SQL, and called by the DBA to perform
    special-purpose processing.
    In Unix a dynamic link library is known as a shared object (so).
    At run time, PL/SQL loads the library dynamically, then calls the routine as if it were a
    PL/SQL subprogram. To safeguard our database, the routine runs in a separate address
    space, but it participates fully in the current transaction. Furthermore, the routine can
    make a call back to the database to perform SQL operations.
    To identify a DLL we have to use CREATE LIBRARY command.
    The CREATE LIBRARY command is used to create a schema object, library, which
    represents an operating-system shared library, from which SQL and PL/SQL can call
    external third-generation-language (3GL) functions and procedures.
    Learn something more on External Procedures
    -SK
    </FONT>

  • Generate-Script generates only create package not create or replace package

    Hello,
    I try do work with the Oracle Developer Tools for Visual Studio 2010 to include my PL/SQL-code in TFS. I have include all my PL/SQL-code in a Oracle-Projekt and check it in. Than I'm working with Visual Studio to update my packages. I open a package from the Server-Explorer, debug and compile it. When finished, I want to check in the new code. For this I call Generate Create-Script in the Server-Explorer and save the code my project. This code starts with CREATE PACKAGE ...
    If I start this script on our production-system I get the error ORA-00955: Es gibt bereits ein Objekt mit diesem Namen (There is a object with this name ...). So it would be better the Create-Script would start with CREATE OR REPLACE PACKAGE .... Is there a way to do this? When not, what is the recommended workflow for coding, debugging, compiling and checking in TFS?
    Thanks
    Peter

    Same remark here...

Maybe you are looking for

  • Adobe Flash Player Installation

    Dear Support Team, My Adobe Flash Player release 9 was running fine. When I try update to release 10 I get a error message and installation end. After that my flash player does not run. I tried your tn_19166 procedures without success (your installat

  • IDoc message type cut off in WE02

    Hi, i have IDoc2IDoc Scenario. I already checked IDx1 and IDx2 for IDoc Metadata and in SXMB_MONI the Inbound IDoc looks like it should with right Basic and MessageType of the IDoc. But when i check WE02 in reciever system the Message type is cut. In

  • New VeriSign requirement

    I was told by VeriSign that I must renew my certificates this year by removing the "Subject Alternative Names" from my CSR. Does anyone know how this is done while using sapgenpse. To my knowledge, I never added more than one domain name to my CSR. D

  • Where is picture stored

    Hi, Where are files i.e. Images/Videos stored physically in iPhoto 11. Thanks, Aks

  • Having trouble downconverting from HD to SD

    Used Shane's stock answer #42 but everything looks stretched vertically. Used pan and scan in DVD SP. What can I be doing wrong? Would really appreciate some thoughts from the folks in the know. I exported a reference movie out of FCP then dropped th