How to setup the SMTP server in Oracle apps?

Hi,
How to setup the SMTP server in Oracle Apps? Is it mandatory to keep the SMTP server on the same host where the Oracle data base is installed? Also can someone help how we can set up the SMTP server on different host (not the Database server) and we can use the same for Workflow notification mailer.
Thanks,
Bijoy
Edited by: user12070886 on Feb 6, 2013 4:26 AM
Edited by: user12070886 on Feb 6, 2013 4:27 AM

How to setup the SMTP server in Oracle Apps? Is it mandatory to keep the SMTP server on the same host where the Oracle data base is installed? No, it is not mandatory. Also please note that the mails are sent out from concurrent manager mode. Not from the database node.
Also can someone help how we can set up the SMTP server on different host (not the Database server) and we can use the same for Workflow notification mailer.
>
It depends on the operating system you are using. If you are using *nix then sendmail needs to be configured.
Thanks

Similar Messages

  • How to configure the smtp server..

    i had an error when running the java mail program..
    this is my program
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import java.io.*;
    import java.util.Properties;
    public class MailClient
    public void sendMail(String mailServer, String from, String to,
    String subject, String messageBody,
    String[] attachments) throws
    MessagingException, AddressException
    // Setup mail server
    Properties props = System.getProperties();
    props.put("mail.smtp.host", mailServer);
    // Get a mail session
    Session session = Session.getDefaultInstance(props, null);
    // Define a new mail message
    Message message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
    message.setSubject(subject);
    // Create a message part to represent the body text
    BodyPart messageBodyPart = new MimeBodyPart();
    messageBodyPart.setText(messageBody);
    //use a MimeMultipart as we need to handle the file attachments
    Multipart multipart = new MimeMultipart();
    //add the message body to the mime message
    multipart.addBodyPart(messageBodyPart);
    // add any file attachments to the message
    // addAtachments(attachments, multipart);
    // Put all message parts in the message
    message.setContent(multipart);
    // Send the message
    Transport.send(message);
    protected void addAtachments(String[] attachments, Multipart multipart)
    throws MessagingException, AddressException
    for(int i = 0; i<= attachments.length -1; i++)
    String filename = attachments;
    MimeBodyPart attachmentBodyPart = new MimeBodyPart();
    //use a JAF FileDataSource as it does MIME type detection
    DataSource source = new FileDataSource(filename);
    attachmentBodyPart.setDataHandler(new DataHandler(source));
    //assume that the filename you want to send is the same as the
    //actual file name - could alter this to remove the file path
    attachmentBodyPart.setFileName(filename);
    //add the attachment
    multipart.addBodyPart(attachmentBodyPart);
    public static void main(String[] args)
    try
    MailClient client = new MailClient();
    String server="smtp.canvasindia.com";
    String from="[email protected]";
    String to = "[email protected]";
    String subject="Test";
    String message="Testing";
    String[] filenames ={"c:/A.java"};
    client.sendMail(server,from,to,subject,message,filenames);
    catch(Exception e)
    e.printStackTrace(System.out);
    the error is .................
    javax.mail.SendFailedException: Invalid Addresses;
    nested exception is:
    com.sun.mail.smtp.SMTPAddressFailedException: 553 Attack detected from p
    ool 59.144.8.116. <http://unblock.secureserver.net/?ip=59.144.8.*>
    at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1196)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:584)
    at javax.mail.Transport.send0(Transport.java:169)
    at javax.mail.Transport.send(Transport.java:98)
    at MailClient.sendMail(MailClient.java:47)
    at MailClient.main(MailClient.java:84)
    Caused by: com.sun.mail.smtp.SMTPAddressFailedException: 553 Attack detected fro
    m pool 59.144.8.116. <http://unblock.secureserver.net/?ip=59.144.8.*>
    at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1047)
    ... 5 more
    how to configure the smtp server in my machine..
    please guide me...

    This uses gmail account, and gmail smtp
    * MailSender.java
    * Created on 14 November 2006, 17:07
    * This class is used to send mails to other users
    package jmailer;
    * @author Abubakar Gurnah
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    public class MailSender{
        private String d_email,d_password;
         * This example is for gmail, you can use any smtp server
         * @param d_email --> your gmail account e.g. [email protected]
         * @param d_password  --> your gmail password
         * @param d_host --> smtp.gmail.com
         * @param d_port --> 465
         * @param m_to --> [email protected]
         * @param m_subject --> Subject of the message
         * @param m_text --> The main message body
        public String send(String d_email,String d_password,String d_host,String d_port,
                String m_from,String m_to,String m_subject,String m_text ) {
            this.d_email=d_email;
            this.d_password=d_password;
            Properties props = new Properties();
            props.put("mail.smtp.user", d_email);
            props.put("mail.smtp.host", d_host);
            props.put("mail.smtp.port", d_port);
            props.put("mail.smtp.starttls.enable","true");
            props.put("mail.smtp.auth", "true");
            //props.put("mail.smtp.debug", "true");
            props.put("mail.smtp.socketFactory.port", d_port);
            props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
            props.put("mail.smtp.socketFactory.fallback", "false");
            SecurityManager security = System.getSecurityManager();
            try {
                Authenticator auth = new SMTPAuthenticator();
                Session session = Session.getInstance(props, auth);
                //session.setDebug(true);
                MimeMessage msg = new MimeMessage(session);
                msg.setText(m_text);
                msg.setSubject(m_subject);
                msg.setFrom(new InternetAddress(m_from));
                msg.addRecipient(Message.RecipientType.TO, new InternetAddress(m_to));
                Transport.send(msg);
                return "Successful";
            } catch (Exception mex) {
                mex.printStackTrace();
            return "Fail";
        //public static void main(String[] args) {
        //    MailSender blah = new MailSender();
        private class SMTPAuthenticator extends javax.mail.Authenticator {
            public PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(d_email, d_password);
    }

  • How to setup the Advance payment in Oracle Payroll

    Dear Friends,
    Can any one pls let me Know,How to setup the Advance payment in Oracle Payroll.. Pls ..
    with regards
    Veeru

    GLOBAL HRMS , XX_legislation
    Plz help

  • I want to know how to setup the logicaladdress (cluster+HA+oracle)

    I want to know how to setup the logicaladdress (cluster+HA+oracle)

    Please have a look at:
    http://docs.sun.com/app/docs/doc/819-0703/6n343k6g0?q=SUNW.LogicalHostname&a=view
    for how to add a Logical Hostname Resource to a Resource Group (in that case the RG where you configrued ha oracle for).
    There is nothing special for HA oracle on that part.
    If you configure your oracle_listener resource for that specific logical hostname resource, then you should configure a dependecy from the oracle_listener to the LH.
    By default the RG will have property Implicit_network_dependencies set to true, which should be enough.
    If this property is false, I recommend adding the LH resource name to the Resource_dependencies property of the oracle_listener resource.
    For a general overview I recommend reading:
    http://docs.sun.com/app/docs/doc/819-0703/
    Greets
    Thorsten

  • Email Enabled lists - where to run the SMTP server? On APP server or on Exchange Server? Or somewhere else?

    Hi there,
    I need to setup EMail Enabled lists in SharePoint 2010 site. Where do I need to run the SMTP server? On APP server or on Exchange Server? Or somewhere else?
    Thank you so much.

    The SMTP service cannot run on the Exchange server. You can run it on a SharePoint server, or a stand alone server and share out the drop directory over SMB.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Where(How to change the SMTP- Server

    Hello,
    i'm using the OAS 10.1.2.0.2
    While installation OAS i entered the name of the actual working SMTP- Server.
    Sending mails worked fine until today.
    Now the name of the SMTP- Server has changed and i wanted to change it(the name) in the Application Server, but i didn't find one/all place(s) where i had to change the name(s) of the SMTP- Server.
    Is there anyone who can help me??
    Thanks a lot.
    Best regards.
    Florian

    Refer this:
    http://download.oracle.com/docs/cd/B14099_19/core.1012/b13995/reconfig.htm#sthref681
    Thanks
    Shail

  • How to solve the SMTP server issue.

    I did the migration from SharePoint 2010 to SharePoint 2013 , the workflow emails are sent perfectly in SharePoint 2010 but when i configure the SharePoint 2013 the following error has occurred. 
    Error : The e-mail message cannot be sent. Make sure the outgoing e-mail settings for the server are configured correctly.
    Please let me know if you aware of this.
    -Thanks,
    Swapnil

    That's pretty much all the settings you need to do on the SharePoint side.  Does the SMTP server that you are pointing to allow incoming emails from your SharePoint server IP Address?  It might only allow relay services to specific IP ranges.
     Or maybe you have a firewall that is blocking it?

  • How to find the smtp server on a linux box?

    Hello,
    I am trying to set up Notification Methods in OEM and I need to know the SMTP server and port. Which command can I use on Linux to find this information? Thank you in advance.

    Netstat is not necessarily the right tool for this task.
    Sorry, but "netstat -a | grep 25" will not be useful. For example:
    netstat -a | grep 25
    unix  2      [ ]         DGRAM                    128925
    unix  3      [ ]         STREAM     CONNECTED     11825 Better grep for "smtp". For example:
    netstat -a | grep smtp
    tcp        0      0 vm015.example.com:smtp      *:*                         LISTEN
    lsof is a better tool, but requires "root" or superuser privileges. For instance:
    lsof -i :smtp
    COMMAND   PID USER   FD   TYPE DEVICE SIZE NODE NAME
    sendmail 3098 root    4u  IPv4  13077       TCP vm015.example.com:smtp (LISTEN)Keep in mind however that processing and routing email in is usually a more complex task and involves either to know firewall and mail gateway configurations, or ask your mail administrator. The local mail server may not be permitted to relay email to the company wide smtp gateway depending on routing policies.

  • How to schedule the Request set in Oracle Apps

    Hi Everyone,
    Hope all are doing good, I would like to know scheduling in Oracle Apps.
    Here is the my scenario, i.e I have an one Request Set named Custom Invoice Request Set.
    Now i want to run this request set for every 5 minutes. For that what do i have to do.
    Can anyone please suggest me.

    Hi,
    Please follow the below steps:
    1. Log into the system
    2. View > Request > Submit a new Request > Request Set > Select the request set (from list of values)
    3. Click on schedule (Dont click on submit)
    4. Click on Periodically
    5. For "Re-run every" parameter enter value
              i.    5
              11. minutes (from the drop down value).
    6. Click OK
    This will achieve your objective.
    Hope answered the question.
    Best Regards,

  • How to register the Discoverer workbook in Oracle Apps 12i

    I am trying to access a workbook form the Apps side. I did all the things which I got from metalink except the last step 6. I reloginned and check but it is giving the error like
    "The webpage cannot be found ".
    Please assisst me.
    1. Create the workbook.
    2. Open the workbook in the Discoverer Desktop or Plus edition and go to
    'File->Manage Workbooks->Properties' look for the value for 'Identifier'. Save this value.
    3. Create a form function. Open the Function form and create a new function.
    Define the Form Function.
    The form function definition includes the properties listed in these tabs:
    3.1 Description tab:
    3.1.1 Function Name: BIS_[X] (use something to distinguish it from seeded functions)
    3.1.2 User Function Name: This is the name that will show in the menu
    3.1.3 Description: Add a description of the function if you want.
    3.2 Properties tab:
    3.2.1 Type: Select "SSWA plsql function"
    3.2.2 Maintenance Mode Support: Leave as "None"
    3.2.3 Context Dependence: Leave as "Responsibility"
    3.3 Form tab:
    3.3.1 Form: Leave the field blank.
    3.3.2 Application: Leave the field blank.
    3.3.3 Parameters: workbook=<(workbook identifier from step2) &PARAMETERS=sheetid~worksheet id*param_parameter name One~Parameter One Value*param_parameter name Two~Parameter Two Value*
    Eg; 'workbook=TEST_WORKBOOK&PARAMETERS=sheetid~1*' would open sheet 1 of the workbook.
    # According to the Applications Administration Edition the workbook name will also work here.
    See Expanation section below for more information on setting up parameters and changes fro Discoverer Viewer.
    3.4 Web HTML tab:
    3.4.1 HTML call : Set as OracleOasis.RunDiscoverer
    3.5 Web Host tab:
    3.5.1 Leave all fields blank.
    3.6 Region tab:
    3.6.1 Leave all fields blank.
    3.7 Save the form.
    4. Open the menu form as sysadmin.
    4.1 Search for the main menu under which you want the link to appear.
    4.2 Add the information you need such as prompt, submenu, description etc.
    4.3 Enter into the Function field the name of the function you created in step 3.
    4.4 Save the menu form.
    A message will appear saying that a concurrent program will run to regenerate the menus.
    You can cancel it if you want and do step 5 below if the menu does not appear after the concurrent program runs.
    5. Use adadmin and recompile the menu information to make the changes appear.
    6. Bounce Apache and Forms.
    Thanks,
    ABR

    Hi Hussein,
    Very much thanks to you Hussein. I gone through the doc 471303.1 and came to know that the options and values which we have to take for Launching Discoverer Report from 11i & 12i is differenet. Ohh great its working and I have a question when I am selecting the Discoverer Report function from the Apps the follwoing error is coming.
    A connection error.
    - Oracle BI Discoverer is unable to complete the connection initialization.
    - Default or specified schema containing EUL tables is inaccessible and asking for the log in details.
    Can't we go directly to the Discoverer Viewer where we can see the Worksheets without coming through the login page.
    Once again thank you Hussein.
    ABR.

  • How to register the .DTD file in Oracle Apps

    Hi,
    I am getting below error while generating XML file by concurrent program:
    Attaching XML file and .DTD file.
    Do I need to register this .DTD file somewhere?
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    System error: -2146697210. Error processing resource 'http://mbci-ebsdev.itciss.com/OA_CGI/label.dtd'.
    Below is the stored procedure I created to generate the XML file
    create or replace
    PROCEDURE Demo_XML_Publisher (errbuf VARCHAR2,retcode NUMBER,v_customer_id VARCHAR2)
    AS
    /*Cursor to fetch Customer Records*/
    CURSOR xml_parent
    is
    SELECT header_id,ordered_item
    FROM oe_order_lines_all
    WHERE header_id = v_customer_id;
    /*Cursor to fetch customer invoice records*/
    CURSOR xml_detail(p_customer_id NUMBER)
    is
    select a.order_number,a.header_id,a.order_type_id
    from oe_order_headers_all a,oe_order_lines_all b
    where a.HEADER_ID = B.HEADER_ID
    and a.header_id = p_customer_id
    AND ROWNUM<4;
    BEGIN
    /*First line of XML data should be <?xml version=”1.0??>*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<?xml version="1.0" encoding="UTF-8"?>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<!DOCTYPE labels SYSTEM "label.dtd">');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<labels FORMAT="order.btw" PRINTERNAME="KIMBALL1872A" _QUANTITY="1">' );
    FOR v_customer IN xml_parent
    LOOP
    /*For each record create a group tag <P_CUSTOMER> at the start*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<label>');
    /*Embed data between XML tags for ex:- <CUSTOMER_NAME>ABCD</CUSTOMER_NAME>*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<HEADER_ID>' || V_CUSTOMER.header_id
    || '</HEADER_ID>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<ORDERED_ITEM>' || v_customer.ordered_item ||
    '</ORDERED_ITEM>');
    FOR v_details IN xml_detail(v_customer.header_id)
    LOOP
    /*For customer invoices create a group tag <P_INVOICES> at the
    start*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<P_INVOICES>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<variable name= "Order_no">' ||
    V_DETAILS.ORDER_NUMBER || '</variable>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<variable name= "Headr_Id">' ||
    V_DETAILS.HEADER_ID || '</variable>');
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'<variable name= "Order_Type_Id">'||
    v_details.order_type_id||'</variable>');
    /*Close the group tag </P_INVOICES> at the end of customer invoices*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</P_INVOICES>');
    END LOOP;
    /*Close the group tag </P_CUSTOMER> at the end of customer record*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</label>');
    END LOOP;
    /*Finally Close the starting Report tag*/
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'</labels>');
    exception when others then
    FND_FILE.PUT_LINE(FND_FILE.log,'Entered into exception');
    END Demo_XML_Publisher;
    Below is the Label.dtd file structure m using:
    <!ELEMENT labels (label)*>
    <!ATTLIST labels _FORMAT CDATA #IMPLIED>
    <!ATTLIST labels _JOBNAME CDATA #IMPLIED>
    <!ATTLIST labels _QUANTITY CDATA #IMPLIED>
    <!ATTLIST labels _PRINTERNAME CDATA #IMPLIED>
    <!ELEMENT label (variable)*>
    <!ATTLIST label _FORMAT CDATA #IMPLIED>
    <!ATTLIST label _JOBNAME CDATA #IMPLIED>
    <!ATTLIST label _QUANTITY CDATA #IMPLIED>
    <!ATTLIST label _PRINTERNAME CDATA #IMPLIED>
    <!ELEMENT variable (#PCDATA)>
    <!ATTLIST variable name CDATA #IMPLIED>
    Thanks in Advance

    In any case, the dtd is incorrect and that may be why. The element structure is at least look like this.
    <!ELEMENT labels (label*)>
    <!ELEMENT label (CUSTOMER_NAME?, HEADER_ID, ORDERED_ITEM, P_INVOICES*)>
    <!ELEMENT P_INVOICES (variable, variable, variable)>If you want to keep some flexibility on variable's cardinality, you can simply it like this.
    <!ELEMENT labels (label*)>
    <!ELEMENT label (CUSTOMER_NAME?, HEADER_ID, ORDERED_ITEM, P_INVOICES*)>
    <!ELEMENT P_INVOICES (variable+)>Then you add the appropriate ATTLIST for the elements.

  • How to setup the local testing server ??

    hello, what do I need to install first before I can setup the
    testing server in dreamweaver 8? I have download apache2 triad,
    mySQL, IIS 6...
    Where should I download the correct version of mySQL because
    I need to test my php scripts locally which has something to do
    with database?
    How do I configure these on the testing server setup
    Connection Name - what should I input here?
    MySQL Server - and this?
    Username - where do I get one?
    Password - where do I get one?
    Database - gets an error saying "HTTP error code 404...
    1) There is no testing server running on the server machine.
    2)The testing server specified for this site does not map to
    the
    http://localhost/...... ??
    Please Help.. Thanks in advance!

    criticalx wrote:
    > I'm using the apache2triad for the mySQL.. I s there
    anything I did wrong on
    > my configuration part? Thanks... "I only need to test my
    site locally"
    I have never heard of apache2triad, but I've just had a look
    at the
    apache2triad site, which says: "It is recommended that only
    experienced
    users, with a vast knowledge of how networks, and its
    components (Apache
    Web Server, ect.) should install this software. It IS NOT
    your average
    software; a lot of time, patience and effort are required to
    maintain
    such a server."
    Setting up a local testing server is not difficult, but it
    does require
    a basic understanding of how a server-side language like PHP
    works.
    As I said before, you must always store your files in the web
    server
    document root. According to the apache2triad documentation,
    this is C:
    \apache2triad\htdocs\. Unless you store your files there, or
    in a
    subfolder of htdocs, nothing will work.
    ---LOCAL INFO----
    Site Name: login
    Local Root folder: C:\apache2triad\htdocs\login
    checked refresh local site automatically
    default images: C:\apache2triad\htdocs\login\images\
    Links Relative to: "document" - this is correct
    HTTP address: leave blank
    cache: enabled
    ---REMOTE INFO---
    None
    ---TESTING SERVER---
    Server Model: PHP/MySQL
    Access: Local/Network
    Testing server folder: C:\apache2triad\htdocs\login\
    URL Prefix:
    http://localhost/login/
    mySQL connection:
    conn name: connLogin
    mySQL server: localhost (do not use
    http://)
    username: root
    password: mypassword
    Database: login
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • How do i create a mail box in the SMTP server thru a java program

    How do i create a mail box in the SMTP server thru a java program. If it is possible thru a java program.pls suggest a mail server compatible for the above possibility to work.
    pls help ....

    Please let me know if it is not at all possible to
    create a user account automatically thru a program
    (java) in a mail server... how does yahoo work
    then..does he manually add a user to the mail
    server...By talking to a web server not a mail server.
    >
    Is not there any mail server that will allow us to
    create mailboxes for my java program.. how do the
    other web account services work..
    As I said mail servers do have management interfaces. You need to find one and then determine what the management interface is.

  • How to find out about the SMTP Server

    Hi,
    I have been trying to configure groupware in the portal - in particular I want to enable the sending of emails through the portal. I already have a how-to-guide that that seems to explain the steps quite well. However, it mentions that I need to know the SMTP Server of the email. Can you tell me how to find out about the SMTP Server? Where do I need to look for the name of it?
    Thank you and regards,
    Katharina

    Hi Katharina,
    you need the SMTP server of your company. This means you can't look for it in the portal, but have to ask the responsible person in your company.
    Kind regards,
    dominik

  • How to setup the MDT Upstream server and down stream server

    Hi,
    i have configured the MDT upstream server at office1 & i need to setup the downstream server at office2.
    Image should be replicate from upstream server to downstream server and image should be build from
    downstream server at office2 not upstream server. I need to use LAN network, not MAN network. 
     How i can setup the downstream MDT server?
    Can you please suggest on this.
    Thanks!

    Hi Meganathen,
    I would go for a periodically (scheduled) robocopy. Yes it's perfectly possible to create this with selection profiles and linked deploymentshares, but based on my own experiences and consulting other subject matter experts like MVP Johan Arwidmark, it is
    advised to take care of replication yourself by robocopy or by DFSR
    This way you are in control, and robocopy is a great tool to take care of replication of files.
    To keep in mind your central deploymentshare and branche deploymentshare, you can play with the bootstrap.ini and customsettings.ini, that they will refer to a different deploymentshare location based on default gateway.
    See these links for more information:
    http://social.technet.microsoft.com/Forums/en-US/1c4bf193-6293-4207-9995-005dd1756fdd/mdt-2010-for-multiple-sites?forum=mdt
    http://tech.sportstoday.us/windows_7/fine-tuning-mdt-deployments---creating-a-linked-deployment-share-(part-2)---maintaining-linked-deployment-shares.aspx
    Good luck!
    If this post is helpful please click "Mark for answer", thanks! Kind regards

Maybe you are looking for

  • Drop down menu in CSS

    After someone suggested the P7 link ( http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm[i ), I was able to reverse engineer it and figure out how it works (obviously not a feat of genius, but I'm new at this). Anyway, I got it work

  • Image problem in V4.0

    Hi, Previously I had lots of problems with showing a BLOB image from a table in a report using the apex_util.get_blob_file_src function. Varad put me right on several ocassions: see the thread at Confusion with get_blob_file_src Eventually everything

  • Problem in Matrix control

    Hi,    When i develope a add on form i used  the matrix control to capture more data. <b>I can't edit the matrix contol in run mode.</b> How to add the new record thru Matrix. If not what is the alternate way. My requirement is to Enter the purchase

  • Add Service interface

    Hello folks, In PI 7.1 there is a new naming for message interface which is the Service interface. When i create a Business service : i can add sender and receiver Service interfaces. But if i create a Technical system in SLD and assign Business syst

  • Inst.error "proc.entry GetProcessImageFieNameW not found in DLL PSAPI.DLL"

    During installation of SoaSuite v10.1.3.1 (as preparation for later v10.1.3.4) I got an error popup showing "procedure entry GetProcessImageFieNameW not found in DLL PSAPI.DLL" After I clicked OK the installation resumes and was finished (successfull