Java webdynpro is compatible with VC?

Hi Experts
Whether Java webdynpro is compatible with VC?
What I mean is whether Webdynpro projects can be imported into VC and further modified.Please respond me as soon as possible
regards,
Noel

Hi,
no this is not possible.
VC is pure modelling; you can run a web dynpro from VC (and even within) by making use of HTML forms, but that's it !
In the next release (7.1) it will be possible to integrate web dynpro components, but it is not clear yet how this will be done.
Rgds,
Karim

Similar Messages

  • Is there other software like Java that is compatible with firefox 9.01?

    I use QuickBooks Online for my work as a bookkeeper. From the Pay One Vendor/Bill Payment screen I type in a vendor name then hit tab. Normally after hitting tab, all of the vendor's open invoices will automatically load onto the screen. But on Tuesday, Firefox automatically updated. I hit tab and nothing happens. I updated my plugins but Java said that its not compatible with the new version of Firefox. What do I do? Or is it something else that needs to be fixed? Please help. Thanks!

    Thanks! The procedure worked great for me (using iTunes 10), however there was one caveat. I also had to edit “AppleMobileDeviceSupport64.msi” with Orca and change the entry in “LaunchCondition” from
    VersionNT64>=600
    to
    VersionNT64>=501
    in order for the Device Manager driver update procedure to work, and iTunes to recognize my iPhone4. Prior to doing this, only “digital still camera” was displayed in the “imaging” entry in Device Manger. Once I did the above, “Apple Mobile Device USB Driver” was listed, and the procedure worked as written.

  • Java console not compatible with 6.01 Mozilla update

    Since the 6.01 Firefox update, I can no longer view flash panels and some images are not appearing on web sites. I look and found all the java consoles greyed out with the message they were incompatible with 6.01 Firefox. So what do I do now? I also notice that websites suddenly disappear when I did not close them. Please fix this problem.

    Hi catnip009:
    I can confirm cor-el's information that it is "normal" for the Java Console extension to be disabled in FF6 (see my post [https://support.mozilla.com/en-US/questions/870013#answer-247544 here] for instructions on how to test your Java installation).
    When you say "flash panels", do you mean that '''Adobe Flash''' doesn't seem to be working on some web sites with FF6?
    If that's the case, then try the following:
    First, check your Flash installation [http://www.adobe.com/software/flash/about/ here] on the Adobe web site. If your Flash isn't working or you don't have the latest Flash v. 10.3.183.7, do the following:
    # Uninstall Adobe Flash from the Windows Control Panel
    # Download and run the [http://kb2.adobe.com/cps/141/tn_14157.html Adobe Flash Uninstall Utility] to clean out remnants of any old installation
    # Re-boot your PC
    # Run the Adobe Flash Uninstall Utility again for safe measure
    # Download the Adobe Flash v. 10.3.183.7 standalone plugin installer (the non-IE NPAPI version) from the FileHippo site [http://www.filehippo.com/download_flashplayer_firefox/10462/ here] . Be sure to download v. 10.3.183.7 (the current stable version) and not a beta test version. '''Save the installation file to your hard drive and do not run the installation from your browser'''
    # Install Adobe Flash from the Run command (Start | Run) with the new installation file with all browsers and instant messenger software closed
    # Check your new Flash installation [http://www.adobe.com/software/flash/about/ here].
    If you also use the IE browser, the ActiveX version of Flash v. 10.3.183.7 for IE can be downloaded from FileHippo [http://www.filehippo.com/download_flashplayer_ie/10461/ here]. If you prefer you can re-install Flash from the Adobe site ([http://get.adobe.com/flashplayer/ here] for auto-detection of OS and default browser; [http://get.adobe.com/flashplayer/otherversions/ here] for any version of Flash), but I prefer using the standalone installers from FileHippo because Flash occasionally doesn't install correctly when you run the installation from the Adobe site via your web browser.
    Windows Vista Home Premium 32-bit SP2 * IE 9.0 * Firefox 6.0 * Java 7.0 * Adobe Flash 10.3.183.7

  • Typing and entering in the address bar yields no action(doesn't work)...Also, Java console not compatible with FF8

    The past two versions of FF have rendered the address bar useless when entering a web address...still works with links.
    Checked Java website...no updates available

    I'm using Firefox 22 on Windows 7 64-bit, by the way.
    You can very easily replicate this "bug" (or "feature"... ahem) by shift-clicking any hyperlink which opens up a new Firefox window. Immediately hit the "stop" button to stop the page from loading.
    If you're fast enough, the address bar will be completely empty and you can't "refresh" or try again or anything.
    In my opinion, the URL should be placed into the address bar the very moment that new window opens. I'd appreciate an explanation of why this is not already the case and if it will or will not be the case in the future.

  • Java cryption not compatible with non-java?

    I can encrypt/decrypt my text with misc algorithms using the Java crypto API:
    SecretKeySpec key = new SecretKeySpec(key.getBytes(CHARSET), algorithm);
    Cipher cipher = Cipher.getInstance(algorithm);
    cipher.init(Cipher.ENCRYPT_MODE, key);
    byte[] stringBytes = plainText.getBytes(CHARSET); //encode
    byte[] rawBytes = cipher.doFinal(stringBytes); //encrypt
    BASE64Encoder encoder = new BASE64Encoder();
    result = encoder.encodeBuffer(rawBytes); //encode bytes to base64 to get a stringHowever, when using other en-/decryption tools with the same algorithms, keys and plain/crypted texts, it doesn't work anymore, i.e. I can't decrypt text with such a tool that was crypted with Java and vica versa. Is there something missing in my code?

    @ggainey:
    Okay, but how do I get these transformation strings with mode and padding? When I try read the algorithms via
                String [] result = null;
                Set set = new HashSet();
                String serviceType = "KeyGenerator";
                Provider[] providers = Security.getProviders(); //all providers
                for (int i = 0; i < providers.length; i++) {
                    Set keys = providers.keySet(); //Get services provided by each provider
    for (Iterator it = keys.iterator(); it.hasNext(); ) {
    String key = (String) it.next();
    System.out.println("key :"+key);
    key = key.split(" ")[0];
    if (key.startsWith(serviceType+".")) {
    set.add(key.substring(serviceType.length()+1));
    } else if (key.startsWith("Alg.Alias."+serviceType+".")) { // This is an alias
    set.add(key.substring(serviceType.length()+11));
    }//next service
    }//next provider
    result = (String[])set.toArray(new String[set.size()]);
    System.out.println("Algos: "+de.icomps.ICUtils.toString(result));
    I just get this output for DES:
    key :KeyGenerator.DES
    key :Alg.Alias.SecretKeyFactory.TripleDES
    key :Cipher.PBEWithMD5AndTripleDES
    key :AlgorithmParameters.PBE
    key :SecretKeyFactory.DES
    key :Cipher.AES
    key :Alg.Alias.KeyPairGenerator.DH
    key :Alg.Alias.AlgorithmParameters.DH
    key :Alg.Alias.KeyGenerator.TripleDES
    key :KeyAgreement.DiffieHellman
    How can I get/generate the "DES/CBC/PKCS5Padding" style strings?

  • Java 8 not compatible with yosemite...is there a security hole?

    I installed Java8 per Oracles instructions and it is active in my Safari preferences. However, the app pop up still appears, even when I do not have Safari or any other browsers open or running. In fact, even if I reboot the computer and do not have any apps running, within a few minutes of loging in, the pop-up appears. So what is Yosemite looking for? Is there something else running Java in the background that could be a security hole?

    Hi there BallybailShannon,
    You may want to try updating Java using the installer below. 
    Java for OS X 2014-001
    -Griff W. 

  • Which version of Java Plugin is compatible with Firefox 9.0.1 and Ubuntu 9.04?

    This happened when i I tried installing JRE.
    I have updated firefox from version 3 to version 9.0.1

    Hi,
    If you have the IcedTea plugin, then Java will be automatically updated by the OS updates or you can manually try to update via the Software Center / Update Manager. Though not sure if Ubuntu 9.04 is still supported.
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]

  • How to configure JAVA webdynpro in ECC 5.0??

    Hello Friends,
    I just installed ECC 5.0. Is java webdynpro already installed with ECC 5.0?? If not how to install it?? if yes how to configure it?? And how to run java webdynpro?? help me please
    Thanks

    No, not required.
    You will need to maintain JCo destinations when you deal with your backend R/3 system from WD but as of now you don't need to configure anything.
    Just install and start creating your project in WD Java.
    Happy Learning
    Murtuza

  • Image not showing in Abobe integrated with Java WebDynPro

    Hi All,
    Image is not showing in Abobe integrated with Java WebDynPro.
    I did the following:
    Added the image field in adobe form. in URL value set the value of context node binding. Binding set to none and size set to Use Original Size.
    Then in script editor i wrote
    this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    at innitialize , javascript and client.
    I can see the image from the same url context value if image field is created directly in WebDynPro View.
    Can anyone suggest what is missing?
    Thanks and Regards,
    Nuzhat

    Try changing your line of code for this one
    this.value.image.href = xfa.record.Images.URL;
    Check that the url passed by scripting is correct with a messageBox for example.
    You can also try assigning a hardcoded url at scripting level to check if its works.
    Best regards, Aldo.

  • Java, Adobe Acrobat, HP Web Printing, Adobe Contribute, all of which people use world round no longer compatible with Firefox? Maybe it's time to go back to IE.

    Firefox used to be the best, now its working against every piece of software i use in the publishing industry. Java is important, so is Adobe Acrobat, and Adobe contribute.
    Maybe it is time to kick Firefox to the curb. Firefox is not getting better, it's getting worse. It freezes, it crashes, it's no longer compatible with major programs in the publishing industry.
    AND, you guys never answer any of your users. I'm tired of Firefox freezing up. read your freaking forums. Your not making the internet better, I used to have such faith you.

    Thanks Mike!
    I'm just so frustrated, its bad enough my other laptop wasn't even 2 yrs old
    yet and I've spent $800 to have it fixed twice already, this 3rd time I was
    DONE... so I moved onto Sony, but this Vista just is making my life a living
    hell, I just spent a fortune on the laptop, and now I have to buy Adobe 9
    when my adobe 7 isn't even 2 yrs old... ugh... its just very frustrating and
    nerve racking and is costing more than I make in a week in this business
    (real estate processing)... I should sell Microsoft for a living, I'd be a
    millionaire!
    My husband's Mac has been through hell and back physically, is 5 yrs old and
    we've never had to take it in for any upgrades or issues, its SO easy to
    use... why can't Microsoft be the same?!?!
    Thanks for your input and for being understanding of my frustration, I bet
    you see those often! LOL

  • HT1338 I wonder if somebody can help me. I am not able to use my internet bank anymore, since Java launched their latest update (7.51). Appearently this one is not compatible with my hardware. I am using Mac OSX version 10.6.8, and Java version 17.0. Than

    I wonder if somebody can help me. I am not able to use my internet bank anymore, since Java launched their latest update (7.51) a few days ago. Appearently this one is not compatible with my hardware. I am using Mac OSX version 10.6.8, and Java version 17.0, which seems to be the newest one for my op sys. Anybody know how I can solve this? In advance thank you!

    Apple support article to enable Java 6.
    Java 6 Enable

  • HT1338 II need to use Java 6 to run a web application because it isnt compatible with java 7 update 7.  is this possible? need to use Java 6 to run a web application because it isnt compatible with java 7 update 7.  is this possible?

    II need to use Java 6 to run a web application because it isnt compatible with java 7 update 7.  is this possible?

    MadMAC0 posted at https://discussions.apple.com/message/20107182?ac_cid=tw123456#20107182 that:
    Apple has posted (10/22/12) the approved solution for restoring the Java 6 plug-in:
    Java for OS X 2012-006: How to re-enable the Apple-provided Java SE 6 applet plug-in and Web Start functionality.

  • HTML Toolbar in Email Compose with Java WebDynPro

    Hi Friends,
    We are working on a email functionality requirement and we are having a requirement to add a toolbar in the Email Compose Box. For ex. that toolbar contains Bold, Italic, Underline, and other HTML stuff. i.e. to decorate the text in compose box with HTML features.
    but we dont have any standard UI element in Java webdynpro to use.
    Can anyone suggest me the solution or if any one come across with such scenarios.
    Thank you very much in advance.

    Hello Srikanth
    Please refer to this featured <a href="/people/anilkumar.vippagunta2/blog/2007/02/01/office-control-in-webdynpro--i. Though this is not the direct solution to your problem, but I think you can take the hint to develop your compose box with toolbar containing different menus. Please have a look at the final application showcased in the weblog which u can embed in your compose- box. I hope you are getting me.
    Regards
    Kapil

  • Adobe Flex with Java webdynpro

    Hello,
    I like to use Adobe flex applications for my webdynpro java projects which then later I can use in portals. I need some learning materials for that. I was looking from google but I haven't found many sources. if you guys can help me out then It would be great.
    Regards,
    NK

    Hi Bala,
    Adobe Flex is not similar to Java Webdynpro. You can get more information from the Adobe Webpage and also a trial version. Adobe Flex is part of Visual Composer Compiler capabilities. At SAP TechEd in Munich was an interessting demo of rendering webdynpro with Flex during the Demo Jam. For more information you can download the Demo Jam Video <a href="http://www.sapteched.com/emea/activities/videos/DemoJam.wmv">here.</a>
    Best Regards,
    Marcel

  • DOWNLOAD CRYSTAL REPORTS FOR ECLIPSE 1.0.8 not compatible with java 1.4

    Hi,
    I understand that this plugin requires java 1.5. However, due to my company's existing infrastructure, I have to use java 1.4 for my web applications.
    May I know if there is a older version of the CRYSTAL REPORTS FOR ECLIPSE compatible with java 1.4 (manual installation) available for download ?
    Thanks in advance.

    You can download Java Runtime version 11.8.8.x [here|http://downloads.businessobjects.com/akdlm/crystalreportsforeclipse/1_0/crystalreports-javasdk-11.8.8.zip]
    It supported JDK 1.4 for a few different web application server deployment. Check platform.txt in it. However this is very old version of CR runtime and can cause other issues in crystal reports rendering etc. in which case the only solution would be to get the latest CRJ runtime.

Maybe you are looking for