About xi example

Hi,ervery body.i have learned this only two weeks.Now i have a problem that is when id config Integration Builder i find importing objects of RFCs take me long time and i have not sucessed about this.could any one can help me?

Another question:If i make the operation of this ,Tools->Transfer from System Landscape Directory->Import Software Component Version,should i activate it  from the Change Lists firstly and then do other operation like import object of rfc?
After long time ,i see the result is internal problem.
thanks for all of your help!
Edited by: ma lemon on Nov 27, 2008 4:34 AM

Similar Messages

  • A question about the example "Filter"

    Hi,
    I have a question about the example "Filter (The Filter example illustrates how to filter data using a butterworth filter)" in the measurement studio reference now, it is one of the analysis examples.
    I load this example in Vc++, but when I compile it, the error messages are:
    "'ButterworthHighPass' : is not a member of 'CNiMath'" ,
    "'ButterworthHighPass' : undeclared identifier",
    "'ButterworthLowPass' : is not a member of 'CNiMath'" ,
    "'ButterworthLowPass' : undeclared identifier",
    "'WhiteNoiseWave' : is not a member of 'CNiMath'" ,
    "'WhiteNoiseWave' : undeclared identifier",
    Can you tell me what is matter? and how can I solve it?
    Thanks!

    Hi,
    I was hoping that you could tell me what version and edition you have of Measurement Studio. I also need to know if you are using .NET or 6.0. For example, "I am using Mesurement Studio Enterprise edition 7.1 for Visual Studio .NET."
    Depending on the version that you have, different functions and controls are included. I believe that you may have an edition that does not include the Butterworth filter. Let me know and we can go from there.
    Thanks,
    Caroline
    National Instruments
    Thanks,
    Caroline Tipton
    Data Management Product Manager
    National Instruments

  • Question about calculation example with Query Designer

    Hi guys,
    I have to calculate within columns and rows and I am not familiar with the settings in Query Designer that could be done to achieve the results.
    For example:
    Payments----
    Delay -
    Weighted Delay
    1000USD--10 days--
    10000
    2000USD--20 days--
    40000
    3000USD--xxx--
    50000 (this is the sum row)
    The column marked with the xxx is calculated with the sum of weighted delay divided by the sum of payments (50000 / 3000).
    Has anybody an idea how the sum row can be calculated separately?
    Thank you for suggestions!
    Edited by: saplaz on Jul 13, 2010 8:47 AM
    Edited by: saplaz on Jul 13, 2010 9:08 AM

    Hi,
    Assuming you have the Payments Infoobject in the rows and WD Infoobject in the columns; Delay as a formula object.
    > Payments----
    Delay -
    Weighted Delay
    > 1000USD--10 days--
    10000
    > 2000USD--20 days--
    40000
    > 3000USD--xxx--
    50000 (this is the sum row)
    > The column marked with the xxx is calculated with the sum of weighted delay divided by the sum of payments (50000 / 3000).
    You may try this workaround of using
    NODIM( SUMCT(WEIGH_DELAY) / SUMCT(PAYMENTS) )
    on a formula variable. (In this case, the assumption is you have not static type-restricted the rows/cols) If you find any hinderances in the default approach, you may check this out as a formula & insert this at the cell editor level.
    If not, use a simple formula variable; here define the replacement path as 0(N) for your Payments. (N being the # of digits)
    Use a simple calculation:
    SUMGT(WD)/FV
    But you may not get an result o/p in the last row, as the values are not linked (sans relation with Payments). as it will return a X for the delay in the Result row.
    Pls. let me know know if this works or some sample o/p if the initial assumption was wrong.
    Thanks,
    Arun Bala

  • Question about FPGA examples

    All,
    I have just installed a 7813R FPGA card in my PXI chassis.  I have never worked with FPGA software before so I started with a simple example, "Digital Line Input - R Series.lvproj".  Because this was complied on a 7831, I believe I need to create a new target.  I have done this and then placed the "things to move" folder under my new target.  The next step appears to be "Recompile the FPGA VI by right-clicking the FPGA VI and selecting Compile."  However, when I right click, there is no Compile option. 
    Please help, my head hurts from keyboard pounding.
    Thanks

    the method for setting up a compile has changed in the later versions of LabVIEW.  the shortcut is to open the VI and hit the run button.  this will cause labview to set up a build specification for the VI and try to compile it.  the longer way is to set up the build specification yourself (not hard).
    after the build spec has been set up, you select "build" option on the build specificaiton or just try to run the VI again.
    Stu McFarlane
    Viewpoint Systems, Inc.

  • Question about the example hfm sdk project HfmEAExtractSample

    I am trying to open the hfm sdk sample project hfmeaextractsample,which is a vb.net project to call the extended analytic functions in vb.
    it referenced several hfm dll, including Hsvmetadata.dll,Hsvsession.dll,Hsvstarschemaacm.dll and hsxserver.exe, from the guide it said I need to install the hfm client, I did, after that I found out these files were llocated at server, so I copied them to local pc. and tried to reference them in this vb project. I was able to reference the hsvmetadata.dll and hsvsession.dll, but the reference of the hsvstarschemaacm.dll and hsxserver.exe failed, anybody has idea how can I get this fixed?
    maybe some of you has the experience to use this sample project.
    thanks

    I just tried to call the api to extract security file but failed. Investigated for some time and finally worked it out. Remember to do the following steps:
    1. Copy the "Server" folder from the server in the install directory for referencing the related libraries e.g. HsvSession.dll, HsxServer.exe
    2. Enable DCOM in the Financial Management Configuration Utility
    Hope it helps

  • I can't get my applications to open to full screen. The apps are opening at about 75% and I cant figure out how to get them to open to the full screen.

    I cant get my applications to open to full screen. The apps are opening up to about 75% and i cant get them to extend to full screen.

    Which applications are you talking about? 
    Example: Browser application - At the bottom right corner of a browser window you will see a small square with 3 diagnal lines.  Place your cursor in that corner to stretch out your window to full screen.  The next time you open your browser app, the window will be full screen.

  • Confuse in Chapter 25 Persistence in the Web Tier's example book store.

    Hi all,
    I'm confusing about the example in Chapter 25 Persistence in the Web Tier.
    the book store example creates the bookdbao in contextlistener
    BookDBAO bookDBAO = new BookDBAO(emf);
    context.setAttribute("bookDBAO", bookDBAO);and the bookdbao's constructor like this.
        public BookDBAO(EntityManagerFactory emf) throws Exception {
            try {
                em = emf.createEntityManager();
            } catch (Exception ex) {
                throw new Exception(
                        "Couldn't open connection to database: " + ex.getMessage());
        }and the servler get bookdbao like
    BookDBAO bookDBAO = (BookDBAO) getServletContext().getAttribute("bookDBAO");so if many users access the servlet at the sametime,
    they all get the same bookDBAO,
    but i think em is not guaranteed to be threadsafe.
    so the example is not thread-safe, is it?
    thanks

    Hi all,
    I'm confusing about the example in Chapter 25 Persistence in the Web Tier.
    the book store example creates the bookdbao in contextlistener
    BookDBAO bookDBAO = new BookDBAO(emf);
    context.setAttribute("bookDBAO", bookDBAO);and the bookdbao's constructor like this.
        public BookDBAO(EntityManagerFactory emf) throws Exception {
            try {
                em = emf.createEntityManager();
            } catch (Exception ex) {
                throw new Exception(
                        "Couldn't open connection to database: " + ex.getMessage());
        }and the servler get bookdbao like
    BookDBAO bookDBAO = (BookDBAO) getServletContext().getAttribute("bookDBAO");so if many users access the servlet at the sametime,
    they all get the same bookDBAO,
    but i think em is not guaranteed to be threadsafe.
    so the example is not thread-safe, is it?
    thanks

  • Question about "synchronized" and "wait"

    Hello, everyone!
    I have seen a piece of code like this,
    synchronized (lock)
    //do operation 1
    lock.wait();
    //do operation 2
    I think in the above piece of code, when a thead finished operation 1, it will release the lock and let other threads waiting for the lock have chance to run the same block of code. Am I correct?
    If I am correct, I have a further question, a "synchronized" block means a set of operations that can not be interrupted, but when invoke "wait" method, the thread running in the "synchronized" block will be terminated (interrupted) by release the lock and other threads will have chance to enter the "synchronized" block. In short, the execution inside the "synchronized" block will be interrupted. So, I wonder whether the above piece of code is correct and conforms to the principle of "synchronized". And what is its real use?
    Thanks in advance,
    George

    Thanks, pkwooster buddy!You're welcome
    I just wondered whether "wait inside a synchronized
    block" technology is thread safe. Please look at the
    following example,wait and synchronized are thread safe.
    public class Foo {
    int mVal= 0;
    public final Object mLock = ...;
    public void doIt() {
    synchronized(mLock) {
    mVal = ...;
    mLock.wait();
    if (mVal == ...) {
    // do something
    } else {
    // do something else
    }If we have two threads, T1 and T2, enter the block in
    their respective order, and T1 is woken up first, T2
    may have tampered with T1's execution path because T2
    changed mVal while T1 was asleep. So T2 manipulate
    instance field mVal is a side-effect.when you do the wait() you give up the lock and the other threads get a chance to run. When you exit the wait() you get the new value of the myVal variable which may have been changed. This is exactly what you want. To make that not thread save you could do
    int temp = myVal;
    wait();
    if(temp == ...)in this case the variable temp contains the old vale of myVal.
    >
    I think the most safest way is never wait inside a
    synchronized block, but it is less efficient. What do
    you think about the trick of wait inside a
    synchronized block? I think you are very experienced
    in thread field from your kind reply.
    Thanks in advance,
    Georgewait(), notify() and notifyAll() are very useful. You need them when you want threads to cooperate in an predictable manner. I recommend that you review the section on consumer and producer classes and wait and notify in the Threads Tutorial. It gives good examples. For a practical example of this you could also take a look at my Multithreaded Server Example. It implements a simple chat server that switches String messages. Look especially at the send(), doSend() and popMessage() methods in the StreamConnection class. These allow the receive thread of one user to send messages out using the send thread of another user. If you have questions about that example, please post the questions on that topic.
    Hope this helps.

  • Examples of using flashbuilder/flex tags

    can anybody recommend some resources for examples on using some of the flashbuilder/flex tags.
    as a cold fusion web developer, there are tons of resources with snippets or simple examples on using most the cold fusion tags and functions.
    liveedocs.adobe.com is a great reference guide but sometimes I need examples and snippets ; reference material is not very useful for learning.
    is there or will there be something similar with flex/flashbuilder?

    I assume you're asking specifically about Flex4 examples? There are tons of resources (Adobe and non-Adobe) for pre-Flex 4 coding, so I won't go into those. For some examples and info on Flex 4, you might check out the Adobe devnet site - we're recently posted some articles talking about various aspects of Flex 4, with sprinklings of code and demos to help illustrate the points:
    http://www.adobe.com/devnet/flex/
    Also, there were a few talks at a Flashcamp event a couple of weeks ago - it might be worth checking out the videos that were posted:
    http://labs.adobe.com/technologies/flash/videos/#flashcamp
    (more about the event and links to some of the slides here: http://www.flashcamp.org/)
    You can also follow some of the blogs out there that are talking about Flex 4. A few of us on the SDK team have blogs, but there are also non-Adobe bloggers out there talking about it and posting code and examples.
    Hope that helps.
    Chet.

  • Doubt about the sizing in the CPH

    Hi gurus!
    I have the following doubt about the sizing in the CPH.  I'm going to implement the CCMS BI CONTENT, i read the Note 979581 - Installing and configuring the CCMS BI Content, but in the document called "IT Performance Reporting Using SAP NetWeaver Business Intelligence" you can see images in this link:
    http://www.servidor-imagenes.com/show-image.php?id=050236bd91654e16c94a559350611dff
    here said how I can calculate the sizing based in Data Record Size per each Metric stored, but in specific,  about the example: 20 systems, 17 CPH metrics. are included SCM, BI, ECC, SOLMAN in this 20 systems? And about the 17 CPH Metrics is talking about ratios? what's mean the CPH metrics?, How can I know what is my CPH metrics?
    I hope can help me
    Best Regards
    Ramon Sanchez

    this theme has been closed on our enterprise

  • Where is the Help File in VB examples?

    Hi,
    I'm running through the examples of Measurement Studio for VB6. 
    When the project runs, pressing the [Help] button invokes an help file.  However, when not running, while looking at the callback for the [Help] button I can only see  the procedure  'Private Sub CWHelpButton1_GotFocus()'.  There's nothing in this procedure to call the help file.
    How does the help file invoked?
    Thanks
    Rafi

    It looks like that button is designed to just give help about additional examples:
    http://digital.ni.com/public.nsf/allkb/AB2EA98D18D​2F12E862565ED006BAA3F
    What information exactly are you looking for when you ask  "Can anybody tell me how to obtain this information?"
    Richard S -- National Instruments --Applications Engineer -- Data Acquisition with TestStand

  • Workflow Functionality Session examples

    Hello
    I just looked into a Expert Session ( The New Workflow Functionality in SAP Business One ) , PDF at http://service.sap.com/~sapidb/011000358700001122572013E  and download the whole presentation with video from the SAP Partner Enablement Center. I got some examples but some of seem not to be working. Any suggestions ? Have anyone seem them ? Does anyone know about working examples of the Workflow Functionality that do work ?
    Regards
    Hector

    Thank you, Randy.
    Would the response collection and reporting work correctly in that scenario?  Would the receipt of the form be registered if it came back via email?

  • Where can I find more informatio​n, tutorials, or examples using the toolkit NXT for labview?

    I have read all the PDF's of the page http://zone.ni.com/devzone/cda/tut/p/id/4435 :
    LabVIEW_Toolkit_for_LMS_NXT_Getting_Started_Guide
    How_To_Create_NXT_Blocks_with_NI_LabVIEW
    LabVIEW_for_NXT_Advanced_Programming_Guide
    but I want to know if you know or have more information about, tutorials, examples using the toolkit NXT for labview.
    I want lo learn more about this toolkit, but there isn't enough information...
    thanks everybody that can help me

    a  list of LabVIEW leranings can be found here
    http://www.ni.com/academic/lv_training/how_learn_l​v.htm
    for the NXT you can also look on the LEGO site
    greetings from the Netherlands

  • Analog in example

    Hi, i've just started to use vb.net recently, after using labview for few years now. I was wondering if anybody had an example of an analog in logger. I have examples of analog in but no loggers. Any help greatly appreciated.
    Thanks Stuart

    Hi, Anuj:
    Here are there questions about this example ( please see the attachment):
    The program can run for several seconds. Then I get this error:
    NON-FATAL RUN-TIME ERROR:
    "AIAO_Sychronize.c", line 142, col 18, thread id 0x0000090C: Function WFM_DB_HalfReady: (return value == -10608 [0xffffd690]). noTransferInProgError: No transfer is in progress for the specified resource.
    The program should outputs two sine waves of different frequencies to analog outputs 0 and 1. It should simultaneously synchronously reads from channels 0 and when the acquisition stops it graphs channel 0.
    However, I can only see the outputs for several seconds, and then I got the error information. How does this happen?
    Moreover, it is expected that the AOs w
    on't actually output any points until the AI starts doing D/A conversions and so they will both start at the same time, but when I run the program the AOs output without any AI starting.
    Finally, it is said that when the acquisition
    stops the program should graph channel 0. How can I do this? Does that mean when I stop my snesor's working?
    Thank you very much!
    Marlon
    Attachments:
    AIAO_Sychronize.c ‏8 KB

  • Database examples

    hi, do you know about database examples/tutorials for cs3 ? (i intend to connect flash with php/mysql, if possible)
    tnx

    Here's the one I used that got me over the hump as far as getting Flash in the picture...
    http://www.gotoandlearn.com/play?id=20
    I had a little previous experience with PHP/MySQL, which helped.

Maybe you are looking for

  • HP P1006 driver for windows 7 (32-bit) not working

    Hello. I have a problem with my printer P1006. It works fine before with  windows vista but when I upgrade it windows 7 professional last month. The printer doesn't work. I tried to download the driver for windows 7 using IE and Firefox. The driver i

  • IPhoto Albums not seen in iTunes after iOS 6 update

    I upgraded a 3rd gen iPad and an iPhone 4 to iOS 6, then updated my Macbook Pro (2.4 ghz quad core i7, 8GB RAM) to 10.8.2 with the requisite iPhoto update.  Now, iTunes will not show my iPad even though wireless sync is enabled, unless the iPad is co

  • Utilization of TDS Provision

    Dear All, We are using SAP ECC 6.0 version. We are having a problem with the utilization of TDS provision. Entry before 31.03.09 We are doing the following steps 1. Create Service Order - ME21N 2. Maintain the service entry sheet - ML81N 3. Creating

  • Redeploying war files WL 7.0

    When a war file is updated and uploaded this error occurs when redeploying weblogic.management.ApplicationException: Prepare failed. Task Id = 10 Start server side stack trace: weblogic.management.ApplicationException: Prepare failed. Task Id = 10 Mo

  • No CO-PA Documents out of MM

    Hello, i have the following problem. Is there a way do have CO-PA active but to aviod CO-PA Documents out of MM. Thank you in advance Tobias