Square brackets around name of pdf preset

Hey folks, I have custom pdf presets that are used to output PDFs from Adobe InDesign CS3 on the Windows OS. These presets are in the usual default folder: C:\Documents and Settings\All Users\Application Data\Adobe\Adobe PDF\Settings\ and are included with a bunch of the default settings. At any rate, when I open InDesign and choose Adobe PDF Presets from the File menu, all of the settings are visible. However, they all have square brackets around the name, [myCustomIDPDFPreset]. I expect this result from the default job options that ship with Adobe but not in my custom presets. This is an issue because our output scripts use the specific name of the preset to output PDF content so the inclusion of the square brackets causes it to fail. Any thoughts on how the custom presets can appear in the list without square brackets. This was how it worked in CS2. Thks, Wil

Here is a screen shot of what's in my ID CS4 PDF Export options. All have brackets.
Here's what a search for "joboptions" returns. I'm on Intel iMac running 10.5.8. CS4.

Similar Messages

  • What are the square brackets around paragraphs and heads?

    I am hoping that someon can hlep me with this topic. I can not seems to find anything on this matter.
    I have recieved an InDesign file for a book that we are updating the design and content for. All the text in this file has Square brackets, at the begining and end, of each paragraph or head. I have never seen this before, coming from a Quark background.
    The characters are visible in "normal mode", but they disapear when you view in "preview" mode.
    Can anyone please tell me what the Square brackets around text means?

    If you are using OSX this AppleScript should remove all of the XML tags, but test it carefully on a copy of the document:
    tell application "Adobe InDesign CS3"
    try
    untag (every XML element of document 1)
    end try
    end tell
    If you are not on a Mac I'm sure you could get the equivalent JavaScript at the scripting forum.

  • Square brackets around list items

    I'm seeing a square bracket after each list item that is displayed inline-block. How can I remove this? It's only happening in Firefox.

    Could you provide the URL to the site? Is this your website? Can you try safe mode:
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • Advanced "Save as PDF" script that saves 2 PDF presets with 2 different Names

    HI Everyone,
    I am looking to improve a save as pdf workflow and was hoping to get some direction. Here is the background...
    I routinely have to save numerous files as 2 separate PDFs with different settings (a high res printable version and a low res email version). Each file has to be renamed as follows...
    Original filename = MikesPDF.ai
    High Res PDF Filename = MikesPDF_HR.pdf
    Low Res PDF Filename = MikesPDF_LR.pdf
    I was able to alter the default "SaveAsPDF" script to save the files to my desired settings and to add the suffix to the name. So with these scripts here is how the workflow operates...
    1. Open all files I wish to save as pdfs
    2. Select script to save files as high res pdfs
    3. Illustrator asks me to choose a destination.
    4. Illustrator adds the appropriate suffix and saves each file as a pdf to my desired setting. ("Save As" not "Save a Copy").
    5. Now all of the open windows are the new pdfs, not the original ai files.
    6. Now I have to close each window. For some reason Illustrator asks me if I want to save each document when I tell it to close window, even though the file was just saved. I tell it to not save and everything seems to be fine.
    7. Reopen all the files I just saved as high res pdfs.
    8. Repeat the entire process except I run the script specifically designed for the low res pdfs.
    What I would like to do is to combine these two processes so that there will be one script that saves both pdfs. From what I understand, the script can't support "Save A Copy" so the workflow would go as follows...
    1. Open all files I wish to save as pdfs
    2. Select single script to save files as both high res and low res pdfs
    3. Illustrator asks me to choose a destination.
    4. Illustrator saves each file as a High Res PDF and adds the the "_HR" suffix.
    5. Illustrator then re-saves the open windows as a Low Res PDF and replaces the "_HR" suffix with "_LR".
    Here is the code for the High Res script, The Low Res script is pretty much the same except for a different preset name and different suffix. Any pointer that anyone could give me would be most appreciated. I am pretty much a noob to this stuff so please keep that in mind.
    Thanks!
    Mike
    ---------------------------CODE----------------------------
    /** Saves every document open in Illustrator
      as a PDF file in a user specified folder.
    // Main Code [Execution of script begins here]
    try {
      // uncomment to suppress Illustrator warning dialogs
      // app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
      if (app.documents.length > 0 ) {
      // Get the folder to save the files into
      var destFolder = null;
      destFolder = Folder.selectDialog( 'Select folder for PDF files.', '~' );
      if (destFolder != null) {
      var options, i, sourceDoc, targetFile;
      // Get the PDF options to be used
      options = this.getOptions();
      // You can tune these by changing the code in the getOptions() function.
      for ( i = 0; i < app.documents.length; i++ ) {
      sourceDoc = app.documents[i]; // returns the document object
      // Get the file to save the document as pdf into
      targetFile = this.getTargetFile(sourceDoc.name, '.pdf', destFolder);
      // Save as pdf
      sourceDoc.saveAs( targetFile, options );
      alert( 'Documents saved as PDF' );
      else{
      throw new Error('There are no document open!');
    catch(e) {
      alert( e.message, "Script Alert", true);
    /** Returns the options to be used for the generated files. --------------------CHANGE PDF PRESET BELOW, var NamePreset = ----------------
      @return PDFSaveOptions object
    function getOptions()
    {var NamePreset = 'Proof High Res PDF';
      // Create the required options object
      var options = new PDFSaveOptions();
         options.pDFPreset="High Res PDF";
      // See PDFSaveOptions in the JavaScript Reference for available options
      // Set the options you want below:
      // For example, uncomment to set the compatibility of the generated pdf to Acrobat 7 (PDF 1.6)
      // options.compatibility = PDFCompatibility.ACROBAT7;
      // For example, uncomment to view the pdfs in Acrobat after conversion
      // options.viewAfterSaving = true;
      return options;
    /** Returns the file to save or export the document into.----------------CHANGE FILE SUFFIX ON LINE BELOW, var newName = ------------------
      @param docName the name of the document
      @param ext the extension the file extension to be applied
      @param destFolder the output folder
      @return File object
    function getTargetFile(docName, ext, destFolder) {
      var newName = "_HR";
      // if name has no dot (and hence no extension),
      // just append the extension
      if (docName.indexOf('.') < 0) {
      newName = docName + ext;
      } else {
      var dot = docName.lastIndexOf('.');
      newName = docName.substring(0, dot)+newName;
      newName += ext;
      // Create the file object to save to
      var myFile = new File( destFolder + '/' + newName );
      // Preflight access rights
      if (myFile.open("w")) {
      myFile.close();
      else {
      throw new Error('Access is denied');
      return myFile;

    Thank you for the reply Bob!
    Am I correct in assuming that these few lines of code replace all of the lines that I posted above?
    Also, When populating the PDFSaveOptions lines, would the end result look like this? FYI, LowRes preset name = "Proof Low Res PDF - CMYK". HighRes preset name = "Proof High Res PDF"
    #target illustrator
    #targetengine "main"
    for (x=0;x<app.documents.length;x++)
         var workingDoc = app.documents[x];
         var workingDocFile = workingDoc.fullName;
    // populate these with your settings
         var lowResOpts = new PDFSaveOptions(Proof Low Res PDF - CMYK);
         var highResOpts = new PDFSaveOptions(Proof High Res PDF);
         var lowResFile = new File(workingDocFile.toString().replace(".ai","_LR.pdf"));
         workingDoc.saveAs(lowResFile,lowResOpts);
         var highResFile = new File(workingDocFile.toString().replace(".ai","_HR.pdf"));
         workingDoc.saveAs(highResFile,highResOpts);
         workingDoc.close(SaveOptions.DONOTSAVECHANGES);

  • PdfExportPresets.add - name becomes default "Adobe PDF Presets 1" - bug?

    Hi,
    I am not really a programmer and completely new to scripting. I just want to create a very simple script that I can use with a panel created with Adobe Configurator.
    I'm trying to load new joboptionsfiles (.joboptions / PDF Export Preset) via a script. I found/slightly adapted the script that does this:
    app.pdfExportPresets.add(File.openDialog("Choose a File: "));
    But: this will change the name of the job option in the list to the default "Adobe PDF Presets 1". When I load the same joboptionsfile the normal way (via File > Adobe PDF Presets > Define), it does show the correct name.
    Is this a bug in the scripting, in my script? Is there a workaround?
    Thanks!
    Eddy

    >>I'm guessing it's pointless to question why Adobe Reader is trying to resolve a domain name by sub-domain only (i.e. www vs. www.adobe.com)... but I was able to resolve our issue by modifying the hosts file as such:
    >>x.x.x.x www
    >>I really don't like this fix though for obvious reasons.
    I can't come up with an plausible explanation for the partial lookup other than it being a bug If your are using the pdf-files exclusively from one site ie. your local network setting up the entry in the local dns would probably solve the issue for all your users. However if you have users accessing the files from other parts of the internet it becomes a very tedious exercise. As an alternative to the hosts file solution, you could consider disabling netbios over tcpip all together which also bypasses the lookup. And as a last option, accessing the pdf by ip, however when using https this is not an option.
    However, the REAL solution to this problem would ofcourse be a patch from Adobe, nudge, nudge, wink, wink, anybody listning
    Cheers,
    /m

  • System wide PDF presets location is not working in CC

    On both Mac and PC, the system wide location for PDF settings (.joboptions) does not work anymore.
    /Library/Application Support/Adobe/Adobe PDF/Settings (on a Mac)
    It is illogical to remove this feature. Even if that folder does not store the main default presets, which are now stored in each application, it still needs to be looked at and loaded from. It's actually illogical to store the same preset in multiple locations (i.e. each application). If there is a preset that is only for a certain application (e.g. Illustrator Default), this could be put in the application folder, but all others like High Quality, Prepress, PDF/X should be in a central location, i.e. where they used to be.
    I know that each user can manually load into their own PDF presets, which then do appear in all suite apps, but this has to be done every time a new user logs into a computer.
    The central location meant that all suite apps would see a custom set of presets automatically across the entire suite and across multiple versions of the suite. The other advantage to the central location is that the presets would appear in square brackets, in other words read only, so they cannot be changed by the user without saving as a new file.
    Having users manually load and be able to change the presets kind of defeats the purpose of having a preset, certainly in our environment, where we need these settings to be consistent across all apps, all computers and all users.
    Please put this feature back or at least honour the central location that used to be used.

    Hi,
    As per the description, I understand that your Office 2013 cannot open files through a network share directly.
    I would like to know that how many clients/users are affected by this in your environment. It could be some specific user account settings, that the Office applications are being affected by.
    I'd first suggest you try with a new Windows user profile, then verify result.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • JS to check last used PDF preset

    hi there,
    any way for script to get the last used PDF preset?  (not referring the last item in the presets)
    Thanks...

    Thanks Hans!
    Last night I managed to do it by writing it into a preference file.
    However, that is not the best option, since this info shouldnt necessarily be saved from day to day...
    So the information you pointed me to was great - worked great.
    Here is what I did:
    As I mentioned in my first post, the script uses the openDialog function.
    Seemingly, that function opens a dialog to the last PARENT folder only, but not to the inner folder which was last used.
    So what was needed was, to get the last used folder name and path,
    and to then use the opendlg function with that information.
    I.e.
    var theFile = File.openDialog()   ; // retrieves the file name chosen by the user
    app.insertLabel("Open_Dlg_Dir", theFile)   ; // inserts the file info into the application label under the name "Open_Dlg_Dir"
    The next time around, the script checks for that info:
    theFile = app.extractLabel("Open_Dlg_Dir")   ; // retrieves the info that is stored into the app label
    var theFile = File(theFile).openDlg()   ; // retrieves the file name chosen by the user
    Actually, I conditioned in the beginning of the script
    if theFile == null then use the openDialog function, otherwise, use the openDlg function
    Thanks!

  • Adobe PDF presets...

    I have an ID file open... I go to File... Adobe PDF presets... smallest file size. The Save As dialog box comes up with a different file name than the file that I have open and trying to convert to a PDF. This happens occasionally... most the time the file name in the Save As dialog box is the same as the file I am working on. I've got 32 files to convert to PDFs and I don't want to type the file name in the Save As dialog box. How do I get it to work properly?

    This happens because the file was previously exported with a name that didn't match and was subsequnetly saved, burning that name into the file. You can fix it so it defaults to the file name again by exporting to .inx or .idml and outlined in Remove minor corruption by exporting (but it isn't really a file corruption).

  • Opening an excel file from a button. square brackets in filename

    Internet explorer 6. Apex 3.1
    When I open an excel file (via a button) , it has the filename as follows:
    production_report[1].csv
    The prompt to save or open has the name as production_report.csv
    This prevents people saving the opened file as square brackets are not allowed in the file name.
    Is this an apex issue (ie a problem with the way I specify the filename) or a browser issue, and is there a solution?
    I am passing the filename in to my excel download page using the items/values settings.
    eg
    ITEM P12_FILENAME
    ITEM VALUE production_report.csv

    Yes, It works on firefox. It is only an issue with Internet Explorer.
    However our web based application has to use IE and therefore when it calls apex it is in an IE browser.
    I am really just producing a csv file, and opening it in excel. If this was fixed (or customisable in some way in IE that would help)

  • Adjusting the page information in pdf presets?

    Hi,
    Is there a way to adjust the information in the "Page information" when creating pdf-files from Indesign (i.e. in the pdf presets)?
    As you know the defalt is file name and page number and date and time. I would like to include total page number, like page 1/100 or page 1 (100) or something like that.
    Does anyone know if I can adjust the page information area to include things like this?
    With kind regards,
    - Johan.

    In English it's called the Slug.
    I'm not sure, though, that it will help you because there is still no easy way to get the absolute page x of n pages automatically. There are page number markers that deliver the current LOGICAL page number, and a Last Page Number text variable, which in theory can be set to use absolute page numbering, but you must also set the document prefs to use absolute numbering, and then you get logical page x of absolute n, which may work for you if your sections are all using unique number styles, or you have only one section, or you can set the doc to use Section Numbering, and set the variable to use sections as the scope and your variable will return the last page number of each section, so you get logical page x of section length n. If you don't start the section on page 1, it becomes even stranger.

  • How can I read "Keys" from a Config File that have square brackets in them?

    I'm using the "Read Key (String).vi" from the config.llb and I'm having a problem because the key names in my file have square brackets in them. I'm creating an VI to read certain pieces of the TestStand �StationGlobals.ini� file and array elements appear as %[0] = "blah blah blah". It looks like they're not getting recognized at all. Is there a way to handle this?

    I was just looking at the code inside the configuration VIs and the way they work under V6 is that the Open VI actually reads the contents of the configuration file, parses it (in nice-platform independent G) and stores it in a fancy LV2-style global called the "Config Data Registry.vi". The routine that does the parsing is called "String to Config Data.vi". My gut reaction is that this code is going to be the same in your version because between sometime prior to V6 of LV, NI changed the location of a couple terminals on the low-level Match String function and it looks like when this code was originally written the terminals were in the old configuration.
    In any case, if your square-bracket containing strings are getting lost, this is probib
    ly where it's happening at. The other place to check is in the read VI itself. The V6 VI for reading the configuration registry is called "Config Data Get Key Value.vi". It's output is then further parsed by a function called "Parse Store String.vi" if the "read raw string?" input is set to False (the default position).
    Given that all the code for these functions are written in LV, you should be able to fix your VIs to read the strings you have in the ini file now. Which IMHO is actually the way they should work.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • All PDF Presets Not Showing Up in Menu

    There are 14 total PDF presets between both Settings folders on my computer (Mac 10.8.5). Only 10 of them are showing in the Adobe PDF Presets menu item. Does anyone know why all of them wouldn't be showing up?
    Thanks,
    Lloyd

    I'm in InDesign CC 2014. All of the missing ones came with InDesign, as far as I know…they all have the same creation dates. I created two and they ARE showing up. And it's not consistent; some from each folder are showing up, and some from each folder are not showing up. A couple of them are named PDFA1b as opposed to PDFX1a (etc.). Also, two that aren't showing up have JPN in the file name (right before the period) but one that has JPN in the file name IS showing up. It's not a huge deal, I was just curious why some would and some wouldn't.Thanks!

  • Printing using .pdf presets...

    I've created a file in inDesign, exported it using High Quality print (PDF presets) and my Canon ImagePRESS (dropped the .pdf in Creo) is taking forever and a day to print. Should I use the Press Quality option? There are a lot of images and transparency is used a lot as well. But, its never taken this long... I'm printing a book of about 8 pages, it may take 5-7 minutes per book. Should I select another .pdf preset to print my job faster?
    Please help!
    -Justin

    It may print faster if you used : "Smallest File Size" or "Standard" which are more appropriate for your type of output device.  But, diverting to "Press Quality" will not make much of a difference in speed.  Another option would require a bit more work, but will help getting it through the RIP.  That would be creating a low resolution version of the same file.  So, create a copy and downsample all of the images to low res, somewhere around 100ppi, instead of the defualt 300ppi.  If you've sized the images in InDesign, size them in PS ( Photoshop ) and "Place" them at 100% @ 100ppi.  I have a feeling the amount of time equals the amount of effort required to output the file ( memory ).  You might also simplify some of the effects applied to elements in the file.  But, listen.  5-7 minutes for an 8 page booklet is not a long time ( actually less than a minute per page ).
    Message was edited by: John Danek

  • Include Security Settings in PDF Presets

    Boy does Illustrator go out of its way to make saving a PDF painful. No export, so we have to Save a Copy. Then we have to change the filename, directory, and pick a preset because it always defaults to Illustrator Default. And if we want to add security features we need to set all of them each time we export.
    There needs to be a PDF export, and the presets need to be more robust.
    Actually, there needs to be a replacement for Illustrator, jsut as inDesign replaced PageMaker.

    Ok I understand your point.
    you have tons of Illustrator files that need to be saved as pdf format with a specific pdf preset and encrypt it as well.
    What i do is to create/record an action saving my Illustrator file to the pdf format with the preset i need(Do not encrypt yet, that's another step ahead), then use the batch dialog box, located in the action flyout menu, this dialog box lets you select the action you just recorded, select a Source folder where all your Illustrator files to be converted need to be and a Destination folder where your new pdf will be created,be aware that the check fields "override actions open" as well as "save" need to be selected in order to avoid a dialog box asking you what file to open and where to save it, after all this click Ok to play the action over the files in the source folder, wait some seconds and voilá.
    Check your pdf files in your destionation folder.
    Now we'll use Acrobat Pro to encrypt the files in the destination folder.
    You need to create your own sequence to automate this process by going to the Advanced>Document Processing>Batch Processing... menu.
    A new dialog box appear, click on new sequence, type a name for this new sequence(ie. encryption test), click on select commands... button, Select the Security action from the Document Set then click add>>, then select the new added action in the right click edit and set up the encryption you want in all your documents then click ok.
    leave run commands on to ask... and select output location to same folder as originals.
    click Ok and test it, i know the setup time is long but this technique will save you time.

  • Replace square brackets in SQL queries against ODBC

    We use PowerPivot to access an ODBC provider. PowerPivot generates queries with square brackets, which is not ANSI compliant and incompatible with this ODBC provider. In Office 2010, we had a workaround by modifying this file:
    C:\Program Files\Microsoft Analysis Services\AS OLEDB\110\sql2000.xsl
    and replace the '[' and ']' with double quotes.
    !-- SQL Server 2000 pluggable cartridge -->
    <!-- Area of STANDARD parametrizations: these are externally passed -->
    <xsl:param name="in_CanUseParams">yes</xsl:param>
    <xsl:param name="in_IdentStartQuotingCharacter">[</xsl:param>
    <xsl:param name="in_IdentEndQuotingCharacter">]</xsl:param>
    However, this workaround does not seem to work after we upgraded to Office 2013. PowerPivot doesn't appear to read this cartridge file anymore. We are familiar with the option to manually write queries to bypass this issue, but we still like to use the generated
    queries. Is there another way to replace the square brackets?

    I think you could do this:
    Code Snippet
    SELECT
    OUTSIDE
    .OUTSIDE_SALES,
    INSIDE.INSIDE_SALES,
    CUST.CUST_NAME,
    SOE.CUSTOMER_NO,
    SOE.SALE_ORDER_NO,
    SOE.INVOICED_DATE,
    PICKUP.PICKUP,
    (SOE.SALES_AMT/100) AS SALES,
    (SOE.COST_GOODS_SOLD/100) AS COGS,
    (SOE.SALES_AMT/100) - (SOE.COST_GOODS_SOLD/100) AS MARGIN,
    COUNT(TRACKING.PALLET_ID)
    FROM
    SOE_HEADER SOE
    INNER JOIN CUST_NAME CUST
    ON SOE.CUSTOMER_NO = CUST.CUSTOMER_NO
    INNER JOIN INSIDE_SALES INSIDE
    ON SOE.INSIDE_ROUTE = INSIDE.INSIDE_ROUTE
    INNER JOIN OUTSIDE_SALES OUTSIDE
    ON SOE.SALESMAN_NO = OUTSIDE.SALESMAN_NO
    INNER JOIN PICKUP PICKUP
    ON SOE.TYPE_OF_FRGHT = PICKUP.TYPE_OF_FRGHT
    INNER JOIN PALLET_SALES_ORD SALES
    ON SOE.SALE_ORDER_NO = SALES.SALE_ORDER_NO
    INNER JOIN PALLET_TRACKING TRACKING
    ON SALES.PALLET_ID = TRACKING.PALLET_ID
    WHERE
    SOE.TYPE_OF_ORDER = '00'
    AND SOE.ORDERS_STATUS = '06'
    AND SOE.DATE_OF_ORDER > 20080101
    AND SOE.TYPE_OF_FRGHT IN ('06','08','10','13','14')
    AND SOE.CUSTOMER_NO <> '1000027000'
    AND SOE.CUSTOMER_NO <> '1000039000'
    AND SOE.CUSTOMER_NO <> '1014869000'
    AND SOE.CUSTOMER_NO <> '1014869001'
    AND SOE.CUSTOMER_NO <> '1014869002'
    AND SOE.CUSTOMER_NO <> '1014869003'
    AND SOE.CUSTOMER_NO <> '1014889000'
    AND SOE.CUSTOMER_NO <> '1014890000'
    AND SOE.CUSTOMER_NO <> '4400000000'
    AND SOE.CUSTOMER_NO <> '4499998000'
    AND SOE.CUSTOMER_NO <> '4500012000'
    AND SOE.CUSTOMER_NO <> '4500018000'
    AND SOE.CUSTOMER_NO <> '6900002000'
    AND CUST.CUST_NAME NOT LIKE '%PETCO%'
    GROUP BY
    OUTSIDE
    .OUTSIDE_SALES,
    INSIDE.INSIDE_SALES,
    CUST.CUST_NAME,
    SOE.CUSTOMER_NO,
    SOE.SALE_ORDER_NO,
    SOE.INVOICED_DATE,
    PICKUP.PICKUP,
    (SOE.SALES_AMT/100),
    (SOE.COST_GOODS_SOLD/100),
    (SOE.SALES_AMT/100) - (SOE.COST_GOODS_SOLD/100)
    ORDER BY
    OUTSIDE
    .OUTSIDE_SALES,
    CUST.CUST_NAME,
    SOE.INVOICED_DATE,
    SOE.TYPE_OF_FRGHT
    Another option would be to encapsulate the second query in a scalar UDF (if using SQL2k or greater) which would get the count for each sales order and then just return this in your select statement.
    HTH!

Maybe you are looking for

  • Transfer a license from one workstation to another

    We purchased some new laptops for certain users, and the old laptops are to be decommissioned. The old laptop for one user has his Acrobat Pro on it. I need to transfer the license from the old system to the new. How may I accomplish this? Adobe's he

  • SAP Lumira Server 1.18 - Error While creating visualization

    Hi, I installed Lumira Server 1.18 and configured as mentioned in the blogs below. Simplified SAP Lumira Server Feature Configuration I created following users with the roles mentioned - LSADMIN - sap.bi.admin::BI_CONFIGURATOR and sap.bi.admin::BI_AD

  • MacBook Sound Issues

    I use my Macbook as a part of a sound system and after I hook my Macbook in using the headphone jack it won't let me use the internal speakers after I unhook it. I went into my sound settings, and my only output option is digital out. Help seems to g

  • Windows 8 has problems with webcams?

    Whenever I launch Flash in any browser I can not get webcam to work! It won't work in conjunction with the mic is the problem I think. The webcam and mic work fine on their own. However Flash either crashes or refuses to show webcam depending on brow

  • Report Top 10 and OTHERS

    Hi, I would like to report the TOP 3 and othres as table and chart on the web report. I am very glad if you advice how to do. Transaction customer1 5000 customer2 6000 customer3 3000 customer4 2000 Customer5 8000 the requirement customer5 8000 custom