IDML to a script package

Hey everyone, I was wondering if I can get support.

I have this Amazing of Kasyan Servetsky script.

It packages separated several files in packages, which includes:

INDD

Fonts in documents Fonts within the folder (folder)

Instructions.txt

Links (Folder) Links inside the folder

In any case of adding this script in a bit of an IDML file follow structure of 2014 to Indesign package?

Kasyan Servetsky Script are:

Package for Archive.jsx

Script for InDesign CS3, CS4 and CS5 - packages all InDesign documents in the selected folder.

Version 4.0

April 1, 2011

Written by Kasyan Servetsky

// http://www.Kasyan.HO.com.UA

/ / e-mail: [email protected]

//---------------------------------------------------------------------------------------- ----------------------

const gScriptName = "PackageForArchive";

const gScriptVersion = "4.0";

var myInDesignVersion = Number (String (app.version).split(".") [0]);

myFolder var is Folder.selectDialog ("select a package folder");.

If (myFolder == null) exit();

var myFilelist = [];

var myAllFilesList = myFolder.getFiles ();

for (var f = 0; f < myAllFilesList.length; f ++) {}

var myFile = myAllFilesList [f];

If (instanceof file myFile & & myFile.name.match(/\.indd$/i)) {}

myFilelist.push (myFile);

}

}

If (myFilelist.length == 0) {}

Alert ("No file open.", "no package for the script to archive");

Exit();

}

var myDialogResult = CreateDialog();

If (myDialogResult == undefined) {}

Exit();

}

If {(myDialogResult.createLogCheckBox)

WriteToFile (GetDate() + "\r---Script started-" + "-\n");

WriteToFile ("\rSelected file -" + myFolder.fsName.replace ("/ Volumes /", "") + "\n");

}

var myOutFolder = new file (myFolder.fsName + ' / Archive / ');

VerifyFolder (myOutFolder);

var myBackUpFolder = new file (myFolder.fsName + ' / BackUp / ');

VerifyFolder (myBackUpFolder);

If (myFolder.fsName == myOutFolder.fsName) exit();

var myCounter = 1;

app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;

Progress bar

If (myInDesignVersion > = 5) {}

var myProgressWin is new window ('window', 'Package files');.

var myProgressBar = myProgressWin.add ('progressbar', 12, 12, 350 (24) and 0, myFilelist.length);

var myProgressTxt = myProgressWin.add ("statictext', undefined, 'Departure package files');

myProgressTxt.bounds = [0, 0, 340, 20];

myProgressTxt.alignment = 'left ';

myProgressWin.show ();

} / / Progress bar

for (var i = myFilelist.length - 1; i > = 0; i--) {}

var myCurrentFile = myFilelist [i];

var myNewName = GetNameWithoutExtension (myCurrentFile);

try {}

myDoc var = app.open (myCurrentFile, false);

var myDocName = myDoc.name;

Progress bar

If (myInDesignVersion > = 5) {}

myProgressBar.value = myCounter;

myProgressTxt.text = String ("File-" + myDocName + "(" + myCounter + "de" + myFilelist.length + ") '");

} / / Progress bar

UpdateAllOutdatedLinks();

var MonNouveauDossier = new file (myOutFolder.fsName + "/" + myNewName);

VerifyFolder (myNewFolder);

If (myInDesignVersion == 5) {}

var myPackageOk = myDoc.packageForPrint (MonNouveauDossier, myDialogResult.copyFontsCheckBox, myDialogResult.copyGraphicsCheckBox, false, myDialogResult.updateGraphicsCheckBox, myDialogResult.ignorePreflightErrorsCheckBox, myDialogResult.createReportCheckBox);

}

ElseIf (myInDesignVersion > 5) {}

var myPackageOk = myDoc.packageForPrint (MonNouveauDossier, myDialogResult.copyFontsCheckBox, myDialogResult.copyGraphicsCheckBox, false, myDialogResult.updateGraphicsCheckBox, myDialogResult.includeHiddenLayers, myDialogResult.ignorePreflightErrorsCheckBox, myDialogResult.createReportCheckBox);

}

If (myPackageOk & & myDialogResult.createLogCheckBox) {}

WriteToFile (myCounter + "-" + myCurrentFile.fsName.replace ("/ Volumes /", "") + ""-Ok\n "");

myCounter ++;

CatchMissingLinks (myDoc);

}

myDoc.close (SaveOptions.NO);

var myMoved = MoveFile (myCurrentFile, myBackUpFolder);

If (! myMoved & & myDialogResult.createLogCheckBox) WriteToFile (myCounter + "-ERROR - cannot move-'" + myCurrentFile.fsName.replace ("/ Volumes /", "") + "-" to backup folder\n");

}

{catch (e)}

If (myDialogResult.createLogCheckBox) WriteToFile (myCounter + "- ERROR -" + myCurrentFile.fsName.replace ("/ Volumes /", "") & "-" e + "\n");

myCounter ++;

continue;

}

} / / end of loop

Progress bar

If (myInDesignVersion > = 5) {}

myProgressWin.close ();

} / / Progress bar

app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;

If (myDialogResult.createLogCheckBox) WriteToFile ("over - \r---Script" + GetDate() + "-\r\r");

Alert ("done.", "package for the script to archive");

// ------------------------------------------------- FUNCTIONS -------------------------------------------------

function UpdateAllOutdatedLinks() {}

for (var j = myDoc.links.length - 1; j > = 0; j-) {}

myLink var = myDoc.links [j];

If (myLink.status == LinkStatus.linkOutOfDate) {}

try {}

myLink.update ();

}

{catch (e)}

If (myDialogResult.createLogCheckBox) WriteToFile ("UPDATED LINK - \tCAN'T" + myLink.name + "\n");

}

}

}

}

//---------------------------------------------------------------------------------------- ----------------------

function WriteToFile (myText) {}

myFile = new File ("~/Desktop/Package for Archive Report.txt");

