Deploye 9i reports on 10g application server and run report

Dear All
I am new to oracle application server.
We have application developed in oracle 9i developer suit (forms and reports).
I have deployed the forms on application server quit easily by configuring formsweb.cnfg file. I am using mmb file for menu and all the forms are attahed to it and running. I am facing proble in deploying and run the reports through menu i.e mmb file. Some one told me that it is better to run reports from forms. So i put the button on form and use the command of web.show_document and its URL in braces and define the key in cgdcmd.dat (i dont know the exact name of file).
Key was some thing like this :
reptest: abc/abc@orcl desttype = cache %*
and in url:
http://192.168.1.147:7779/reports/repservlt?reptest&..... d:\abd\reports\report.rdf
(i dont know exactly the url)
but any way, after that i run the form and press the button to call reports,...., browser does open and it shows a report template but not with the report data but with REP-ERROR. Error was i guess 52001 or 2. well the message of report error was. "reptest key cannot be found" / "reptest key is not defined".
while i have already define the key in above mention .DAT file. and after that i have restart the instance but still no use.
CAN ANY ONE HELP !, I AM IN GRAVE SITUATION OF EMERGENCY AS I HAVE TO CONFIGURE REPORTS ON MENEU TILL TOMORROW ANY HOW.
Thanks
Abdul Majid.

There is a forms/reports only installation available and it is safe to use this. This is if you ONLY want to run forms and reports and don't need things like SSO

