What exactly is contained in "Components Level" output of Harmonic distortion Analyzer VI?

The Components Level output of the Harmonic Distortion Analyzer VI is described in the help file:
"components level contains the array of amplitudes of the measured harmonics in volts if the signal in is in volts. The array index is the harmonic number including 0 (DC), 1 (fundamental), 2 (second harmonic),... n (nth harmonic), up to and including the highest harmonic."
However, why is there more than one measurement of each harmonic included in the array? Specifically, probing the wire says it's a 1D array of clusters with one element each, the clusters are 1D array of doubles.
So, multiple double values are associate with each harmonic. What exactly do these values signify? Creating an indicator on the wire (as below, "component levels" - the indicator is right off the hamonic analyzer, not the bit below it with the index array/unbundle stuff) shows four of the numbers in the array. Sometimes the fourth or even third are greyed out, meaning that the array varies in size from one iteration of my while loop to the next.
I would think that at the least, magnitude and phase would be included, but experimentation with a source that has 60Hz, plus a harmonic (7th, or 15th, etc) at -20 degrees doesnt' correlate with the data. I don't see "-20" or the radian equivilant at all.
Any ideas or a pointer to more detailed information than the help file?

Hi Xooch,
I'm not sure that I totally understand what you're asking about.  When I went to recreate this, I used both a cluster indicator and a double array that had been indexed and unbundled from the original output.  
What do you mean by "multiple double values"? I only saw one value for each harmonic, so I'd like to clarify that.
I'd also like to clarify what types of values are being passed into the function and how many channels are being used.  I think these answers may be helpful in finding out what's going on with the cluster greying out some of the values.  I'd also like to verify that these values are being greyed out while the VI is running through different iterations of the loop as opposed to when the program has stopped and restarted.
Thanks,
-Dave C
Applications Engineer
National Instruments

