Connecting 2 Different Cities using Server 2008 R2

Dear Members....,
we are using server 2008 r2 on our head office, as our company in expanding and the branch offices are opened at two another places. please guide me our future plans is as,,,,
we are running server 2008 r2 on our head office, and we have opened two different branch offices one in the same city but 4 kilometer away from our head office and one branch office is in another city 300 kilometer away from our head office. our requirement
is to connect both branch offices with head office. am i right that our requirements are as below......?
------a wan connection from our first branch office to head office.
------another wan connection from 2nd branch office to head office.
both branch offices will join the domain in head office.
Thankssssss
Tahir Mehmood

Hi,
You can deploy the site-to-site VPN, then all your branch office can access your head office as in the head office.
The related KB:
Step-by-Step Guide for Setting Up a PPTP-based Site-to-Site VPN Connection in a Test Lab
http://technet.microsoft.com/en-us/library/cc758271(WS.10).aspx
The related thread:
Windows Server 2012 Site-to-Site VPN
http://social.technet.microsoft.com/Forums/windowsserver/en-US/6087f1ef-0d88-47ba-9724-8ba6dfb91ff7/windows-server-2012-sitetosite-vpn
Hope this helps.
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • Connection pooling with SQL Server 2008 and Tomcat 6.0

    Hello Everybody,
    I'm creating a web application using struts 2.0 , tomcat 6.0 and sql server 2008.
    Everything works fine but i'm unable to create connection pooling with sql server 2008.Please help me to solve this issue.
    Code for this is as foolows:
    in my META-INF/context.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <Context path="/spas" docBase="spas"
    debug="5" reloadable="true" crossContext="true">
    <Resource
    name="jdbc/spas_new"
    auth="Container"
    type="javax.sql.DataSource"
    maxActive="20"
    maxIdle="10"
    maxWait="-1"
    user="spas_user"
    password="spas123"
    driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
    url="jdbc:sqlserver://HGL-0053\dbo:1433;databaseName=spas_new;responseBuffering=adaptive;"/>
    </Context>
    in my web.xml
    <resource-ref>
    <description>SQL Server Datasource</description>
    <res-ref-name>jdbc/spas_new</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    and in my ConnectionThread.java file i've used:
    Context ctx = new InitialContext();
    if(ctx == null )
    throw new Exception("Sorry! No Context Exception");
    DataSource ds = (DataSource)ctx.lookup("java:/comp/env/jdbc/spas_new");
    System.out.println("ds:"+ds);
    conn=ds.getConnection();
    Following is the exception:
    org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Login failed for user ''.)
    at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1225)
    at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)
    at login.V_SPAS_ConnectionThread.getConnection(V_SPAS_ConnectionThread.java:87)
    at org.apache.jsp.login.v_005fspas_005flogin_005fpage_jsp._jspService(v_005fspas_005flogin_005fpage_jsp.java:95)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:337)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:630)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:436)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:374)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:302)
    at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1085)
    at org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:263)
    at org.apache.struts.action.RequestProcessor.internalModuleRelativeForward(RequestProcessor.java:1023)
    at org.apache.struts.tiles.TilesRequestProcessor.internalModuleRelativeForward(TilesRequestProcessor.java:345)
    at org.apache.struts.action.RequestProcessor.processForward(RequestProcessor.java:572)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:221)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:630)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:436)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:374)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:302)
    at org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:694)
    at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:665)
    at org.apache.jsp.index_jsp._jspService(index_jsp.java:54)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:337)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at login.V_SPAS_SecurityCheckFilter.doFilter(V_SPAS_SecurityCheckFilter.java:108)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: Login failed for user ''.

    Hi Karthikeyan,
    This is not the issue at all. I can open the management studio by the same login id and password and also i can make the database jdbc connection from plain java file.
    It does not give me any problem by them.
    I'm unable to find the actual problem. May be i'm missing something in connection pooling.
    Please help.
    Regards
    Mina

  • Connect WEKA to SQL Server 2008

    hello,
    please help for research purpose
    how to Connect WEKA to SQL Server 2008??
    and how to obtain source code of weka that connect WEKA to SQL Server 2008  ????

    Hello,
    Please do the test I mentioned above. Try to get connected using SQL Server Management Studio first.
    Please enable TCP/IP and Named Pipes protocols.
    https://msdn.microsoft.com/en-us/library/ms191294(v=sql.100).aspx
    Configure Windows Firewall or disable it.
    https://msdn.microsoft.com/en-us/library/cc646023(v=sql.100).aspx
    Open SQL Server Configuration Manager and make sure SQL Server service is started.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Issue while connecting to MS SQL Server 2008

    Hi everyone,
    I have not seen any thread that gives me a clue to my problem.
    I have OBIEE 10.1.3.4.0 on Windows.
    I have created an ODBC3.5 Datasource to a SQL Server 2008 and the test connection is successful.
    I have also imported the tables from the SQL Server 2008 into the Physical Layer of the OBIEE Administration tool. However after check-in, my problem begins trying to do an Update Row Count with the following Error message:
    NQODBCSQL_STATE: HY000nQSError: 10058 A general error has occurred.
    nQSError: 43093 An error occured while processingthe EXECUTE PHYSICAL statement.
    nQSError: 16023 The ODBC function has returned an error. The database may not be available, or the network may be down.
    Any suggestion or pointer will be greatly appreciated.

    Reading your post Issue in connecting to MS SQL Server 2008 I guess this thread here can be closed.
    Cheers,
    C.

  • Local Network Connection Problem with SQL Server 2008 R2

    Hi,
    I have CRM application which uses SQL server 2008. Weird thing is that I have no problems connecting from client machines to the server when using a particular router (via LAN) and when I upgrade the firmware of the same router (A common open source firmware
    which is used by many also works perfect apart from mentioned problem) and restart the server, the connection cannot be established. I get Error 40. 
    When i downgrade the firmware and restart the server, the connection works again.
    Please note that I am absolutely not touching any configuration of the server. Also the CRM software allows remote connections from public IPs which this feature works fine with both downgraded and upgraded firmwares. 
    As for my understanding, the routers do not block ports in LAN connections. So how can I diagnose the reason for this connection problem?

    Hi Leony83,
    Please also help to check Windows Event Log information regarding this issue, so that we can do further investigation. In additin, here is the general steps to troubleshoot SQL Server Error 40 issue. Please see:
    SQL SERVER – Fix : Error : 40 – could not open a connection to SQL server – Fix Connection Problems of SQL Server:
    http://blog.sqlauthority.com/2008/08/24/sql-server-fix-error-40-could-not-open-a-connection-to-sql-server-fix-connection-problems-of-sql-server/
    Hope this helps.
    Regards,
    Elvis Long
    TechNet Community Support

  • DAC source connectivity to MS sql server 2008 express

    Hi all,
    I'm working with the latest version of BI Apps (7.9.6.3) and DAC 10.1.3.4.1. I've installed Informatica 9.0.1 on Windows server 2008 R2.
    Now I'm hitting an issue as I am trying to setup a DAC physical connection to source system. We are pulling from a MS SQL Server 2008 physical source. But when I try to test the connection using the DAC (Physical data source), it fails saying +"Failure connecting to "<connection name>"! MSSQL driver not available!"+
    I tried using Microsoft SQL Server JDBC Driver 2.0 (sqljdbc.jar,sqljdbc4.jar) and Microsoft SQL Server JDBC Driver 3.0 (sqljdbc.jar,sqljdbc4.jar) then its giving me below error
    Java Runtime Environment (JRE) version 1.6 is not supported by this driver. Use the sqljdbc4.jar class library, which provides support for JDBC 4.0.
    Has anyone successfully connected to MSSQL server as a source from the DAC? I checked the DAC documentation but it was definitely not helpful in this situation.
    Thanks for the advice.

    Hi,
    Have you placed this jar file in Installation_Home/bifoundation/dac/lib directory and then restart the server and try to test the connection through dac.
    Thanks,
    Navin Kumar Bolla

  • Sybase ODBC Connection Issue in Windows Server 2008 R2

    Hi ,
    We have three sybase odbc connection in Windows Server 2008 R2 server . One connection is not working now, it was working fine before 30 days.
    I can ping the server address successfully from BO Server through "dsedit".
    i have created the same connection in a diffrent server (Win server 2003),and it is working fine.
    Sybase ASE Driver version 3.50.00.10
    Please help me to overcome this issue.
    Thanks,
    Saurabh upadhyay

    Hi Saurabh,
    The error message you are reporting is telling us that you are using the very old ctlibrary ODBC Driver.
    That is pretty much the only way you can get that error.
    Run from a command prompt,  isql -v  that will return a version string.  We can then verify the version.
    However, the old ODBC driver will function with the newer client.
    The old driver would read the sql.ini for the network address, and was also a translation layer between
    the client application and the ASE.
    Both were eliminated when Sybase released the "Native" ODBC Driver.
    The ct_connect error states that the connection attempt is using ctlibrary.
    In your ODBC configuration, Check to see in the ODBC Administrator and check to make
    sure that the driver you are using for your DSN is the Adaptive Server Enterprise and not the
    Sybase ASE ODBC Driver.
    Also  check the Drivers tab in the ODBC Admin.  See what the actual file is listed for the driver.
    sysybnt.dll
    syodase.dll  are unsupported drivers.
    It would be to your advantage to open an incident with SAP for more complete support
    Thank you,
    Kevin

  • Cannot connect Remotely for SQL Server 2008

    Hi,
    I have SQL Server 2008 installed and configured as server locally. So when I try to connect using same machine with IP address it works but when I try to connect through any other computer through internet, it does not work and gives the following error.
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider:
    Named pipes provider, error: 40 could not open a connection to sql server) (Microsoft SQL Server,
    Error: 53 )
    please note that:
    - I have amended Internet Protocol version 4 (TCP/IPv4) properties with my current IP address, subnet mask, default gateway and all Sky(ISP) preferred/alternate DNS Server names.
    - SQL server configuration manager shows that TCP/IP is enabled and it is on 1433 port.
    - SQL, SQL Browser exe and SQL server windows NT is ON for firewall's Port, Domain and public.
    - Router is added with outbound services and Inbound services for SQL port 1433 and SQL browser 1434.
    - SQL server instance is enabled for remote connections.
    Kindly help, I am almost there and do not want to give up. Thanks in advance.
    Adnan

    Hello Adnan,
    See TechNet
    Connecting to SQL Server over the Internet for how to setup your enviroment to Access your SQL Server over public Internet
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • How to create a Web Authentication Meathod using Server 2008 r2 ?

    HI, i am a NewBee in Server Managment. am using windows server 2008 R2 Enterprise Edition, with 2 NiC One is Connected to modem other one connected to Lan , using ICS for internet . i have 80 client computers , all clients have access to unlimited internet,
    i want to control them without 3rd part application, or  Create a Web authentication username and Password for users , is there any possible way to create a web authentication server in server 2008 r2 ? plz give me a proper guideline.....

    Hi,
    According to your description, my understanding is that you want to configure web authentication that allow the client to connect to Internet by password and user name.
    I am afraid that no function within Windows Server 2008 R2 may fulfill your requirement. 
    For better control of your clients, I would recommend you to configure the Windows Server 2008 R2 as an RRAS (dial-up) router(use NAT to assign private IP address for the internal network), and connect to the clients with intermediate device, such as hub,
    switch. Cooperate with NPS to provide authentication for network connection.
    3rd party software/device should be needed for configuring web authentication. Here is a deployment scenario just for your reference:
    Web Authentication Using LDAP on Wireless LAN Controllers (WLCs) Configuration Example
    http://www.cisco.com/c/en/us/support/docs/wireless/4400-series-wireless-lan-controllers/108008-ldap-web-auth-wlc.html
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Best Regards,           
    Eve Wang                                                                                            

  • Can't connect to CIFS from Server 2008

    we need to connect from a Server 2008 box to our NetWare server without the novell client.
    Cifs is set up and working on the server, confirmed by successful access from an XP machine.
    Any ideas what on the 2008 box could be preventing this access?
    Thanks,
    AlaN

    No firewalls, no routing issues.
    System error 1326 has occurred. Logon failure: unknown user name or bad password.
    Tried just the user name and username + context
    Jason
    Originally Posted by Ron Neilly
    I've just set up a new Win2k8 Standard 64 bit server and it talks just fine
    to my NetWare server via cifs. I followed the instructions for fixing
    Windows 7 in that TID.
    Maybe (just throwing stuff out there) it is:
    - a firewall in the Windows server or between the Windows and NetWare
    servers, try disabling the Windows firewall if it is enabled.
    - a routing issue, can you ping the Windows server from the NetWare server
    and vice versa?
    - a Windows client issue, try ftp to your NetWare server.
    BTW, what is the error message that you get when you attempt a cifs
    connection via the command line (net use n: \\dns.name\volume /u:username)
    Cheers,
    Ron

  • Printer redirection using Server 2008 R2 RDS

    Hi
    I have a server 2008 R2 (not a domain controller) running as a remote desktop session host with 2 remote XP SP3 client PCs connecting to it. Up until Friday last week these client PCs could successfully print via the redirected printer using the RD Easy
    Print Driver. As from this week though all printing has ceased! No updates have been installed on either server or clients in the interim. When I try to send a test print from the server (logged on using RD 7 for XP) it tells me that the test print has failed,
    do I want to run the troubleshooter? If I say yes then the troubleshooter fails with an unexpected error, the details of which include error code 0x80070057. If i try to print from the server using notepad I get the error "the parameter is incorrect". If I
    print from wordpad the document appears briefly in the queue but nothing prints. If I manually add a printer (using specific printer driver - not easy print driver) and choose the correct redirected port and then print using this printer, the print job appears
    briefly in the queue and then disappears - nothing appears in the print queue on the client PC and nothing prints. Initially printing like this caused the client TsWpfWrp.exe to fail but upgrading the version of TsWpfWrp.exe stopped this problem. I have tried
    updating to .net 4.0 on the client PC, upgrading from RD 6.1 to 7.0, XP SP2 to SP3 all to no avail.
    Does anyone know the solution to this problem? I am at a complete loss as to the way forward. I have checked all group policies and set all the correct permissions on the spool and PRINTERS folder in system32 on the server and nothing seems to help.
    Thanks for your help!

    Hi,
    Please try to check the following items.
    1.      
    Remove the Remote desktop easy print from Print Management console.
    2.      
    Remove the complete package.
    3.      
    Then install the Remote desktop easy print driver again.
    Please also check if the
    fenableRDR key still exists in the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\Wds\rdpwd.
    Technology changes life……

  • Heterogeneous Connectivity  10g r2 - SQL Server 2008 64 bit  - DMLs

    Hello,
    How do I update and delete based on condition of a where clause from an Oracle RDB 10g r2 instance to SQL Server database?
    I am using Oracle Database Gateway 11g for ODBC
    For e.g. consider following statement
    update  "ShipConfirm"@testsql set  "PackageReference" = 'test' where "PickListNumber" = '349318'in above example the ShipConfirm table in testsql DB link actually belongs to SQL Server 2008. And I am updating this from Oracle 10g's SQL Plus.
    When Above statement runs, Oracle gives following error
    ORA-02070: database TESTSQL does not support some function in this contextWhen I pass value without single quotes, I get following error
    ORA-02070: database TESTSQL does not support TO_NUMBER in this contextIf I remove where clauses then all Updates and Deletes are working just fine.
    Please advise.
    Thank you
    D

    To diagnose the error, please provide me the SQL statement for the create table command of the SQL Server table.
    In addition make sure no gateway process is loaded, then add/change your gateway init file: HS_FDS_TRACE_LEVEL=255
    Start a new SQL*Plus session and reexecute your statement.
    Upload the generated trace file to a public share like https://www.dropbox.com/tour and provide me the link
    Edited by: kgronau on Dec 4, 2011 9:46 AM
    If you don't want to post your trace file in a public share (security concerns), then please log a service request at Oracle Support.

  • I cannot connect to Microsoft SQL Server 2008

    I am getting a cannot load when I am trying to download SQL Server 2008.

    Hi,
    >>1)Can you look into the application log in the eventvwr for a detailed error message and post it here
    Where should I look into?
    Go to All programs-->Microsoft SQL Server-->configuration Tools-->Sql Server configuration manager-->SQL Server services in the left pane-->right click SQL Server -->
    start..you can also see properties where in you can see Log on as tab.
    In my machine i have only default instance..Based on the instances running in your machine you can see services running accordingly in here
    You already told your SQL Server service is not starting..now you have tried again to start the services and the error would have been logged in the eventvwr.
    Start-->cmd-->eventvwr-->Windows Logs-->application-->You can see the errors logged at the time when you tried to start SQL Server on why SQl Server was not able to start on the right side pane.
    Please go through that and post those error messages in here. Since you are using it after long time there might be chances you moved your master DB's mdf and ldf files to someother location. Without master DB coming up, your instance will not come up.
    Thanks
    Please click the Mark as answer button and vote as helpful if this reply solves your problem

  • TCP/IP Connection Issue on Windows Server 2008 SP2

    Hi All,
        We got the following error with our monitor application. Monitor application tried to make a TCP/IP connection to another server, and runs out of all local ports.  We can not  close these connections without
    rebooting.  This will happen if the windows server didn't reboot in 500 days. (We tested in our data center by some servers. )
       Please explain why it is exact 500 days??? We are looking for a solution to fix it without reboot.
    Thank yoU!
    Bill
    TCP/IP failed to establish an outgoing connection because the selected local endpoint was recently used to connect to the same remote endpoint. This error typically occurs when outgoing connections are opened and closed at a high rate, causing all available
    local ports to be used and forcing TCP/IP to reuse a local port for an outgoing connection. To minimize the risk of data corruption, the TCP/IP standard requires a minimum time period to elapse between successive connections from a given local endpoint to
    a given remote endpoint.

    Hi Bill,
    Thank you for your post.
    The event 4227 means that the application open up more ports but not closing them in timely fashion.
    Windows 2008 default dynamic port range specify start port 49152 end port 65535. So you monitor it try to make connection via 65535 port.
    To resolve this issue, please restart your application service or set
    TcpTimedWaitDelay to a lower value via registry 
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters  
    If there are more inquiries on this issue, please feel free to let us know.
    Regards,
    Rick Tan

  • Error using Server 2008 SDK

    I am getting the following error when attempting to generate and display a report via the java sdk:
    This field name is not known. Details: errorKind Error in File {24EF9C46-F999-4426-B5A2-5B9435BD5235}.rpt: Error in formula fProdDetDesc: '{pCovCanDetbyAcct;1.ProdDetDesc}' This field name is not known. Details: errorKind
    This error does not happen when I manually run the report on the Central Management Console or via Developer 2008.
    Is there something in the report that the SDK does not support? Any help would be greatly appreciated.
    Thanks
    -Paul

    Hey PaulMac,
    Sorry I can't help, except in the "Misery loves company" department.  There was one article in the SAP KnowledgeBase, but it was referring to DB2, which doesn't apply in my case.
    I have just seen the "errorKind" string in a message when trying to print/preview a CR 10 report running against a MAS 90 version 4.20 database.
    Here is my message:
    Error in formula <Record_Selection>. |'|'|The remaining text does not appear to be part of the formula. |Details: errorKind.

Maybe you are looking for

  • How to find the correct Parameter Id

    hi below is my code... i have the report in ALV grid display... wn i double click on the materail number i want to get the "Basic data 1" screen but my problm is wn i click on the material it is displaying the view selections tab i dont want it to be

  • Print Layout Designer / Open Items List Report

    When I open the Reports>Sales and Purchasing>Open Items List report - How can I associate a different Print Layout depending on which Document Type is then selected from the drop down list.. Eg. When I print a list of Open Purchase Orders I want to u

  • Convert Feet and Inch to cm (and vice versa)

    I need some help with conversion of height. The form was designed by the department and there is a field where one need to enter the height of the participant. The height can either be in cm or in Feet + Inches (not just inches). Once a value has bee

  • Data Validation in IP before saving

    Dear All,               I need to do data validation in IP layout, before data gets saved into cube. For example, i have percentage key figures to plan, which should sum up to 100. if it is not, on clicking on save button, user should get proper erro

  • Exporting photos to desktop

    This used to be a simple procedure with older versions I have used. It used to be that under the SHARE tab you could export and then specify size and place to export to. This is an important need of mine and I dont see a way to do it in 08. Can someo