Deploy customization on windows

I have successfully installed oracle ebusiness suite R12.1 and compatible jdeveloper both on window ebusiness and Jdeveloper and both on my labtop for customize development. I have created an application in jdeveloper and now I want to deploy this extension to my apps server.
Lots of guide and tutorial explain that how to deploy this on linux machine but my problem is that I have installed on windows , is there any guide or steps in which I deploy my application on windows e-business apps server

Hi,
This is mentioned in your conf_<your instance name>.txt file. this file you may find under <instance home>\inst\apps\<instance_username>.
For example giving here my instance path where you can locate this file is C:\oracle\PROD\inst\apps\PROD_iwd
And the java top is C:\oracle\PROD\apps\apps_st\comn\java\classes
Also as your instance may be up, you can get these parameter values from About this page also.
Please let me know if you face further issues.
Abdul Wahid

Similar Messages

  • Windows Deployment Services and Windows 8.1 Tablet Autorotation Issue

    Hi,
    I have been trying to deploy a vanilla Windows 8.1 image to Fujitsu Stylistic Q702 Hybrid Tablet using WDS, however this appears to prevent the automatic screen rotation functionality.
    When installed from the Windows DVD, automatic rotation is available without any additional driver installation.
    Are there any components that need to be added to the unattend files to allow this feature to work?
    Regards,
    So-Crates

    Hi,
    WDS provides PXE boot to install windows, it has nothing to do with windows component. I don’t think WDS is the culprit here.
    I recommend you ask in manufacture forum, they may give you more effective suggestions.
    Thanks for understanding.

  • I just updated to Firefox 4 and my Roboform toolbar disappeared. Following the instructions on your site and Roboform's site did not help. It doesn't appear in the Customize Toolbar window nor in the Extensions list. How can I get it back?

    I followed the instructions on your site and Roboform's site, but Roboform doesn't appear in the Customize Toolbar window nor does it appear in the Extensions list. How can I get the Roboform Toolbar back?

    Here's an interesting bit: iTunes will let me restore my iPod touch from backup: it's still running iOS 4.3.3. I figured as much... there's backups showing in the Preferences -> Devices list for both devices (and even my old, long gone iPod touch 2G), but my iPhone (on iOS5) isn't giving me any such option. I remember I had to downgrade before to get the backup restored (something went haywire in the setup assistant, and I couldn't restore a backup from iTunes there)... If it was possible to go to iOS 5.0 rather than 5.0.1 I would just do the same thing again, but iOS 5.0.1 isn't an option. I attached a screenshot. Hopefully Apple can get this nonsense sorted out; I think iOS 5 might be the root of this, somehow.

  • Deployment issue on windows server 2008(64 bit)

    Hi all,
    I am using crystal reports 2008 trial version for my web application. Its working fine in development environment but when I deploy application in windows server 2008 64 bit edition it shows following error:"An error has occurred while attempting to load the Crystal Reports runtime. Either the Crystal Reports registry key permissions are insufficient, or the Crystal Reports runtime is not installed correctly. Please install the appropriate Crystal Reports redistributable (CRRedist*.msi) containing the correct version of the Crystal Reports runtime (x86, x64, or Itanium) required."
    Is there any resolution available for this problem except for changing the IIS settings for 32 bit applications?
    Rgds

    Read the following [article|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10d5fa88-2013-2c10-c9a5-f11963607d4e;jsessionid=(J2EE3417600)ID0244107750DB11172929121510648759End] as it goes over your issue.
    Essentially you will have to set IIS to 32 bit at the least.
    Jason

  • How to create Windows 8.1 templates to deploy VMs on Windows Server Hyper-v Host.

    hello expert,
    please guild me steps for creating specially only for creating VM templates of Windows 8.1 so that this template can be used to deploy VMs on Windows Server platforms (2012,2012 R2).
    Thanks
    RICHA KM

    Since this is the SCVMM forum:
    http://technet.microsoft.com/en-us/library/hh427282.aspx
    "How to Create a Virtual Machine Template"
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.
    Disclaimer: Attempting change is of your own free will.

  • Database logon failed when deploy CR on Windows Server 2008

    I use Crystal Reports for Visual Studio 2010 Production Release with MVC 2 web aplication and SQL Server 2008 database server. When I compile/run from VS 2010 it running well, but when deploy it on Windows Server 2008, when load certain report (Not All report) face the following exception message:
    Database logon failed
    Stack Trace is as the following:
    at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e) at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext) at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext) at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportOptions options) at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportFormatType formatType) at SequisLife.Controllers.ReportController.run_report(String report_name, IDictionary`2 dic_param)
    InnerException:
    System.Runtime.InteropServices.COMException (0x8004100F): Database logon failed. at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext) at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
    run_report method is as the following:
    private ActionResult run_report(string report_name, IDictionary<string, string> dic_param)
                string ls_respon = "";
                try
                    get_sqllogin();
                    ReportClass rptH = new ReportClass();               
                    rptH.FileName = Server.MapPath(VirtualPathUtility.ToAbsolute(report_name));
                    rptH.Load();             
                    rptH.Refresh();
                    Database crDataBase;
                    Tables crTables;
                    TableLogOnInfo crTableLogOnInfo;
                    ConnectionInfo reportConnectionInfo = new ConnectionInfo();
                    reportConnectionInfo.ServerName = server;
                    reportConnectionInfo.DatabaseName = database;
                    reportConnectionInfo.UserID = login_user;
                    reportConnectionInfo.Password = login_pass;
                    crDataBase = rptH.Database;
                    crTables = crDataBase.Tables;
                    foreach (Table crTable in crTables)
                        crTableLogOnInfo = crTable.LogOnInfo;
                        crTableLogOnInfo.ConnectionInfo = reportConnectionInfo;
                        crTable.ApplyLogOnInfo(crTableLogOnInfo);                  
                    ParameterFields lpf_parameters = rptH.ParameterFields;
                    if (lpf_parameters.Count > 0)
                        foreach (ParameterField lpf_param in lpf_parameters)
                            var llst_tmps = dic_param.Where(d => d.Key == lpf_param.Name);
                            foreach (var param in llst_tmps)
                                if (param.Key == lpf_param.Name)
                                    if (lpf_param.ReportName == "")
                                        rptH.SetParameterValue(lpf_param.Name, param.Value);
                                    else
                                        rptH.SetParameterValue(lpf_param.Name, param.Value, lpf_param.ReportName);
                    Stream stream = rptH.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
                    return File(stream, "application/pdf");
                catch (Exception ex)
                    ls_respon += ex.Message;
                    ls_respon = " - "ex.StackTrace;
                    ls_respon += " - " + ex.InnerException;
                    ls_respon += " - " + ex.Source;
                    ls_respon += " - " + ex.Data;
                    return Content(ls_respon);
    Please any body hepl me...
    Thank's in advance

    Hi,
    I am using CR with visual studio 2010 in windows 7 box 64bit box. using a ADO.net data source. And I need to export .rpt as pdf.The solution works fine in my dev box. by when i try to deploy in a windows server 2008 R2 box (64bit) it fails . Both my dev box and deplyment box uses sql server 2008 DB . Also i am using .Net framework 4.0 (not client profile)
    installed the following things in deployment box:
    1. CRRuntime_64bit_13_0_1.msi in
    2. Also copied the CRforVS_mergemodules_13_0_1 in C:\Program Files (x86)\Common Files\Merge Modules
    I get the following error in my Box:
    CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)   at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk(ExportFormatType formatType, String fileName)   at Tesco.Instore.PickingControl.ReportController.PrintDriverDocumentation(String driverDocumentation, Int32 vehicleTripId)] 20/10/2011 08:08:41        PCS        Critical                   Classic .NET AppPool      Error running End of Van [Logon failed.
    Error in File temp_31b3196f-fd25-45c8-b657-5d9cd7c9dccb {4F74290C-D56E-4FC4-8DEF-371BB5C5B10B}.rpt:
    Unable to connect: incorrect log on parameters.]
    I also verified the database connection is upto date. while creating the solution
    the project build is set to anyCPU.
    is there anything else i have to install ?? Please help me ..I am trying this thing from last one week and have not got any proper solution till now

  • Customize The Window A Link Opens

    Hey, I've had some great success with this forum before. Fast responses, friendly people, and fantastic answers so I though I'd ask for help with something else I've struggled to get answers through googling.
    I have products on the site I'm building, and I'd like to save space on the product pages by showing medium sized thumbnails of the product, however I still want people to view larger images of the products, and so I've placed a "Larger Image" button, and I have it linking to a new window where they can view a larger image of the product. I've used target="_blank" to have it open in a new window. The link opens a whole new window though. I'd like this new browser window to open in a much smaller size, and without the address bar. Much like how this website has it set up:
    I'm lost on what I would use to customize the window my links are opening in. Any help or advice is, as always, greatly appreciated!
    - Dreamweaver Noob

    Have a look here http://www.adobe.com/cfusion/exchange/index.cfm?searchfield=lightbox&search_exchange=3&sea rch_category=-1&search_license=&search_rating=&search_platform=0&search_pubdate=&num=25&st artnum=1&event=search&sticky=true&sort=0&rnav_dummy_tmpfield=&Submit=
    Gramps

  • Deploying App On Windows Box

    I ve developed a simple web app that runs perfectly on a Mac OS box.
    I now need to deploy this onto Windows - I ve set the majority of things up but have come across a problem where the JSP tags are not getting translated - So for example if you do c:out... - It actually prints c:out and not the translated text.
    I have copied a version of standard.jar and jstl.jsr to the WEB-INF/lib folder - Is there anything else that would cause this?
    I am completely lost at this

    Steve_Johnson wrote:
    the JSP tags are not getting translated - So for example if you do c:out... - It actually prints c:out and not the translated text.To get it to work:
    1) The webapp's web.xml must be declared to at least Servlet 2.3.
    2) JSTL 1.1 JAR's (jstl.jar and standard.jar) in classpath (WEB-INF/lib is the usual place, yes).
    3) JSTL taglibs in JSP must be declared with JSTL 1.1 URI syntax (i.e. no _rt suffix).
    Nothing less and nothing more. If you still encounter this problem, then there may be something dirty or messed up somewhere in the configuration. E.g. duplicate JAR's of different versions in the classpath (take appserver's libraries in account), having extracted the JSTL JAR's and placed the loose TLD files in the classpath unnecessarily, having declared the TLD files in the webapp's web.xml unnecessarily, etcetera. Make sure that anything is clean and straight.

  • Error deploying RDC to Windows 7

    I have a VB6 application with the Crystal Reports Report Designer Component embedded in it.
    When I deploy the application to a Windows 7 box, I get the following error :
    "This system does not have a valid license, or the evaluation copy of the license has expired. Please contact Business Objects to obtain a Report Design Control License. "
    The application runs fine when deployed to a Windows XP box.
    What can I do ?
    thanks
    kevin

    Hi Kevin,
    Moved to Legacy SDK support....
    RDC is old technology and Windows 7 is new so it's not supported. Best effort only and is it's likely a permission issue.
    Try registering keycode.dll and look for the registry key in Windows XP Local Machine, Software and then what ever version you are using and duplciate it in 7.
    You may try enabling install logging and see what permissions errored or file errors. May be some dependency files missing also.
    RDC is no longer supported or shipped as of CR 2008 so you should look at updating to Visual Studio .NET 2008 and using the CR .NET assemblies. RDC is not supported in .NET also.
    Thank you
    Don

  • Error while trying to deploy 32 bit windows 7 using mdt

    I am trying to deploy 32 bit windows 7 on a 64 bit machine using MDT. After the initial loading it gives an error stating that windows failed to start.
    File:\Windows\system32\drivers\stm_tpm.sys
    status: 0xc000035a
    info: windows failed to load because a critical system driver is missing or corrupt.
    I tried disabling the drivers .. still seeing the same error.
    STMicroelectronics System tpmdrv.inf 1.00.04.14
    STMicroelectronics System tpmdrv.inf 1.00.04.15(1)
    STMicroelectronics System tpmdrv.inf 1.00.04.15(2)
    Can some one help me out..thank you very much

    If you are still getting the same error, then it would suggest that the drivers weren't removed from the image.
    IF this is the WInPE image generated by MDT, then be sure that you run a *Full* update of the deployment share.
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • T61: Keyboard Customizer for Windows 7

    Hello Everyone,
    today I upgraded from Windows XP(32bit) to Windows 7 (64bit). After setting up the operating system I used Lenovo System Update to install all necessary drivers etc. But finally I recognized, that there is no "Keyboard Customizer for Windows 7" on the Lenovo website  . In the office I'm using my laptop in an advanced minidock and have an external keyboard (Lenovo Enhanced USB keyboard) for input.
    Using the Keyboard Customizer it was possible to emulate the missing Fn-Button on the external keyboard  for example using Strg+Alt+Fx. This way it was possible to use all the combinations of Fn+F2 to Fn+F12 with an external keyboard.
    What can I do to get this functionality  on Windows 7 systems?
    There is not installer in the download section for T61 (only Windows XP and Windows Vista). Does anyone know if Lenovo will provide one later on or if the Version for Windows Vista can be used?
    Kind Regards
    KingTutt
    PS: There is also no Presentation Director for Windows 7.
    Solved!
    Go to Solution.

    Hello,
    Have you tried running the ThinkVantage System Update program to update any Windows Vista-era ThinkVantage software on your T61 to their applicable Windows 7 counterparts? 
    Regards,
    Aryeh Goretsky
    I am a volunteer and neither a Lenovo nor a Microsoft employee. • Dexter is a good dog • Dexter je dobrý pes
    S230u (3347-4HU) • X220 (4286-CTO) • W510 (4318-CTO) • W530 (2441-4R3) • X100e (3508-CTO) • X120e (0596-CTO) • T61p (6459-CTO) • T43p (2678-H7U) • T42 (2378-R4U) • T23 (2648-LU7)
      Deutsche Community   Comunidad en Español Русскоязычное Сообщество

  • Docs that describe directory structure & how to deploy customizations?

    I want to know about the directory structure of Webcommerce server 3.2; i.e. what goes where. Is there documentation for this online? Is there documentation on deploying customizations?
    An example is that I note there are two custom tag descriptor files (cat.tld). One is in server/public_html/WEB-INF while the other is in webapps/wlcs/WEB-INF. The appear identical. If I want to change the custom tags do I change them both, are they copied from the WAR file, an so on.

    Thanks Srinath.
    I found the document that you recommended in the post. I will try that now!
    Just in case, If wanted to rollback to the original how do I do that ? Since this is my first OAF extension I guess , it wont be perfect the first pass! So, Is there a way to rollback the changes and put back the original VO?
    Please let me know.
    Thanks,
    FR

  • Deployment guide of Windows Intune

    Hi 
    Can some provide the deployment guide of Windows intune...
    Shailendra Dev

    Hi,
    Since this is a windows server forum, I think you can ask in windows intune forum.
    http://social.technet.microsoft.com/Forums/en-US/home?category=windowsintune
    Thanks for understanding.

  • Deploy Crystal Reports Windows 7

    I'm trying to deploy on a new Windows 7 machine running Home Premium from a Visual Studio 2005 application. The crystal reports fail to run. They always get a run time error.  I have deployed successfully on windows XP pro with no issues.
    There must be some files that I'm missing

    Hello,
    Try to install [Service Pack 1 |https://smpdl.sap-ag.de/~sapidp/012002523100006007872008E/crvs05sp1.exe]for Crystal Report for .NET 2005
    Also check [Crystal Reports Support of 64-bit Operating Systems|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/10d5fa88-2013-2c10-c9a5-f11963607d4e]
    Thanks,
    Saurabh

  • Known Issue: Cannot Deploy to a Windows Mobile Device (Windows 10 Insider Preview SDK and tools, April 2015 release)

    To deploy to a Windows 10 Mobile device with this release, your device must be running Windows Mobile OS build 10074 or later. When deploying your Universal Windows app to a device with an earlier build, or a Windows Phone 8.1 device, you will get the following
    error:
    Error : DEP0001 : Unexpected Error: The Appx package's manifest is invalid. (Exception from HRESULT: 0x80080204)

    Use the Windows 10 Mobile emulator or update your device to Windows Mobile OS build 10074 or later.

Maybe you are looking for

  • Video 8, Import via Firewire or TBC to DV Deck

    I'm working through a project that involves quite a few Video 8 and Hi8 material. The Sony deck I have can output this video via Firewire, using a DV preset. My question is, will that workflow produce the best results? As opposed to outputting analog

  • Click wheel firewire to usb adapter?

    k I have a older click wheel B&W 15gig iPod with dock connector that says it needs FW for charging. I wold like to use USB if possible, someone recommend this Scosche adapter, can anyone vouch for it? I will be using it in my Honda Civic with my Hond

  • HT4623 how to unlock my phone

    How to unlock my  I Phone 3GS its can't active 6.0.1 pls help

  • Print WorkBench in ISU

    Can anyone send me the documents on print work bench. T.Code: EFRM. [email protected] Thanks

  • Problems with saturation: iPhoto vs CS4

    Hi! Am sure there's information about this somewhere in this forum, but haven't be able to actually find it. Been also googleing for a couple of days now and am still frustrated for not finding a straight forward answer to this: Why does pictures loo