Additional Application Server on SAP R/3 4.7

Hello Guru's,
We are running on SAP R/3 4.7 ext 2.0 with Oracle 9.2.0.4 on Solaris 5.9 OS. We are having separate Application Server and DB server installed. Now I want to add one more application server on Windows Server which will communicate with my existing DB Server. Will it be possible to implement this scenario. Can anyone provide me kind help to proceed further?
Thanks in Advance,
Kshitiz Goyal
BASIS Administrator

Hi Kshitiz,
It is supported.
Check the following notes:
80266 - Installing NT Applicn. Servers in UNIX Environment.
680617 - INST: Appl.Server in Heterogeneous SAP System
You also need to use SAMBA in order to share the transport and profile directories between Unix and Windows - SAP notes 28781 & 97993
Regards,
Nahum

Similar Messages

  • Error on installing Additional Application Server Instance on HA system

    Dear All,
    We're installing NW 7.3 High Availability System in our landscape, sucessfully we installed First Cluster Node, Database Instance, Additional Cluster Node and Primary Application Server Instance. But during the Additional Application Server instance installation we're facing some issue. Could you any help us on the below issue.
    server0 was unable to start, fails due "2150(core service start fails on initial startup)"
    developer trace log:
    Cannot connect to cluster node [15567050] host [/169.254.1.108:50120] for [0] millis
    [EXCEPTION]
    java.io.IOException: Connection closed because handshake timeout. p2p.connect.handshake.timeout = 10000
         at com.sap.engine.core.cluster.impl6.p2pnio.HandShaker$TimeoutRunner.transferred(HandShaker.java:454)
         at com.sap.engine.core.cluster.impl6.p2pnio.HandShaker$TimeoutRunner.access$200(HandShaker.java:421)
         at com.sap.engine.core.cluster.impl6.p2pnio.HandShaker.connect(HandShaker.java:209)
         at com.sap.engine.core.cluster.impl6.p2pnio.ConnectionHolder.connect(ConnectionHolder.java:125)
         at com.sap.engine.core.cluster.impl6.p2pnio.ConnectionHolder.access$100(ConnectionHolder.java:41)
         at com.sap.engine.core.cluster.impl6.p2pnio.ConnectionHolder$1.run(ConnectionHolder.java:92)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:73)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:178)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:316)
    #2.0 #2011 09 03 15:11:43:268#+0300#Warning#com.sap.engine.core.cluster.impl6.p2pnio.ConnectionHolder#
    com.sap.ASJ.krn_clu.000105#BC-JAS-COR-CLS#kernel.sda#C000A9FE025B00030000000100003338#
    15566950000000021##com.sap.engine.core.cluster.impl6.p2pnio.ConnectionHolder#####d646643ad62511e083abf6ed20524153##0#ClusterP2P#Plain##
    Cannot connect to cluster node [15567050] host [/169.254.1.108:50120] for [1000] millis
    [EXCEPTION]
    java.io.IOException: Connection closed because handshake timeout. p2p.connect.handshake.timeout = 10000
         at com.sap.engine.core.cluster.impl6.p2pnio.HandShaker$TimeoutRunner.transferred(HandShaker.java:454)
         at com.sap.engine.core.cluster.impl6.p2pnio.HandShaker$TimeoutRunner.access$200(HandShaker.java:421)
         at com.sap.engine.core.cluster.impl6.p2pnio.HandShaker.connect(HandShaker.java:209)
         at com.sap.engine.core.cluster.impl6.p2pnio.ConnectionHolder.connect(ConnectionHolder.java:125)
         at com.sap.engine.core.cluster.impl6.p2pnio.ConnectionHolder.access$100(ConnectionHolder.java:41)
         at com.sap.engine.core.cluster.impl6.p2pnio.ConnectionHolder$1.run(ConnectionHolder.java:92)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:73)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:178)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:316)
    Could anyone help us.
    regards,
    Guna

    HI,
    Thanks for your reply.
    You're right, if the installation unable to create the user and folder in the node2 means... your suggestion is applicable but I crossed those phase... I'm in the phase of "Install Instance basics of J01".
    Do you need to do the copy and paste method, eventhough we're in Install Instance basics of J01 phase.
    suggest...
    regards,
    Guna

  • Fetching of multiple files from Application Server into SAP Program

    Hi All,
    I have a issue related <b>Fetching of multiple files from Application Server into SAP Program</b>.
    Actual issue is as below.
    In the <b>selection screen</b> of <b>my program</b> i will give <b>Application Server Path</b> as :
    <b>/PW/DATA/SAP/D1S/PP/DOWN/eppi0720*</b>
    Then the based on above input it should pick up all the files that are matching <b>eppi0720*</b> criteria.
    Suppose if i am having <b>5</b> files with above scenario, i have to fetch all those <b>5</b> files at a time and place in my SAP Program.
    All those 5 file's data should come into SAP at a time.
    Can anybody tell me how can we solve above issue.
    If any body has come across same issue please provide me with solution.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    If you want to get around the authorization check, you can do something like this.
    report zrich_0001 .
    parameters: p_path type epsf-epsdirnam
                      default '/usr/sap/TST/SYS/global'.
    parameters: p_file type epsf-epsfilnam default 'CO*'.
    start-of-selection.
    perform get_file_list.
    *       FORM get_file_list                                            *
    form get_file_list.
      types: name_of_dir(1024)        type c,
             name_of_file(260)        type c,
             name_of_path(1285)       type c.
      data: begin of file_list occurs 100,
              dirname     type name_of_dir,  " name of directory. (possibly
                                             " truncated.)
              name        type name_of_file, " name of entry. (possibly
                                             " truncated.)
              type(10)    type c,            " type of entry.
              len(8)      type p,            " length in bytes.
              owner(8)    type c,            " owner of the entry.
            mtime(6)    type p, " last modification date, seconds since 1970
              mode(9)     type c, " like "rwx-r-x--x": protection mode.
              useable(1)  type c,
              subrc(4)    type c,
              errno(3)    type c,
              errmsg(40)  type c,
              mod_date    type d,
              mod_time(8) type c,            " hh:mm:ss
              seen(1)     type c,
              changed(1)  type c,
            end of file_list.
      data: begin of file,
              dirname     type name_of_dir,  " name of directory. (possibly
                                             " truncated.)
              name        type name_of_file, " name of entry. (possibly
                                             " truncated.)
              type(10)    type c,            " type of entry.
              len(8)      type p,            " length in bytes.
              owner(8)    type c,            " owner of the entry.
            mtime(6)    type p, " last modification date, seconds since 1970
              mode(9)     type c, " like "rwx-r-x--x": protection mode.
              useable(1)  type c,
              subrc(4)    type c,
              errno(3)    type c,
              errmsg(40)  type c,
              mod_date    type d,
              mod_time(8) type c,            " hh:mm:ss
              seen(1)     type c,
              changed(1)  type c,
            end of file.
      call 'C_DIR_READ_FINISH'             " just to be sure
           id 'ERRNO'  field file_list-errno
           id 'ERRMSG' field file_list-errmsg.
      call 'C_DIR_READ_START' id 'DIR'    field p_path
                              id 'FILE'   field p_file
                              id 'ERRNO'  field file-errno
                              id 'ERRMSG' field file-errmsg.
      if sy-subrc <> 0.
        sy-subrc = 4.
        exit.
      endif.
    * Read the file list and add to internal table.
      do.
        clear file.
        call 'C_DIR_READ_NEXT'
          id 'TYPE'   field file-type
          id 'NAME'   field file-name
          id 'LEN'    field file-len
          id 'OWNER'  field file-owner
          id 'MTIME'  field file-mtime
          id 'MODE'   field file-mode
          id 'ERRNO'  field file-errno
          id 'ERRMSG' field file-errmsg.
        if sy-subrc =  1.
          exit.
        endif.
        append file to file_list.
      enddo.
    * Write out the file list
      loop at file_list.
        write:/ file_list-name.
      endloop.
    endform.
    Regards,
    Rich Heilman

  • Reading of File from legacy system into SAP Application Server using SAP XI

    Hi All,
      I have a file in <b>Legacy System with Exchange rates information data</b> i have to read that file using SAP XI process and put that file in SAP Application Server in SAP Specific Format and latter i have to use program RFTBFF00 to upload the file in the Application Server into SAP Tables.
      Can anybody tell me how can i do this with some example of same scenario.
      It would be better if anybody provides code example as i am new to SAP XI.
    Thanks in advance.
    Warm Regards,
    Rayeez.

    Hi Shaik,
    You need the access to the file system of ur legacy application and then you can follow this link for the required ifnormation
    File & Header
    Regards
    Vishnu

  • Picking a IDOC Flat File stored in SAP R/3 Application Server by SAP PI

    Hi,
    Can SAP PI pickup a IDOC Flat File stored in SAP R/3 Application Server Directory and send it back as an Inbound IDOC.
    Scenario:
    We have a data in the EXCEL Sheet, which will be used to a fill an IDOC and the IDOC will be just save in the SAP R/3 Application Server Directory, but can not be triggered due to its peculiar behavior. Afterwards, SAP PI should pole the SAP R/3 and pick up that IDOC Flat File from the R/3 Application Server and send it back to the SAP R/3 as an Inbound IDOC.
    For Ref: IDOC does not have a Outbound Process Code, thus can not be triggered and send to SAP PI. It is always used as a Inbound IDOC in SAP R/3 system.
    Regards,
    Saurabh

    SAP PI should pole the SAP R/3 and pick up that IDOC Flat File from the R/3 Application Server
    If SAP PI = 7.11 --> /people/william.li/blog/2009/04/01/how-to-use-user-module-for-conversion-of-idoc-messages-between-flat-and-xml-formats
    send it back to the SAP R/3 as an Inbound IDOC
    why to send  some information again into R3 which it already has? cant some internal code in R3 read the info from excel and then update the IDOC directly?

  • SAP NetWeaver Application Server ABAP & SAP Business Warehouse 7.4 SP8 on SAP HANA with ERP-System

    Hello,
    I have a running Instance of SAP NetWeaver Application Server ABAP & SAP Business Warehouse 7.4 SP8 on SAP HANA 1.0 SP8.
    Here I have the minisap Licence of A4H.
    When I get the Licence of ERP - do I have a fully ERP System on HANA ?
    Or do I need a new Instance?

    Hi Julia,
    even if you or your company have an SAP license for ERP, you are legally not allowed to install the license key into the free offering it because you have accepted the terms and conditions of the trial/developer version.
    If you want to use your own licenses, you would need to switch to the BYOL model where you bring in the license. For that you would need to purchase the SAP Cloud Appliance Library subscription. You get more details here (CAL FAQ - Business related questions ). To purchase the SAP Cloud Appliance Library subscription you would need to select the "Unlock full library" link on the top right corner of the Subscriptions screen on http://cal.sap.com.
    Best Regards,
      Hannes

  • Cant find 'SAP NetWeaver Application Server ABAP & SAP Business Warehouse 7.4 SP8 on SAP HANA 1.0 SP8 [Developer Edition]'

    I have successfull installed and been running 'SAP NetWeaver Application Server ABAP & SAP Business Warehouse 7.4 SP5 on SAP HANA 1.0 SP7 [Developer Edition]'
    In my CAL-account I have seen that 'SAP NetWeaver Application Server ABAP & SAP Business Warehouse 7.4 SP8 on SAP HANA 1.0 SP8 [Developer Edition]' has become available.
    Searching 'AWS Marketplace' with 'SAP HANA one' only brings up the version (SP5-7) I already have installed. How am I supposed to proceed to install the latest version (SP8-8)?

    It wasn't removed. I and at least one other person reported it as abusive, because it contains just a link. I think after three reports, it's automatically hidden until the moderator rejects it permanently, or releases it. In this case, it was released.
    Now, why did I report it? Well, the common view (obviously not shared by the moderator here), is that posts like that
    1) Indicate the original poster (in this case you) could have searched for yourself to find the same link
    2) Damage the site as a whole, as you end up with just a whole bundle of links from one place to another and no real content
    3) Encourage posting of FAQ
    My experience is that quite often the link isn't in fact relevant, and is just the result of the first hit of a keyword search using google. In this case it was relevant - but couldn't you have searched and found it yourself?
    In the areas I moderate, posts that constitute a single link are rejected as a matter of course. See this blog for a full and complete discussion: Posting links and the jungle you end up in..

  • Install additional application server for existing CE7.11 system

    Hello Gurus,
    We have an existing CE 7.11 system installed. After installation, we have updated the SPS level to 04 recently. The CE 7.11 system is already part of a NWDI track configuration since many months and developers are already using since then.
    Now, we need to install an additional application server (dialog instance) for the same system.
    I want to know: Do I need to carry out any further post-installation steps after installation of the new app server?
    Does it matter that the system is already at a certain SPS level including an updated kernel? Will there be any issues at all?
    Basically, what else should I do after the installation of the app server is completed?
    Thanks and Regards,
    Shitij

    Question got repeated by mistake.

  • Install additional application server for existing CE 7.11 system

    Hello Gurus,
    We have an existing CE 7.11 system installed. After installation, we have updated the SPS level to 04 recently. The CE 7.11 system is already part of a NWDI track configuration since many months and developers are already using since then.
    Now, we need to install an additional application server (dialog instance) for the same system.
    I want to know: Do I need to carry out any further post-installation steps after installation of the new app server?
    Does it matter that the system is already at a certain SPS level including an updated kernel? Will there be any issues at all?
    Basically, what else should I do after the installation of the app server is completed?
    Thanks and Regards,
    Shitij

    Question got repeated by mistake.

  • SSO from non sap application server to SAP systems

    Mysapsso2 cookie has been generated after we are login into the portal https://FQDN/irj/portal for all the backend systems in client browser. Since it is working fine. After login into the portal , while clicking the URL iview of external JBoss application sever in portal home page and it is shows the new windows pop up login page. After login into this external JBoss application server, we have configured work item for SAP ITS WEBGUI login page of the backend system inside this JBoss appliaction. Here we need to pass the mysapsso2 cookie information in SAP WEBGUI, so that login page is bypassed using SSO. Kindly do give some suggestion for fixing this issue. Kind Regards, R Rajavelu

    Try to use it Appsintegrator to access the non sap application from SAP Application

  • Web Application Server on SAP R/3 4.7 * 200

    Hi All,
    How do i know if Web Application Server is running on SAP R/3 4.7 * 200 system. i checked and
    found that IGS Watch dog service is running under sap mmc, and i see this parameter active in
    Instance profile ms/http_port = 8000 . Which user do we need to use to login and the url would be
    http://hostname:portname ??  Any inputs would be appreciated
    Regards,
    Ershad Ahmed

    Hello Eric,
    Thanks for correcting me, but
    J2EE_ADMIN is used only with ABAP stack.
    but i think you are tring to say JAVA stack or it is really ABAP stack.
    Regards,
    Subhash

  • How to install Additional Application Server for EP (ESS/MSS functionality)

    Is it the path SAP application Server Java->Oracle->High-Availability System->Dialog instance

    Hi,
    And what else could it be ?
    Olivier

  • Additional Application Server

    Hello All!
    I'd like to open a new discussion about adding a new application server to enhance the performance of my production system.
    At the implementation, we had only two company codes, but nowadays we have added a new business unit in our SAP system as a new company code. This caused an increase of response time only at closing period (about the 2nd to 3rd business day for CO users) and casually at another time.
    This is causing an increase of response time from 600-700ms to 2100ms at the more critical period of day, and consequently dissatisfaction from all users.
    On July, we're implementing a new business unit, a new company code, then, a new CO closing procedures. I think it will increase more the response time.
    What are your opinion about this case? May I really think about installing an application server to provide more CPU power, even for a short period of the month?
    All opinion are very important for me! Thanks in advance for all help!
    Best Regards,
    André Koji Honma
    Support Analyst

    Hi André,
    if your CPU is often 100%, you have to do something !
    There is a very interesting part in WRKSYSSTS - the DB-capacity !
    How high is that while the CPU is at 95%+ ?
    If this is low, the appl server will help, if not, the SQL is the issue as you are in fear of ...
    Why is the DB-time high, even when an appl server might help ?
    The db time ALWAYS becomes high, when the CPU is at 100%, because then it just takes long to process each statement ...
    But, as said above, it could even be, that the resources are eaten by SQL ...
    => we need the following figure (not on a second base, but several minutes:
    WRKSYSSTS:
    % CPU benutzt  . . . . . :       41,3 
    % DB-Kapazität . . . . . :        4,8
    Abgelaufene Zeit . . . . :   00:13:57
    How is this on your site typically, when you do have the issues ?
    Regards
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.net - http://www.4soi.de - http://www.easymarketplace.de

  • Data transfer from application server to sap system in binary mode

    hi friends,
    can any one help me out in
    how to read,open the dataset (syntax) while transfering the file from application server in binary mode ?
    how to move the file to differrent location in the same server?
    regards,
    mohan
    Message was edited by:
            mohan kumard

    HI,
    Syntax for reading the file
    OPEN DATASET file FOR INPUT IN BINARY MODE
    if sy-subrc = 0.
    DO.
          READ DATASET file INTO wa_record.
    ENDDO.
    CLOSE DATASET file.
    endif.
    syntax for writing file.
    OPEN DATASET  file FOR OUTPUT  IN  BINARY MODE .
    if sy-subrc = 0.
    transfer wa_record to file.
    CLOSE DATASET file.
    endif.
    You can also transfer file from application server to presentation server using transaction CG3Y by specifying source path(app ser),destination path(presentation ser) and tranfer format (BIN).
    To copy the file from one location to other location in application server
    use the FM 'ARCHIVFILE_SERVER_TO_SERVER'
    reward points if needful..

  • Cannot connect to Instance of SAP NetWeaver Application Server ABAP & SAP Business Warehouse 7.4 SP8 on SAP HANA 1.0 SP8

    I have created an instance and activated it succesfully in CAL (status is active). When I click Connect from the instance line, Remote Desktop tries to connect to frontend IP. The connection is not formed but instead I get an error message: "Remote desktop cannot connect to the remote computer for one of these reasons: 1)Remote access to server is not eabled 2)The remote computer is turned off 3) The remote computer is not available on the network.
    Could you please help me to get connected. Thanks!

    Hi Hurtta,
    Could you check that you are not behind a firewall that does not let you open an RDP connection to the VM?
    Best regards,
    Stanimir

Maybe you are looking for

  • HDMI Help

    Hey Everyone, First post here, so I apologize if I'm in the wrong section. I tried a Forum search and coudn't find what I was looking for, so here goes. I have the NF750-G55 motherboard, and I'm trying to send my video out through the HDMI port to my

  • JMS to File Scenario

    Hi All Experts, I want to perform JMS to File Scenario but i am unable to figure out what will my message be(that is, the format and type of the message like xml, txt etc.) on the sender side and where will it reside so that it gets picked up and get

  • Itunes 7 song skipping when MSN contacts speak

    Yea, ive seen loads of you guys have had problems with Itunes 7 but i havent seen this one yet. Its the only problem i have had. I have changed the bit rate, which did nothing at all. Its just when a contact talks any song jerks forward to the next s

  • CIN - Excise Invoice

    Hi Gurus, I am working on CIN. When i am trying to raise a Excise Invoice with reference to Commercial invoice, Excise Duty amount is not getting reflected. Can anyone tell me where i have to maintain value for the same. I have maintained Condition R

  • Re: Recommended Setup for compiling NLMs?

    David Howe wrote: > Is there a TID or guide to setting up a development environment? In a > former place of employ, I used to use borland and the base tech sdk, but > that appears to no longer be available and I suddenly find myself with a > need to