Similar Messages

  • What exactly are the free levels of Adobe services?

    What exactly are the free levels of Adobe services?

    Cloud Plans http://www.adobe.com/products/creativecloud/buying-guide-at-a-glance.html may help

  • What exactly is a "low-level exception occurred in: ImporterFastMPEG?"

    I've been importing several HDV video files (m2t files) from my Sony HDR-DR60 HDD unit into Premiere Pro CS6 on my Macbook Pro w/ Retina Display. I noticed that this error popped up for 3 files: "A low-level exception occurred in: ImporterFastMPEG (Importer)" What exactly is happening here? What does that mean? Those video files appeared with small "?" icons next to their names in the bin. I attempted to import them again, but I was either given the same error message or only the first few seconds of the file would import. For example, one file is 645MB and is a little over 3 minutes long. Now when I try to import this file, it shows as being only 19 seconds in length.
    Now here's where it gets perplexing: I took that same file and fired up my decommisioned Windows PC with an old installation of Premiere Pro CS5.5, and it imported perfectly without a problem.
    I found a very slow work-around where I converted the m2t file into an uncompressed Quicktime MOV, but I'd like to find out what the root cause is and why I'm getting this error for these few files. I've done a lot of shooting this week, and I haven't had a problem with any other files from my HDR-60.
    So, is this a Mac/Apple problem, a Premiere CS6 problem, or are those particular files just randomly weird? Google searches have not yielded anything useful which is why I'm asking here.

    You might go back to http://forums.adobe.com/community/premiere/premierepro_current
    In the block under Ask a Question enter
    low level exception
    so you may read previous discussions
    Be sure to click the See More Results at the bottom of the initial, short list

  • 1.how can I interpret meaning of TARGET  STATE   in output of command crsctl stat res -t  2. what exactly is nodeapps and why it need to be stopped before any maintenanace activity.

    I have two question requesting from the Gurus.
    1.how can I interpret meaning of TARGET  STATE   in output of command crsctl stat res -t  2. what exactly is nodeapps and why it need to be stopped before any maintenance activity. 

    I'd tried deleting my user preferences before, and it didn't seem to help. However, I tried again, and also removed the couple of actions I'd had in ~/Library/Automator. Success! Just for good measure, I tried putting the actions back and restoring the old preferences file, and everything still worked. Huh. But that's the nature of these things, I guess. At least it works now, thanks!

  • Backups - What exactly do they contain?

    Background:
    I have Lightroom installed on my Desktop Computer and Laptop - both Windows.
    I have two Libraries - both on External Hard Drives and all my images are stored on these EHD's.
    I use 'Backup' within Lightroom and save the 'Backup' to a seperate partition of the Desktop Computer, I also make a copy of this to both EHD's.
    My question: What information is contained within these 'Backup Files'? For instance, should I suffer a major Desktop Computer failure and need to re-install Lightroom are all the configuration settings i.e. the ID plate etc stored within the Backup file so that by double clicking on the Backup brings everything back to where it was previously etc or does it just contain information regarding the images themselves?
    Sorry if this sounds pretty basic but it's been puzzling me for days now - perhaps a case of not seeing the woods for the trees :> )

    OK - thanks Lee and DW. The way I work is to upload my images from a CF card into folders (either PC or Laptop) using other software. I then backup these image folders to DVD's before going any further and finally import into Lightroom.
    In view of what is being said, it might also be prudent once I have carried out any work on those images etc to back them up once more but also include the xmp and Lightrooms backup files to DVD's as well.

  • What exactly are Field symbols?

    Hi SDN,
    What exactly are Field symbols?
    I have read they are not pointers then what are they?
    Regards,
    Rahul

    Hi
    see this
    Field Symbols
    Field symbols are placeholders or symbolic names for other fields. They do not physically reserve space for a field, but point to its contents. A field symbol cam point to any data object. The data object to which a field symbol points is assigned to it after it has been declared in the program.
    Whenever you address a field symbol in a program, you are addressing the field that is assigned to the field symbol. After successful assignment, there is no difference in ABAP whether you reference the field symbol or the field itself. You must assign a field to each field symbol before you can address the latter in programs.
    Field symbols are similar to dereferenced pointers in C (that is, pointers to which the content operator * is applied). However, the only real equivalent of pointers in ABAP, that is, variables that contain a memory address (reference) and that can be used without the contents operator, are reference variables in ABAP Objects.
    All operations programmed with field symbols are applied to the field assigned to it. For example, a MOVE statement between two field symbols moves the contents of the field assigned to the first field symbol to the field assigned to the second field symbol. The field symbols themselves point to the same fields after the MOVE statement as they did before.
    You can create field symbols either without or with type specifications. If you do not specify a type, the field symbol inherits all of the technical attributes of the field assigned to it. If you do specify a type, the system checks the compatibility of the field symbol and the field you are assigning to it during the ASSIGN statement.
    Field symbols provide greater flexibility when you address data objects:
    If you want to process sections of fields, you can specify the offset and length of the field dynamically.
    You can assign one field symbol to another, which allows you to address parts of fields.
    Assignments to field symbols may extend beyond field boundaries. This allows you to address regular sequences of fields in memory efficiently.
    You can also force a field symbol to take different technical attributes from those of the field assigned to it.
    The flexibility of field symbols provides elegant solutions to certain problems. On the other hand, it does mean that errors can easily occur. Since fields are not assigned to field symbols until runtime, the effectiveness of syntax and security checks is very limited for operations involving field symbols. This can lead to runtime errors or incorrect data assignments.
    While runtime errors indicate an obvious problem, incorrect data assignments are dangerous because they can be very difficult to detect. For this reason, you should only use field symbols if you cannot achieve the same result using other ABAP statements.
    For example, you may want to process part of a string where the offset and length depend on the contents of the field. You could use field symbols in this case. However, since the MOVE statement also supports variable offset and length specifications, you should use it instead. The MOVE statement (with your own auxiliary variables if required) is much safer than using field symbols, since it cannot address memory beyond the boundary of a field. However, field symbols may improve performance in some cases.
    check the below links u will get the answers for your questions
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3860358411d1829f0000e829fbfe/content.htm
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/field_sy.htm
    http://searchsap.techtarget.com/tip/1,289483,sid21_gci920484,00.html
    Syntax Diagram
    FIELD-SYMBOLS
    Basic form
    FIELD-SYMBOLS <fs>.
    Extras:
    1. ... TYPE type
    2. ... TYPE REF TO cif
    3. ... TYPE REF TO DATA
    4. ... TYPE LINE OF type
    5. ... LIKE s
    6. ... LIKE LINE OF s
    7. ... TYPE tabkind
    8. ... STRUCTURE s DEFAULT wa
    The syntax check performed in an ABAP Objects context is stricter than in other ABAP areas. See Cannot Use Untyped Field Symbols ad Cannot Use Field Symbols as Components of Classes.
    Effect
    This statement declares a symbolic field called <fs>. At runtime, you can assign a concrete field to the field symbol using ASSIGN. All operations performed with the field symbol then directly affect the field assigned to it.
    You can only use one of the additions.
    Example
    Output aircraft type from the table SFLIGHT using a field symbol:
    FIELD-SYMBOLS <PT> TYPE ANY.
    DATA SFLIGHT_WA TYPE SFLIGHT.
    ASSIGN SFLIGHT_WA-PLANETYPE TO <PT>.
    WRITE <PT>.
    Addition 1
    ... TYPE type
    Addition 2
    ... TYPE REF TO cif
    Addition 3
    ... TYPE REF TO DATA
    Addition 4
    ... TYPE LINE OF type
    Addition 5
    ... LIKE s
    Addition 6
    ... LIKE LINE OF s
    Addition 7
    ... TYPE tabkind
    Effect
    You can define the type of the field symbol using additions 2 to 7 (just as you can for FORM parameters (compare Defining the Type of Subroutine Parameters). When you use the ASSIGN statement, the system carries out the same type checks as for USING parameters of FORMs.
    This addition is not allowed in an ABAP Objects context. See Cannot Use Obsolete Casting for FIELD SYMBOLS.
    In some cases, the syntax rules that apply to Unicode programs are different than those for non-Unicode programs. See Defining Types Using STRUCTURE.
    Effect
    Assigns any (internal) field string or structure to the field symbol from the ABAP Dictionary (s). All fields of the structure can be addressed by name: <fs>-fieldname. The structured field symbol points initially to the work area wa specified after DEFAULT.
    The work area wa must be at least as long as the structure s. If s contains fields of the type I or F, wa should have the structure s or at least begin in that way, since otherwise alignment problems may occur.
    Example
    Address components of the flight bookings table SBOOK using a field symbol:
    DATA SBOOK_WA LIKE SBOOK.
    FIELD-SYMBOLS <SB> STRUCTURE SBOOK
    DEFAULT SBOOK_WA.
    WRITE: <SB>-BOOKID, <SB>-FLDATE.
    Regards
    Anji

  • What exactly the VL10A T,Code do

    Hi,
    Could any body tell me what exactly VL10A do.
    Thanks,
    BSV

    Hi,
              Deliver Documents due for Delivery and Display Deliveries
    Title
    Documents due for delivery.
    User-specific settings
    New functions in Release 4.6C
    New functions in Release 4.6A.
    Purpose
    Documents are selected according to specific criteria.
    They are used for processing orders that are due for delivery.
    Deliveries can also be selected.
    These can be deliveries that already exist for the sales orders
    and/or deliveries that were selected using other criteria. This is an independent transaction and can be executed without the sales order or purchase orders.
    Documents (such as sales orders or purchase orders) are analyzed or delivered after their planned delivery creation time.
    The analysis creates an overview of the upcoming shipping workload and allows you to change the planned outbound delivery situation manually in the selected delivery list. You can use this function for the following procedures, for example:
    Manual selection of documents due for delivery from a larger delivery list
    Manual specification of the actual quantities to be delivered (scheduling agreement item, for instance)
    Introductory phase for setting automated creation of outbound deliveries
    Collective delivery of multiple documents in one processing step is especially useful if:
    Delivery occurs regularly in the background. You can define rules for this delivery in a list profile. The system then works through these rules at regular intervals.
    If more time passes between the initial transaction (sales order, purchase order) and the actual outbound delivery (picking, shipment completion) than is necessary for picking and transportation planning
    if several orders for one ship-to party should be put together in one delivery.
    Integration
    Delivery of documents (orders) via the delivery list is integrated in the following Logistics supply chains:
    Sales order - Delivery - Picking - Shipment - Billing document
    Purchase order - Delivery - Picking - Shipment - Billing document/ Self-billing
    Creation of the outbound delivery is the central element for outbound shipment of goods and services.
    Prerequisites
    All documents that are planned for delivery are taken into account. In other words, a delivery list is created. In Release 4.6A, these documents are either sales orders or purchase orders.
    For sales orders, for example, the availability check must have confirmed a quantity and the conditions for creation of the delivery list must also be met.
    Selection
    Select the delivery list according to the criteria of your choice.
    The user role (list profile) dictates which of the selection criteria is active. As an example, selection criteria that is only relevant for purchase orders is only available for entry when purchase orders are to be selected.
    Validity of selection criteria
    The general selection criteria (tab page General data) restricts the number of sales orders and purchase orders found.
    The selection criteria for sales orders (tab page sales orders) restricts the number of sales orders found.
    The selection criteria for purchase orders (tab page purchase orders) restricts the number of purchase orders found.
    The selection criteria for deliveries (1 or 3 tab pages deliveries) restricts the number of deliveries used. Note that selecting deliveries for the sales orders is automatically activated via the switch Selection in the user role (list profile) tab page. This procedure is maintained for reasons of upward compatibility. You therefore, have the option of making entries in the deliveries tab page. You can deactivate automatic selection of deliveries to the sales orders (No Deliveries to Predecessor) and include additional deliveries in the list (CompleteDeliveries). You can add a maximum of 3 further selection criteria to the deliveries, for example: delivery header, delivery status, delivery item, group of deliveries or a shipment.
    Selecting by material (tab page Material) restricts the sales orders and purchase orders.
    Selecting by partner (tab page Partner) restricts the sales orders and deliveries.
    The user role details apply for the whole transaction and are used as control parameters in the process context.
    The delivery creation date selection criterion limits the documents due for delivery according to the date on which they are planned for delivery.
    This planning is a result of delivery scheduling when the sales order or purchase order was processed.
    When this transaction is called up, the selection date is a default value calculated according to a rule that was specified</ in Customizing in a user role list profile.
    Use the smallest possible interval in performance-critical systems.
    In performance-critical systems, make sure that the fewest possible documents overdue for delivery exist in the system. For sales orders, you can process overdue documents in the sales menu environment.
    You can use selection criteria on the schedule line level (goods issue time, route schedule, planned delivery creation time) to:
    Find documents that contain items with schedule lines to which the criteria apply
    Calculate the quantity default for the delivery quantity by using only the schedule lines that match the selection criteria. Completion of the order item always occurs for the oldest open schedule line.
    Standard Variants
    Standard variants for selection are implemented using delivery scenarios (different call-up methods for selection screen) and list profiles (entry in sub-screen of list profile selection screen).
    Output
    Depending on the F code profile specification one of the following occurs in the list profile:
    A list of all documents due for delivery appears or is printed
    Documents due for delivery are delivered immediately. In other words, the delivery is created and the subseuqent activities (output, picking, statistics, batch determination,...) are triggered in the system.
    Activities
    For daily use, choose the desired selection criteria for your delivery scenario.
    For specific list output requirements, change the list profile entries as necessary. You are advised to do this in the test system. You should only use tested user roles in the productive system, that no longer allow you to override the user role entries in the selection screen. In Customizing for the scenario (transaction VL10CUV) you can set whether the default user role for the scenario my be replaced in the selection screen. If you carrry out this task as a system adminstrator with Customizing authorization, you can enter in the user role (transaction VL10CUA) whether the user role entries may be overwritten in the selection screen. Use these options in the test system and set up roles and report variants for each user that requires these for his daily work. However, do not allow the user role attributes to be overwritten in the selection screen during day-to-day operations.
    You can predefine specific values and selection criteria in the user role attributes for each user in every scenario.
    For more information see: user-specific settings.
    Automatic processing of the delivery list
    In the implementation phase of automatic processing of the delivery list (automatic creation of deliveries via scheduling in a background program: batch job), it is advisable to override the list profile settings in the selection screen. Vary the entries until the list display (with subsequent delivery in the background and no other list modifications) results on delivery of the desired part of the delivery list.
    Choose an F code profile for displaying the delivery list in the list profile.
    Once you know all the required list profile parameters from the entries, define a corresponding list profile in Customizing. After testing the list output, if you are sure that the correct part of the list is delivered, assign an F code profile for background processing to the list profile.
    Create a selection varaint for this selection report with the corresponding list profile (on the selection screen, choose Goto -> Variants -> Save as a variant).
    Schedule this selection report using the menu for background processing.
    Customizing
    Delivery scenario
    The delivery scenarios predefined in the system can be found under Logistics Execution ->  Goods issue process -> Outbound deliveries -> Create -> Collective processing of documents due for delivery. A list profile can be assigned for each delivery scenario in Customizing. This determines processing of the delivery due list in detail. It also specifies the selection screen display, in particular whenther tab strips are used and if so, how many.
    List profile
    The list profile is found using the delivery scenario and can be changed manually in the selection screen for documents due for shipping or individual attributes can be overwritten.
    User-specific default scenario
    You can enter a default delivery scenario and a default list profile for each user, that is called up from the menu or via transaction VL10. Set the user parameters LE_VL10_SZENARIO and LE_VL10_PROFIL.
    <b>Reward points</b>
    Regards

  • What exactly is Office Tools in the sharepoint Designer 2010 install?

    I was looking for a solution to problems we have been having with Office 2003 and Sharepoint 2010 and I was able to fix it by installing Sharepoint Designer 2010. However I didn't want to install the entire Sharepoint Designer software on the clients PC
    so I just installed Office Tools from the installer but I can't figure out what it's changing for this to work.
    Can you give me an idea as to what exactly being installed in the Office Tools component of Sharepoint Designer?
    Regards

    According to you description,my understanding is you want to know how it fixed your problem by installing Office Tools.If yes,please refer the below description.
    All Microsoft Office components from MS Office 2007 and newer contains a component (OWSSUPP.DLL) that implements full integration with SharePoint. Full integration is often noticed by the user in that it enables checking documents in and out from the application
    (as opposed to manually checking out and downloading the document, open the application manually and work with the file, manually uploading the file to the right SharePoint site and checking it in again).
    So when you install Office Tools in the Client machine,the above dll will get installed an enabled in the browser and user will get option to open the document/excel file from the SharePoint site using the local Office Product which was installed in the
    client machine.That dll integrates the SharePoint application with Office Product.
    Best Regards,
    Pavan Kumar Sapara.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem.
    s p kumar

  • What exactly did I Migrate??

    Hi,
    I wanted to copy only a few things from my old Mac to my new MacBookPro. So I started Migration Assistant, thinking I could select individual files and folders. Mainly I wanted to copy my iTunes Library, plus a few random other folders in my user account.
    So I went through the steps, assuming (stupid, I know I should never assume) that I could back out at some point if it didn;t seem to be doing what I wanted. So I turned off the checks for User Accounts, Applications, Settings, and left on Other Files and Folders. I thought i would then get to choose what those would be. Then it copied things.
    Now, my question is - what exactly did I copy, where is it, can i delete it? There appears to only be new files at the root, 'User Guides and Information (from old Mac)' and 'var (from old Mac)'.
    Also. Can you please confirm that Migration Assistant only COPIED filed from my old machine, it didn't delete anything off the old machine, did it??
    Any answers would be appreciated. And I'm pleading - please don't chastise me for doing something without researching it first, I'm already feeling incredibly dumb
    Thanks.

    The "Other Files and Folders" option of Migration Assistant copies items at the root level of the HD that are not in the root level System, Library, Applications, Users, or hidden system domain folders at the root level of the HD -- IOW, things that none of the other migration options would otherwise touch.
    For example, say you created a disk image (dmg) file & stored it at the root level of the HD, along side of System, Library, etc. Migration Assistant would not normally copy this file over to the new Mac's HD so you could use the "Other Files and Folders" option to do this.
    The same would be true for example for the "User Guides and Information" alias normally present on new Macs that points to the /Library/Documentation/User Guides And Information folder containing that Mac's User Guide pdf & such. If I understand you correctly, this alias file was renamed "User Guides and Information (from old Mac)," I'm guessing because the new Mac has its own alias file of the same name.
    I'm not sure why you have a "var (from old Mac)" folder (assuming it is a folder & not an alias or regular file) migrated as well. The /private/var folder is one of the hidden system domain ones & I would not expect Migration Assistant to migrate it in its entirety with any migration option, although selected items in it might be migrated as part of the other options.

  • What are the characteristics of the sound output from the speaker iPad3?

    What are the characteristics of the sound output from the speaker iPad3?

    man -s4 proc
    or
    http://docs.sun.com/app/docs/doc/817-0683/6mgff29c4?q=procfs&a=view
    Its a virual directory structure with a directory per process. These per process directories contain more directories and files that supply detailed information on that process eg per open file information.
    Access to the per process directories is controlled by checking the credentials of the accessing process against the credentials of the
    process whose procfs directory is being accessed.
    tim

  • How to See FM (RFFMS007)? What exactly is it?

    How to see FM (RFFMS007) in the system?
    What exactly is it?
    How do we use the tables in SAP?
    How to look for tables in FI and FM? What are the uses? How do we see the contents of the tables?

    Hello,
    Please check all Utility programs in Public Sector Management (PSM-FM)
    1.  General utility programs
         RFFMMONI (Monitor using PSM settings). This report displays the most important Customizing settings for the update of Funds Management (FM area, OFUP, settings for the update profile). The report also displays customer-specific update profiles that differ from the standard profile that is delivered by SAP.
         RFFMS007 (Activate/Deactivate Document Analysis in Funds Management).
         RFFMS008 (document analysis).
         RFFMS009 (analysis of FM account assignments in posted documents)
    2.  Special utility programs
         a) Former budgeting
            BPINDAN2_NEW (AVC: Determining the Index for Assignable Element)
            RFFMBUM1 (Display Inconsistency: Total Overall Vals/Annual Vals / Doc.Numbers). This program checks whether the overall values and the annual values correspond with the total of the relevant
            documents.
            RFFMBUM2 (Sum of Period Values <> Annual Values). This program determines inconsistencies between annual values and period values.
            RFFMBUM3 (Budgeting Data without Corresponding Master Data). This program determines inconsistencies on the database.
            RFFMBUM5 (Budget/Release Consistency Check). This program checks in the database whether the release amount exceeds the budget amount.
            RFFMBUM6 (Inconsistencies between Budget Structure and Master Data). You can use this program to determine inconsistencies between the budget structure tables and the master data tables.
            RFFMBUM7 (Display Inconsistency: Total Overall Vals/Annual Vals / Doc.Numbers). This program checks whether the total of the line items corresponds with the overall budget of the relevant record       for the overall values or the annual values of a specific budget type or budget subtype.
            RFFMBUM8 (Display Inconsistency: Total Overall Vals/Annual Vals / Doc.Numbers). This program checks whether the overall budget record for overall values or annual values corresponds with the
            total of the relevant line items of a specific budget type or budget subtype.
            b) Fiscal year change
               RFFMCFM1 (Closing operations monitor). You can use this report to display an overview of the settings that are relevant for the closing operations.
               RFFMCCF_DISPLAY You can use this report to display documents concerning the fiscal year change.
            c) Account derivation
               You can use transaction FMDERIVE to activate the trace. You can reproduce the account derivation during posting as a result.
            d) Payment selection (RFFMS200)
               RFFMS200_TRACE (Trace for Payment Selection Analysis). You can use this check program to analyze a complete clearing lot without debugging the payment selection program or without having to    search for the relevant information in the system.
               FAGL_SHOW_SPLIT Simulation of the document splitting using expert  mode -> this is relevant for online payment update.
            e) Federal Government
               RFMFGRCN_RP1 Reconciliation Analysis Report
        3.  Matching programs
            RFFMRC04 (for matching line items and the totals record). This report analyzes differences between line items and totals records in Funds Management. If derivations were corrected in the update run,  you must set up the availability control (transaction FMBV) again because this control is based on the totals records.
            RFFMRC01 (for matching actual data). This report checks at line item level whether the selected FI documents are updated in Funds Management.
            RFFMRC07 (for payment matching). You can use this report to match the account movements on the bank accounts and the bank clearing accounts of financial accounting with the data in Funds Management and vice versa.
            RFFMRC21 (for the reconciliation of earmarked funds). You can use this report to reconcile documents such as funds reservations, funds precommitments, funds commitments, funds blocking and forecasts of revenue. If the program determines inconsistencies, you can use transaction FMN5N (program RFFMRP03N) to correct the relevant FM commitments.
            RFFMRP07 (for rebuilding sales orders in FM). This program posts selected sales orders and rebuilds the relevant data of the open items in Funds Management.
    To understand FM itself (which means all the component/module/area) please check the following menu in help.sap.com
    SAP ERP Central Component -> Financials -> Public Sector Management ->
    Funds Management
    There you will find a lot of information related this component that is integrated with FI, CO, MM, SD, PM and so on.
    Best Regards,
    Vanessa.

  • Problems running basic text in aftereffects faster than 19fps... what exactly do I need?

    OK, so I finaly upgraded my computer into the mild 21st century, and to my disapointment, I cannot seem to run anything as smoothly as I had thought.
    These are the specs for my computer...
    ASUS m5a99x EVO motherboard
    8 gigs ddr3 1600 ram
    NVIDIA 9800gt 1 gig ddr3 gpu
    AMD Phenom II x4 B50 Processor at 3.2ghz (IE its an AMD athlon II 450 X3 3.2ghz with its fourth core unlocked (of which i have had no problems with thus far, as it seems to be very stable)
    150 gig 7200 sata 2 harddrive (OLD)
    200 gig 5400 sata 2 hard drive (OLD AS SH*T)
    300ghz portable usb2 hd (7200) (2 years old)
    Basicly, I cant seem to run even basic text in after effects faster than 19 FPS.
    I've tried to change the resolution to half, and even a fourth, and that didnt work at all, infact it made it run about 1 frame worse.
    I tried changing the Open gl texture memory, raising and lowering, but to no avail, Ive changed the ram usage in after effects to use 2 gigs per core, then one gig, then turned off multiframe rendering alltogether, and nothing.
    I feel like ive tried everything in my power.
    Now the Imacs at my school, they run the program smooth as hell... and they arent that much better, spec wise than my computer.
    Even my friends Imac can run it smooth, and he only has an I5 cpu at 2.4ghz, which is fine and my understanding of cpus is that those are better proccessors, but its not that much better, and even still, why would that be neccesary just to run text scrolling accross the screen?
    Even more so, why would changing the resolution not have any effect?
    What exactly do I need to run after effects smoothly for a basic text scroll at say, 720P?
    I need to know what to upgrade, soon I plan to get cs6 and I would like to have a computer that can edit basic HD properly.
    What I realy dont get is that I know people with laptops that are running AE smoothly and these are much worse than the specs on my machine, some even with only 4 gigs of ram...
    Is there something wrong, do I have some sort of frame limiter thats capping at 19 fps? is there some sort of memory leak?
    Any help would be much apreciated.
    Now the only thing I can think of thats holding me back is the crappy hard drives, every thing else seems like it should at least run text on after effects at 30 fps.

    thanks, that at least is enough to get me started, lol I have a deadline tomorrow and have been burning a lot of time on just trying to get this to run smooth.
    BTW, I am running the project off of the portable, I switched from the old, but faster harddrive that was sata2 to the portable given I thought that might increase the speed, which it didnt.
    what I might do is crack the case and just plug it straight into the computer, though I am hesitant to do so as if I were going to do that, I might as well just purchase a usb 3.0 one and do that so i can get sata 3 out of it, since those cases dont exactly just snap back together.
    When I say basic text, I mean layered text, just word after word in order. I honestly dont have any plugins that I know of, (if I had the money for them I would have spent it on a better computer probably) so what I have is what came with the master collection.
    And when I say 19 FPS I mean spacebar...
    NOW I KNOW, that Im not garunteed 30 fps when running the preview, but when I use the mac, it previews fine... and i just looked up my CPU in comparison to the I5 in the IMAC that I was refering to, and mine is actualy faster according to some benchmarks, granted its not faster than the vast majority of I5s and I7s, but the particular ones in the computers I was refering to, mine is actualy faster over all, so I figure its not a CPU thing (unless its a -our software only works right on INTEL- thing).
    Now as far as the 3d camera, yes I am using it, but even when I run the text without a camera function (ie the thing that you have in your comp) or any sort of 3d layering it runs just as slow.
    The Audio might be a problem, I used to have a soundcard, but that died about a year ago so I have been using onboard sound (realtek HD something) which truly sucks in comparison to a proper sound card, but I cant imagine the IMACs have anything better, I mean the sound from the Imac kinda sucks alltogether, dosent even have any sort of virtual surround... But a driver issue it could be, realtek is kind of ghetto in that regard.
    I will try some of the tips above (the open gl and the preview output and such), and thank you very much.
    *EDIT*
    OK, so with the preview output, I have computer monitor only? is that what you ment?
    *EDIT*
    OK, so I did the OpenGL thing, removed it, and for a brief few secconds, it started to run at a mix of 25 to 30 fps, then, when I went to play it again, it was back at 19.

  • What exactly is the diff between main window and variable window

    what exactly is the diff between main window and variable window in SAP script?

    hi,
    MAIN WINDOW :- In a main window you display text and data, which can cover several pages (flow text). As soon as a main window is completely filled with text and data, the system continues displaying the text in the main window of the next page. It automatically triggers the page break.
    You can define only have one window in a form as main window.
    The main window must have the same width on each page, but can differ in height.
    A page without main window must not call itself as next page, since this would trigger an endless loop. In such a case, the system automatically terminates after three pages.
    VARIABLE WINDOW :- The contents of variable windows is processed again for each page, on which the window appears. The system outputs only as much text as fits into the window. Text exceeding the window size is truncated; the system does not trigger a page break. Unlike constant windows, the page windows declared as variable windows may have different sizes on different form pages.
    As far as the processing of the window contents is concerned, the system currently treats constant and variable windows alike. The only difference is that constant windows have the same size throughout the form.
    hope this will be useful.
    If useful then reward points.
    with regards,
    Syed

  • What exactly is the advantage of VPN?

    I work in an architectural office of about 15 people. We've always had access to our wiki, files and calendars when out of the office.
    Currently we have a Standard setup of Leopard Server with the following services: iChat (using just a private local domain), iCal (with all calendars delegated to one another), AFP file server (3 different groups) and Wiki Server.
    What exactly would the advantage be to us of VPN, over simply connecting to a file server via "Connect to Server...", accessing our Wiki via the office IP address, and subscribing directly to our calendars from home?

    VPN: Virtual Private Network.
    Virtual: implemented without needing specific hardware; uses existing networking hardware and connections. Non-virtual ("real" or "physical") private networks typically involve dragging network wires around or broadcasting signals of your own, or leasing T1 or SONET lines and other such gear from a communications vendor.
    Private: A private network is (preferably) difficult to eavesdrop from the open WiFi at the coffee shop, easier to control access. Non-private networks are also known as open networks, and that ftp or telnet or imap/pop password you just entered can be read by others on the same network. That, and the entire contents of the mail messages you have sent and received over the open network are also accessible.
    Some private networks are less secure than others. The WEP-based security provided by some WiFi networks is now usually considered to be analogous to a wide-open WiFi; WEP is quite weak, and tools to break it are widely available. WPA is rather better here, and anyone using WEP should move to WPA, or better. (qv: the TJX credit card data exposure was reportedly due to the use of WEP.)
    Most VPNs also have some form of authentication; a certificate, smartcard or token card, or other such challenge. Passwords are one of the weakest mechanisms here, but there are VPNs that use just passwords.
    +I guess too, there is some additional functionality added. For instance if you're logged into the VPN with a work laptop, presumably if you update your server-based calendar it will update the server as well.+
    No. A VPN is and should be assumed nothing more than a network connection. The difference is in the degree of privacy provided. Beyond the encryption and authentication typically inherent, VPNs do not add application-level features over what an open network connection might provide.
    An ssh tunnel is a specific form of VPN, and does reasonably well at providing security and at avoiding exposing your password and your data.
    Network: as with open networks, VPNs can be used to allow client systems to access a network, or to bridge two or more networks together. VPNs can also provide a reasonable way to manage the connections between these networks, or a client connecting into a network. For the purposes of discussing connectivity, a VPN is another form of a network connection.

  • What exactly is the difference between enqueue,latch & lock

    Can someone explain in simple words (with example if possible) what exactly is the difference between enqueue,latch & lock?
    I have gone through documentation & other links,but just not able to figure out the exact & clear difference between these three..
    Cheers,
    Kunwar

    In addition to links provided by Sb and nice explanations by Aman, i would like to add below :
    1.Latches and enqueues are lightweight serialization devices used to coordinate multi-user access to
    shared data structures, objects and files.
    Latches are locks that are held for extremely short periods of time, for example the time it takes to modify
    an in-memory data structure. They are used to protect certain memory structures, such as the database
    block buffer cache or the library cache in the shared pool (as described in Chapter 2, Architecture). Latches
    are typically requested internally in a ‘willing to wait’ mode. This means that if the latch is not available,
    the requesting session will sleep for a short period of time and retry the operation later. Other latches may
    be requested in an ‘immediate’ mode, meaning that the process will go do something else rather than sit
    and wait for the latch to become available. Since many requestors may be waiting for a latch at the same
    time, you may see some processes waiting longer than others. Latches are assigned rather randomly, based
    on the ‘luck of the draw’, if you will. Whichever session asks for a latch right after it was released will get it.
    There is no line of latch waiters, just a ‘mob’ of waiters constantly retrying.
    Oracle uses atomic instructions like ‘test and set’ for operating on latches. Since the instructions to set
    and free latches are atomic, the operating system itself guarantees that only one process gets it. Since it
    is only one instruction, it can be quite fast. Latches are held for short periods of time and provide a
    mechanism for clean-up in case a latch holder ‘dies’ abnormally while holding it. This cleaning up
    process would be performed by PMON.
    Enqueues are another, more sophisticated, serialization device, used when updating rows in a database
    table, fro example. They differ from latches in that they allow the requestor to ‘queue up’ and wait for
    the resource. With a latch request, the requestor is told right away whether they got the latch or not.
    With an enqueue, the requestor will be blocked until they actually attain it. As such, they are not as fast
    as a latch can be, but they do provided functionality over and above that which a latch can offer.
    Enqueues may be obtained at various levels, so you can have many ‘share’ locks and locks with various
    degrees of ‘shareability’.
    Source:Expert Oracle Database Architecture by Thomas Kyte
    2.Good PPT at http://nocoug.org/download/2001-05/latches.ppt
    3.Good PPT by Mark bobak at http://www.mi-oaug.org/Presentations/Understanding%20Locks%20and%20Enqueues.ppt
    HTH
    Girish Sharma

Maybe you are looking for