If {(myFile.exists)

myFile.open ("e");

myFile.seek (0, 2);

}

else {}

myFile.open ("w");

}

myFile.write (myText);

myFile.close ();

}

//---------------------------------------------------------------------------------------- ----------------------

function GETDATE () {}

var myDate = new Date();

If ((myDate.getYear () - 100) < 10) {}

var myYear is '0' + new String ((myDate.getYear () - 100));.

} else {}

var myYear = new String ((myDate.getYear () - 100));

}

var myDateString = (myDate.getMonth () + 1) + "/" + myDate.getDate () + "/" + myYear + "" + myDate.getHours () + ":" + myDate.getMinutes () + ":" + myDate.getSeconds ();

Return myDateString;

}

//---------------------------------------------------------------------------------------- ----------------------

The functions GetNameWithoutExtension and VerifyFolder have been drafted on the basis of the Bob Stucky

extensions of prototypes of the object found in his library of Script

function GetNameWithoutExtension (myFile) {}

var myFileName = myFile.name;

myIndex = myFileName.lastIndexOf var ('. ');

If (myIndex >-1) {}

myFileName = myFileName.substr (0, myIndex);

}

Return myFileName.

}

//---------------------------------------------------------------------------------------- ----------------------

function VerifyFolder (myFolder) {}

If (! myFolder.exists) {}

var myFolder = new Folder (myFolder.absoluteURI);

var myArray1 = new Array();

While (! myFolder.exists) {}

myArray1.push (myFolder);

myFolder = new Folder (myFolder.path);

}

myArray2 = new Array();

While (myArray1.length > 0) {}

myFolder = myArray1.pop ();

If (myFolder.create ()) {}

myArray2.push (myFolder);

} else {}

While (myArray2.length > 0) {}

myArray2.pop.remove ();

}

throw the "creating folders failed."

}

}

}

}

//---------------------------------------------------------------------------------------- ----------------------

function CatchMissingLinks (myDoc) {}

var myMissingLinks = new Array;

myLinks var = myDoc.links;

myHeader var = false;

for (var i = 0; i < myLinks.length; i ++) {}

If (myLinks [i] .status == LinkStatus.linkMissing) {}

var myLinkName is myLinks [i] .name;.

If (! myHeader) {}

WriteToFile ("\tMISSING LINKS:\r");

myHeader = true;

WriteToFile ("\t" + myLinkName + "\r");

}

}

}

}

//---------------------------------------------------------------------------------------- ----------------------

function CreateDialog() {}

mySettings var = GetSettings();

var myDialog is new window ("dialog", "All for the Archive");.

myDialog.orientation = "column";

myDialog.alignChildren = 'top';

var myFolderPanel = myDialog.add ("panel", undefined, ':'); package folder

myFolderPanel.alignment = 'bridge '.

var myFolderPanelStTxt1 = myFolderPanel.add ('statictext', not defined, myFolder.fsName.replace ("/ Volumes /", ""));

var myFolderPanelStTxt2 = myFolderPanel.add ('statictext', undefined, ' (Found ' + myFilelist.length + ' files)');

var myCheckBoxPnl = myDialog.add ('panel', undefined, "Options");

myCheckBoxPnl.orientation = "row";

var myCheckBoxGroup1 = myCheckBoxPnl.add ('group');

myCheckBoxGroup1.orientation = "column";

myCheckBoxGroup1.alignChildren = 'left ';

var myCheckBoxGroup2 = myCheckBoxPnl.add ('group');

myCheckBoxGroup2.orientation = "column";

myCheckBoxGroup2.alignChildren = 'left ';

var myCopyFontsCheckBox = myCheckBoxGroup1.add ('checkbox', undefined, 'Copy the fonts');

myCopyFontsCheckBox.value = mySettings.copyFontsCheckBox;

myCopyFontsCheckBox.helpTip = "If checked, fonts used in the document in the package folder copies."

var myCopyGraphicsCheckBox = myCheckBoxGroup1.add ('checkbox', undefined, 'Copy linked graphics');

myCopyGraphicsCheckBox.value = mySettings.copyGraphicsCheckBox;

myCopyGraphicsCheckBox.helpTip = "If checked, copies graphics files in the package folder.";

var myUpdateGraphicsCheckBox = myCheckBoxGroup1.add ('checkbox', undefined, 'Update of the graphics');

myUpdateGraphicsCheckBox.value = mySettings.updateGraphicsCheckBox;

myUpdateGraphicsCheckBox.helpTip = "If checked, updates graphic links to the package folder.";

If {(myInDesignVersion > 5)

var myIncludeHiddenLayersCheckBox = myCheckBoxGroup1.add ('checkbox', undefined, 'Include hidden layers');

myIncludeHiddenLayersCheckBox.value = mySettings.includeHiddenLayers;

myIncludeHiddenLayersCheckBox.helpTip = "If checked, copy fonts and layer links hidden in the package. ';

}

var myIgnorePreflightErrorsCheckBox = myCheckBoxGroup2.add ('checkbox', undefined, "Ignore preflight errors");

myIgnorePreflightErrorsCheckBox.value = mySettings.ignorePreflightErrorsCheckBox;

myIgnorePreflightErrorsCheckBox.helpTip = "If checked, ignores preflight errors and proceeds to packaging." If not, cancel the package when exist errors. « ;

var myCreateReportCheckBox = myCheckBoxGroup2.add ('checkbox', undefined, 'Create a report');

myCreateReportCheckBox.value = mySettings.createReportCheckBox;

myCreateReportCheckBox.helpTip = "If checked, creates a report of package which includes printing instructions, print settings, font lists, links, and inks required and other information."

var myCreateLogCheckBox = myCheckBoxGroup2.add ('checkbox', undefined, 'Create a log on the desktop file');

myCreateLogCheckBox.value = mySettings.createLogCheckBox;

myCreateLogCheckBox.helpTip = "If checked, creates a log file on the desktop that includes error messages;

