Basic settings not sticky when changing the process version

Yes, I understand that process 2010 will not use the same basic settings as 2012 as they have different adjustments but, If I make adjustments in 2012 and then try and see what 2010 would do  and then go back to 2012 the adjustments I previously made in 2012 are zeroed out?  I guess I'd like to be be able to see a compairson between the two processes so I can understand the differences between 2010 and 2012.

Make a virtual copy....develop one using PV2010, the other using PV2012.

Similar Messages

  • How to retain the PDF's compression when changing the PDF version?

    Hi,
    I need to change the PDF version from "1.5" to "1.6" without changing the original PDF compression (i.e compressed object streams) using "Acrobat X pro".
    I had tried to change one sample PDF version from 1.5 to 1.6 using "PDF Optimizer" and found the following results.
    ================================
    Input PDF contains the following properties:
    Document Properties
    1. Total pages:256
    2. PDF version: 1.5
    3. Tagged PDF: No
    4. Fast Web View: No
    Available Compressions (Identified through "Preflight>Pages")
    1. Page description is compressed for all the pages (256)
    2. Pages has compressed object streams for "254" pages except "Front Cover" and "Back Cover"
    Output PDF contains the following properties:
    Document Properties
    1. Total pages:256
    2. PDF version: 1.6
    3. Tagged PDF: No
    4. Fast Web View: No
    Available Compressions (Identified through "Preflight>Pages")
    1. Page description is compressed for all the pages (256)
    2. Pages has compressed object streams for all the "256" pages including "Front Cover" and "Back Cover"
    ================================
    "Pages has compressed object streams" found  for all the "256" pages (but input PDF has only 254 pages) including "Front Cover" and "Back Cover".
    But I want to retain all the properties of input PDF with version change. This is my actual requirement.
    I hope that Acrobat expert will offer some useful suggestions for the above. Thanks in advance.
    Regards,
    Raja. S

    Thanks for the reply.
    I had tried everything under "Clean Up" option (PDF optimizer>Clean Up) but "Pages has compressed object streams" applied automatically.
    Note: If I check the option "Optimize the PDF for fast web view" under Clean Up, then output retain the required source PDF  compression. But I must not change the source PDF to "Fast web view".
    This is not testing purpose and this is one of our client requirement. Kindly advise with better solution to solve this issue.
    Thanks,
    Raja. S

  • UI not appearing when executing the process

    i have created two DCs having 1 -1 UI each .
    In first UI have some i/p fields  and want to pass them as GP parameters to second.
    both DCs are sucessfully deployed .
    but when i m executing my process...i m getting the first UI, i enter the fields but when i click proceed,
    the second UI does not appear n it directly give the statement as.."action has been completed".
    can any plz help why im facing such situation n not able to view my 2nd UI.

    hi Sakshi Mittal ;
    First check in UWL .some time action will go to UWL
    Else check in Runtime .
    if it not working fine
    Test the secound DC callable object .
    Else tell me the . i try to help u..
    Regards
    Vivekananthan.S

  • Text not updated when changing the ResourceBundle

    this is an abstraction of what i have on my code:
    controller
    public class controller extends VBox{
         @FXML protected Label ex2;
         public CtrlMainMenu() throws Exception{
              FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("/view/View.fxml"));
              fxmlLoader.setController(this);
              fxmlLoader.setRoot(this);
              fxmlLoader.setResources(CtrlLanguage.resource);
              fxmlLoader.load();
         @Override public void initialize(URL arg0, ResourceBundle arg1) {
              ex2.setText(arg1.getString("ex2"));
    }View
    <fx:root type="VBox" xmlns:fx="http://javafx.com/fxml">
         <children>
              <Label text="%ex1"/>
              <Label fx:id="ex2"/>
         <children>
    </fx:root>Language controller
    public class CtrlLanguage{
         private static String PATH =
              new File(
                   CtrlImageLoader.class.getProtectionDomain().getCodeSource().getLocation().getPath()
              ).getParentFile().getPath() + "/language/";
         public static ResourceBundle resource;
         public static void setLanguage(String file) throws Exception{
              try {
                   if(new File(PATH + file).exists())
                        resource = new PropertyResourceBundle(new FileInputStream(PATH + file));
                   else
                        resource = new PropertyResourceBundle(CtrlLanguage.class.getResourceAsStream("/language/"+file));
              } catch (Exception e) {
                   resource = new PropertyResourceBundle(CtrlLanguage.class.getResourceAsStream("/language/EN"));
         public static String get(String key){
              try {
                   return resource.getString(key);
              } catch (Exception e) {
                   return key;
    }problem comes when I try to change the language without changing the current root
    the elements of the view are not updated when the bundle is changed (CtrlLanguage.setLanguage("file");) until the root is changed/loaded again
    is there any way so i can make the content change without having to reload again the root?

    A method which returns an instance of the following class:
    * A localizable read only property for internationalization of string properties.
    * @author Christian Schudt
    public final class LocalizableStringProperty extends ReadOnlyStringProperty {
        private String resourceKey;
        private StringProperty text;
        private String baseName;
        private ClassLoader classLoader;
        // Keep the listener as hard reference in the class, so that it won't get GCed, until this class has no references any more.
        private ChangeListener<Locale> changeListener;
        public LocalizableStringProperty(LocaleManager localeManager, String baseName, String resourceKey) {
            this(localeManager, baseName, resourceKey, null);
        public LocalizableStringProperty(LocaleManager localeManager, String baseName, String resourceKey, ClassLoader classLoader) {
            changeListener = new ChangeListener<Locale>() {
                @Override
                public void changed(ObservableValue<? extends Locale> observableValue, Locale locale, Locale locale1) {
                    localeChanged(locale1);
            localeManager.localeProperty().addListener(new WeakChangeListener<Locale>(changeListener));
            this.baseName = baseName;
            this.classLoader = classLoader;
            this.resourceKey = resourceKey;
            text = new SimpleStringProperty();
            localeChanged(localeManager.getLocale());
        private void localeChanged(Locale locale) {
            ResourceBundle resourceBundle;
            Locale.setDefault(locale);
            if (classLoader == null) {
                resourceBundle = ResourceBundle.getBundle(baseName, locale);
            } else {
                resourceBundle = ResourceBundle.getBundle(baseName, locale, classLoader);
            text.set(resourceBundle.getString(resourceKey));
        @Override
        public String get() {
            return text.get();
        @Override
        public Object getBean() {
            return text.getBean();
        @Override
        public String getName() {
            return text.getName();
        @Override
        public void addListener(ChangeListener<? super String> changeListener) {
            text.addListener(changeListener);
        @Override
        public void removeListener(ChangeListener<? super String> changeListener) {
            text.removeListener(changeListener);
        @Override
        public void addListener(InvalidationListener invalidationListener) {
            text.addListener(invalidationListener);
        @Override
        public void removeListener(InvalidationListener invalidationListener) {
            text.removeListener(invalidationListener);
    }

  • Portal error -- page not found or not available when changed the datasource

    experts ...
    I am facing issue while changing the UME to LDAP.....
    With Java_ABAP_LDAP.xml the EP is running fine ..but when I am changing this config file to ...LDAP ..
    i.e. dataSourceConfiguration_iplanet_deep_readonly_db.xml I am getting the error ....when I logged with administrator user
    as page not found or not available.....
    I checked oss notes 939412 and 1140519 but no help..............
    Kindly suggest ASAP ..
    Thanks !!

    Hi Yogesh,
    While changing the xml to ldap, you need to change ldap server details also in the ldap server tab under ume configuration. And, also do the connection test using test connection button in the configuration screen.
    Regards,
    Sen

  • "you have rentals that have not expired" when changing the store.

    I download a free rental movie two days ago and after I watched few minutes and I delete the movie....
    It told me the rental will expire 48 hours later...
    and now, definitely 48h after that, it still told me that.
    and I just remove the rental by myself....

    Do you currently have an Apple ID with the US iTunes Store?
    If you are trying to create an Apple ID with the US iTunes Store, do you live in the U.S?

  • HT201272 Hi, i am facing problem when i try to copy an App from itunes to my iphone 3GS.... when i try to apply changes the process bar complete but apps not copied in my iphone.. plz help

    Hi, i am facing problem when i try to copy an App from itunes to my iphone 3GS.... when i try to apply changes the process bar complete but apps not copied in my iphone.. plz help

    Will the app run on iPhone3GS. Some of the newer apps require IOS 5 or later. This info should be displayed witht the app in itunes store

  • I want to change the apple id but it's not allowing me as it's not highlighted when I access settings, I want to change the apple id but it's not allowing me as it's not highlighted when I access settings

    I want to change the apple id but it's not allowing me as it's not highlighted when I access settings, I want to change the apple id but it's not allowing me as it's not highlighted when I access settings

    Go to Settings>General>Restrictions and see if the Restriction that prevents changing accounts is set. I faso, unset it.

  • I switched phones with my wife.  I went into "Settings" and "Store" to change the applid to mine but the phone still has my wife's applid when updating apps.  How do I get my phone to default to my applid?

    I SWITCHED PHONES WITH MY WIFE.   I WENT INTO SETTINGS AND STORE TO CHANGE THE APPLID BUT IT STILL USES MY WIFE'S APPLID WHEN UPDATING APPS.   HOW DO I GET THE APP STORE TO DEFAULT TO MY APPLID?

    Any apps that are on the iPhone which were bought / downloaded via your wife's account are tied to her account - so only her account can download updates to those apps. If you remove all her apps and just put yours on then you should be ok.

  • Hello! i am using ipad n i am not able to connect to itunes store.Whenever i open itunes it syas "cannot connect to itunes store".i tried resetting the network settings n also tried changing the dat and time settings as mentioned but it still doesnt work!

    hello! i am using ipad n i am not able to connect to itunes store.Whenever i open itunes it syas "cannot connect to itunes store".i tried resetting the network settings n also tried changing the dat and time settings as mentioned but it still doesnt work!please help!

    Saw this on another post.
    Applecare Senior Advisor Txx Bxxx (I have his contact info in an email he just sent) just confirmed with me that the problem people are having with the App Store not loading is an apple issue with there servers, ITS NOT YOUR IPAD so don't go restoring it!   It's not happening to everyone however but they are looking into it, its really hit or miss.
    In the meantime ...........
    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
    http://ipadinsight.com/ipad-tips-tricks/best-fixes-for-cannot-connect-to-itunes- store-errors/
    Try this first - Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • When I tried to run php file I am getting the following error message, "/home/karthick/Desktop/PHP files/third.php could not be opened, because the associated helper application does not exist. Change the association in your preferences." How to fix this?

    When I tried to run php file I am getting the following error message, "/home/karthick/Desktop/PHP files/third.php could not be opened, because the associated helper application does not exist. Change the association in your preferences." How to fix this?

    first, you just asked me to use MS file Explorer to see what the properties were.,..and to ask what happened. Yes - that's on my hard drive. The problem I have is opening word files in a DB that is web enabled.....I've used Firefox browser for that, and everything else , for years...... When I look at the Tools, and options on FireFox., as your support page noted.....NOTHING is listed in the Applications tab....hence my note asking for help. The file I need to open is a Word file out on a web enabled DB. It's not on my hard drive - I have to problems opening docs there - but for that, I don't use Firefox

  • HT4623 My daughter forgot her passcode for her 3GS, and iTunes will not let me change the passcode or even update.  Please help!!!

    My daughter forgot her passcode for her 3GS, and iTunes will not let me change the passcode or even update.  Please help!!!

    If You Are Locked Out Or Have Forgotten Your Passcode or Just Need to Restore Your Device
      1. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
      2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
      3. iOS- Understanding passcodes
         If you have forgotten your Restrictions code, then follow the instructions
         below but DO NOT restore any previous backup. If you do then you will
         simply be restoring the old Restrictions code you have forgotten. This
         same warning applies if you need to restore a clean system.
    A Complete Guide to Restore or Recover Your iDevice (if You Forget Your Passcode)
    If you need to restore your device or ff you cannot remember the passcode, then you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and re-sync the data from the device (or restore from a backup). If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone, iPad and iPod touch software.
    Try restoring the iOS device if backing up and erasing all content and settings doesn't resolve the issue. Using iTunes to restore iOS devices is part of standard isolation troubleshooting. Restoring your device will delete all data and content, including songs, videos, contacts, photos, and calendar information, and will restore all settings to their factory condition.
    Before restoring your iOS device, Apple recommends that you either sync with iTunes to transfer any purchases you have made, or back up new data (data acquired after your last sync). If you have movie rentals on the device, see iTunes Store movie rental usage rights in the United States before restoring.
    Follow these steps to restore your device:
         1. Verify that you are using the latest version of iTunes before attempting to update.
         2. Connect your device to your computer.
         3. Select your iPhone, iPad, or iPod touch when it appears in iTunes under Devices.
         4. Select the Summary tab.
         5. Select the Restore option.
         6. When prompted to back up your settings before restoring, select the Back Up
             option (see in the image below). If you have just backed up the device, it is not
             necessary to create another.
         7. Select the Restore option when iTunes prompts you (as long as you've backed up,
             you should not have to worry about restoring your iOS device).
         8. When the restore process has completed, the device restarts and displays the Apple
             logo while starting up:
               After a restore, the iOS device displays the "Connect to iTunes" screen. For updating
              to iOS 5 or later, follow the steps in the iOS Setup Assistant. For earlier versions of
              iOS, keep your device connected until the "Connect to iTunes" screen goes away or
              you see "iPhone is activated."
         9. The final step is to restore your device from a previous backup. If you do not have a
              backup to restore, then restore as New.
    If you are restoring to fix a forgotten Restrictions Code or as a New device, then skip Step 9 and restore as New.

  • SPL block when changing the Address manually at Sales order level

    Hello all,  I hope every one doing well
    I am facing one problem in SAP system, when I am chanigng the Partner address at sales order level , system giving the SPL block , without screening even though the customer is a good customer.
    I checked in Img: GTS -> SAP Compliance Management->"Sanctioned Party List Screening" Service->Control Settings for "Sanctioned Party List Screening" Service->Sanctioned Party List Screening Strategy for Customs Docs tested with  as " Status check of unchanged Addresses( Partner Address) and New check of changed Addresses.
    I didn't find any difference. Sales order getting block for the above cases when changing the Address at Sales/Create document level.
    Please let me know  how to resolve it.
    Is it related to configuration  if yes how  ? pr
    do we  have any OSS Notes to Rescreen the Sales orders with compliace even though changing the Address at sales order level ( ship to party address changes like Name, city, email id, of fax )?
    or
    do we need to do the Enhancement for Rescreening when changing the ship to party adress (changes like Name, city, email id, of fax )
    manually at sales order level ?
    Thanks in Advance
    NVR

    hello Sameer,
    1. Whether your Embargo service is activated for the Country of Plant from which your order is getting shipped. -- Yes I have activated the Country under Embargo list.
    2. Whether the partner function for which you changing the county detail has been added in into the Partner group which is assigned to Embargo services.( GTS)-- Assinged the Sold to Party ( AG) for PGEMB2- Partner group
    3. Whether the country which u putting as Embargo has been maintianed under Embargo country list,
    - yes
    What I am doing exactly is , I am creating sales order with US customer master , but I am chaning the Country Key as Embargo country ( Ex: CU, SY, IR) at VA01 , or VA02 level Sales order header Partner tab level for Sold to party address ( changing only country key as embargo country) , not to ship to party  ( ship to party still US country key only), at that time system not blocking the sales order as embargo.
    please let me know if any once come across this sistuation..
    Thanks in advance
    NVR

  • IMac freezes when changing the screen saver

    Hi all:
    I originally posted this in the "Using Mac OS X" forum (iMac freezes when changing the screen saver, but thought I'd post here as well since the issue arises on a freshly installed OS.
    We've got three 350MHz slot-loading G3 iMacs (with 512MB RAM) which we're planning to use for basic word processing. The install of Panther (10.3.5 from black retail cds with 10-seat volume license) went fine on the first two. Ran the updates to 10.3.9, installed MS Office 2004, everything working great (they're a little slow, but after all, they are only 350 MHz).
    On the third, the first problem we noticed was the computer would lock up whenever we changed the screen saver from the default (Flurry; Computer Name also works). It continues to do so even after: repair permissions; repair disk; Disk Warrior; reset pram; reset nvram; reset pmu; change RAM; change hard drive; erase hard drive; write zeros to hard drive; reinstall with different set of retail CDs; trash preferences, and delete cache files. (If there's anything I've left out, it's in the other thread).
    Now we've noticed that we can't create any new user accounts. We've thought about putting this one in production, just warning the user that they can't change the screen saver, but god only knows what will turn up next.
    I'm starting to think it's a logic board issue, but could it be that selective? And would you see the same problem with another hard drive and different install discs? Am I missing something?
    BTW, there's a crash log with the other thread.
    Andrew
    Dual 2.0 GHz G5   Mac OS X (10.3.9)  

    I'm going to mark this one as answered.
    I removed the hard drive from the iMac, and put it into another 350 MHz iMac, and everything works great. I can select any screen saver without having it freeze, create new accounts, whatever my little heart desires.
    In checking the history of the problem iMac, there was an assortment of problems with booting (both from the hard drive and from the CD-ROM drive) which were never satisfactorily resolved. The problems just seemed to go away after sitting unplugged for a few days, as much as for anything we actually did to it.
    Now we just have to decide whether it's worth fixing, or using it somewhere in a non-critical role with OS 9 installed.
    Cheers,
    Andrew

  • HT2404 i was try to upgrade my iphone 3gs via iTunes but it is not activate.what are the process to upgrade ? now it is showing black screen to select country then finally write unable to activate.

    i was try to upgrade my iphone 3gs via iTunes but it is not activate.what are the process to upgrade ? now it is showing black screen to select country then finally write unable to activate.

    Is there a sim in the iPhone?
    Has the iPhone been jailbroken or modified to work with other
    than the original wireless provider?
    If you can get that far, what does it say when you look at
    Settings=>General=>About=>Carrier?

Maybe you are looking for

  • Is there a way to change column width in Numbers on iPad?

    Using Numbers on both iPad and MacBook Pro.  On iPad I cannot figure out how to make some columns wider, and when I import a spreadsheet from my MacBook to the iPad  the columns all become uniform size.  too skinny for what I want to do.

  • Why is my itunes store blank?

    I have just updated my iphone and I want to sync in music but it says I need to update to (at least) itunes 11.01 and to do that I have to go to itunes store. But when I enter itunes store it is blank. I have read that I need to update my safari. Is

  • C5280 Print Margins

    Whether copying a photo or printing from the computer, when printing to a full 8 1/2 X 11 sheet the printer adds an almost 1" wide white margin on the top and right side of the printed photo.  I can't figure out how to get it to print using the full

  • Internet Sharing: Must Reset Every So Often

    I'm sharing my ethernet connection with my father using Internet Sharing. However, it is extremely unreliable. Every five to thirty minutes, it "dies" on his end and the Internet stops working - although it still is fine on my laptop. I have to turn

  • HT201317 I lost my ipad how do I remote sign into icloud

    I need to add my ipad to icloud and need help