Similar Messages

  • How to deploy dicoverer repport to 10g Application server

    We just installed 10g Application server, but we don't know how to deploy discoverer reports th it? Please help.

    Yes I am trying to accomplish the same thing. We created a 10g Apps Server but only loaded the Forms and Reports Services. We have a license for Discoverer 904 and install software for client desktops, but would like to use the Apps Server version.
    Can I integrate DiscovererAS into my existing server without haveing to install the complete EE ???? ANd for that matter, if I do have to go that route, how do I uninstall the "Bare bones" FormsReportsServices10g ??? I'm a complete newbie so please bear with me... thanks

  • Oracle 10g Application server and EJB

    Hi all,
    I am developing a Stateless session bean. I want to save its remote reference through a client so that I can call it later. The code is working fine in Websphere 6.0 but not in OC4J 10.1.3.
    The Client Code is:
    Hashtable env = new Hashtable();
    //Setting properties
    env.put(Context.INITIAL_CONTEXT_FACTORY, ctxFactory);
    env.put(Context.SECURITY_PRINCIPAL, security_principal);
    env.put(Context.SECURITY_CREDENTIALS, security_credentials);
    env.put(Context.PROVIDER_URL, serverURL);
    env.put(("dedicated.rmicontext","true");
    public void callEJB(boolean startWhile)
    InitialContext ic     = new InitialContext (env);
    //Looking up Home Object
    SEJBRemoteHome homeObj =
    (SEJBRemoteHome)PortableRemoteObject.narrow (ic.lookup (SEJB_Bean),SEJBRemoteHome.class);
    SEJBRemote remObj          = homeObj.create ();
    Handle EjbObjHandle = null;
    EJBObject eObj     = null;
    if(startWhile)
    EjbObjHandle     = remObj.getHandle();
    //Saving Ejb handle
    saveEjbObjHandle(EjbObjHandle);
    //Calling EJB method
    remObj.setPollProperty(startWhile);
    else
    //Getting Handle
    EjbObjHandle = getEjbObjHandle();
    EJBObject ejbObjRef = null;
    ejbObjRef = EjbObjHandle.getEJBObject();
    remObj = (SEJBRemote)PortableRemoteObject.narrow
    (ejbObjRef,SEJBRemote.class);
    remObj.setPollProperty(startWhile);
    ejbObjRef.remove();
    }//methos to save Handle
    public void saveEjbObjHandle(Handle o)
    try {
         ObjectOutputStream objOut = new ObjectOutputStream(new
              FileOutputStream(EJBObjPath ));
                                  objOut.writeObject(o);
         objOut.close();
    catch (Exception e)
         e.printStackTrace();
    //method to Get handle
    public Handle getEjbObjHandle ( )
    Handle pHandleIn=null;
    try {
         ObjectInputStream objIn = new ObjectInputStream(new
                   FileInputStream(EJBObjPath));
         pHandleIn = (Handle)objIn.readObject( );
    objIn.close();
    catch (Exception e)
    e.printStackTrace();
    return pHandleIn;
    Error Msg:
    oracle.oc4j.rmi.OracleRemoteException: Error looking up EJBHome at location 'SEJB_Bean'
         at com.evermind.server.ejb.StatelessSessionHandle.getEJBObject(StatelessSessionHandle.java:42)
         at com.iflex.fcubs.ssiadservices.ejb.SSIADEJBClient.callEJB(SEJBClient.java:209)
         at com.iflex.fcubs.ssiadservices.ejb.SEJBClient.main(SEJBClient.java:361)
         Nested exception is:
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.evermind.server.ejb.StatelessSessionHandle.getEJBObject(StatelessSessionHandle.java:31)
         at com.iflex.fcubs.ssiadservices.ejb.SEJBClient.callEJB(SEJBClient.java:209)
         at com.iflex.fcubs.ssiadservices.ejb.SEJBClient.main(SEJBClient.java:361)
    I am getting this error while I am trying to executing else part. For if part it is innitiating ejb and calling successfully the ejb method.
    Can anyone explain this to me....and solve my problem. Am I violating any rule of OC4J or J2EE. I am stucked with this error for past 2 weeks.....but unable to solve.
    Any help will be appriciated.
    Thanks....

    Hello,
    If is it not too late, here is a hint:
    It is not evident the value for "ctxFactory" as you specify the properties needed by the client app to look up your Session Bean:
         env.put(Context.INITIAL_CONTEXT_FACTORY, ctxFactory);
         ...So, before you specify such value (the fully qualified classname to the proper InitialContextFactory), you need to define which type of client your app is:
    1. A web app running in another container,
    2. A standalone java app running in its own JVM,
    3. An EJB or any other server module running on the same container...
    It is important to define the type of application client that is attempting to look up remotely an EJB component because the implementation of the lookup algorithms differs a lot..
    Later on, you use a system property which is deprecated as of 10.1.3:
         env.put(("dedicated.rmicontext","true");
         ...Did you setup a cluster topology? or else, what may be the requirement for such property?
    Hope it helps
    RB

  • Will JDev 11g deploy to an Oracle 10g Application Server?

    JDev gurus:
    I have been developing my app for several years using IntelliJ/IDEA. Now that JDev has the features I need I am wondering if JDev will help me automate my Develop/Debug cycle, something that is currently missing in IntelliJ/IDEA.
    My first observation is that my existing code that has been in production for some time is having serious compile issues inside of JDev. I am willing to work through these issues if I am certain that in the end moving to JDev will help me to accelerate my programming.
    BTW, as much as I would like to move to WebLogic, the budget won't allow.
    thx in advance,
    Gary

    JDeveloper 11g is optimized for WebLogic server usage.
    You should be able to deploy to OAS 10g from JDeveloper 11g as long as you don't use the new Java EE 5.0 and ADF 11g features in JDeveloper 11g - since OAS 10g doesn't support these.
    You might want to try JDeveloper 10.1.3 if you are looking to streamline the develop/debug/deploy process though. That was the version that worked with OAS 10g.

  • Deployment of class file in oracle 10g Application Server

    Hi,
    I have a class file
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class HelloWorld extends HttpServlet {
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException {
    res.setContentType ("text/html");
    PrintWriter out = res.getWriter();
    out.println("<HTML>");
    out.println("<HEAD><TITLE>Hello World</TITLE></HEAD>");
    out.println("<BODY>");
    out.println("<BIG>Hello World</BIG>");
    out.println("</BODY></HTML>");
    now I like to deploy(in oracle 10g Application Server) and run this file.
    please help me.

    Hi
    You have to deploy Servlet as a WAR File. I hope you already have web.xml file which u can get automatically in eclsipse during creation of servelet. I am not sure what ide u r using here. If u have created servlet in eclipse then I would suggest create a project dynamic webproject if u have not where IDE create all required files autmatiicaly and even you can deploy application from there itself.
    If you wanted to deploy manually then follow below steps (if u have war file)
    I am assuming you already created a Weblogic Domain and have admin username/password. Start your domain. Login into weblogic console like http://host:port/console and use admin username/password. Then from Deployments section, deploy the above WAR file. In Weblogic you can deploy JAR (EJBs, java files), WAR (web jsp, html, webservices, servlets) or EAR (JAR + WAR). In your case its just a WAR file.
    Thanks
    Sujit Singh

  • Oracle 10g application server installation and configuration

    Dear All,
    i am going to install oracle 10g application server including forms & report services.
    what is the latest version for oracle 10g application server so that i download and install the correct one.
    please put URL to download the software .
    Thanks & regards,
    Sher khan

    hi,
    for forms and reports purpose you can download standalone oracle forms and reports (version 10.1.2.0.2) component.
    If you want to upgrade it you can upgrade it to 10.1.2.3.0.
    find url for the same :
    http://www.oracle.com/technetwork/middleware/ias/downloads/101202-095224.html
    i'll recommend you to use oracle fusion middleware 11g forms, reports,portal and discoverer component.
    regards,
    Ajinkya

  • Auditing in oracle 10g database and oracle 10g application server

    Dear friends,
    We have oracle 10g application server and oracle 10g database server in place.My criteria is to audit users connected using oracle application user credentials to the database.
    Can you please tell me how can i do it.
    Thanks & regards,

    Its the database connection you want to track. The session audit will show where it came from.
    Auditing is turned using this command:
    alter system set audit_trail = DB scope=spfile;
    Note: The use of spfile will require a DB bounce before audit starts
    To audit Sessions:
    audit create session;
    Query by Audit Type:
    SELECT A.USERNAME,
    OS_USERNAME,
    A.TIMESTAMP,
    A.RETURNCODE,
    TERMINAL,
    USERHOST
    FROM DBA_AUDIT_SESSION A
    WHERE USERHOST = <replace with iAS servername> ;
    By User
    SELECT USERNAME,OBJ_NAME,ACTION_NAME , TIMESTAMP
    FROM DBA_AUDIT_TRAIL WHERE USERNAME = 'SCOTT';
    Check for users sharing database accounts
    select count(distinct(terminal)),username
    from dba_audit_session
    having count(distinct(terminal))>1
    group by username;
    Attempts to access the database at unusual hours
    SELECT username, terminal, action_name, returncode,
    TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS'),
    TO_CHAR (logoff_time, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') <
    TO_DATE ('08:00:00', 'HH24:MI:SS')
    OR TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') >
    TO_DATE ('19:30:00', 'HH24:MI:SS');
    Attempts to access the database with non-existent users
    SELECT username, terminal, TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE returncode <> 0
    AND NOT EXISTS (SELECT 'x'
    FROM dba_users
    WHERE dba_users.username = dba_audit_session.username);
    Other audits you might consider:
    audit grant any object privilege;
    audit alter user;
    audit create user;
    audit drop user;
    audit drop tablespace;
    audit grant any role;
    audit grant any privilege;
    audit alter system;
    audit alter session;
    audit delete on AUD$ by access;
    audit insert on AUD$ by access;
    audit update on AUD$ by access;
    audit delete table;
    audit create tablespace;
    audit alter database;
    audit create role;
    audit create table;
    audit alter any procedure;
    audit create view;
    audit drop any procedure;
    audit drop profile;
    audit alter profile;
    audit alter any table;
    audit create public database link;
    Best Regards
    mseberg

  • Oracle 10G application server integrate with e-business suites 11i

    Hello,
    Server A:
    i have one UAT server which is installed with e-business suites 11i. The users logon to discoverer from e-business suites using the username and password stored in e-business suites.
    Server B:
    then, i now hv to set up a 10G application server and 10G discoverer on a new server. The user request that they want to login to discoverer using the username and password as mentioned above. They reject to logon to database using 'connect directly', 'open connection' or 'private connection'.
    what can i do in order to synchronize the username from Server A to Server B so that they can logon using the username and password they created in e-business suites.
    thank you.

    follow note 313418.1 it will let you use your oracle apps 11i with discoverer 10g, with the same user name and password, i did it before you may want to check my post after you check oracle note
    http://oracle-magic.blogspot.com/2006/11/upgrading-discoverer-4i-to-10g-on-apps.html
    fadi hasweh
    http://oracle-magic.blogspot.com/
    Oracle is not Magic, it just takes years of experience

  • Deploy forms and reports on Oracle Application Server 10gR3 10.1.3 .1.0 on

    hello and hi alls,
    I and two tire method , one for database and one for application server. i connect to databse ,but am i does not unserstand how deploy forms and reports on Oracle Application Server 10gR3 10.1.3 .1.0 ,pls
    help me
    Reagrd
    Mahr Haider Iqbal
    Functional & Technical Consultant

    Hi,
    Well you just need to create a directory in paste your forms there, and then make an entry in the formsweb.cfg file and forms.conf files. Likewise there are entries for the images and report.
    http://download.oracle.com/docs/cd/B28638_01//doc/frs/forms/B14032_03/basics002.htm
    regards

  • 10g Application Server rel 3 and 10g form & report

    hi all
    i want to run 10g form & report 10g Application server rel 3 any one tel me about that thanks

    Hi,
    You can find a similar discussion at this link :-
    start AS automatically
    You can also get a good ideas from these two Metalink Notes :-
    1. Note:223285.1 :- Shell scripts to start and stop IAS 9.0.2.2 (Infrastructure - Middle tier) on Unix
    2. Note:200475.1 :- 9iAS Release 2 (9.0.2) Start/Stop Instructions on Unix
    The notes are basically for IAS 9.0.2., but can be easily customized for other IAS versions.
    Regards,
    Sandeep

  • How deploy 6i Forms Fmx trought Application Server 10g

    Hello every one,
    Situation :
    In my company, we have a software developed by a team using Oracle Forms 6i, the application is connected te Oracle 9i Database and every thing works well.
    Problem :
    I was able to upgrade the database from 9i to 10g. But my question : is it possible to deploy all the Forms (fmx 6i version) on Application Server 10g. I want to use the 3-tiers architecture.
    Take note that i have not the fmb source files. Just the FMX (about 40 files)
    If yes, can you explain also how to proceed (tools to install on Application Server) and how to setup the connection between the 3 tiers throught a LOCAL NETWORK.
    Regards
    Kira

    You will at least need to recompile all those *.fmb to *.fmx in the version of the App server you will be using.
    We have a forms6 c/s application we are migrating to forms 11g and it almost that easy (except for changes in how you launch reports).
    The application server is setup alot like the client/server side of forms is, it needs a tnsnames.ora that points to the database and it needs to know where you will be storing the forms and report. Looks for any *.fmx and that will be the default location.

  • Deploying  Jave portlet on Oracle Application Server 10g

    I have installed Oracle 10g Application server, donwloaded and installed JDevleoper 9.0.5.1 and the latest Java Portal Development and as well as the JDeveloper portlet-addin. Now, I followed the instructions from the http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/ARTICLES/BUILD.JSR168.PORTLETS.USING.JAVA.PORTLET.WIZARD.9IJDEVELOPER.HTML
    On using JDeveloper addin wizrd to create a java portlet and so far so good. However, I am stuff on the last bit on deployment. It document says "# Now use the URL provided in the log page at the bottom of JDeveloper to get part of your URL (e.g. http://myserver.uk.oracle.com:8888/my-portlet) and complete the URL.
    http://myserver.uk.oracle.com:8888/my-portlet/portlets?WSDL
    Now use this URL to register your portlet with OracleAS Portal.
    But when i deploy my application (just a test thing), from the deployment tab I get:
    ---- Deployment started. ---- 22-Mar-2005 14:11:27
    Target platform is Oracle Application Server 10g (hotseatConnection).
    Wrote WAR file to C:\work\oracle\MyProject\MyPortlet\deploy\hotseat.war
    Wrote EAR file to C:\work\oracle\MyProject\MyPortlet\deploy\hotseat.ear
    Invoking DCM servlet client...
    C:\Java\j2sdk1.4.2_03\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\Java\JDeveloper9.0.5.1\jdev\lib\oc4j_remote_deploy.jar http://194.83.41.114:1811/Oc4jDcmServletAPI/ ias_admin **** redeploy /u01/app/oracle/product/10.1.0/oraMid_904 C:\work\oracle\MyProject\MyPortlet\deploy\hotseat.ear hotseat
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command redeploy /u01/app/oracle/product/10.1.0/oraMid_904 C:\work\oracle\MyProject\MyPortlet\deploy\hotseat.ear hotseat UNDEFINED
    Command = REDEPLOY
    Reading application's ear file
    Ear file was successfully read
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    HTTP response code = 200, HTTP response msg = OK
    Command was successfully sent to Oc4jDcmServlet
    Receiving session id from servlet to check command status
    Session id = c253297271317c3f930003c405ea91ff598582f0be0
    Please, wait for command to finish...
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has finished
    Receiving command exit value
    Receiving command output
    **** No output was received from command
    Closing connection to Oc4jDcmServlet
    DCM command completed successfully.
    Output:
    Exit status of DCM servlet client: 0
    Elapsed time for deployment: 1 minute, 45 seconds
    ---- Deployment finished. ---- 22-Mar-2005 14:13:12
    My question is, HOW DO I ACCESS the deployed application, since it didn't specify the URL where it's deployed????
    Many thanks
    P/S
    I have tried:
    http://{myserver}:8888/{my-portlet}/portlets?WSDL but that doesn't work

    Hi FormsEleven,
    When you say you can do this or you have done for demo then considering following directory structure if I have two forms having common form names how it will be resolved?
    Or how the url to access these forms will be?
    As shown in the following structure consider we have Form1 in sub directory1 as well as in sub-directory2 then how the link to access these forms will be?
    - Hosting Directory (formsweb.cfg entry)
      - Sub Directory1
          - Form1
          - Form2 
      - Sub Directory2
          - Form1
          - Form4
      - Sub Directory3
          - Form5
          - Form6

  • Urgent: problem running reports in Oracle 10g application server

    Hi all,
    our problem is that we deployed a jsp report as Ear file in Oracle 10g application server in infrastructure node.deployment says successfull.when we try to run that report it says 401 unauthorised.while sending request we are passing the database username,password &sid is this correct or any configuration setting to be done to make it run.
    one morething normal jsp works fine.when we run reports jsp it gives the above mentioned 401 error.

    hello,
    when you deploy reports JSPs they still require the reports specific componentes (e.g. TLD file, classes, ...) etc be available. i doubt that's the case in your ear file.
    thanks,
    ph.

  • How to compile forms and reports 6i in Application server 1.0.2.2.2.

    Hi all,
    i used oracle forms and reports 6i with oracle database 10g in client server architecture.
    now i want to make 3 tier, client-application server version 1.0.2.2.2-origin database serversystem on 3 separate machines.
    i have installed application server version 1.0.2.2.2.
    now i have my forms and reports 6i in application server computer.
    can any one please tell me how to compile forms and reports 6i in application server computer i.e do i have to write some extra code in forms and reports 6i in order to compile in application server computer successfully.
    waiting for an early reply.
    best regards
    fahad ejaz
    email:[email protected]

    ... another question would be why not upgrade those old Forms & Reports to the newest release 10.1.2.0.2 and use the latest Application Server to run them with?
    Release 6i and 1.0.2.2 is as you know desupported.
    Regards,
    Martin

  • Deploying Oracle Retail Applications in Oracle 10g Application Server

    Hi All..
    Can anyone help me to know:
    How to Deploy Oracle Retail Applications(like RMS,ReIM,RIB) in Oracle 10g Application Server.
    Regards.

    Hi Ahmed,
    It sounds you have not yet had the chance to lay eyes on the installation guides - they are not perfect but should point you in the right direction.
    Please start at http://www.oracle.com/technetwork/documentation/oracle-retail-100266.html and check out the install guide per application module.
    Best regards,
    Erik

Maybe you are looking for

  • I have what looks like a second dock and a second command-tab window?

    In my house we've got two macs using the wi-fi, a Mac Pro late 2013 running Yosemite and a Mac Mini also running Yosemite. What's strange is sometimes I get what looks like a second dock with only one icon, Chrome (my default browser). The Chrome ico

  • Column in base table corresponds to column in view

    Hi, I have a view based on one table. I want to know the colum name of the view is corresponds to which column names in the base table. Showing the creation statement does not help because it has many colums and I cann't track this colum to which nam

  • Product Type 55A interest rate instrument structure

    Hi All Would anyone be aware as to how to activate the payment amount and payment rate field in the deal structure of 55A product type, we are working on ECC6 EHP4, SP16. May be it is available from a later version. I have seen it before at another c

  • Can't build "hprof.dll" on Windows [JDK5.0]

    Hello everyone! Now,I am trying to build "hprof.dll" on windows, because I want to customize "Hprof".The "hprof" source code is included in "JDK DEMO(see %JAVA_HOME%\demo\jvmti\hprof\src)". I have not changed the source code at all. However,Building

  • Commit Function Module for External System ?

    Hi Gurus, I am using RFC - RFC_UPDATE_TAXES_DOC to post documents into External System. After I post those documents how to execute Commit fucntion in the external system. My Try: Will I be able to commit using BAPI_TRANSACTION_COMMIT - CALL FUNCTION