Unable to create New Business System

Hi
I Installed XI 3.0 and configuring as per the configuration guide.
When I try to create Business System (SLD) I get the following error message.
"Integration Server already defined There is already an integration server defined for the selected technical system. Please select role Application System."
Steps:
Logon on to SLD
Click on New Business System
Name: XID  and click on Next
Technical System Type: Web AS for ABAP
Select System: XID on Hostname   and select Client
Installed products: Choose all and click Nextt
Integration Server:
Business System Role: Integration Server
Pipeline url: http://HOST:PORT/sap/xi/engine/entry?action=execute
Initially I created Business System with wrong Name (P01) . I deleted it and try to recreate with new name (XID) I get the above error.
How to create a Business system and assign the role of Integration Server?
Thanks for the Help
Raghu

Hi RG,
      Once we had   same error ,due to some reason business system with role integration server deleted.
       It has been resolved by deleting XI technical system and recreating same after that  it allows to define new bussiness system with role as integration server .
It might help you.
Regards
Santosh

Similar Messages

  • Warning: Unable to create new entry, caught: "javax.ejb.CreateException", message is:

    Warning: Unable to create new entry, caught: "javax.ejb.CreateException", message is: "Error creating EntityBean: Io exception: The Network Adapter could not establish the connection".
    while executing JSP:<%
    * add.jsp
    * Adds a new entry through EmployeeBean. This is a JSP that serves 2
    * functions. First of all, when called with no arguments, it will display a
    * table with a few input fields. The user should enter empNo, empName and
    * salary of the new record to be added. When she submits this
    * information, it is sent to this page again. If it is successful, then the
    * user can continue adding new entries. If it is not, then the old data will
    * be displayed, and a warning message will be shown to her.
    %>
    <%@ page import="com.webstore.*,java.io.*,java.util.*,javax.naming.*" %>
    <%
    // Make sure this page will not be cached by the browser
    response.addHeader("Pragma", "no-cache");
    response.addHeader("Cache-Control", "no-store");
    // We will send error messages to System.err, for verbosity. In a real
    // application you will probably not want this.
    PrintStream errorStream = System.err;
    // If we find any fatal error, we will store it in this variable.
    String error = null;
    // In a moment we will check if all columns were passed to this page
    String param_1 = "";
    String param_2 = "";
    String param_3 = "";
    long dptNo = 0;
    String dptName = null;
    // This variable indicates what function of this page is currently used. If
    // this page is called with parameters, then a new entry should be
    // added. In that case this variable is true.
    boolean submitting = false;
    // We will first attempt to get the reference to EmployeeHome from the
    // session. The "list.jsp" page sets this attribute in the session.
    DepartmentHome home = (DepartmentHome) session.getAttribute("DepartmentHome");
    if (home == null) {
    error = "No previous connection to DepartmentBean.";
    } else {
    // Attempt to get all 3 parameters from the session
    param_1 = request.getParameter("DPTNO");
    param_2 = request.getParameter("DPTNAME");
    // If all 3 parameters are specified, then this is probably a submission by
    // this very page. Note that if the user left one of the fields blank, then
    // the corresponding parameter will be "", not null.
    if (param_1 != null && param_2 != null) {
    param_1 = param_1.trim();
    param_2 = param_2.trim();
    submitting = true;
    // In the following variable we will store a (non-fatal) warning message. This
    // message will be displayed in the page, but so will the submission form.
    String warning = null;
    if (submitting) {
    warning = "";
    // If there is an empty param_1, param_2 and/or param_3, then this will be noted
    // in the warning message.
    if ("".equals(param_1)) {
    warning = "Null param_1 specified. ";
    if ("".equals(param_2)) {
    warning += "Null param_2 specified. ";
    // If we don't have a warning message yet, then we will attempt to create
    // a new record.
    if ("".equals(warning)) {
    try {
    dptNo = (long)Long.parseLong(param_1);
    dptName = new String(param_2);
    Department rec = (Department) home.create(dptNo);
    rec.setDptname(dptName);
    // empty columns after insert for effect
    param_1 = "";
    param_2 = "";
    // If we got this far, then there was no problem detected.
    warning = null;
    } catch (Exception e) {
    // Set the warning variable to indicate a problem.
    warning = "Unable to create new entry, caught: \"" +
    e.getClass().getName() + "\", message is: \"" +
    e.getMessage() + "\".";
    // Decide what the title will be.
    String title;
    if (error != null) {
    title = "Error";
    } else {
    title = "com.webstore | Add entry";
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
    <HTML>
    <HEAD>
    <TITLE><%= title %></TITLE>
    </HEAD>
    <BODY bgcolor="#FFFFFF">
    <H1><%= title %></H1>
    <%
    // If there was a fatal error, then display the error message
    if (error != null) {
    %>
    <P><BLOCKQUOTE><%= error %></BLOCKQUOTE>
    <%
    // Otherwise display a table with fields to be filled in.
    } else {
    // If there was a warning, then display it.
    if (warning != null) {
    %>
    <TABLE border="1" bgcolor="#FF2222">
    <TR><TD><FONT color="#FFFFFF"><STRONG>Warning: <%= warning %></STRONG></FONT></TD></TR>
    </TABLE>
    <%
    } /* if */
    // Display the table with fields. There are two columns. The left column
    // contains the names of the fields, while the right column contains the
    // fields.
    %>
    <FORM action="dptadd.jsp" method="GET">
    <P><TABLE border="1">
    <TR>
    <TD><STRONG>DptNo:</STRONG></TD>
    <TD><INPUT type="text" name="DPTNO" value="<%= param_1 %>"></INPUT></TD>
    </TR>
    <TR>
    <TD><STRONG>DptName:</STRONG></TD>
    <TD><INPUT type="text" name="DPTNAME" value="<%= param_2 %>"></INPUT></TD>
    </TR>
    <TR>
    <TD colspan="3" align="center"><INPUT type="submit" value="Add this entry"></INPUT></TD>
    </TR>
    </TABLE>
    </FORM>
    <%
    } /* else */
    %>
    <P><TABLE border="1">
    <TR><TD>Back to list</TD></TR>
    </TABLE>
    </BODY>
    </HTML>
    Please guide me..

    Rajive,
    This is the same problem as in your other post:
    sql is running very slow
    So please refer to my answer there.
    Good Luck,
    Avi.

  • File Adapter - FTP - Unable to Create new pooled resource

    Hi Friends,
    I am getting the following error while using file adapter with FTP protocol...
    Attempt to process file failed with Error when getting an FTP connection from connection pool: com.sap.aii.af.service.util.concurrent.ResourcePoolException: Unable to create new pooled resource: FTPEx: PASS command failed
    Error MP: Exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: Error when getting an FTP connection from connection pool: com.sap.aii.af.service.util.concurrent.ResourcePoolException: Unable to create new pooled resource: FTPEx: PASS command failed
    Error Exception caught by adapter framework: Error when getting an FTP connection from connection pool: com.sap.aii.af.service.util.concurrent.ResourcePoolException: Unable to create new pooled resource: FTPEx: PASS command failed
    Error Delivery of the message to the application using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: Error when getting an FTP connection from connection pool: com.sap.aii.af.service.util.concurrent.ResourcePoolException: Unable to create new pooled resource: FTPEx: PASS command failed.
    Can someone help me to solve this probelm..
    Regards,
    Shyam.

    Hi,
    Try to check the directory you have specified in the CC and also check whether you are able to connect to the FTP server with those login credential and access the directory specified.
    Also let me know whether it is working fine for other scenario's or not.
    Regards,
    Nithiyanandam

  • Java.lang.OutOfMemoryError: unable to create new native thread on Win2000

    Dear all,
    I install a java server (SAP J2EE) on the windows machine and run into the following problem: the total number of threads cannot exceed 1200 (as i see this in the task manager)
    After it does reach this number no other tasks can be started. Thereafter i get java.lang.OutOfMemoryError: unable to create new native thread error .
    However the other machine where the same distribution of Win2000 Server is installed can easily coupe with more than 2500 theads. The same is true when the safe mode on the first machine is on: I can generate more than 1200 threads. So it seems the problem has something to do with Windows itself.
    I am really puzzled here, would really appreciate any help.
    Thanks in advance,
    Dimitry
    Surkov Dimitry
    [email protected]
    +49.1632.492618

    well, i do not supply any options when i start jvm, but it is not the course:
    it also happens with c programs. however in the safe mode it works. both for c and for java program.
    so it must be either some software (however memory is ok) or ...? i am lost. In some Unix system you can set the total number of threads allowed as an option in the kernal. But i guess this is not the case with windows.
    Thanks a lot for your reply,
    dimitry

  • Help! Unable to create new native thread

    Ok I see this problem all over the web but most of the posts are many years old and still leave me a little confused.  Often at random times on the same tags like CFLDAP I get the error "Unable to create new native thread".  Then a few minutes later the same tag on the same page works just fine.
    I have 4GB of memory in this box with 1400 MB set as the maximum Java heap size by the way.
    Here are my arguments from the jvm.config file.
    # Arguments to VM
    java.args=-server  -Xmx1400m -Dsun.io.useCanonCaches=false -XX:MaxPermSize=192m -XX:+UseParallelGC -Dcoldfusion.rootDir={application.home}/../ -Dcoldfusion.libPath={application.home}/../lib -Dcoldfusion.classPath={application.home}/../lib/updates,{application.home}/../lib,{appli cation.home}/../gateway/lib/,{application.home}/../wwwroot/WEB-INF/flex/jars,{application. home}/../wwwroot/WEB-INF/cfform/jars,"C:\\Program Files\\Apache Software Foundation\\Apache2.2\\htdocs\\InterWeb-Prod\\includes\\classes"
    Here is a typical error that comes through.
    struct     
    Browser     Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.70 Safari/533.4    
    DateTime    {ts '2010-06-23 10:07:44'}  
    Diagnostics unable to create new native thread null <br>The error occurred on line 122.
    GeneratedContent      
    HTTPReferer http://--------------------/index.cfm?FuseAction=HR.main    
    Mailto      interweb@--------------------- 
    Message     unable to create new native thread      
    QueryString fuseaction=ManagedLists.MailSubscriptions     
    RemoteAddress     192.168.250.124
    RootCause   struct    
    Message     unable to create new native thread      
    StackTrace          java.lang.OutOfMemoryError: unable to create new native thread at java.lang.Thread.start0(Native Method) at java.lang.Thread.start(Thread.java:597) at com.sun.jndi.ldap.Connection.<init>(Connection.java:208) at com.sun.jndi.ldap.LdapClient.<init>(LdapClient.java:112) at com.sun.jndi.ldap.LdapCtx.connect(LdapCtx.java:2504) at com.sun.jndi.ldap.LdapCtx.<init>(LdapCtx.java:263) at com.sun.jndi.ldap.LdapCtxFactory.getInitialContext(LdapCtxFactory.java:76) at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667) at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288) at javax.naming.InitialContext.init(InitialContext.java:223) at javax.naming.InitialContext.<init>(InitialContext.java:197) at javax.naming.directory.InitialDirContext.<init>(InitialDirContext.java:82) at coldfusion.tagext.net.LdapTag.do_ActionQuery(LdapTag.java:839) at coldfusion.tagext.net.LdapTag.doStartTag(LdapTag.java:616) at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2661) at cfadfunctions2ecfm1473603830$funcADLOOKUPUSERNAME.runFunction(C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\InterWeb-Prod\includes\adfunctions.cfm:122) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:418) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:324) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:59) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:277) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:192) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2471) at cfadfunctions2ecfm1473603830$funcADLOOKUPMULTIPLEUSERNAMES.runFunction(C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\InterWeb-Prod\includes\adfunctions.cfm:54) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:418) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:324) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:59) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:277) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:192) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2471) at cfdsp_managedlists2ecfm55598920.runPage(C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\InterWeb-Prod\hr\managedlists\dsp_managedlists.cfm:232) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196) at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370) at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2661) at cffbx_switch2ecfm2121232114.runPage(C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\InterWeb-Prod\hr\managedlists\fbx_switch.cfm:23) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196) at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370) at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2661) at cffbx_fusebox30_cf502ecfm1180471387._factor4(C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\InterWeb-Prod\fbx_fusebox30_cf50.cfm:241) at cffbx_fusebox30_cf502ecfm1180471387._factor5(C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\InterWeb-Prod\fbx_fusebox30_cf50.cfm:1) at cffbx_fusebox30_cf502ecfm1180471387.runPage(C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\InterWeb-Prod\fbx_fusebox30_cf50.cfm:1) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196) at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370) at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2661) at cfindex2ecfm749274359.runPage(C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\InterWeb-Prod\index.cfm:23) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196) at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370) at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:273) at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:86) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.CfmServlet.service(CfmServlet.java:175) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 ) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at jrun.servlet.FilterChain.service(FilterChain.java:101) at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106) at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286) at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543) at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203) at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320) at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428) at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266) at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)  
    I could really use some help figuring this out.  We are getting random errors a few times a day and usually in places where we are using CFLDAP.
    Thanks,
    David

    Absolutely unbelievable that this has been going on for 4 YEARS and there are still NO definitive answers from Adobe!!
    There's no definite answer from Adobe, because there's no definitive single question.  These errors come up because - for any number of possible reasons - the JVM becomes overloaded.  And it's almost always down to an issue with the application code being run, and nothing to do with CF, per-se.  So what's Adobe supposed to do?  Come and fix your application for you?  There are plenty of diagnostic tools out there - some built into CF itself - which you could use to sort the problem out.  Or you could hire someone like Mike Brunt to come and have a look at your set up.  All it takes to fix these things is to actually do something about fixing it, rather than slamming one's fist on the desk saying "why doesn't Adobe do something!"
    I thought - and my knowledge in the area isn't expansive - the inability to allocate threads was down to the app being choked up: threads are a finite commodity, and if requests are queuing up faster than the JVM can clear them, you're gonna get errors eventually.  What causes this sort of thing?  More traffic than the server can process.  This could be because of server kit, or it could be due to code that doesn't scale to the requirement.  Usually the latter.  Basically one cannot polish a turd.
    I have a 24x7 production server that services 180,000 clients in 300 countries around the clock that cannot afford to be down for more than a few minutes at a time.
    I'm running Windows 2008 32-bit with 4GB of RAM because I have some graphics software that cannot tolerate a 64-bit OS.  Everything has been running fine for the past few months, but now it's starting to crash more and more frequently.  I have CF 8.0.1.195765 and Java 1.6.0_04
    How many concurrent requests for 180000 clients generate?  The number of clients matters less than how heavily the site is used.  But, to be honest, I get the impression the implication is "it's a busy site", in which case I think your hardware is a bit on the lean side.  Also, if it's a mission-critical app, running it on a single server is probably ill-advised, just from a fault-tolerance perspective even before one starts thinking about performance.
    If I was in your situation, I'd consider the following options:
    * upgrade your JVM to the most recent version (1.6.0_21?)
    * put more RAM in the box, and run a second CF instance on it.
    * get another box.
    * refactor the environment so the graphics software runs on a different box, upgrading the CF server to 64-bit (again, with more RAM)
    * run some diagnostics on the server, seeing what's taking up threads and where any bottlenecks might be
    * get an expert in to do the analysis side of things.
    * stop expecting Adode to fix "something".
    One of my other symptoms I have noticed is that any work done using RDP starts getting really really bogged down.  Opening Windows Explorer and searching for files can take minutes.  Restarting the CF service will sometimes fail to complete, and you have to wait a few minutes before the manual Start option appears in the dropdown.  Maybe coincidentally, the Performance Monitor will fail to add any of the ColdFusion metrics, for example Running Requests and Queued Requests, and the Event Monitor shows an error relating to an 8-byte boundary not being maintained.
    You don't, by any chance, store your client variables in the registry do you?  The only time I've seen this happen is when the CF box is munging the OS environment, and the only way I can think this could happen if it was clogging the registry.  Never store client variables in the registry.
    Adam

  • How to creat a Business System and Tech System in SLD for the DB2 DataBase?

    Hi,
    How to creat a Business System and Tech System in SLD for the DB2 DataBase?
    Joseph

    Hi,
    Technical System
    In SLD, click on technical landscape->New Technical System->WebAS ABAP.
    Business System.
    1.Goto Business Landscape->New Business System->Name the business system.
    2. Choose the technical system that needs to be attached->WebAS ABAP->Technical System Name.
    Go Through this links..
    TBIT41:
    https://websmp201.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT41&LANGUAGE=
    TBIT42:
    https://websmp206.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT42&LANGUAGE=
    TBIT43:
    http://www50.sap.com/useducation/curriculum/course.asp?cid=60161651
    TBIT44:
    https://websmp102.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT44
    Also try elearning.
    https://www.sdn.sap.com/irj/sdn/elearn
    Thanks,
    Satya Kumar

  • (model.cpp (4051)) SBL-DAT-00227: Unable to create the Business Service 'EAI Outbound Service'

    Hello,
    I'm self-study integrating Siebel with SOA
    I just set up windown 2003 Siebel 8.1.1.11 (32-bit)
    I start Siebel Server error log file:
    >>>>> InfraEAIOutbound_0021_22020098.log <<<<<
    2021 2014-04-15 11:27:34 0000-00-00 00:00:00 +0700 00000000 001 003f 0001 09 InfraEAIOutbound 22020098 724 4056 C:\Siebel\8.1.1.11.0\ses\siebsrvr\log\InfraEAIOutbound_0021_22020098.log 8.1.1.11 [23030] ENU
    ServerLog    LstnObjInherit    3    000064e0534c0428:0    2014-04-15 110    2014-04-15 11:27:34    Inherited listening object for port 49157
    ServerLog    LstnObjPrivCreate    3    000064e2534c0428:0    2014-04-15 110    2014-04-15 11:27:34    Created port 49170 for EAI Outbound Server
    GenericLog    GenericError    1    000064e2534c0428:0    2014-04-15 110    2014-04-15 11:27:53    [AUDIT_LOG]: Global audit cache load successful.
    ObjMgrLog    Error    1    000064e2534c0428:0    2014-04-15 110    2014-04-15 11:28:11    (model.cpp (4051)) SBL-DAT-00227: Unable to create the Business Service 'EAI Outbound Service'
    GenericLog    GenericError    1    000064e2534c0428:0    2014-04-15 110    2014-04-15 11:28:11    Object manager error: ([0] Unable to create the Business Service 'EAI Outbound Service'(SBL-DAT-00227) (0x7500e3))
    GenericLog    GenericError    1    000064e2534c0428:0    2014-04-15 110    2014-04-15 11:28:11    Object manager error: ([1] Could not find 'Class' named 'EAI Outbound Service'. This object is inactive or nonexistent.(SBL-DAT-00144) (0x750090))
    GenericLog    GenericError    1    000064e2534c0428:0    2014-04-15 110    2014-04-15 11:28:11    ( (0) err=2818155 sys=7667856) SBL-OMS-00107: Object manager error: ([1] Could not find 'Class' named 'EAI Outbound Service'. This object is inactive or nonexistent.(SBL-DAT-00144) (0x750090))
    GenericLog    GenericError    1    000064e2534c0428:0    2014-04-15 110    2014-04-15 11:28:11    ( (0) err=2818155 sys=7667939) SBL-OMS-00107: Object manager error: ([0] Unable to create the Business Service 'EAI Outbound Service'(SBL-DAT-00227) (0x7500e3))
    GenericLog    GenericError    1    000064e2534c0428:0    2014-04-15 110    2014-04-15 11:28:11    (bsvcmgr.cpp (941) err=2818250 sys=0) SBL-OMS-00202: Error 7667939 loading Business Service "EAI Outbound Service"
    GenericLog    GenericError    1    000064e2534c0428:0    2014-04-15 110    2014-04-15 11:28:11    (bsvcmgr.cpp (1044) err=2818250 sys=0) SBL-OMS-00202: Error 7667939 loading Business Service "EAI Outbound Service"
    GenericLog    GenericError    1    000064e2534c0428:0    2014-04-15 110    2014-04-15 11:28:11    (smimtsrv.cpp (1203) err=2818250 sys=0) SBL-OMS-00202: Error 7667939 loading Business Service "EAI Outbound Service"
    SmiLayerLog    Error    1    000064e2534c0428:0    2014-04-15 110    2014-04-15 11:28:11    Terminate process due to unrecoverable error: 2818250. (Main Thread)
    LOG FILE:
    >>>> SIEBELEVAL.Eval_1.log <<<<<
    2021 2014-04-15 11:27:05 0000-00-00 00:00:00 +0700 00000000 001 003f 0001 09 SiebSrvr 0 2404 2876 C:\Siebel\8.1.1.11.0\ses\siebsrvr\log\SIEBELEVAL.Eval_1.log 8.1.1.11 [23030] ENU
    ServerLog    ServerStartup    1    00006142534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Siebel Enterprise Applications Server is starting up
    ServerLog    LstnObjCreate    1    00006231534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Created port 49156 for Business Integration Batch Manager
    ServerLog    LstnObjCreate    1    00006231534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Created port 49157 for EAI Outbound Server
    ServerLog    LstnObjCreate    1    00006232534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Created port 49158 for JMS Receiver
    ServerLog    LstnObjCreate    1    00006232534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Created port 49159 for Business Integration Manager
    ServerLog    LstnObjCreate    1    00006232534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Created port 49160 for File System Manager
    ServerLog    LstnObjCreate    1    00006232534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Created port 49161 for Server Request Processor
    ServerLog    LstnObjCreate    1    00006232534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Created port 49162 for Siebel Administrator Notification Component
    ServerLog    LstnObjCreate    1    00006232534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Created port 49163 for Server Request Broker
    ServerLog    LstnObjCreate    1    00006232534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Created port 49164 for Server Manager
    ServerLog    LstnObjCreate    1    00006232534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Created port 2321 for Siebel Connection Broker
    ServerLog    LstnObjCreate    1    00006233534c0428:0    2014-04-15 110    2014-04-15 11:27:05    Created port 49165 for Forecast Service Manager
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:05    SRBroker    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:05    ServerMgr    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:05    ServerMgr    INITIALIZED    Component has initialized (no spawned procs).
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:05    SiebSrvr    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:05    SiebSrvr    INITIALIZED    Component has initialized (no spawned procs).
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:05    SCBroker    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:05    SrvrSched    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:05    SrvrSched    INITIALIZED    Component has initialized (no spawned procs).
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:05    Created multithreaded server process (OS pid =     2800    ) for SRBroker
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:05    Created server process (OS pid =     2408    ) for SCBroker
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:05    SCBroker    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    SRBroker    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    FSMSrvr    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    SRProc    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    SvrTblCleanup    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    SvrTaskPersist    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    AdminNotify    STARTING    Component is starting up.
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    Created multithreaded server process (OS pid =     3404    ) for FSMSrvr
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    Created multithreaded server process (OS pid =     3796    ) for SRProc
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    Created server process (OS pid =     3852    ) for SvrTblCleanup
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    Created server process (OS pid =     3104    ) for SvrTaskPersist
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    Created multithreaded server process (OS pid =     3876    ) for AdminNotify
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:10    FSMSrvr    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:15    SRProc    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    SvrTblCleanup    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    SvrTaskPersist    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    AdminNotify    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    FINSObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    FINSeSalesObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    FINSeBrokerageObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    FINSConsoleObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    INSeServiceObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    FINSeChannelObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    FINSeBankingObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    FINSeEnrollmentObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    SSEObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    FINSeCustomerObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    MqSeriesAMIRcvr    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    MqSeriesAMIRcvr    INITIALIZED    Component has initialized (no spawned procs).
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    BusIntBatchMgr    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    SMCObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    MSMQRcvr    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    MSMQRcvr    INITIALIZED    Component has initialized (no spawned procs).
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    InfraEAIOutbound    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    MqSeriesSrvRcvr    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    MqSeriesSrvRcvr    INITIALIZED    Component has initialized (no spawned procs).
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    JMSReceiver    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    BusIntMgr    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    EIM    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    EIM    INITIALIZED    Component has initialized (no spawned procs).
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    EAIObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    CustomAppObjMgr_enu    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    SMQReceiver    STARTING    Component is starting up.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    SMQReceiver    INITIALIZED    Component has initialized (no spawned procs).
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    FcstSvcMgr    STARTING    Component is starting up.
    ServerLog    ServerStarted    1    00006499534c0428:0    2014-04-15 110    2014-04-15 11:27:16    Siebel Application Server is ready and awaiting requests
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    Created server process (OS pid =     2488    ) for FINSObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:16    Created server process (OS pid =     2540    ) for FINSeSalesObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:17    Created server process (OS pid =     3568    ) for FINSeBrokerageObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:17    Created server process (OS pid =     2640    ) for FINSConsoleObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:17    Created server process (OS pid =     4092    ) for INSeServiceObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:17    Created server process (OS pid =     2812    ) for FINSeChannelObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:17    Created server process (OS pid =     316    ) for FINSeBankingObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:17    Created server process (OS pid =     3068    ) for FINSeEnrollmentObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:17    Created server process (OS pid =     2572    ) for SSEObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:17    Created server process (OS pid =     2940    ) for FINSeCustomerObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:17    Created multithreaded server process (OS pid =     1804    ) for BusIntBatchMgr
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:17    Created server process (OS pid =     3288    ) for SMCObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:18    Created multithreaded server process (OS pid =     724    ) for InfraEAIOutbound
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:18    Created multithreaded server process (OS pid =     2296    ) for JMSReceiver
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:18    Created multithreaded server process (OS pid =     2976    ) for BusIntMgr
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:18    Created server process (OS pid =     3168    ) for EAIObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:18    Created server process (OS pid =     2448    ) for CustomAppObjMgr_enu
    ServerLog    ProcessCreate    1    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:18    Created multithreaded server process (OS pid =     3080    ) for FcstSvcMgr
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:28    FINSObjMgr_enu    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:28    FINSeBrokerageObjMgr_enu    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:28    FINSConsoleObjMgr_enu    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:33    FINSeSalesObjMgr_enu    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:33    SSEObjMgr_enu    INITIALIZED    Component has initialized.
    ServerLog    ComponentUpdate    2    00001cbf534c0964:0    2014-04-15 110    2014-04-15 11:27:33    SMCObjMgr_enu    INITIALIZED 

    Hi Experts,
    How to configure and launch the Siebel EAI?
    I'm having problems with url: http://ws811/eai_enu/start.swe?SWECmd=Start&SWEHo=ws811
    HTTP 500 - Internal server error
    Internet Explorer
    And the other url is OK:
    http://ws811/sales_ENU/start.swe?SWECmd=Start&SWEHo=ws811
    Please provide solution the asap.

  • Error on Creating New Business Partner

    Hi All,
    We have client who are using SAP Business One 2007 A (8.00.181) SP:00 PL: 49; they have been using the system for more than three years perfectly good .Now they have started to face a problem of Creating new Business Partners and System is recurring with an error message that u201CThis entry is already exist on the following tables u2018Business Partnersu2019 (OCRD) (ODBC u2013 2085) [Message 131 u2013 183]u201D while there is no such kind of record exist on the system. So can any one help on this problem?
    Best Regards,

    Hi.........
    Please check OCRD and ACRD table.
    OCRD table is for whether the Business Partner Master is already present or not.
    And ACRD is for whether the Business Partner Created and Deleted from OCRD and logs manitained in ACRD.......
    Please check you get some Clue........
    Regards,
    Rahul

  • Create new business transaction for OBV3.

    Dear All
    In OBV3 how to create Business transactions as i want to create new
    business transactions for the same.
    Regards
    VG

    Dear All
    Business transactions are system defined .
    Thanks
    VG

  • HT1449 new folder greyed out, unable to create new folder, anybody know why

    trying to transfer Itunes to a new External drive, unable to create new folder on new drive as detailed in Apple instructions, anybody know why.

    Unless you have a utility that will let you R/W NTFS they as noted - reformat to a +HFS file system - aka -
    Mac OS Extended (Journaled) - using Disk Utility.
    The Mac OS can read/write +HFS and FAT 32 but can only read NTFS.
    MJ

  • Unable to create new events in iCal

    I updated my iPhone 4 to iOS7, and now when I try to create a new event in iCal, nothing happens. I am able to tap the "+" and enter the event information, but when I tap "Done", no new event appears in the calendar.
    If I, instead, create the event in the Calendar on my PC, the phone syncs with Outlook, and the event appears on the phone's iCal app.
    Why am I suddenly unable to create new events on my phone in iOS7, and how can I fix this issue?

    Thanks! I've noticed the phone has been a bit "clunky" since the update too. Did you experience the same thing & did the hard restart help?

  • Unable to create new windows live id......the mess...

    i m unable to create new windows live id.
    the message have been shown that"your phone have too many windows live id,cant create new one..contact your senrvice provider" 
    i stolen my nokia music id password...so what can i do???????????????????

    mallar wrote:
    i m unable to create new windows live id.
    the message have been shown that"your phone have too many windows live id,cant create new one..contact your senrvice provider" 
    i stolen my nokia music id password...so what can i do???????????????????
    why would you steal your music id password? ..nokia id / account is different from windows live id btw.
    maybe you already have a windows live account, thats why its showing the that problem. check settings > email+accounts > you should ideally have only one(1) 'microsoft account' in there. if you want to use another one, you might want to just 'change' the existing one with your new credentials.

  • Creating a Business system in the SLD

    I am receiving an error message when trying to create a business system in the SLD. The error is "The selected client has an associated logical system nae that is already  used for another business system. Select a different client."
    Here is my issue. The business system that I am creating is for our R/3 4.6C production system. I currently have a business system for our R/3 4.6C quality system. Our prodution and quality R/3 systems do have the same logical system name and client number. This is because we recreate our qaulity R/3 system from our production system.
    So, the question is, How do I create a business system in the SLD for my production R/3 system when the logical system name is used assoicated with and business system.
    I should add that all my R/3 systems have been created as technical systems without any problems.
    Thanks,
    Jim

    It is recommended to have all ALE names unique.
    If it is not possible the following workaround can be used.
    Create one system in SLD (business system/technical system) which contains the ALE name. Proposal: The production system
    Create the other systems(dev/QA) without the ALE name
    During configuration the production system will be configured as usual.
    For Dev/QA systems: Define in the receiver agreement the header mapping and use The Receiver service to reference the production system. Because you reference the production system the ALE name of the production system will be used to fill the idoc.

  • Unable to create a business service from a jca file

    I have taken a jca file of a file adapter from Oracle JDeveloper and I am trying to create a business service though eclipse for OSB.
    But I am unable to create a business service as the jca protocol is NOT available in the "Transport Configuration" section of a business service.
    I have got OSB 11.1.1.3 and wls 10.3.3.0 installed along with the corresponding integrated eclipse(oepe_11gR1PS2).
    Pls suggest!

    Refer this for the solution
    Business service NOT getting configured from jca file in Windows 7

  • How to create the Business System both sender and receiver in SAP XI / PI

    Dear All
    kindly let me know how to create the Business System both sender and receiver in SAP XI / PI
    Regards
    Blue

    Hi,
      If by any chance you are not able to find these....
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/workingwithSystemLandscapeDirectory+%28SLD%29&
    http://help.sap.com/saphelp_nw04s/helpdata/en/24/8fa93e08503614e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/f1/92b248db68409487661ff13239127d/content.htm
    Regds,
    Pinangshuk.

Maybe you are looking for

  • How can I make a top layer "transparent" to the end-user?

    Hi guys, Got a quick question. I'm working on a custom card builder and was wondering if there was any way I could keep an uploaded image editable to the end user. The end-user will be able to choose what template they'd like to frame the image with.

  • How do I use an XML Data Feed or a CSV Data Feed?

    I am trying to build a website for a business I started. My drop shipper has a "data feed" that has all of the info for the products (over 100k products). The data feed is available in bot XML and CSV format. I have searched what seems like forever,

  • Acrobat 9 Pro install on pc Win XP Pro with Acrobat 6 Pro

    My Win XP Pro Dell PC has Acrobat 6 Pro.  Question:  What is the safest thing to do to install Acrobat 9 Pro?  Should I remove Acrobat 6 Pro first using the Remove Program option?  Thanks. drC

  • Help with export format - can I meet ad requirements?

    Help! I need to create a color ad for magazine. Starting with a file in either PDF or EPS. Need to tweek existing file by changing some of the text and adding a logo. Final product is for magazine ad with media requirements: Preferred High Resolution

  • Icons appear as question marks,

    it takes forever to open my mailbox (I have dsl) and a long time to send email with an attachment. Everything with my email (.mac) is very slow, and it wasn't always like this.