Setting global component defaults / Inheritance of components

Hi all,
I'm a JSF beginner, working with VWP & Netbeans. I got two questions :
1) What is the best way to set �n application wide default value for a specific component property? (eg, setting the row-property for all rowgroup components to 5)
2) Is it possible (and good practice) to implement an inherited component (from sun.ui.components) ? (I want to overwrite/extend some of the base functionality of the vwp-components. Do i have to implement an inherited class or can i use some kind of callbacksfor this?).
Thanks for any help!

Hi, I suppose you should use b1.setBounds() rather than setLocation()
Regards,
/Michael

Similar Messages

  • Set Global Properties for ADF components

    Hi everyOne....
    My question is the following .... let me know how I can set global properties for a component and not have to set the same property in each of them.
    Thanks
    Edmar

    Let me know if this answers your question:
    For Attributes : set the properties in EO or VO. [You can set all UI properties too]
    For labels: use Resource bundle
    For Layout Components to set the look and feel. CSS/Skinning would be the best.
    I guess this should cover most part of application.
    Amit

  • SQ01 (How to set Global Area as default)

    Hi All
    In SQ01, i find 2 environments in Query Areas - Global Area & Standard Area. Everytime i execute SQ01 transaction, it takes me to Standard Area, then i have to change it to Global Area & then select the user group. I would like to know how i can set Global Area as default & also a particular user group, so that everytime i run SQ01, it directly takes me to Global Area & the particular user group, so i can execute my query directly instead of having to change it each time.
    Hope my problem is clear, await inputs.
    Vivek

    Hello Vivek,
    You need to maintian some default parameters in your User master record.
    Parameter ID :
    AQB for User Group
    AQW for Query Area.
    Select the AQB from the drop-down and give your default user group in the parameter value.
    Regards,
    Naimesh Patel

  • Possible to force Flash to default to "low" quality setting globally??!!

    I really hate all the flash-laden websites around these days. I know that it is the way of the present, but is there a way to force the Flash plugin to default to the low quality resolution setting globally? I would do backflips of joy if that were the case. I have searched high and low for a solution, but I have found none.
    Thank you!

    This is what I did to auto set a master page for all new sites.
    1)Create a new blank vs solution
    2)Set the site url to your site collection
    3)Add new item->event receiver
    4)web events->a site was provisioned
    5)
    public
    override
    void
    WebProvisioned(SPWebEventProperties
    properties)
    base
    .WebProvisioned(properties);
    properties.Web.CustomMasterUrl =
    "/_catalogs/masterpage/custom.master"
    properties.Web.MasterUrl =
    "/_catalogs/masterpage/custom.master"
    properties.Web.Update();
    6)deploy
    the solution

  • How do I set global variables for use by ALL form1.#subform[0] items?

    Hi All,
    I know how to code javascript but am new to Adobe LiveCycle.  When I open script editor, I have the following code (all code is in un-bolded):
    ----- form1.#subform[0]::initialize: - (FormCalc, client) ------------------------------------------
    // BEGIN: SET GLOBAL PRICES //
    var Cityscope_Sydney_CostUser1 = 60.39;
    var Cityscope_Sydney_CostUsers2to5 = 3.02;
    var Cityscope_Sydney_CostUsers6to20 = 1.21;
    var Cityscope_Sydney_CostHardCopyWithOnline = 14.59;
    var Cityscope_Sydney_CostHardCopyWithoutOnline = 54.67;
    var Cityscope_Sydney_CostHardCopyAdditional = 14.59;
    var Cityscope_NorthSydney_CostUser1 = 48.40;
    var Cityscope_NorthSydney_CostUsers2to5 = 2.42;
    var Cityscope_NorthSydney_CostUsers6to20 = 0.97;
    var Cityscope_NorthSydney_CostHardCopyWithOnline = 14.59;
    var Cityscope_NorthSydney_CostHardCopyWithoutOnline = 43.54;
    var Cityscope_NorthSydney_CostHardCopyAdditional = 14.59;
    // END: SET GLOBAL PRICES //
    ----- form1.#subform[0]::enter: - (FormCalc, client) -----------------------------------------------
    ----- form1.#subform[0]::exit: - (FormCalc, client) ------------------------------------------------
    ----- form1.#subform[0]::calculate: - (FormCalc, client) -------------------------------------------
    ----- form1.#subform[0]::validate: - (FormCalc, client) --------------------------------------------
    ----- form1.#subform[0]::preSave - (FormCalc, client) ----------------------------------------------
    <<======= etc etc etc =======>>
    ----- form1.#subform[0].Item1Cost::initialize: - (JavaScript, client) ------------------------------
    ----- form1.#subform[0].Item1Cost::enter: - (FormCalc, client) -------------------------------------
    ----- form1.#subform[0].Item1Cost::exit: - (FormCalc, client) --------------------------------------
    ----- form1.#subform[0].Item1Cost::calculate: - (JavaScript, client) -------------------------------
    //Store form values in user-friendly names.
    var AreaSelected = Item1Area.rawValue;
    var NumberOfUsersSelected = Item1Users.rawValue;
    //Declare other vars.
    var Users1Calculation;
    var Users2to5Calculation;
    var Users6to20Calculation;
    //Calculate individual User Cost "components" based on number of users selected for the area.
    switch(true)
    case (NumberOfUsersSelected < 2):
      Users1Calculation = NumberOfUsersSelected * Cityscope_Sydney_CostUser1;
      Users2to5Calculation = 0.00;
      Users6to20Calculation = 0.00;
      break;
    case (NumberOfUsersSelected > 1 && NumberOfUsersSelected < 6):
      Users1Calculation = Cityscope_Sydney_CostUser1;
      Users2to5Calculation = (NumberOfUsersSelected - 1) * Cityscope_Sydney_CostUsers2to5;
      Users6to20Calculation = 0.00;
      break;
    case (NumberOfUsersSelected > 5):
      Users1Calculation = Cityscope_Sydney_CostUser1;
      Users2to5Calculation = 4 * Cityscope_Sydney_CostUsers2to5;
      Users6to20Calculation = (NumberOfUsersSelected - 5) * Cityscope_Sydney_CostUsers6to20;
      break;
    default:
      alert("BROKEN: Calculate individual User Cost components based on number of users selected for the area.");
    //apply total cost for this item
    Item1Cost.rawValue = Users1Calculation + Users2to5Calculation + Users6to20Calculation;
    ----- form1.#subform[0].Item1Cost::validate: - (FormCalc, client) ----------------------------------
    ----- form1.#subform[0].Item1Cost::mouseEnter: - (FormCalc, client) --------------------------------
    ----- form1.#subform[0].Item1Cost::mouseExit: - (FormCalc, client) ---------------------------------
    ----- form1.#subform[0].Item1Cost::change: - (FormCalc, client) ------------------------------------
    ----- form1.#subform[0].Item1Cost::full: - (FormCalc, client) --------------------------------------
    ----- form1.#subform[0].Item1Cost::mouseUp: - (FormCalc, client) -----------------------------------
    ----- form1.#subform[0].Item1Cost::mouseDown: - (FormCalc, client) ---------------------------------
    ----- form1.#subform[0].Item1Cost::click: - (FormCalc, client) -------------------------------------
    ----- form1.#subform[0].Item1Cost::preSave - (FormCalc, client) ------------------------------------
    ----- form1.#subform[0].Item1Cost::postSave - (FormCalc, client) -----------------------------------
    ----- form1.#subform[0].Item1Cost::prePrint - (FormCalc, client) -----------------------------------
    ----- form1.#subform[0].Item1Cost::postPrint - (FormCalc, client) ----------------------------------
    ----- form1.#subform[0].Item1Cost::preSubmit:form - (FormCalc, client) -----------------------------
    ----- form1.#subform[0].Item1Cost::docReady - (FormCalc, client) -----------------------------------
    ----- form1.#subform[0].Item1Cost::docClose - (FormCalc, client) -----------------------------------
    ----- form1.#subform[0].Item1Cost::ready:form - (FormCalc, client) ---------------------------------
    ----- form1.#subform[0].Item1Cost::ready:layout - (FormCalc, client) -------------------------------
    ----- form1.#subform[0].Item1Users::initialize: - (FormCalc, client) -------------------------------
    ----- form1.#subform[0].Item1Users::enter: - (FormCalc, client) ------------------------------------
    ----- form1.#subform[0].Item1Users::exit: - (FormCalc, client) -------------------------------------
    ----- form1.#subform[0].Item1Users::calculate: - (FormCalc, client) --------------------------------
    ----- form1.#subform[0].Item1Users::validate: - (FormCalc, client) ---------------------------------
    ----- form1.#subform[0].Item1Users::mouseEnter: - (FormCalc, client) -------------------------------
    ----- form1.#subform[0].Item1Users::mouseExit: - (FormCalc, client) --------------------------------
    ----- form1.#subform[0].Item1Users::change: - (FormCalc, client) -----------------------------------
    ----- form1.#subform[0].Item1Users::full: - (FormCalc, client) -------------------------------------
    ----- form1.#subform[0].Item1Users::mouseUp: - (FormCalc, client) ----------------------------------
    ----- form1.#subform[0].Item1Users::mouseDown: - (FormCalc, client) --------------------------------
    ----- form1.#subform[0].Item1Users::click: - (FormCalc, client) ------------------------------------
    ----- form1.#subform[0].Item1Users::preSave - (FormCalc, client) -----------------------------------
    ----- form1.#subform[0].Item1Users::postSave - (FormCalc, client) ----------------------------------
    ----- form1.#subform[0].Item1Users::prePrint - (FormCalc, client) ----------------------------------
    ----- form1.#subform[0].Item1Users::postPrint - (FormCalc, client) ---------------------------------
    ----- form1.#subform[0].Item1Users::preSubmit:form - (FormCalc, client) ----------------------------
    ----- form1.#subform[0].Item1Users::docReady - (FormCalc, client) ----------------------------------
    ----- form1.#subform[0].Item1Users::docClose - (FormCalc, client) ----------------------------------
    ----- form1.#subform[0].Item1Users::ready:form - (FormCalc, client) --------------------------------
    ----- form1.#subform[0].Item1Users::ready:layout - (FormCalc, client) ------------------------------
    ...and so on and so forth....
    In short, I want the code within:
    ----- form1.#subform[0].Item1Cost::calculate: - (JavaScript, client) -------------------------------
    ...to be able to access the variables I have created in:
    ----- form1.#subform[0]::initialize: - (FormCalc, client) ------------------------------------------
    (I have assumed that this is where I would store Global variables)
    At this stage, the global variables cannot be accessed with the configuration above.  The only was I can get this to work is to cut and paste the global vairables into each form1.#subform[0] item, which of course defeats the purpose of global variables!  I plan to have many more items so would not want to duplicate the global variables for all of them!
    Can somebody show me how to do this?
    Any help is very much appreciated!
    Thanks
    Stanbridge
    Message was edited by: stanbridgej - colors and or fonts won't save.  Have bolded my question to make code (non-bolded) easier to read (I hope).

    Hi MorisTM,
    Thanks for the reply!
    Yes, I saw that option (I should have mentioned I already knew about it), but was wondering if there is a way I can do this via code.
    There are two reason I want to be able to do it via code (only one of which may be valid):
    1) I can automatically generate my pricing code form another inhouse app.
    2) I am hoping that later on once I get this working I will be able take it a step further and get the data directly from a MySQL database!
    Cheers though!
    Any other suggestions?
    Regards,
    Stanbridge

  • Global Component - How is it thread safe?

    While a global component is serving many sessions and in turn many requests, how is the thread safety guaranteed? How the call stack is maintained?

    It's often possible to write a global component that is thread safe without using locks or synchronize. As long as the component's class member variables are set globally, e.g., via Nucleus configuration, and all thread-specific values are held in method variables (which are housed on the stack), the component is thread safe. If thread-specific values need to be accessed by multiple methods in the class, the values must be passed as formal method parameters rather than through class member variables. Most of the global components that ship in the ATG product stack follow this coding pattern and do not use any kind of locks.

  • ER: Allow setting af:query default mode

    We are planning to use af:query component extensively throughout our application. However, we would only use it in cases where the QBE table filters would not work. Since the basic mode offers virtually nothing over QBE filters, we really only want the query component to display in Advanced mode and we've found with our users that the toggle between Basic and Advanced is confusing to them. Unless I'm missing something, I can hide the mode change button but there's no way to have the component default into Advanced mode. Please add an attribute to set default mode of af:query component.
    Many thanks.
    -Ed

    Ed,
    there is way to do this. You tell me if this is an option for you and if not I am happy to file an ER
    1. Create a ViewCriteria for the ViewObject
    2. For the view criteria add all attributes you want to query. To simulate the "All Queriable Attributes" you just add all attributes (no need to define bind variables)
    3. In the View Criteria, select the UI Hints tab, select "Search Region Mode" Advanced
    4. Drag the Named Criteria as a query form
    5. If the table is created with filters then the filter will use the same View Criteria
    Frank
    Also solves the case sensitive issue

  • Any way to set global variables except EAS console?

    Hi pros,
    I am searching for a way to set global variables (used by business rules) automatically.
    I got several variables which should change each month. I know the rule to set them.
    However, I cannot find any way to set them through scripting or something else.
    I tried to research EAS repository. The one that I found relevant is HBRVariables table.
    I cannot find any tool can help this.
    Any one knows how?
    Appreciated......
    Casp Huang

    Yes you can use substitution variables in business rules and they are widely used, it is relatively easy to automate the changing of values for subtitution values.
    You can also put a sub var into the default value for a global variable in business rules.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Hard drive configuration is not set to factory default. Refurbished Acer Iconia W3-810

    This tablet was purchased refurbished.  As soon as I got it, I went to create my backup and message is "Hard drive configuration is not set to the factory default.  Backup aborted.  I had already sent it in once to the seller for repair services and it was sent back not repaired.  They now say I can send it in again but seems a waste of time.  I called Acer and they said I would need to purchase the recovery disk which should have already been provided to me.  It does have a valid SNID number.  I checked.   If there is anyone else who came up against this problem, I would love to know what you did to resolve it.  Second problem.  Large font had been created where is overscans the entire page so reading the Control Panel is impossible.  The warranty dept created a new user account with new settings as they were unable to fix the font problem so they ignored it.  This is another reason I wanted to do a factory reset.  Hoping Acer will be kind enough to just send me the disk.   I've learned alot about refurbished products.  Never again.   

     Hard drive configuration is not set to factory default (I had this problem but mine was caused  by some third party partitioning software easeus. I am not pretty entirely sure what was your cause for the error, but I believe this workaround can be useful, even to some of the users)  I learnt a tough lesson and I am now careful on what third party soft wares one must use especially for partitioning related events using windows 8 GPT structure. This article specifically relates to windows 8 (which I was using) although similar steps may work as well in windows 7 Points note:Most newer windows devices now use the GPT partitioning system compared to the traditional MBR system.It can be very difficult to reinstall windows on a partition with GPT format.One must be careful on what 3rd party portioning tools they use. It is not recommend to use some 3rd party tools to resize partitions as these may mess the hard drive configuration in such a way that it will be very difficult to restore to factory settings (especially for devices pre-loaded with OEM-Windows 8)It is recommended to use the in-built Disk management utility to shrink/resize partitions.First and foremost, it is recommended to use system file scanner to check any files that may be corrupted (and most of these are normally fixed by sfc)Press Windows key + X, select ‘Command prompt (Admin)’. Enter the following command “sfc /scannow” (without quotes) and the system will start scanning the system. Wait until it finishes.Now we will proceed to the main fix; here are the set of steps I performed,Run CMD (Admin)Type diskpartType list diskDisk 0 Online 465 GB 19 GB * (an example of how the disk will present)
    Disk 1 Online 22 GB 0 B * Select diskDISKPART> select disk 0 list partitionDISKPART> list partition (Note you see recovery partitions flagged as OEM) So what we do is to set the id according to the GUID (Global Unique Identifier) system.Selected every partition with a OEM typeI changed their ID's to DE94BBA4-06D1-4D40-A16A-BFD50179D6AC (see below)Partition 1 OEM 1000 MB 1024 KB
    Partition 2 System 260 MB 1001 MB
    Partition 3 Reserved 128 MB 1261 MB
    Partition 4 Primary 224 GB 1389 MB
    Partition 5 OEM 350 MB 226 GB
    Partition 6 Unknown 3913 MB 226 GB
    Partition 7 Primary 200 GB 230 GB
    Partition 8 Unknown 7813 MB 430 GB
    Partition 9 OEM 7948 MB 458 GBDISKPART> select part 1Partition 1 is now the selected partition.DISKPART> set id = "de94bba4-06d1-4d40-a16a-bfd50179d6ac"DiskPart successfully set the partition ID.DISKPART> select part 5Partition 5 is now the selected partition.DISKPART> set id = "de94bba4-06d1-4d40-a16a-bfd50179d6ac"DiskPart successfully set the partition ID.DISKPART> select part 9Partition 9 is now the selected partition.DISKPART> set id = "de94bba4-06d1-4d40-a16a-bfd50179d6ac"DiskPart successfully set the partition ID.  Here is a screenshot (please note this is not a screenshot I made, I downloaded it online and I give thanks to the uploader) is just for education purposes. The issue should be solved. Now you can try system refresh/reinstall to factory settings (or create a recovery media)*In my case and others I researched on internet, it turns EASEUS partition master was the culprit, please don’t use that software if you don’t know what you are doing. (With all respect to EASEUS) I think this tool is still not configured well to work with the GPT partition format.

  • [svn:fx-trunk] 12057: Label (and RichText) will show text as tooltip if truncated and new showTruncationTip flag is set to true  ( defaults to false because Label is often used in skin that have their own tooltip logic ).

    Revision: 12057
    Revision: 12057
    Author:   [email protected]
    Date:     2009-11-20 11:22:05 -0800 (Fri, 20 Nov 2009)
    Log Message:
    Label (and RichText) will show text as tooltip if truncated and new showTruncationTip flag is set to true (defaults to false because Label is often used in skin that have their own tooltip logic).
    QE Notes: New API (showTruncationTip)
    Doc Notes: New API (showTruncationTip)
    Bugs: SDK-23639
    Reviewer: Gordon
    API Change: Yes
    Is noteworthy for integration: Yes
    tests: checkintests mustella/gumbo/components/Button mustella/gumbo/components/Label
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23639
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TextBase.as

    Hi blabla12345,
    (untested and without warranty)
    replace this line:
    const sSaveCUBE = "CUBE";
    with this:
    const sSaveCUBE = "cube";
    Have fun

  • Global Light Defaults

    In CS4 I was able to set a global light default by going to Layer > Layer Styles > Glogal Light... Once I set that global light value (example: 90º), any new document created would have that same global light setting.
    In CS5, I have to set the global light on every single new document that I create. The default setting I choose is totally ignored on new documents.
    Do I have a bad install? Does global light work for others in the same way as cs4? Are they fixes that people are aware of for this issue?
    Thanks in Advance

    If you mean the Lighting Effects Filter, that was removed from PSE12. However if you have an older version of PSE you can copy the Lighting Effects filter to PSE12 (unless it is the PSE10 version which does not work). If you don't have an older version you can still download the PSE11 trial from prodesigntools.com (providing you follow their very important instructions exactly).
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Calling repricing from a global component

    Hi ,
    I want to invoke repricing from my global component,how should i do it.whatever way i found , it required some or other parameters which are not available globally.
    Scenario :
    In my requirement i need to remove some items from order using global components like Droplets,Processors etc.
    I have extended CommerceItemManager's removeItemFromOrder method to suit my needs , the issue is that after remove item from order , i need to invoke repricing (which is automatically invoked when we use form handlers, but here this is not the case ).
    i was thinking of calling :
    getPurchaseProcessHelper().runProcessRepriceOrder(pPricingOperation, pOrder, pPricingModels, pLocale, pProfile, pExtraParameters, pErrorHandler)
    how should i get pPricingModels, pLocale, pProfile, pExtraParameters, pErrorHandler params in my global components.
    Note - I dont want to use RepriceOrderDroplet, i want to do it programatically.
    Please suggest.
    Thanks
    ~Praveer

    This may help you.
    ================================================================
    DynamoHttpServletRequest dynReq = ServletUtil.getCurrentRequest();
    OrderHolder shoppingCart = (OrderHolder) dynReq.resolveName(getShoppingCartCompPath());
    Profile profile = (Profile)dynReq.resolveName(getProfilePath());
    OrderManager orderManager = (OrderManager)dynReq.resolveName(COMPPATH_ORDERMANAGER);
    Locale localeVal = getLocale2reprice(shoppingCart.getCurrent(), dynReq);
    PricingModelHolder userPricingModels = (PricingModelHolder) dynReq.resolveName(COMPPATH_PRICING_MODELS);
    Map<String, Object> parameterMap = new HashMap<String, Object>();
    parameterMap.put(PRICING_OP, ORDER_TOTAL);
    parameterMap.put(PRICING_MODELS, userPricingModels);
    parameterMap.put(LOCALE, locale);
    parameterMap.put(PROFILE, profile);
    parameterMap.put(ORDER, shoppingCart.getCurrent());
    parameterMap.put(COMPNAME_ORDERMANAGER, orderManager);
    PipelineResult result = getPurchaseProcessHelper().getPipelineManager().runProcess(repriceChainIdName, parameterMap);
    if(pipelineResult != null && pipelineResult.hasErrors()){
    Object[] errors = pipelineResult.getErrors();
    for (Object currError : errors){
         //you would collect errors here; which can be passed to the invoker
    private Locale getLocale2reprice(Order orderVal, DynamoHttpServletRequest dynReq){
    Locale locale2reprice = null;
    String localeVal = orderVal.getLocale();
    if (localeVal == null){
    RequestLocale reqLocaleVal = dynReq.getRequestLocale();
    if (reqLocaleVal != null && reqLocaleVal.getLocaleString() != null){
    localeVal = reqLocaleVal.getLocaleString();
    if (localeVal != null){
    locale2reprice = new Locale(localeVal);
    return locale2reprice;
    ================================================================
    NOTE: The respective profile & order components will be loaded for the logged-in customer.
    So, dynReq.resolveName(profile/shoppingCart) will get the right values in the global scoped component.
    Edited by: user1697061 on May 13, 2012 3:59 PM

  • Can I globally change the footprint of components in Multisim 10?

    I generally use only one footprint size and tolerance of resistor. If I don't enter these values for every resistor then Multisim treats it as a virtual component and it doesn't get imported into Ultiboard. Doing this is quite tedious, especially for a large circuit. Is there a way of changing all the resistor parameters at once, or does it have to be done for every single value? This is also true for ranges of capacitors.

    Multisim's Spreadsheet View is a great tool to set/change various parameters for multiple components at once.
    This is what you need to do in order to assign the same footprint to multiple/all resistors:
    Open Spreadsheet View (menu view > Spreadsheet View)
    Select the Components tab
    Click on the column header RefDes and click on Sort Ascending (A->Z)
    Select all resistors (click on the first resistor press Shift and click on the last resistor in the column)
    Scroll to the right an click in any of the select rows in the column Footprint
    The Select Footprint dialog appears.
    The footprint you select will be assigned to all selected resistors
    Resistors will turn from black (virtual) to blue (real) in your schematic
    Regards
    Ingo Foldvari
    Area Sales Manager - US West Academic
    National Instruments

  • How can I set up a default (pre-recorded) voicemail greeting on iphone 4s?

    How can I set up a default (pre-recorded) voicemail greeting on iphone 4s?i dont want a custom one with my voice i want the pre-recorded where a lady says my number . how do i get that?

    Voicemail is a cell phone carrier function.  Contact your carrier to see if they have this option.  If not, i'm sure you can download a sound file from the internet with a greeting and add your name.  Then play it back on you PC while holding your iPhone near the speaker when recording the greeting to voicemail.

  • How can I set up a default page in CS5-CC?

    How can I set up a default page in CS5-CC?

    Save or modify one of the presets here on Mac (windows similar location):
    HD\Users\(user name)\Library\Application Support\Adobe\Adobe Illustrator CS#\en_US\New Document Profiles
    When making a new document, choose the preset you saved.

Maybe you are looking for

  • Management Studio crashing on local SQL Server console

    Unable to start the SQL Server Management Studio on the SQL Server 2012 running on Windows Server 2012 and 2012 R2 We have a number of SQL Servers deployed and in the last month all instances of the SSMS have stopped working with the following error

  • How do I highlight a PDF document using Adobe Reader 8?

    I frequently need to highlight text in PDF documents, such as user manuals, just for my own use.  When I looked up "highlighting text" in the Knowledge Base, I found the following statement:  "Commenting tools are available only in PDFs that have com

  • How could I populate S012 to use Sap standard analyse?

    Hello, I would like to work with Mce3 and mce7 to analyse the performance of my purchase activities...  Although i have gotten problem to populate the LIS table. I accessed s012 table in se16n transaction. I noticed there are some datas in this table

  • Can I redeem the $20 after purchasing Mountain Lion for my new Macbook Pro

    Hey there, I purchased a Macbook Pro in late June 2012, reading the redeem page for Mountain Lion 2 weeks ago it stated to come back after making a purchase of Mountain Lion, so I purchased the update and now realised i could of downloaded it for fre

  • Captured video is stretched too wide

    I connect my camcorder to my Mac with a Firewire cable and capture video but the result is stretched too much. Instead of widescreen (16:9) it is more like 19.5 to 9! I am new to Mac, I have a new Macbook Pro and am still learning.  The camcorder is