Algorithm for Rainflow live cycle (Markov) in mstudio 6?

Hi,
does anyone knows how to create a rainflow algorithm for live cycle analysis
(Markov algorithm) by using measuremnt studio 6. Is there any algorithm
build in the lib ? I need a algorithm for a visual c++ programm.
Thanks,
Torsten Schultz

Try the latest Fixpack which is 13. This will take WebSphere to 6.1.0.13
Every fixpack from IBM for WebSphere now come with its own UpdateInstaller, downloaded separately. Install this first.
Then copy the Fixpack .pak file into the /maintenance folder of the UpdateInstaller. Then run the UpdateInstaller.
Also, remember that the fixpack for the IBM Java SDK also needs to be separately downloaded and installed.

Similar Messages

  • Which is the latest version availble for Adobe Live cycle ES2

    Hi,
    Can anybody let me know the latest version of Adobe Live cycle ES2 available with adobe live cycle.
    Is it version 9.0.1 ??
    Please help me, I want to take license for Latest version of adobe live cycle from adobe for my client..
    Regards
    Sunil Gupta

    Just before 5 months i used to work on version 9.0.1. And i was told that 9.0.1 is the latest version for adobe live cycle es2.
    So is it still latest or adobe has release any new latest version.
    Please explain a bit more. I have to explain it to my client because we have promised to deliver them latest version.
    regards
    Sunil

  • Live Cycle Interview...

    Hi All,
    I have an interview for Adobe Live cycle developer position.... though i have some hands on experience in developing forms, i was wondering if there is any material which has some common interview Question.
    I really appreciate if someone can provide me with the required material.
    Regards,
    Sun.

    Hi Towlift,
    To specify & to support Gurleen, I would like to mention that you have purchased CC on Feb 11, 2014 which came with Acrobat pro XI.
    Hence this latest version of CC is not eligible for Livecycle Designer ES4.
    Regards,
    Rajshree

  • Adobe live cycle form

    Hi Guru's
    I would like to know pre-requisites for adobe live cycle and is this tool installed in frontend systems (sap gui) or on sap servers and we  have only  abap stack in our landscape so please give some clarification it will be very helpfull
    Regards
    Mohammed

    These links may help you...
    SAP Interactive Forms by Adobe - ABAP Development - SCN Wiki
    adobe forms layout editor not working
    and ask basis person to install Adobe Live Cycle Designer 7.* or later to download & install in you system
    thanks
    Jyoti

  • Live Cycle for Dummies/Begginers???

    Hello All;
    I have been thrust into a new position within my organization.  My new role is to learn everything I can about Live Cycle ES designer for custom forms, etc.  I have never worked with Live Cycle.  Google, Amazon and other searches for dummy/beginner resources yielded very dissapointing results.  I did watch a couple of videos/presentations on Adobe TV (very cool because I love visuals).  I am still looking and searching for dummy resources.  Any replies to this would be greatly appriciated.

    I just purchased the book called " Foundation Form Creation with Adobe LiveCycle Designer ES".  It has some cool tips and tricks, but I still need a beginner/dummy version which I have not found  in any google/bing/amazon search.  Someone can make good $$ by writing an idiot/dummy book on this issue or provinding interactive online tutorials (IF they market and price it right).  I am also going through the "Help" and tutorial portion of the Live Cycle product on my machine.
    I guess I am used to hands on training or interactive training or  some type of dummy book.  Now I am just resigned that there is NO such thing.  I just have to play with it (and I have) and learn on the fly.

  • Help for installation Service pack for live cycle 8.2 ES

    Hello good day I might help is what is needed for installing the SERVICE PACK to use the live cycle 8.2 ES, I want to now how is te best installation to use live cycle ES
    thank you !!

    If you have a maintenance and support agreement with Adobe, you will have access to the Adobe Support site where you can download updates and service packs. The update/service pack you require depends upon your specific needs and your current update/service pack level.
    Steve

  • Run javascript in adobe live cycle work bench

    Hi All,
    Is there anyway we can execute the javascript in workbench?
    or is there any method to convert javascript to adobe script(execute script activity)?
    Actually i have written javascript in live cycle designer while pdf designing. now i want the same javascript at server end.
    Kindly someone help me to get this functionality.
    Regards
    Abhishek

    Hi Jasmin,
    Thanks for your quick reply.
    I have a javascript which generate sha1hash output for input string.
    I am getting an error while executing it in workbench.
    If i want to use same algorithm in execute script how can i able to use it.
    How should i convert this code in java?
    Please find the javascript below for sha1hash algorithm
    function sha1Hash(msg)
        // constants [§4.2.1]
        var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];
        // PREPROCESSING
        msg += String.fromCharCode(0x80); // add trailing '1' bit (+ 0's padding) to string [§5.1.1]
        // convert string msg into 512-bit/16-integer blocks arrays of ints [§5.2.1]
        var l = msg.length/4 + 2;  // length (in 32-bit integers) of msg + ‘1’ + appended length
        var N = Math.ceil(l/16);   // number of 16-integer-blocks required to hold 'l' ints
        var M = new Array(N);
        for (var i=0; i<N; i++) {
            M[i] = new Array(16);
            for (var j=0; j<16; j++) {  // encode 4 chars per integer, big-endian encoding
                M[i][j] = (msg.charCodeAt(i*64+j*4)<<24) | (msg.charCodeAt(i*64+j*4+1)<<16) |
                          (msg.charCodeAt(i*64+j*4+2)<<8) | (msg.charCodeAt(i*64+j*4+3));
        // add length (in bits) into final pair of 32-bit integers (big-endian) [5.1.1]
        // note: most significant word would be (len-1)*8 >>> 32, but since JS converts
        // bitwise-op args to 32 bits, we need to simulate this by arithmetic operators
        M[N-1][14] = ((msg.length-1)*8) / Math.pow(2, 32); M[N-1][14] = Math.floor(M[N-1][14])
        M[N-1][15] = ((msg.length-1)*8) & 0xffffffff;
        // set initial hash value [§5.3.1]
        var H0 = 0x67452301;
        var H1 = 0xefcdab89;
        var H2 = 0x98badcfe;
        var H3 = 0x10325476;
        var H4 = 0xc3d2e1f0;
        // HASH COMPUTATION [§6.1.2]
        var W = new Array(80); var a, b, c, d, e;
        for (var i=0; i<N; i++) {
            // 1 - prepare message schedule 'W'
            for (var t=0;  t<16; t++) W[t] = M[i][t];
            for (var t=16; t<80; t++) W[t] = ROTL(W[t-3] ^ W[t-8] ^ W[t-14] ^ W[t-16], 1);
            // 2 - initialise five working variables a, b, c, d, e with previous hash value
            a = H0; b = H1; c = H2; d = H3; e = H4;
            // 3 - main loop
            for (var t=0; t<80; t++) {
                var s = Math.floor(t/20); // seq for blocks of 'f' functions and 'K' constants
                var T = (ROTL(a,5) + f(s,b,c,d) + e + K[s] + W[t]) & 0xffffffff;
                e = d;
                d = c;
                c = ROTL(b, 30);
                b = a;
                a = T;
            // 4 - compute the new intermediate hash value
            H0 = (H0+a) & 0xffffffff;  // note 'addition modulo 2^32'
            H1 = (H1+b) & 0xffffffff;
            H2 = (H2+c) & 0xffffffff;
            H3 = (H3+d) & 0xffffffff;
            H4 = (H4+e) & 0xffffffff;
        return H0.toHexStr() + H1.toHexStr() + H2.toHexStr() + H3.toHexStr() + H4.toHexStr();
    // function 'f' [§4.1.1]
    function f(s, x, y, z)
        switch (s) {
        case 0: return (x & y) ^ (~x & z);           // Ch()
        case 1: return x ^ y ^ z;                    // Parity()
        case 2: return (x & y) ^ (x & z) ^ (y & z);  // Maj()
        case 3: return x ^ y ^ z;                    // Parity()
    // rotate left (circular left shift) value x by n positions [§3.2.5]
    function ROTL(x, n)
        return (x<<n) | (x>>>(32-n));
    // extend Number class with a tailored hex-string method
    //   (note toString(16) is implementation-dependant, and
    //   in IE returns signed numbers when used on full words)
    Number.prototype.toHexStr = function()
        var s="", v;
        for (var i=7; i>=0; i--) { v = (this>>>(i*4)) & 0xf; s += v.toString(16); }
        return s;
    Please reply for this
    Thanks in advance.

  • Add Header and Footer in Live Cycle ES2

    Hi,
    We are quite new to the use of live cycle pdf generation. Can anyone help us with information as to how we can add header and footers to our pdf files using livecycle ES2.
    And further, we would like to know whether header and footer adding is available in the trial version of Livecycle ES2?

    Hi,
    Thanks for the reply.
    We have another newly raised problem in the header and footer adding from Livecycle ES2. According to the PDF that you referred in the previous reply, we can add graphics to the PDF header, but we are unable to find a DDX tag that would enable us to add a image URL.
    Can you please help us again on the above?
    Purnima

  • I am trying to work on Live Cycle Mosaic 9.5 and I have downloaded FlashBuilder 4 and trying to con

    I am trying to work on Live Cycle Mosaic 9.5 and I have downloaded FlashBuilder 4 and trying to configure the mosaic plugin "LiveCycle Mosaic ES2 Plugin for Flash Builder 4" in Flash Builder as per following directions given on adobe site:
         "Add the following two update sites via Window > Preferences > Install/Update > Available Software Sites (names below are suggested/optional):
    Name: Galileo Location: http://download.eclipse.org/releases/galileo/
    Name: RIA Tooling Location: select the LiveCycle Mosaic ES2 Plugin for Flash Builder 4 ZIP file.
    Install RIA Tooling Feature: In Help > Install New Software, choose ("Work with") RIA Tooling Site.
    Select and install Adobe LiveCycle RIA Tooling."
    But I am getting the following error:
    "Cannot complete the install because one or more required items could not be found.
      Software being installed: Mosaic Tooling Feature 9.5.0.0-20100629-2-241916 (com.adobe.livecycle.ria.tooling.feature.feature.group 9.5.0.0-20100629-2-241916)
      Missing requirement: Adobe LiveCycle RIA Tooling Mosaic Core_UI 9.5.0.0-20100629-2-241916 (com.adobe.livecycle.ria.tooling.mosaic.core_ui 9.5.0.0-20100629-2-241916) requires 'bundle org.eclipse.wst.sse.ui 1.1.0' but it could not be found
      Cannot satisfy dependency:
        From: Mosaic Tooling Feature 9.5.0.0-20100629-2-241916 (com.adobe.livecycle.ria.tooling.feature.feature.group 9.5.0.0-20100629-2-241916)
        To: com.adobe.livecycle.ria.tooling.mosaic.core_ui [9.5.0.0-20100629-2-241916]"
    Please, suggest me how can I solve this problem to configure mosaic plugin on flash builder 4.

    Thanks CSound1.
    Bootcamp Assistant will read a DVD or an ISO file containing Windows retail versions and create a USB. What installation media for Windows do you have?
    If you have a DVD drive and connect to your MAC (or if you have a built-in optical drive), put in your DVD for Windows, Run Disk Utility as indicated and click on the DVD to verify that there are no issues with the media.
    Are you following the Bootcamp installation guide available from the apple website?

  • Creating fillable forms with Live Cycle that can be emailed, saved, printed, etc. by anyone!

    So I started using livecycle because the forms one can make are astounding, its a great program except for sending the forms out to be filled in especially to those only with reader. I've looked over a lot of past discussions and the answers seemed too complicated. Here is a workaround for not so computer savy folks like myself.
    First, create your form, use everything the software has to offer to make your form exactly like you want and yes you can use the "submit by email button" that's what it's for.
    Second, once the form is complete one seemingly complicated step to fix the "attach as pdf instead of xml" if your form keeps attaching as "xml" if it already attaches as "pdf" then skip the rest of the "second step"
         go to the top and click the "view" menu, then select "xml source"
         then go back to top and click the "edit" menu then select "find"
         type "xml" without the quotations and keep clicking "find next" until you see the "submit" line (eg. <submit format="xml")
         change the "xml" to "pdf"then go back to the "design view column" if you get a "parts of this or that cannot be whatever" message just click ok or ignore
    Third, assumming you used the "submit by email" button like you should be the find that button and click the center somewhere, too the right a "field" box comes up
         enter your own email address, you can enter an stock email subject to or leave it blank
         also, a bit further down it says "presence" then "visible" I like to change "visible" to "visible (screen only)" this way it does not show on the printed version. That is one of the things i like the most about this program, you can put text boxes, signature boxes, any kind of
              box and make it visible, visible only on print, only on screen, etc. you just have to play around. It's nice to put a large text box with instructions for how the person should fill out and what to do that helps them and doesn't show up on print.
    Ok, the above is a lot of words but if you print it out and follow step by step you'll see how easy it is and after a couple runs you won't have to look at your cheat sheet again.
    Fourth, So, it was easy to figure out how to make a form the frustrating part was sending it out to be filled in save, printed whatever then sent back to me (now you). the problem is, the form has to be distributed to be approved so to speak. If it is just for one person that is no big
         deal, just first click "file" "save as" give it a name it reverts into adobe pro and asks how you would like to distribute, follow the instructions you send it to whomever you like they fill it out and submit it back because your email address is linked to the "submit as
         email" button. But what if its just a form you want on the company share drive anyone can open fill out, save, send to you or send to someone else, that's where it's tricky.
    Fifth, Distributing to yourself so you can approve the form for world wide dissemination.
         Same procedure as above for the single recipient but instead of sending to someone else you send it back to yourself by entering your own email address again when it asks "how would you like to distribute your form--same as above"
         click "send now via email" enter your address they will return it to (but it's not they this time its really yourself)...follow the instructions, specifiy a generic folder that will collect data (you can delete later, you don't have to collect data unless you want)
         put in your email address as the recipient. change the stock email subject and message if you'd like, then click done, it will email you the form. close out the live cycle and adobe programs and go to your inbox (may take a min)
    Sixth, open your attachment.(no remember you submitted the form to yourself but think of yourself as someone else like a customer) when the form is open you can enter stock fields if you like or do nothing...click the submit by email button, follow the instructions and s
         send it back to yourself again (don't get confused...it's really you as the customer sending back to yourself as the owner of the form) if you are a criminal think of it as like "laundering money through a bank" you are laundering the form through your own email system
         close out the form and go to your inbox again an open the returned form. now when you open it there is something new. there is a box that says "this file is a completed form (even though you didn't enter any data---it's a laundered form now) and leave it on the
         "add to existing data set" which is the one you created earlier in the generic folder....click "ok", now the form changes once again, there is a new look to the top, don't worry about it just go to the top right of the form and click on "options" then "save file as" give it
         a name again and remember where you saved it to. then close adobe and say yes when it asks you if "you want to save changes to your data set"....say yes!!
    7th, forget the data set, no longer is important...find the form you saved and open it. go to the top and click the "advanced" button then "enable user rights in adobe reader" then click "save now" this is the final form so name it appropriately and place it where you want
         people to find it, they can now open, fill out, print, save as, email, whatever. The only downside is if they use the submit by email it automatically defaults to your email but when their email client opens they can delete your address and put someone else if they want.
    thats it...lots of words but it really is easy after you do it a couple of time. the final downside, if the final form works but you decide to change anything on it with LiveCycle, you have to go back through all the steps or it will tell whoever opens it in reader that the original
         has change and they cannot do anything with it, but it's ok, make your changes or improvement, by now you are an expert at laundering live cycle forms, take you 5 min, no worries!
    Happy Laundering!!
    Sean
    NOTE: this procedure only validated with LiveCycle 8.0

    Here is the window you will see when you choose Enable Usage rights.
    Note: That means that you can not edit any content once USAGE Rights are envoked.
    So you must make sure all corrections to documents made and perfect before Envoking rights.

  • Live cycle Designer

    We are looking for Live cycle designer.
    Please forward resume @
    [email protected]
    LiveCycle Form Designer
    San Francisco, CA
    Description:
    LIVE CYCLE Forms Designer with experience developing interactive forms for a 3-4 month contract (25-30 Hours per week).
    This assignment is a large form redesign project that requires (but not limited to):
    • Conversion of existing forms
    • Creation of new forms
    • updating content/fields/validation code
    • updating company/brand identity
    • standardize typography & layout
    Applicant must be experienced with LiveCycle, InDesign, Acrobat Pro, & Illustrator.
    Applicant must be able to follow specific design guidelines, and have a solid ability to code Javascript validation with little supervision.
    Thanks,
    Sanjeev Gupta
    R Systems Inc.
    Tel: 916-830-8887
    [email protected]

    Hello,
    - Which version of Adobe Live Cycle Designer should I ask for?
    above 8, can recommend you to install 8.1
    - The integrated install should be in my machine or in the server?
    don´t understand/ haven´t heard about this
    - Is this install integrated in the SAP install CD or should I ask for a new license?
    you need no extra licence because you´re a Developer:))
    I can recommend you get it yourself to speed it up. Find the newest GUI patch a the LCD yourself:))
    use these:
    Adobe LiveCycle Designer
    730026   Adobe LiveCycle Designer: Known errors and patches
    962763   Adobe LiveCycle Designer 7.1 Installation
    816065   Adobe LiveCycle Designer Installation with Developer Studio on SAP NetWeaver '04 SPS 18
    863138   SAP xfo object does not appear with LiveCycle Designer
    801524   Additional components for the SAP GUI installation server
    And go through this:
    /people/markus.meisl/blog/2006/11/03/the-most-important-sap-notes-for-sap-interactive-forms
    Regards, Otto

  • How does one strip out all Live Cycle data from a PDF and rebuild the form fields in Acrobat?

    Someone in a different department built a bunch of forms in Live Cycle. We now need to make minor edits to these forms but we all have Macs and can't use Live Cycle. Currently our only option to change a date and a name on each form  is to buy a new Windows workstation, buy a copy of Live Cycle and train someone for it.
    I understand the Live Cycle technology and Acrobat technology for forms are somehow different but there must be a way to just strip out all the Live Cycle form programming so that I just have the bare PDF with the text and layout.  Then make the text edits and rebuild the form fields in Acrobat.

    It depends on your PDF. Is the PDF a static XFA or a dynamic XFA?
    You can check to see if the PDF is static/dynamic by clicking File=>Save As, and it should say static or dynamic PDF as file type.
    iText will work with Static XFA forms created in LiveCycle. Dynamic XFA forms are not supported.
    You can also submit XML data to a server side script and parse the XML data using C# system.xml.xmlreader.
    Another tool that may speed the development of the project is:
    http://www.fdftoolkit.net/
    Note: FDFToolkit.net utilizes iText Technologies.

  • Unable to view pdf created in Live Cycle Designer ES2-initially thought to be a user/OS issue

    Unable to view pdf created in Live Cycle Designer ES2.  I initially thought this was a user / OS issue when I created a document for someone who is new to a MAC laptop.  She could not view the document through email.  Unfortunately, I began seeing the same error in my own document folders when searching for another document showing as icons instead of a list.  I can open the file without a problem although I see the error she sees only while viewing the icons in my folder.  I am using a Windows 7 PC. Now, I also know that if the document is downloaded, it can be viewed.
    Other notes:
    If trying to access the form via the internet, the same error is seen through Chrome, Firefox, and Mozilla but NOT through IE
    Everyone seems to have the latest or a very recent READER
    The form is compatible with Reader versions 7 and up
    Again, downloading from the internet to the computer appears to allow the file to open properly
    Document cannot be viewed on the Galaxy Tab 2 via Chrome or the pre-installed Internet Browser, nor can it be viewed through the Reader after download to tablet. I did not try on an Apple iPad.
    All parties involved are up-to-date with virus protection.
    Below is a link to the exact message received when trying to open the document.
    https://www.dropbox.com/s/wmjqzwyriovg9vi/Adobe%20Error.pdf

    You're on to something KJ!  Yes the form was created in LiveCycle Designer ES2 which came bundled with my Adobe X Pro.  I began creating a new form yesterday and found that I could not preview the form, rendering this same "error" instead.  I ran a repair on my Adobe and at first it seemed to fix the issue but after making some changes to the form I tried to preview again and couldn't.  Here is what I get when I try to preview my forms in Designer ES2: 
    When I click the OK button, it then gives me that single static page as mentioned above in previous posts.
    I searched Adobe yesterday trying to figure out how I could repair the LiveCycle Designer or if there was some sort of patch that I haven't gotten but was not able to find anything.
    (Sorry for the delay in response, I've been on vacation.)
    Message was edited by: AngelaC

  • Live Cycle Designer PDFs won't send over email

    I recently created a few PDF forms using Live Cycle Designer, but when I went to distribute them via e-mail I ran into an issue. Every time I attached a PDF file, it isn't recognized by gmail. I just get the message below. It's only the Live Cycle Designer files - other PDFs send just fine. I tried updating my Live Cycle software, downloaded the new version of Reader, re-started the computer, etc. but nothing works. Help!
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF
    viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by
    visiting http://www.adobe.com/products/acrobat/readstep2.html.
    For more assistance with Adobe Reader visit http://www.adobe.com/support/products/
    acrreader.html.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark
    of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other
    countries.

    Please check the Target Version of the Reader in the LiveCycle designer for the pdf.
    Also, Check which version of Adobe reader your browser is using.
    Sometimes even if the system is using the latest version, the browser version is different.
    Also, you can check the below mentioned url for more details.
    Can't view PDF on the web
    Let me know if this helps.

  • Form could not be edited in Acrobat X Pro and also in Live cycle. What form It could be    ?

    I have come across certain pdf forms which when opened in acrobat X pro could not be edited as the edit button is disabled. Doubting it to be  a XFA form I opened it in live cycle but it ask me to import the form as it was not originally created in Live cycle. What type of form it could be and which tool to use to edit it ?
    Form location : http://www.uspto.gov/forms/aia_forms.jsp
    Form name : AIA/01
    Thanks
    Shah Imran Alam

    I do not see any such security setting. you may find the file in the location below
    Form location : http://www.uspto.gov/forms/aia_forms.jsp
    Search for
    Form name : AIA/01

Maybe you are looking for

  • Adobe Air Installer crashes on Lion 10.7.2

    After upgrading to Lion 10.7.2 the Air application I use wouldn't start. I tried uninstalling and reinstalling Air to see if it would fix it, but the Air uninstaller continued to crash. I manually deleted the AIR runtime at /Library/Frameworks/Adobe

  • What is current best practice for backing up a hard disc?

    With the availability of various cloud applications, I would like to know if backing up an hard disc is now best done to the cloud?  For example, should you buy space in Amazon.com, or somewhere else on the Internet,  and then backup your hard disc t

  • Auto-reaction method not sending e-mail

    Hi everyone, We are trying to set-up email notificacions for cancelled jobs. So far I've configured SCOT and RZ20 succesfully. The alerts are triggered and the auto-reaction method is active and ready but it's not sending automatics e-mails. If I cli

  • Gift Card is Redeemed....

    I received a gift card as a present. I entered in the code but then it asked for my security questions which it never has before. After that nightmare was over, I typed in the serial number to activate the card but it says the code has already been r

  • Paragraph style including anchored frame possible?

    Hi, I'm working on a new template and can't get a specific paragraph style to work correctly. The page layout is a 1/3 to 2/3 page column layout. The 1/3 page column is called a "Marginalia"- column in German, sorry don't know the term in English. Al