How to run 3d swing on the browser? how to use pugin  HTML conventer??

hi dear all,
I have problem now. I want to run my program in the browser. i use java 3d swing in my code as well. I look from books.It is saying that is possiable to do it , but , you have to use the java pugin conventer . I have tried , and it is not work on my computer , i have been doing just this for a week . If someone can give me some help , i will really really greatful about it .
Thank you in advance .
regards
jojo

What kind of command - HTML is a markup language not an execution language. If you mean how can you display an HTML document then use WEB.SHOW_DOCUMENT()

Similar Messages

  • Hello, I have long been using Mozilla Firefoh, but I can't restore a theme (in the browser before I used the theme in anime), I do not remember how to install it and where to find, maybe it was not a topic, and skin. Please help me solve this problem.

    (in the browser before I used the theme in anime), I do not remember how to install it and where to find, maybe it was not a topic, and skin.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • When trying to go into Mail my computer says: The browser you're using refuses to sign in. (cookies rejected) How do I correct this? Then my email will not open. (in English)

    When trying to go into Mail my computer says: The browser you're using refuses to sign in. (cookies rejected) How do I correct this? in English

    At the time of this post, there seems to be a problem with iMessage and Facetime but only some users are affected.
    http://www.apple.com/support/systemstatus/

  • How to resolve this: Some Gmail features have failed to load due to an Internet connectivity problem. If this problem persists, try reloading the page, using the older version, or using basic HTML mode.

    Keep getting this message while using Gmail "Some Gmail features have failed to load due to an Internet connectivity problem. If this problem persists, try reloading the page, using the older version, or using basic HTML mode. "
    I have to use the older version of gmail for it to work properly.

    now i cant even send emails out of gmail, except when using the older version.

  • How to run python files on the browser?

    Good day,
    I am trying to run any python file on the Leopard web server, accesing it via safari.
    also I have set the permissions of the file to 777...
    then I have copied the file to library/webserver/documents.When I open this file in Safari, the file is listed, but it is not executed.
    also I have copied the file to library/webserver/cgi-executables, but the file is not executed, an error appears:
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log
    the python file contains only 2 lines:
    #!/usr/bin/env python
    print 2
    I have tested the file in the command line in the terminal python test.py and it runs fine... but I dont know what should I have to do to run it on the browser...
    I am using python 2.5.2 and leopard 10.5.2
    do I have to enable any mime types for python on leopard client? how to do it?
    have a nice day

    Goto the Install directory on your Oracle installed directory and have a look at the 'readme' file. You will find all the info you wanted.
    Regards.

  • My pc says Firefox is running after I close the browser, and will not let me access the internet. This continues even after I shut down and restart my pc. It even continues to do it after I uninstal, then reinstal Firefox. What can I do?

    We tried uninstalling , tyen reinstalling Firefox, but we still get the error message that Firefox is running, and the PC won't open the browser.
    We went to the Task Manager on our PC, which said Firefox was running, and told TM to close it. But, when we try to then open Firefox, we get the same error message.

    See:
    *https://support.mozilla.org/kb/Firefox+is+already+running+but+is+not+responding
    *http://kb.mozillazine.org/Profile_in_use
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Help me:I can't run my applet in the browser.

    I use JCreator developed an applet, I can run its "htm" file inside JCreator, everything is Ok,but when I try to run it directly (Double click "htm" file) on the browser, it always shows a blank area with a cross on top-left.
    Please help me,thanks!
    (OS: xp, my "htm" file is in the same folder with classes files )

    Could be due to classes not being found or wrong version of java...

  • How to check whether the browser supports cookie using servlet

    Hi
    I have a servlet that uses session.I want to check whether the browser supports cookie.
    Please help me how can i detect this using servlet.
    could you please include a sample code
    thanks
    sabu

    You can check whether any cookies were sent in the request to your servlet:
    Cookie cookies[] = request.getCookies();
    if cookies is not null (cookies != null) then the browser sending you the request suppoerts cookies.
    If it is null then you would need to do a little extra work. Basically add a cookie to the response going back to the browser. Then send a redirect back to this same servlet. You then would have to add code to check to see whether the cookie was sent back.
    // Servlet named myServlet
    String test = request.getParameter("TEST");
    Cookie cookies[] = request.getCookies();
    if (test == null || !test.equals("TRUE")
    if (cookies == null)
    response.addCookie("testCookies","testCookies");
    response.sendRedirect("myServlet?TEST=TRUE");
    else
    // cookies were sent in the initial request, so
    // browser supports cookies
    else
    // This is the redirect. Check the for the presence of
    // our testCookie
    Hope this helps.

  • Why can't I run my applet in the browser

    I see my code executing in the appletviewer but, I cannot see the text in the onscreen space when I run in the browser.
    Can somebody help?

    I am also having trouble as well. It worked fine on
    one computer, but on my home computer and another
    school computer it didn't work even though I didn't
    really vary the installation of Java 2. I just
    installed what my text book gave me and I think that
    is the newest version. Does the browsers have anything
    to do. The computer I am running now is in IE 6 but I
    will check the other one. if you want to look at the
    source and the java file.
    www.cs.iupui.edu/~drobarg/N307/LabOne.html
    thanksthis should really have been posted in a new thread but anyway good thing you posted the link.
    i downloaded the class the source and your file but it didn't work on my machine. i recompiled the file and it worked fine. i think something went wrong when you compiled or when you posted your file on the webserver. make sure you are ftping in binary mode the class file.
    what are version are you compiling with?

  • I can't run an applet from the browser

    I created an applet using the JDeveloper 3.1 wizard. The applet works in the JDeveloper environment and from the command line using the appletviewer. However, it won't work from the browser (ie 5.0 or netscape 4.7). The error I am receiving from the java console is:
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.debugoutput read)'
    Diagnostics: Silencing all diagnostic output (use -Djbo.debugoutput=console to see it)
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.timing read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.function read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.level read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.linecount read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.trace.threshold read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.jdbc.driver.verbose read)'
    Exception occurred during event dispatching:
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.sql.SQLPermission setLog)
    Please help.

    these are java 2 security permissions you'll need to address ..
    review the java 2 security permission chapter of the "java developer's guide"
    you can find the documentation in the "java documentation" section of documentation for your rdbms version at the following link : http://otn.oracle.com/docs/products/oracle8i/doc_index.htm
    null

  • In portlets, how to use a html form passing  values to the another page?

    it is well known that in web developing , we have two methods to pass values to another page.<!--
    1. passing values
    2.<form action="nextPage" method ="post"></form>-->
    but how to use two methods in oracle portal portlets?
    I have got a simple example which submit two values to the page for itself, means a page has a form with submit botton, user input the form with values and then submit them by submit botton, then the page recevice those values and show it .
    this example is powered by oracle ,
    please have a look at these code:
    <br><br>
    <%@ page contentType="text/html;charset=UTF-8" %>
    <%@page import="java.util.*, oracle.portal.provider.v2.*" %>
    <%@page import="oracle.portal.provider.v2.http.HttpCommonConstants" %>
    <%@page import="oracle.portal.provider.v2.render.PortletRendererUtil" %>
    <%@page import="oracle.portal.provider.v2.render.PortletRenderRequest" %>
    <%@page import="oracle.portal.provider.v2.render.http.HttpPortletRendererUtil" %>
    <%@page import="oracle.portal.provider.v2.url.UrlUtils" %>
    <%
    // The form submit URL refers to the current Portal page. All portlets
    // on this page share this URL. This means that the per portlet parameters
    // are in the same request. Portlets must ensure that its paramerters don't
    // collide either with other portlets or other instances of itself. This
    // is generally accomplished by using "fully-qualified" parameter names. A
    // fully-qualified parameter name prepends the (unique) portlet reference to
    // the parameter. The JPDK provides a utility to accomplish this.
    String portletParamName = "mName";
    String portletParamAge = "mAge";
    String portletParamSubmit = "mSubmit";
    String fName = HttpPortletRendererUtil.portletParameter(request, portletParamName);
    String fAge = HttpPortletRendererUtil.portletParameter(request, portletParamAge);
    String fSubmit = HttpPortletRendererUtil.portletParameter(request, portletParamSubmit);
    // These are the session attribute names used to store the current values.
    // Because all instances of this portlet share the same user session we must
    // also fully-qualify these names to avoid collisions.
    String sName = HttpPortletRendererUtil.portletParameter(request, "sName");
    String sAge = HttpPortletRendererUtil.portletParameter(request, "sAge");
    PortletRenderRequest pRequest = (PortletRenderRequest)
    request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    String formName = UrlUtils.htmlFormName(pRequest,null);
    ProviderUser user = pRequest.getUser();
    ProviderSession providerSession = user.getSession();
    if (providerSession == null)
    %>
    Your provider session has been terminated or has timed out
    and you need to logout and then login to re-establish the session.
    <%
    else
    // Record, in session storage, the last values submitted.
    if (pRequest.getQualifiedParameter(portletParamSubmit) != null)
    providerSession.setAttribute(sName, pRequest.getQualifiedParameter(portletParamName));
    providerSession.setAttribute(sAge, pRequest.getQualifiedParameter(portletParamAge));
    %>
    <!-- Output the HTML content -->
    <center>
    <table width="70%">
    <tr>
    <td>
    <b>This portlet shows how to post and process information from HTML forms.</b>
    </td>
    </tr>
    </table>
    <form name="<%= formName %>" method="POST"
    action="<%= UrlUtils.htmlFormActionLink(pRequest,UrlUtils.PAGE_LINK) %>">
    <%= UrlUtils.htmlFormHiddenFields(pRequest,UrlUtils.PAGE_LINK, formName) %>
    <table>
    <tr>
    <td>
    <b>Name :</b>
    </td>
    <td>
    <input type="text" size="20" name="<%= fName %>" value="">
    </td>
    </tr>
    <tr>
    <td>
    <b>Age : </b>
    </td>
    <td>
    <input type="text" size="3" name="<%= fAge %>" value="">
    </td>
    </tr>
    </table>
    <br>
    <INPUT TYPE=submit name="<%= fSubmit %>" Value="Submit">
    </form>
    <%
    if ((providerSession.getAttribute(sName) == null)&& (providerSession.getAttribute(sAge) == null)) {
    %>
    <b>No values have been submitted yet.</b>
    <%
    } else {
    %>
    <b> Last submitted values:</b><br>
    <table>
    <tr>
    <td>
    <b>Name: </b>
    </td>
    <td>
    <b><%= providerSession.getAttribute(sName) %></b>
    </td>
    </tr>
    <tr>
    <td>
    <b>Age: </b>
    </td>
    <td>
    <b><%= providerSession.getAttribute(sAge) %></b>
    </td>
    </tr>
    </table>
    <%
    %>
    </center>
    <%
    %>
    <br><br>
    <br><br>
    <br><br>
    but I want to write the form in a page , and then show it on another page , how to write it ?
    I have read the pdk:
    oracle.portal.provider.v2.url Classes
    UrlUtils
    then I use these method , as this :
    //frist page:
    <br><br><br><br>
    <%@page contentType="text/html; charset=Big5"
    import="oracle.portal.provider.v2.render.PortletRenderRequest"
    import="oracle.portal.provider.v2.http.HttpCommonConstants"
    %>
    <%@ page import="oracle.portal.provider.v2.*"%>
    <%@ page import="oracle.portal.provider.v2.render.PortletRendererUtil"%>
    <%@ page import="oracle.portal.provider.v2.render.http.HttpPortletRendererUtil"%>
    <%@ page import="oracle.portal.provider.v2.url.UrlUtils"%>
    <%
    PortletRenderRequest pReq = (PortletRenderRequest)
    request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    %>
    <P>Hello <%= pReq.getUser().getName() %>.</P>
    <P>This is the <b><i>Show</i></b> render mode!</P>
    this is a program to test the passing value
    <%
    String portletParamName = "mName";
    String portletParamAge = "mAge";
    String portletParamSubmit = "mSubmit";
    String fName = HttpPortletRendererUtil.portletParameter(request, portletParamName);
    String fAge = HttpPortletRendererUtil.portletParameter(request, portletParamAge);
    String fSubmit = HttpPortletRendererUtil.portletParameter(request, portletParamSubmit);
    PortletRenderRequest pr=(PortletRenderRequest)request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    String formName=UrlUtils.htmlFormName(pr, null);
    %>
    <form name="<%=formName%>" method="post" action="<%=UrlUtils.htmlFormActionLink("/htdocs/passingvalues4/getValues.jsp")%>">
    <%= UrlUtils.htmlFormHiddenFields("/htdocs/passingvalues4/getValues.jsp") %>
    name:<input type="text" size="20" name="<%= fName %>" value="">
    p w :<input type="text" size="3" name="<%= fAge %>" value="">
    <INPUT TYPE=submit name="<%= fSubmit %>" Value="Submit">
    </form>
    //getValues.jsp<br><br>
    <br><br>
    <%@page contentType="text/html; charset=Big5"
    import="oracle.portal.provider.v2.render.PortletRenderRequest"
    import="oracle.portal.provider.v2.http.HttpCommonConstants"
    %>
    <%@ page import="oracle.portal.provider.v2.*"%>
    <%@ page import="oracle.portal.provider.v2.render.PortletRendererUtil"%>
    <%@ page import="oracle.portal.provider.v2.render.http.HttpPortletRendererUtil"%>
    <%@ page import="oracle.portal.provider.v2.url.UrlUtils"%>
    <% String portletParamName = "mName";
    String portletParamAge = "mAge";
    String portletParamSubmit = "mSubmit";
    String fName = HttpPortletRendererUtil.portletParameter(request, portletParamName);
    String fAge = HttpPortletRendererUtil.portletParameter(request, portletParamAge);
    String fSubmit = HttpPortletRendererUtil.portletParameter(request, portletParamSubmit);%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=Big5">
    <title>untitled</title>
    </head>
    <body>
    Name:<%=fName%>
    Age :<%=fAge%>
    </body>
    </html>
    <br>then I deployed them on the portal , run it , the result is :after I submit it , the browser give me : http 404 page not found!
    [b]here is the provider.xml<br>[b[i]]<?xml version = '1.0' encoding = 'UTF-8'?>
    <?providerDefinition version="3.1"?>
    <provider class="oracle.portal.provider.v2.DefaultProviderDefinition">
    <session>true</session>
    <passAllUrlParams>true</passAllUrlParams>
    <portlet class="oracle.portal.provider.v2.DefaultPortletDefinition">
    <id>1</id>
    <name>PassingValues4</name>
    <title>PassingValues4</title>
    <description>PassingValues4</description>
    <timeout>60</timeout>
    <showEditToPublic>false</showEditToPublic>
    <hasAbout>false</hasAbout>
    <showEdit>false</showEdit>
    <hasHelp>false</hasHelp>
    <showEditDefault>false</showEditDefault>
    <showDetails>false</showDetails>
    <renderer class="oracle.portal.provider.v2.render.RenderManager">
    <renderContainer>true</renderContainer>
    <renderCustomize>true</renderCustomize>
    <autoRedirect>true</autoRedirect>
    <contentType>text/html</contentType>
    <showPage>/htdocs/passingvalues4/PassingValues4InputPage.jsp</showPage>
    <showPage>/htdocs/passingvalues4/getValues.jsp</showPage>
    </renderer>
    </portlet>
    </provider>
    <br><br><br>
    <br><br>
    would you kind enough to help me ? thanks!!!
    Message was edited by:
    moonsoft

    Hi Moonsoft,
    I have already answered this query in the other post at Re: how to link more than one links in portlet?(jsp develop)
    <form name = "showPageForm" method = "POST" action = "<%= UrlUtils.htmlFormActionLink(pReq,UrlUtils.PAGE_LINK) %>">
      <%= UrlUtils.htmlFormHiddenFields(pReq,UrlUtils.PAGE_LINK, "showPageForm") %>
      <input type="text" name="param1">
      <input type="text" name="param2">
      <input type="hidden" name="myPPN" value="/htdocs/page2.jsp">
    </form>then in your jsp code on page2.jsp, you will extract the parameters by specifying
    <%
      String p1 = request.getParameter("param1");
      String p2 = request.getParameter("param2");
    %>
    >>this is easy common jsp or asp development, but in oracle is too diffcult!!!!
    :-) .. there is a difference between web-applications and portlets, you just need to get used to it once. I hope this does clarify your doubts.
    thanks,
    Harsha

  • How to use native html render

    Hi people.
    I'm making a project in java (JavaME) to smarphones very similar to a web browser. I want to do an application that can be able to open web pages.
    By doing some search, I "saw" that the html controls that exists, don't work well because don't support javascript.
    I try to found html renders, but with no sucess.
    I found that a way to make this happen is to use platformRequest class (this class invoke any service on the mobile device), and invoke the browser in the mobile device.
    But this way opens the browser, and I want to open the web pages in my application.
    There is any way to open the web browser inside a form created by me?
    Or, its possible to use the native html render? If yes, how can I use this?
    I appreciate any help.
    Thanks.

    ----- BEGIN CANNED RESPONSE -----
    Download and read Sheng Liang's book, ftp://ftp.javasoft.com/books/specs/jni.pdf
    Read the JNI specs on java.sun.com site ( http://java.sun.com/j2se/1.4.2/docs/guide/jni/index.html )
    Beware with the JNI tutorial on the java.sun.com site - it is slightly outdated, and the samples need modifications to compile
    ----- END CANNED RESPONSE -----

  • Questions/comments on "How to Use BC4J HTML Field Renderers"

    BTW thanks for getting this HOWTO on custom renderers up. Good stuff. Probably one of the first things someone should read after getting past the first BC4J-JSP tutorial.
    But after having just read it, I have some questions and comments.
    What would be the best way to localize the YES|NO values from the first example? I know I can create property files for resource bundles and get the values from there, but where do I get the users Locale? And given that BC4J has a place for localized field labels, is there some better place (for JDev/BC4J integration) than going off and creating my own property files?
    I was hoping to see examples of actually writing the HTML so I can add properties for validation, etc. The examples were about custom data for the renders rather than custom HTML. I assume that I just output HTML in the renderToString() method and it would just start with "<select" or "<input" not TDs or spans or anything, right? But in such cases, what can I extend / not extend? In the case of lists, I would have to handle all the different control types, right?
    I am confused on control types. There's a control type on the control hints tab and in the HOWTO creates a new propery called MY_CONTROL_TYPE. Why? How do they relate? (and is that question about the RADIOGROUP suppose to be in the HOWTO doc?)
    Can we not get the list control types as options on control hints tab? Or if we are creating our own renders, say for a boolean, I could create different renderers for the different control types (checkbox, select, radio, maybe selectYesNo, selectTrueFalse,...) or create one with a control type setting for them all. Which should I do when? And is there a way to expose these control types in the control hints tab?
    BTW do these custom renders work the same in UIX-JSP and UIX-XML?
    Since we are extending Oracle's classes we need more complete JavaDocs, not just the public methods. For example the HOWTO uses "ds" from PickList. BTW I have to give my opinion on Java style, maybe consider coding like "this.ds" for clarity. But anyway....
    thanks for all the help!

    Some comments:
    1. the provided renderers read the properties every time becuase they are meant to be 'generic' and there are possible parameter differences between one attribute and another. You can easily hard-code the property values into the renderer implementation and 'never' look at the properties for parameters. The same applies for the dynamic renderer.
    2. The set of renderers applis to both UIX JSP and JSP. There some bugs in the UIX JSP that prevent this in 9.0.2, but they will be fixed in Jdev 9.0.3.
    3. The 'control type' is a shortcut way to select some of the default renderers. If you specify the 'Renderer' properties, they take precedence over any control types selected at design-time.
    4. A cool way to re-use renderers is to create a new domain class and setup the renderer properties at that level. You can then use tihs domain type in your entity objects. all the rendering selection will happen automatically.
    5. You can retrieve the current locale by using the ApplicationModule.getSession().getLocale() , make sure you use this method instead of the default locale since a single web application may be used by different users with different locale settings. We take the http locale information and map it into the application module's locale. If you need locale specific values, use resource bundles.

  • How To  use fckeditor HTML with  flex

    I am using coldfusion server technlogy.
    I am trying make demo site Flex with coldfusion.
    I want to know how to use html code with my mxml application.
    Privious i am using FCK TEXT editor with my HTML File
    Currently flex have small text editor But i need full text
    editor with all feture which include FCK Editor
    Please let me know how to integrate Fck Editor with flex
    application . Or any html file with Flex Application

    Flex has a very limited support for HTML, thus you cannot
    create a full featured editor within flex. The only work arounds I
    have seen are done using IFRAME's over your app.
    Not sure if it an option, however Apollo does a good job of
    addressing this issue by allowing full feature Javascript and HTML.
    Allen

  • Tutorial Request: How to use / access HTML in FC?

    http://livedocs.adobe.com/flex/3/html/help.html?content=FlexApolloComponents_09.html
    Looking for a step by step to place HTML in a container, iframe, or whatever will work, to access HTML code.
    this is what I'm looknig for: 
    "while it is possible to use a subset of HTML with Flash "
    I have a Website that  is HTML
    Several pages of that HTML site need to be accessed from the Flash site built using FC.
    What is the procedure to make the HTML site Linked, or look like it's part of the FC website?
    Can FC use iframes or the equivelent of?
    I can build a site using HTML that can have Flash Placeholders.
    "What is Flash Catalyst? Adobe® Flash® Catalyst™ CS5 software is an approachable new interaction design tool. Transform Adobe Photoshop®, Illustrator®, and Fireworks® artwork into expressive, fully interactive projects without writing code, and leverage the reach and consistency of the Adobe Flash Platform."
    Flash catalyst, unlike XDP6 web generation, is all about generating Flash not HTML, so while it is possible to use a subset of HTML with Flash you should really not be trying to use a Flash generation tool as though it were generating HTML like the Xara software.

    Do you mean system-related access keys or custom-related...????
    Sim

Maybe you are looking for

  • Get rid of the "fill & Sign"-pane when opening pdf in iframe

    hi, I try to open a pdf in an iframe, but as it is a signed one, the pane "Fill & Sign" opens automatically, reducing the size of my document enormously. As the user can't switch the pane off (the viewer is protected), I want to get rid of this pane.

  • Importing Inter-package classes

    hello I have never had this problem before but I just 'downgraded' to JDK 1.1.8 because the code will be used on my PDA. I am trying to import Inter-package classes but the compiler it cannot find the classes I've imported. This code was working perf

  • Getting Exception when implementing badi 'hrpad00inftydb'

    Hi friends.. My need is to update infotype 0207 when ever employee changes address thru ess. I implemented the badi 'HRPAD00INFTYDB' and inside it called 'HR_MAINTAIN_MASTERDATA'. But its giving the following two exception : 1. Exception 'CX_HRPA_VIO

  • How to Query/Lookup Data Target HFM Application in FDMEE Import / Validation Step

    Hi Experts, We are using FDMEE 11.1.2.3.500 to load 2 sets of Flat Files - ICP Trial Balances and Non-ICP Trial Balances. The ICP Trial Balances will be loaded to Target HFM Application first using FDMEE and then the remaining Non-ICP Trial balances

  • Installation Crystal Report Server

    Hello, Any one can me provide any document related to that how we install Crystal Report Server 2008 and client ? i have no idea that what will be installation step and what will the prerequisition ? Thanks & Regard Manvendra