var myOkCancelGroup = myDialog.add ('group');

myOkCancelGroup.orientation = "row";

myOkCancelGroup.alignment = 'center ';

var myOkBtn = myOkCancelGroup.add ('button', undefined, 'Go', {name: 'ok'});

var myCancelBtn = myOkCancelGroup.add ('button', undefined, 'Quit', {name: "Cancel"});

var myShowDialog = myDialog.show ();

If (myShowDialog == 1) {}

Ditto var = {};

myResult.copyFontsCheckBox = myCopyFontsCheckBox.value;

myResult.copyGraphicsCheckBox = myCopyGraphicsCheckBox.value;

myResult.updateGraphicsCheckBox = myUpdateGraphicsCheckBox.value;

If (myInDesignVersion > 5) myResult.includeHiddenLayers = myIncludeHiddenLayersCheckBox.value;

myResult.ignorePreflightErrorsCheckBox = myIgnorePreflightErrorsCheckBox.value;

myResult.createReportCheckBox = myCreateReportCheckBox.value;

myResult.createLogCheckBox = myCreateLogCheckBox.value;

myResult.folder = myFolder;

app.insertLabel ("Kas_" + gScriptName, + gScriptVersion, myResult.toSource ());

}

return same;

}

//---------------------------------------------------------------------------------------- ----------------------

function GetSettings() {}

var mySettings = eval (app.extractLabel ("Kas_" + gScriptName + gScriptVersion));

If (mySettings == undefined) {}

mySettings = {copyFontsCheckBox:false, copyGraphicsCheckBox:true, updateGraphicsCheckBox:true, includeHiddenLayers:true, ignorePreflightErrorsCheckBox:true, createReportCheckBox:false, createLogCheckBox:true};

}

return of mySettings;

}

//---------------------------------------------------------------------------------------- ----------------------

function {MoveFile (myFile, MyAccount)

If (! instanceof file myFile |! myFolder instanceof file |! myFile.exists:! myFolder.exists) return false;

var myMovedFile = new File (myFolder.absoluteURI + "/" + myFile.name);

If (File.fs == "Windows") {}

var myVbScript is 'Set fs = CreateObject ("Scripting.FileSystemObject") \r';.

myVbScript += ' fs. MoveFile ' "+ myFile.fsName + '" ', ' "+ myFolder.fsName + ' \" ' ';

app.doScript (myVbScript, ScriptLanguage.visualBasic);

}

Else if (File.fs == "Macintosh") {}

If (myFolder.fsName.match ('Desktop')! = null) {}

var myMacFolder = myFolder.fsName.replace (/ \ / / g, ":");)

var myMacFile = myFile.fsName.replace (/ \ / / g, ":");)

var myAppleScript = 'tell application "Finder" \r ";

myAppleScript += ' defines MyAccount in a reference to the folder (name of the startup disk & "' + myMacFolder +" "") \r';

myAppleScript += ' set a reference to the file myFile (name of the startup disk & "' + myMacFile +" "") \r';

myAppleScript += 'say myFile\r';

myAppleScript += 'move to myFolder\r ";

myAppleScript += 'end tell\r;

myAppleScript += 'end tell\r;

}

ElseIf (myFolder.fsName.match ("Documents")! = null) {}

var myMacFolder = myFolder.fsName.replace (/ \ / / g, ":");)

var myMacFile = myFile.fsName.replace (/ \ / / g, ":");)

var myAppleScript = 'tell application "Finder" \r ";

myAppleScript += ' defines MyAccount in a reference to the folder (name of the startup disk & "' + myMacFolder +" "") \r';

myAppleScript += ' set a reference to the file myFile (name of the startup disk & "' + myMacFile +" "") \r';

myAppleScript += 'say myFile\r';

myAppleScript += 'move to myFolder\r ";

myAppleScript += 'end tell\r;

myAppleScript += 'end tell\r;

}

else {}

var myMacFolder = myFolder.fullName.replace(/\//, "") .replace (/ \ / / g, ":");)

var myMacFile = myFile.fullName.replace(/\//, "") .replace (/ \ / / g, ":");)

var myAppleScript = 'tell application "Finder" \r ";

myAppleScript += ' set MyFolder to folder ' "+ myMacFolder +" "\r";

myAppleScript += ' myFile value document file ' "+ myMacFile +" "\r";

myAppleScript += 'say myFile\r';

myAppleScript += 'move to myFolder\r ";

myAppleScript += 'end tell\r;

myAppleScript += 'end tell\r;

}

app.doScript (myAppleScript, ScriptLanguage.applescriptLanguage);

}

If {(myMovedFile.exists)

Returns true;

}

else {}

Returns false;

}

}

Incredibly, he is to replace calls to packageForPrint by the new CC2014 call:

var includeIdml = true;

var myPackageOk = myDoc.packageForPrint (MonNouveauDossier, myDialogResult.copyFontsCheckBox, myDialogResult.copyGraphicsCheckBox, false, myDialogResult.updateGraphicsCheckBox, myDialogResult.ignorePreflightErrorsCheckBox, myDialogResult.createReportCheckBox, includeIdml);

Tags: InDesign

Similar Questions

  • Help! Script 'package to print '.

    Hi all

    I have a script to 'Package of printing' specific, which requires a small modification, and I was hoping someone could help me.

    Essentially, I need to OMIT"PDF"include "option when the packaging, because it makes things a bit wobbly on my script (see below).

    Let me know if you need to see the script, and I'll post it.

    Thank you.

    Screen Shot 2014-07-05 at 8.43.22 PM.png

    Hello

    Parham took my advice and hired me and I got to the road of the problem

    The packageForPrint method has changed for 2014. He now has a couple of additional variables that are not in previous versions.

    The extra being include pdf (which at least on the system of Parham was defined as true) and include file idml.

    When these values were not the pdf has been included as a mess.

    The solution was simple, it just took a little time to get to the route of the problem.

    I think that it is high time we said one that is changing post, so I think I do now.

    Trevor

     if (CC2014) {
          if (doc.packageForPrint(originalsFolder, f.fonts.value, f.links.value, f.profiles.value, f.update.value, f.hiddenContent.value, f.ignore.value, f.report.value, f.idml.value, f.pdf.value, undefined, undefined, true)) {
          } else {
            Err.FatalError('Failed to package.');
          }
        }
        else { // pre CC014
    if (doc.packageForPrint(originalsFolder, f.fonts.value, f.links.value, f.profiles.value, f.update.value, f.hiddenContent.value, f.ignore.value, f.report.value, undefined, true)) { // needed to change false to undefined
          } else {
            Err.FatalError('Failed to package.');
          }
        }
    
  • Need help with vSphere data script, packaging and sending it to the data warehouse

    Greetings PowerCLI gurus.


    Everyone can offer suggestions on a script which can query vSphere and pull on the following fields of the virtual computer:

    NameStateStatusHostSpace in useSpace used

    Format in a file in the CSV format and send the file to an FTP server?

    Much respect to all, thanks a lot in advance.

    Hello-

    Happy to help you.

    OK, well, if this database is accessible through a UNC path, you might make a copy directly using Copy-Item.  If you use different credentials, you can encrypt and store in an XML file.  HAL Rottenberg wrote to do http://halr9000.com/article/531.

    Or, if this pension data is something that supports the secure copy (scp) or secure FTP (SFTP), those who would be good options.  Again, you can store the alternative credentials in an encrypted in an XML file format and use them as needed.

    Certainly, there is a balance to be struck between security and ease of use.  It may be such that the transmitted data are not considered sensitive to all, and clear data transfers are acceptable.  Probably still a good idea to take measures to protect the credentials at least.

  • Install Acrobat Mac crashes when executing scripts package

    I just bought the update to Mac XI of Acrobat Pro, and while the download went well, the installation process is blocked by the end. I can't exit the program and it does not seem to move forward. Suggestions on how to proceed?

    So, here's the deal: I recently udgraded to a new iMac with OS X10.9, more a Mac Pro with OS X 10.6.8. I migrated my CS6 apps on and they all work fine, except that I get these Acrobat update notice, and they have always failed. So, I uninstalled wrong version of Acrobat, 10.1.8 olde before buying the update from Adobe today. Now, I can't get the update to install on the new iMac, but it installs and runs fine on the old Mac Pro. But of course I want the transition from the old to the new, and I'm stuck with no Acrobat on the new machine.

    The Setup program is run line after line of these errors:

    Nov 23 15:46:45 Big - ex, iMac.local installed [476]:. / Preinstall: sudo: unable to stat/etc/sudoers: permission denied

    Nov 23 15:46:45 Big - ex, iMac.local installed [476]:. / Preinstall: sudo: no source validates found sudoers, quit smoking

    Nov 23 15:46:45 Big - ex, iMac.local installed [476]:. / Preinstall: sudo: unable to stat/etc/sudoers: permission denied

    They just keep and...

    Message was edited by: [email protected]

    Hi James,

    You must contact Apple in this regard, as it is clearly a permissions problem.

    You might want to try the steps mentioned in the: https://discussions.apple.com/thread/3680870?start=0&tstart=0

  • Automatic placement with IDML

    I am writing a VB program to convert a text file to an IDML file. I started by generating a a page, page 8-1/2 "x 11 in InDesign with 1" margins on all four sides. I have a block of text on this page. I saved the file to the IDML format, unzipped with package.bat and use this set of files XML as a model, where I basically replace the file in the history with the file converted in my program and then he zip with package.bat to create a new IDML file.

    What I have a problem, namely is how automatic text formatting. I added the following attributes to the element TextPreference in Preferences.xml:

    AutoPageDeletion = "true" AutoPageInsertion = "AtEndOfStory" EnableDynamicAutoflow = "true".

    However, they do not seem to do anything. Any suggestions? Thank you!

    As the said substances, these settings are applied just like document preferences. So, if you were to open your IDML document in InDesign, and then importing text, he would obey the settings that you had specified.

    However, if you want to succeed with your strategy, you need to be responsible for creating additional pages, as well as blocks of text through which history must elapse. It may be easier to say that since your process may not easily be able to determine how many additional pages is necessary.

    You might consider a script approach to 'clean up' the document once it is finally open in InDesign or InDesign Server...

  • "Installation failed" error when installing packages on Mac

    I downloaded the creative cloud on my Mac OS X El Capitan packer and have created my package, but then I start to have problems. When I go in the "build" folder and click on "Adobe CC_Install.pkg" it starts very well and brings me to the Setup page and begins to install. It says "Running scripts package" for a long time and it seems to work because the applications are displayed in the destination file that I chose, but then apps begin to disappear and finally "The Installation failed" message.

    I tried again and this time that applications appear to install correctly, but it was just hooked on 'scripts running from package' for hours and will not complete the process.

    Help please!

    Packer links https://forums.adobe.com/thread/1586021

    http://forums.Adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent

  • Workflow to run the script inside the BONE

    How do you run a script within a guest operating system of Orchestrator?  PowerCLI has cmdlet invoke vmscript - what is the javascript equivalent / vCO method for this?

    vCO a workflow the operations available through the plugin vCenter. See the following package scripts and sample to start:

    vCO Article team: based on the package of the comments Script Manager

    Comments script package manager

    Examples of batch script scripts manager (Administrator Local and management of DNS records)

    Examples of powerShell script scripts manager (change IP and DNS servers addresses comments)

  • How to develop the Package vSphere Client plug-ins tool

    To the right,.

    Hi, I tried to create a plugin for the CAV, and when I try to package it, my box looks like this:

    plugintool.JPG

    Before I came here, I did this:

    contextmenu.jpg

    What I am looking for is the following:

    fullplugintool.JPG

    Even if this is option, I need to add a file of Java service in my plugin package and as you can see in the first picture, I do not know if the Java service points that I would like to add to the package.

    I need help here. I double clicked on the window, tried ways to resize the window by clicking on every corner and try to find the diagonal arrow icon thing, etc.

    Thank you for your help in advance if someone answers.

    Ah ok!  I missed the cut dialog box image...

    It must be because of your system fonts preferences, because all fields are visible with the default fonts.

    But even if you can not fix the police you should go ahead and create your plugin with just the Flex project package.  Then you can copy in manually your jar file of service in the \plugins directory that was created.

    / Tools/scripts contains a script package-plugin if you are interested.

    Once you become familiar with the environment, you can create your own build scripts tailored to your system.

  • Error during compilation of package header and the body - How to change pkb file associat

    Hello world

    It has been noticed elsewhere (in the thread "package for compilation and body header" January 12, 2010) compiling the scripts package sometimes fails (apparently due to a bug in sqldeveloper) when the script contains the trailing slash /.

    This bug is still open?

    Question: in the thread mentioned above, it is recommended as a workaround to change the association of corresponding file from pl/sql to sql type. I want to do; I know the place in the Preferences dialog box, but most associations seem to hard-coded and cannot be changed.

    I would appreciate ideas!

    Thanks in advance,

    user8632123.

    For the workaround: you need to change the extension of the file , not the association (for example, .sql).

    Have fun
    K.

  • Generate the Script to create project gets no version of the server

    We use the SQL Developer for most of our database and ODT for Visual Studio source code control. We recently encountered a problem where our scripts were not up-to-date with the server version and almost lost a significant amount of work (but we do not have through flashbacks). If a package is changed on the server outside my instance of Visual Studio, "Generate create Script to project" is not the latest version of the server and seems rather to get a version cached of the package according to when he finally examined by the Server Explorer.

    Steps to reproduce:
    Create a specification package and body on the server.
    Open an Oracle database project.
    Open connection to the DB/schema.
    Expand the packages node.
    Select a package node in Server Explorer and "Generate create Script to project" from the context menu. You generate a script spec and body.
    Change the package using a tool external (SQL Developer).
    Select the same package in Server Explorer and "generate create Script to project.
    The script does not update with the changes made on the server.

    A couple of notes:
    If I disconnect and reconnect, it will refresh and I get the version of SQL Server. The body will be updated.
    If I refresh the connection node and to script the package body will be updated.
    If I refresh the packages node and generate the script package body will not be updated.
    If I refresh the parent node package and script the package body will not be updated.
    If I expand the body for the first time and generate a script from the node parent package the package body will be updated.
    If the package body has been expanded and I update a parent node and script the package body will be updated.

    At the very least, I would expect refreshing a node parent to refresh all the brothers and sisters.

    If caching is by design, it would be good to know if the package had changed since the cached version. If not, he should get the server version.

    Oracle Developer Tools for Visual Studio 11.1.0.7.20

    Thank you. I reported this as a bug

  • Procedure script using sqlplus.

    Hello group,

    I use Toad to load a script package. But just in case how can I get the script packages or a table using sqlplus el.

    Thank you.

    SQL > Set long =< to="" some="" higher="" value=""> ...

    SQL > select the text in dba_source where...

    Oops... I don't know what you need...

    Published by: sagechristelle on October 1st, 2008 16:41

  • Error KFFComponentConfigurator

    Hello

    I'm using the form of coding update 11.1.1.8.2. I have two KFFComponent fields on the form. The EBS team made another environment cloning activity in this environment and I started having error. The list of tasks when I click on the task, it gives an error

    I get the message as a "data extract" on the line items on my form. When I check the console I see this error.

    If I remove two fields, then, I am able to see the line items, but when I add these two fields KFFComponent I get this error as well as the extraction of data on the form. Teams of said database EBS works fine.

    [2014 12-30 T 06: 55:31.337 - 06:00] [soa_server01] [ERROR] [] [oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator] [tid: [ASSETS].] [ExecuteThread: '1' for the queue: "(self-adjusting) weblogic.kernel.Default"] [username: anonymous] [ecid: 0000KeRGzdX1Ne3_zlXBiW1K_un4004Fvy, 0] [APP: imagingAXFAccountDistribution] [IDDM: 0000KeRGy2G1Ne3_zlXBiW1K_un4004Fux] ADF_FACES - 60096:Server Exception during the PPR, #19 []

    1. javax.el.ELException: java.lang.NullPointerException

    at javax.el.BeanELResolver.getValue(BeanELResolver.java:298)

    at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:173)

    at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:200)

    at com.sun.el.parser.AstValue.getValue(AstValue.java:138)

    at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:206)

    at org.apache.myfaces.trinidad.bean.FacesBeanImpl.getProperty(FacesBeanImpl.java:68)

    at oracle.adf.view.rich.render.RichRenderer.getDefaultableProperty(RichRenderer.java:1887)

    at oracle.adf.view.rich.render.RichRenderer.getDefaultableBooleanProperty(RichRenderer.java:1921)

    at oracle.adf.view.rich.render.RichRenderer.getVisible(RichRenderer.java:1874)

    at oracle.adf.view.rich.render.RichRenderer.renderRootStyleAttributes(RichRenderer.java:920)

    at oracle.adf.view.rich.render.RichRenderer.renderRootStyleAttributes(RichRenderer.java:888)

    at oracle.adfinternal.view.faces.renderkit.rich.PanelGroupLayoutRenderer.encodeAll(PanelGroupLayoutRenderer.java:329)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1432)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:358)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:840)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:422)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2788)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:438)

    at oracle.adfinternal.view.faces.renderkit.rich.DeclarativeComponentRenderer.encodeAll(DeclarativeComponentRenderer.java:92)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1432)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:358)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:840)

    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.encodeEnd(ContextSwitchingComponent.java:155)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:422)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2788)

    at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.renderDataCell(BaseColumnRenderer.java:1460)

    at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.encodeAll(BaseColumnRenderer.java:105)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1432)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:358)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:840)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:422)

    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2788)

    at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.renderDataBlockRows(TableRenderer.java:2348)

    at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._renderSingleDataBlock(TableRenderer.java:1916)

    at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._handleDataFetch(TableRenderer.java:1095)

    at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:558)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1432)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:358)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:840)

    at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:538)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)

    to oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils$ EncodeChildVisitCallback.visit (InvokeOnComponentUtils.java:142)

    at org.apache.myfaces.trinidadinternal.context.FullVisitContext.invokeVisitCallback(FullVisitContext.java:154)

    at org.apache.myfaces.trinidad.component.UIXIterator.visitTree(UIXIterator.java:251)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:469)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:469)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:469)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:469)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:469)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:469)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:469)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:469)

    at oracle.adf.view.rich.component.rich.RichDocument.visitTree(RichDocument.java:198)

    at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:469)

    at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils.renderChild(InvokeOnComponentUtils.java:49)

    at oracle.adfinternal.view.faces.streaming.StreamingDataManager._pprComponent(StreamingDataManager.java:910)

    at oracle.adfinternal.view.faces.streaming.StreamingDataManager.execute(StreamingDataManager.java:650)

    at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._encodeStreamingResponse(DocumentRenderer.java:3665)

    at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1527)

    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1432)

    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:358)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:840)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)

    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)

    at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:266)

    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:197)

    at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)

    at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:979)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:408)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:237)

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)

    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)

    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:128)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:446)

    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:446)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)

    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)

    at oracle.bpel.services.workflow.client.worklist.util.WorkflowFilter.doFilter(WorkflowFilter.java:175)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)

    at oracle.bpel.services.workflow.client.worklist.util.DisableUrlSessionFilter.doFilter(DisableUrlSessionFilter.java:70)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)

    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:119)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)

    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3748)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3714)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2283)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2182)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1491)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: java.lang.NullPointerException

    at oracle.imaging.axf.act.view.segment.kff.KFFComponentConfigurator.createVOsForSegmentComponent(KFFComponentConfigurator.java:1514)

    at oracle.imaging.axf.act.view.segment.kff.KFFComponentConfigurator.initSegmentComponenetConfigurator(KFFComponentConfigurator.java:214)

    at oracle.imaging.axf.act.view.segment.kff.KFFComponentConfigurator.isVisible(KFFComponentConfigurator.java:126)

    at sun.reflect.GeneratedMethodAccessor3903.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:606)

    at javax.el.BeanELResolver.getValue(BeanELResolver.java:293)

    Waiting for your response.

    Thanks in advance.

    Hey, Ketan,

    Maybe it's because package is missing required for flex fields. This script package are in the zip file of the directory solution accelerator

    1. "11g_Accelerator\CodingForm\scripts\AXF_FLEX_FIELDS.sql".

    2. "11g_Accelerator\CodingForm\scripts\EBS_R12\AXF_LOV.sql".

    3. "11g_Accelerator\CodingForm\scripts\AXF_GRANTS.sql".

    Connect to basis of EBS by using patterns of applications and run these scripts in above-mentioned sequence. Then try again. It should solve the problem.

    Kind regards

    Vikrant Korde.

  • issue of monitoring/reporting document download

    Our EQ 9 configuration has been implemented with a controlled forms process created by Eloqua Consultant. Every piece of content has a unique DocID. When someone downloads a PDF book, Eloqua adds this person to the appropriate campaign in salesforce.com. I am trying to find a way to run a report in EQ that will give me the email address for each person who has downloaded a document (DocID). So, I want to compare these data with corresponding salesforce.com campaign to ensure that the two systems are synchronized.

    We called support EQ and they told us that you cannot run a report based on the DocID of our content resources. They also said that the only way to produce such a report would be to put a tracking script on the footer of document, and then run a report against anyone who has visited this page.

    Here are my questions:

    1. Anyone know how to run a report that will produce a list of emails for each contact Eloqua that has downloaded a specific DocID (resource of content).
    2. If the content is accessible is a document PDF is opened in Acrobat Reader, how do you add an equalizer to a PDF tracking script? As the document is open in Acrobat Reader, I don't think you can add an equalizer to the tracking script.
    3. If someone downloads a white paper from our site, EQ adds to the campaign in SFDC. If the data exists because Eloqua knows when someone downloads an asset and adds them to the appropriate campaign. Is it possible to access these data in EQ?

    Any advice would be greatly appreciated.

    I'll slightly re - order questions, put them in the order needed to achieve this:

    (2) the assets must be connected on your website using the redir.htm page that is included in your tracking scripts package. Unfortunately, active such as files PDF and images or exe are not able to be tracked directly, because we cannot place our scripts on them. The workaround is to use the redir.htm page to create a link to redirect to the asset, which is identified in Eloqua. The general format of these links is http://www.yourcompany.com/elqnow/redir.htm?ref=http :// www.yourcompany.com/pdf-asset.pdf . The front part of the link may be slightly different depending on where you have decided to host our follow-up of scripts on your web server, but the part elqnow/redir.htm? ref = the link will always be the same, with the URL after the ref = following the instrument you want to redirect to the change.

    (1) once the asset is followed, you can use a contact filter to capture people who have downloaded the assets. The criteria of "Has visited the site" would be the most appropriate, and you can specify the exact PDF as the page that you want to search criteria.

    (3) at this point, you can create multiple filters for each asset and those like the charger using a program. In this program, you can use a rule to update to stamp contacts with the campaign proper SFDC ID and then push them through a step that runs the external event "Associated with the campaign", or alternatively, feed in your CRM program update and who have to ensure that the lead or contact is first create them if not, and then associate them with the campaign using the ID that has been affixed to their record in the previous programme.

    Hope that helps!

  • Adobe Reader has not been installed successfully on Mac

    Computer:

    Mac Mini 3,1

    2.26 GHz

    4 GB OF RAM

    Mac OS 10.11.4 (latest version of El Capitan)

    Using the installer on the Adobe site seems to be working, but then the Web page loads with the error message "Adobe Reader has not been installed successfully". I tried this three times.

    I tried to use the stand-alone Installer, twice. It hangs at "Running scripts package", telling about a minute ago left. I left it like that for hours before having to make a hard stop.

    No folder/Adobe applications have appeared in the Applications folder.

    I rebooted several times and the disk permissions fix, but the problem remains the same.

    Hello

    It seems to be the issue of authorization to file & folder in Mac, please refer to this link for help permissions & Disk Space | Apple Support communities.

    Once you have the right to install the software, please download Adobe Reader using this link Adobe Acrobat Reader DC install for all versions

    If the problem persists, then would you please check with the account of another user with Admin rights to reproduce the problem.

    Kind regards

    Christian

  • CS6 .pkg fails for some reason. Troubleshooting steps and newspapers in the body of the message.

    I have a copy of the Master CS6 Collection, which I can't install on my iMac OSX 10.10.5 running.

    I've tried so far of troubleshooting:

    • has run the Adobe cleaning tool.
    • created an admin account news, temporary and tried to install it with this.
    • active root user and I tried installing that way.
    • tried to install via the terminal with sudo.
    • Cloud of Safari killed as well as Safari Plugin Updater (delayed failure of about 60 seconds).
    • permissions of the disk verified and repaired via disk utility and the terminal.
    • direct downloaded the trial and saved a trial version of the software.

    In each case, Installer has given the message "installation failed." classic once Setup passes to "Validating scripts package," after < s 20 to package scripts to run.

    Some info relevant newspaper (I have also some other info Journal, but there is too much of him posting here):

    install.log

    Feb 4 00:06:31 FATM.attlocal.net installed [3141]: PackageKit:-----Begin installation -

    Feb 4 00:06:31 FATM.attlocal.net installed [3141]: PackageKit: application = < 1 packages, destination = PKInstallRequest / >

    Feb 4 00:06:31 FATM.attlocal.net installed [3141]: PackageKit: packages =)

    "PKJaguarPackage < file://localhost/CS6_MC/CS6%20MC%20SUM14/Build/CS6%20MC%20SUM14_Install.pkg >.

    )

    Feb 4 00:06:31 FATM.attlocal.net installed [3141]: PackageKit: extraction file://localhost/CS6_MC/CS6%20MC%20SUM14/Build/CS6%20MC%20SUM14_Install.pkg (destination = / var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/485 372E8-CAA8 - 4A 97 - AB26 - 9F0A034D3BFC.activeSandbox / Root, uid = 0)

    Feb 4 00:06:31 FATM.attlocal.net installed [3141]: PackageKit: prevent user idle system sleep

    Feb 4 00:06:31 FATM.attlocal.net installed [3141]: PackageKit: suspension backupd

    Feb 4 00:06:31 FATM.attlocal.net install_monitor [11426]: temporarily to exclusion: / applications/Library / System, / bin, partnership, / sbin, / usr

    Feb 4 00:06:31 FATM.attlocal.net installed [3141]: PackageKit: executing script ".» "/ preinstall" in CS6_MC/CS6 MC SUM14/Build/CS6 MC SUM14_Install.pkg/Contents/Resources

    Feb 4 00:06:31 FATM.attlocal.net installed [3141]:. / Preinstall: AAMEE Installer: preinstall launched...

    Feb 4 00:06:31 FATM.attlocal.net installed [3141]:. / Preinstall: AAMEE Installer: working directory is CS6_MC/CS6 MC SUM14/Build/CS6 MC SUM14_Install.pkg/Contents/Resources

    Feb 4 00:06:31 FATM.attlocal.net installed [3141]:. / Preinstall: AAMEE Installer: launch of AdobeDeploymentManager...

    Feb 4 06:00:33 FATM.attlocal.net installer [11406]: LSExceptions [0x6080000a6840] unloaded

    Feb 4 00:06:58 FATM.attlocal.net installed [3141]:. / Preinstall: AAMEE Installer: exit code of AdobeDeploymentManager is (79)

    Feb 4 00:06:58 FATM.attlocal.net installed [3141]:. / Preinstall: AAMEE Installer: exit...

    Feb 4 00:06:58 FATM.attlocal.net install_monitor [11426]: re-included: / applications/Library / System, / bin, partnership, / sbin, / usr

    Feb 4 00:06:59 FATM.attlocal.net installed [3141]: PackageKit: release backupd

    Feb 4 00:06:59 FATM.attlocal.net installed [3141]: PackageKit: allow user idle system sleep

    Feb 4 00:06:59 FATM.attlocal.net installed [3141]: PackageKit: install failed: error Domain = PKInstallErrorDomain Code = 112 "an error has occurred during execution of scripts in the package 'CS6 MC SUM14_Install.pkg'." UserInfo = 0x7fb4114b8080 {NSFilePath =. / preinstall, URL = file://localhost/CS6_MC/CS6%20MC%20SUM14/Build/CS6%20MC%20SUM14_Install.pkg, PKInstallPackageIdentifier = com.adobe.Enterprise.install.1D5F5912 - 3047-4CCF-870E-BB293A024 4E0, NSLocalizedDescription = an error occurred when executing scripts package 'CS6 MC SUM14_Install.pkg'.} {

    NSFilePath = '. '. "/ preinstall."

    NSLocalizedDescription = "an error occurred during execution of the package \U201cCS6 MC SUM14_Install.pkg\U201d scripts.";

    URL = "file://localhost/CS6_MC/CS6%20MC%20SUM14/Build/CS6%20MC%20SUM14_Install.pkg";

    PKInstallPackageIdentifier = "com.adobe.Enterprise.install.1D5F5912-3047-4CCF-870E-BB293A0244E0";

    }

    Feb 4 00:06:59 FATM.attlocal.net installed [3141]: PackageKit: runs the inactive tasks

    Feb 4 00:06:59 FATM.attlocal.net [11406] Installer: install: didFailWithError:Error area = PKInstallErrorDomain Code = 112 "an error has occurred during execution of scripts in the package 'CS6 MC SUM14_Install.pkg'." UserInfo = 0x6100000f5400 {NSFilePath =. / preinstall, URL = file://localhost/CS6_MC/CS6%20MC%20SUM14/Build/CS6%20MC%20SUM14_Install.pkg, PKInstallPackageIdentifier = com.adobe.Enterprise.install.1D5F5912 - 3047-4CCF-870E-BB293A024 4E0, NSLocalizedDescription = an error occurred when executing scripts package 'CS6 MC SUM14_Install.pkg'.}

    Feb 4 00:06:59 FATM.attlocal.net installed [3141]: PackageKit: customer withdrawal PKInstallDaemonClient pid = 11406, uid = 501 (/ System/Library/CoreServices/Installer.app/Contents/MacOS/Installer)

    Feb 4 00:06:59 FATM.attlocal.net installed [3141]: PackageKit: done with sandbox removals

    Feb 4 00:06:59 FATM.attlocal.net installed [3141]: PackageKit: Sandbox/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/317D7ADC-41F9-48 93-98DA - 3B00719BC061.sandbox: relevance 830

    Feb 4 00:06:59 FATM.attlocal.net installed [3141]: PackageKit: Sandbox/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/E00B43D5-02E2-46 2 b-9BA4 - EFD49D3EDE2E.sandbox: relevance 240

    Feb 4 00:06:59 FATM.attlocal.net [11406] Installer: installation failed: the installer has encountered an error that caused the installation to fail. Contact the manufacturer of the software.

    Feb 4 00:06:59 FATM.attlocal.net installer [11406]: State of 3AD0 of IFDInstallController = 8

    Feb 4 00:06:59 FATM.attlocal.net installer [11406]: display 'Installation failed' UI.

    Feb 4 00:06:59 FATM.attlocal.net installer [11406]: message "Installation Failed" display user interface: "Setup has encountered an error that caused the installation to fail. Contact the manufacturer of software for assistance. ».


    Error.log.gz the Adobe installer

    04/02/16 00:06:56:159 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | DEVersion: 6.0.0.0

    04/02/16 00:06:56:160 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | Loading of Manager/DECore/DE6/Setup.dylib Application/Applications/Utilities/Adobe library

    04/02/16 00:06:56:164 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | : TIMER: [Total timer]

    04/02/16 00:06:56:164 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | CHECK: Single Instance

    04/02/16 00:06:56:164 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | CHECK: credentials

    04/02/16 00:06:56:164 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | Load deployment file

    04/02/16 00:06:56:164 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | Create required folders

    04/02/16 00:06:56:164 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | Assuming that uninstall mode

    04/02/16 00:06:56:164 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | Search for master payload

    04/02/16 00:06:56:165 | [ERROR] |  | OOBE. OF |  |  |  | 1118690 | DW040: The product '{41C543D4-AC29-4B7E-B95D-D73B7EB2EFBB}' is not installed. Is unable to uninstall

    04/02/16 00:06:56:165 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | # Running Workflow EDT #.

    04/02/16 00:06:56:165 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | : TIMER END: [Total Timer] took 1 milliseconds (0.001 seconds)

    04/02/16 00:06:57:233 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | Uninstalling AAM

    04/02/16 00:06:57:236 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | AAM uninstall Status: 1 and 0

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | -------------------------------------- Summary --------------------------------------

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 |  -0 fatal Error (s), 1 Error (s)

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | The OSX version: 10.10.5

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 |

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | ERROR: DW040: the product '{41C543D4-AC29-4B7E-B95D-D73B7EB2EFBB}' is not installed. Is unable to uninstall

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 |

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | Please find the error string above to find when the error occurred.

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | These errors resulted in installer exit code mentioned below.

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | -------------------------------------------------------------------------------------

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 |

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | 33 of the Exit Code:-the product is not installed, it is impossible to uninstall.

    04/02/16 00:06:57:237 | [INFO] |  | OOBE. OF |  |  |  | 1118690 | Please see specific errors for troubleshooting. For example, ERROR: DW040...

    For those who have similar problems who stumbles on this post, here is the solution that worked for me:

    1. Granting of reading & writing to all parent folders and children access to me, users admin and all the world
    2. Enabling the root user
    3. Creation of a new administrative user & Installationavecuneracine who
    4. Kill all the nuclei of cloud of Safari
    5. Boot the machine in safe mode
    6. Remove all previous applications of CC, etc. (don't even bother with the vacuum, just delete everything yourself in different subfolders library and root)

Maybe you are looking for

  • 40.3 Firefox does not start, but older versions will be

    Firefox 40.0.3 will not start or open. I Uninstaller and put on 36.0.3 and it runs. Once I go to the About tab it will automatically download the latest version. Then, when I click on Firefox icons, that nothing is happening. I repeated this process

  • Equium P200 - DVD drive reads all discs

    My DVD player just started reading some disks and not others, as some records are not read all the time, you can put a disk in, click on the dvd drive and it will open the player and say insert a disc, the device manager says device working properly

  • Peripheral USB malfunctioned after fashion "Eve" laptop computer in Vista

    If I turn off my cell during the night and then open it in the morning, it works very well for a while and then this happens. The sound begins to become an anachid. USB devices don't work. I can't connect the printer, a USB key or CDMA cell phone thr

  • try to write files to CD to be read by windows 98 using Windows 7

    I have a Machine more old which is not compatible with 64 bit latest systems, yes I tried compatibility mode, I need to transfer files from my computer windows 7 on my windows 98 computer. Whenever I have write files on the CD they show as written on

  • How can I create this kind of Application Structure...

    Hi all I have a question on how to structure my App sorry if it is a matter of repeating, I tried searching but didn't come with anything. I want to have my application to start with a single page to view a log in / sign up page, but once the user lo