Response from Login Page

i would like to know that after the user logs in to portal and the request is sent to the server with the credentials, where is it redirected to.
I would like to send some more information from the login page in the request so that i can access the same from the response object once the home page is loaded.
Can anyone give me some inputs on this

Hi,
Logon Screen Customization :-
http://help.sap.com/saphelp_nw70/helpdata/en/43/fc3ae22adb025fe10000000a1553f7/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/23/c0e240beb0702ae10000000a155106/frameset.htm
http://hi.baidu.com/bobylou/blog/item/f046f603021bb2e909fa9354.html
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/371e9d90-0201-0010-c39c-fd2956154ab3
Regards,
Manorama Singh
Rewards Points if helpful answer.

Similar Messages

  • How to redirect user from login page to "Set Challenge question" page

    How to redirect user from login page to "Set Challenge question" page (NOT custom page) after 3 un successful password attempts?
    Meaning when user types wrong password 3 times they will be redirected to set Challenge question page. If user answers the challenge question then password reset page should be appeared other wise (after remaining 3 un successeful challenge question answers) account should be locked out.
    thanks for your help.

    hi sandeep
    Thanks for your answer. Let me ellaborate more on the requirement here.
    - Password Policy and Lost Password management are set up in the identity system
    - Configure login tries allowed= 5. Verify accout is lock out after 5 unsucessful login.
    This is what need to achieve.
    1) If a user attempts to login 3(not 5) times using an incorrect login credential he/she should be redirected to set challenge question (security question) page.
    2) Then if the user attempts (remaining) 2 times incorrect challenge answer then his/her account should be locked out.
    3) If he/she answers the challenge answer correctly then he/she should be redirected to password reset page.
    Is this possible?

  • Remove the OBIEE version from login page

    My client asked me to remove the BIEE number from the login page. Its that possible? How do you go about it, your help is much appreciated. Thanks
    Chris.

    You can also change the css of the logon page, to hide the specific html.
    Re: How to change OBIEE version number in logon screen **** important *****
    Regards,
    Stijn

  • Remove "Create Account" from login page

    How do I remove the "Create an account" link from the login page? PT 5.0.3
    Thanks.

    This is from a previous message supplied by Developer Support. YMMV.
    "Log in as Administrator, go to Administration->Select Utility->Portal Server Settings->Allow creation of self-registered users "
    I was just in G6 and it's still there, so I'd imagine it's in 5.x as well :)

  • How to get requested (target) URL from login page jsp.

    Hi,
    How can I get requested (target) URL from within login jsp page where unauthenticated user was redirected.
    IN other words I need to get target URL that user requested before he was redirected to login page.
    In Weblogic there is "j_target_url" session attribute for this purpose.
    Does NetWeaver have analogue?
    Thanks in advance.

    hi Alex,
    NWDS provides Authentication through Pre defined properties,
    We can trap unauthorised user.
    To know more about this,
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4ecd6eb1-0301-0010-61bd-a3d6bee102c0
    thank you

  • Accessing a page from login page without login

    hi gurus,
    i have a link on my login page, for example-- about company. if i try to access it, it will always ask for login first and then go to that about company page. can i access this page without logging in?
    i saw some solutions like hidden region displayed on same login page, but what if i need to navigate to a different page?
    nadeem

    Hi Nadeem,
    As long as the page has no functionality on it - typical for things like "Terms and Conditions" etc, then you can just make that page public. Edit the page attributes and set Authorization Scheme to "-No Page Authorization Required-" and set Authentication to "Page is Public".
    That way, the page can be seen by anyone whether they are logged in or not.
    Andy

  • Getting error from login page

    Hey guys,
    Ok, I am completely new to databases and especially using
    coldfusion. I am simply trying to set up a admin side of my website
    through which the realtor can post blogs and such. I followed
    directions I thought perfectly and now it gives me an error:
    Error Occurred While Processing Request
    Error Diagnostic Information
    ODBC Error Code = IM002 (Data source not found and no default
    driver specified)
    [Microsoft][ODBC Driver Manager] Data source 'BLOG_DATA' not
    found and no default driver specified
    Hint: In order to use ODBC data sources with Cold Fusion you
    must create the data source using the Data Sources page of the Cold
    Fusion Administrator. In addition, if you are running under Windows
    NT you must make sure that the Data Source is created as a System
    DSN in order for it to be available to ColdFusion.
    The error occurred while processing an element with a general
    identifier of (CFQUERY), occupying document position (4:3) to
    (4:52).
    Date/Time: 02/15/07 23:43:29
    Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
    SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0;
    InfoPath.2; .NET CLR 2.0.50727; Alexa Toolbar; IEMB3)
    Remote Address: 209.169.92.120
    If anyone knows what any of this means and can tell me what
    is wrong then I would be forever greatful, thank you. Oh heres the
    url to the login page:
    http://conroeareahomes.com/admin/login.cfm
    Jeremy

    Hi there all,
    I am also new to learning cold fusion and have come across
    some issues during installation. I appreciate if some one can help.
    During installaion of cold fusion developer's edition on my
    laptop which has windows xp home edition o.s, a message is
    displayed showing
    'Failed to create DSN'
    After installion the administrator home page does not open
    due to an error.
    Can some one please advise on how to trouble shoot and
    correct this installaion problem. Your help will be appreciated.
    Tanveer

  • SOAP Response From ASP Page gives Exceptions-Why ?

    Hi Friends,
    I am trying to call an ASP Page by sending it a SOAP Request.
    The SOAP Request reaches the ASP Page but still i am getting lot of
    exceptions.This is my code from Request.java
    import javax.xml.soap.*;
    import java.util.*;
    import java.net.URL;
    public class Request {
    public static void main(String[] args) {
    try {
    SOAPConnectionFactory scFactory =
    SOAPConnectionFactory.newInstance();
    SOAPConnection con = scFactory.createConnection();
    MessageFactory factory =
    MessageFactory.newInstance();
    SOAPMessage message = factory.createMessage();
    SOAPPart soapPart = message.getSOAPPart();
    SOAPEnvelope envelope = soapPart.getEnvelope();
    SOAPHeader header = envelope.getHeader();
    SOAPBody body = envelope.getBody();
    header.detachNode();
    Name bodyName = envelope.createName(
    "TestDtls", "m",
    "urn:myserver/soap:TestThis");
    SOAPBodyElement gltp =
    body.addBodyElement(bodyName);
    Name name = envelope.createName("PhoneOrigin");
    SOAPElement symbol = gltp.addChildElement(name);
    symbol.addTextNode("0672324228");
    URL endpoint = new URL
    ("http://john/myservices/testsoap.asp");
         message.writeTo(System.out);
    SOAPMessage response = con.call(message, endpoint);
         response.writeTo(System.out);
    SOAPPart sp = response.getSOAPPart();
    SOAPEnvelope se = sp.getEnvelope();
    SOAPBody sb = se.getBody();
    Iterator it = sb.getChildElements(bodyName);
    SOAPBodyElement bodyElement =
    (SOAPBodyElement)it.next();
    String myvalue = bodyElement.getValue();
    System.out.print("The Value Retrived is ");
    System.out.println(myvalue);
         con.close();
    } catch (Exception ex) {
         System.out.println(ex);
    This is what i have in my ASP Page: testsoap.asp
    <%
    Set objReq = Server.CreateObject("Microsoft.XMLDOM")
    objReq.load(Request)
    strmycode = "SOAP-ENV:Envelope/SOAP-ENV:Body/m:TestDtls/PhoneOrigin"
    varPhoneOrigin=objReq.SelectSingleNode(strmycode).text
    status="ok"
    strReturn = "<SOAP-ENV:Envelope xmlns:SOAP=""urn:schemas-xmlsoap-org:soap.v1"">" & _
    "<SOAP-ENV:Header></SOAP-ENV:Header>" & _
         "<SOAP-ENV:Body>" & _
              "<m:TestDtlsResponse xmlns:m=""urn:myserver/soap:TestThis"">" & _
         "<PhoneStatus>" & Status & "</PhoneStatus>" & _
         "</m:TestDtlsResponse>" & _
         "</SOAP-ENV:Body>" & _
                        "</SOAP-ENV:Envelope>"
    Response.Write strReturn
    %>
    The Exceptions i get are as follows:
    =====================================
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><S
    OAP-ENV:Body><m:TestDtls xmlns:m="urn:myserver/soap:TestThis"><PhoneOrigin>"0672
    324228"</PhoneOrigin></m:TestDtls></SOAP-ENV:Body></SOAP-ENV:Envelope>Jul 11, 20
    03 6:37:35 PM com.sun.xml.messaging.saaj.soap.MessageImpl identifyContentType
    SEVERE: SAAJ0537: Invalid Content-Type. Could be an error message instead of a S
    OAP message
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:text/html. Is
    this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    Jul 11, 2003 6:37:35 PM com.sun.xml.messaging.saaj.soap.MessageImpl <init>
    SEVERE: SAAJ0535: Unable to internalize message
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Unable to internalize message
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:2
    02)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:te
    xt/html. Is this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    ... 7 more
    CAUSE:
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:text/html. Is
    this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    CAUSE:
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:text/html. Is
    this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptio
    nImpl: Unable to internalize message
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Unable to internalize m
    essage
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:2
    02)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    ... 3 more
    Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:te
    xt/html. Is this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    ... 7 more
    Actually,i need to see the response in XML format as per my program.
    But,What does all this stuff mean ? I have using latest jwsdp 1.2.
    Can Anyone Help me on this ?

    i have the same problem. when i make a test with a VB client, the SOAP message is builded this way "<SOAP.... instead of <SOAP-ENV.... tag generated by java. When a make a test in vb client using this syntax (SOAP-ENV), the asp page returns a error:
    <font face="Arial" size=2>
    <p>Microsoft VBScript runtime </font> <font face="Arial" size=2>error '800a01a8'</font>
    <p>
    <font face="Arial" size=2>Object required: 'objXMLDOM.selectSingleNode(...)'</font>
    <p>
    <font face="Arial" size=2>/rcruz/soap/vbSoap/simplesoap.asp</font><font face="Arial" size=2>, line 6</font>
    Anyone have a idea???
    Thanks

  • Beginner Question - transferring username from login page to next page

    Hi,
    Beginner level Question ; would appreciate kind reply,TA
    How can I implement the following scenario in abap?
    I've a login screen wherein user enters requisite credentials.Once authenticated the transfer goes to next screen called erp_training.On this I need to implement the welcome ******* functionality where ******* represents the entered username from the first screen.(Like what happens in most emails when we login in)
    Edited by: ItsmeAnkit on May 18, 2011 12:52 PM

    Hi Ankit,
    Ur query:
    Implement the welcome ******* functionality where ******* represents the entered username .
    The User who entered in the previous screen has his credentials like username stored in SAP SYST field sy-uname.
    Please refer to the following link.
    Display information message in SAP Initial Screen
    try to code the message or use WRITE TEXT in the Userexit.
    based on the following.
    data: g_msg type string.
    Change the sy-uname to character.
    concatenate "Welcome to the Screen of ERP Training" sy-uname to g_msg
    write g_msg.
    Please do revert if the above is not correct solution for your problem
    Thanks
    Sri

  • Diverting from Login Page

    Hi experts, I have a bit tricky requirement. it is that sometime when we close our server for maintainence or for some internal problem. than at that time when any user access the server than the user should get page which says Server is under maintainece please try after some time rather than getting an standard error/exception.
    Hope u all may have got what I am trying to say

    HI,
    THis is done using visual admin tool as suggested by vivek..
    Procedure:
    1.Create your HTML file that should be properly formatted HTML and look something like the following:
    <html>
    <title>The Portal is currently down for maintenance </title>
    <body>
               The Portal Server is Currently Down For Maintainance.           Please Contact your System Administrator - 6666 For More Details            </body></html>     
        2. Create a directory under
           /usr/sap/<SID>/<INSTANCE>/j2ee/cluster/dispatcher     
        3. Place your html file in that directory     
        4. Start the Visual Admiistrator under usr\sap\J2E\JC01\j2ee\admin     
        5. Open the Properties tab of the Web Container Service     
        6.Find the ApplicationStoppedFile property in WebContainer Service in the list of properties and enter the absolute path (on the serveru2019s local file system) to the HTML file as a value of it."
    7. Choose Update, to add the new value to the list of properties.     
        8. Save the properties.    
        9. Restart the service.    
        10. Stop and Start the j2ee engine,try and access the portal (or the J2EE index page - http://hostname:50100 normally) and you should get your custom message.

  • ADF 11g:Error When running login page: ADF security

    I am using Jdeveloper 11.1.1.2.0.Based on the following post
    http://blogs.oracle.com/fusionmiddlewarereallife/adf11gsecurity.html when I am running the application I am getting following error in web browser:-
    Error 403--Forbidden
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    +10.4.4 403 Forbidden+
    The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
    Steps to reproduce the error:-
    1) Unzip the lession6.zip file (http://blogs.oracle.com/fusionmiddlewarereallife/Lesson6.zip)
    2) Open application in your Jdeveloper and run the login.html page.
    3) In the login page,give user id as "James" and password as "welcome1"
    4) You will see above error.
    I have tested the above in Firefox 3.6.3 and IE7.*Please note that when you run the PublicPage.jspx, application works fine*. Its not working in the case when you are running the application using login.html
    I have checked the Adnrejus post on this error(http://andrejusb.blogspot.com/2009/12/solving-error-403-forbidden-in-adf.html), but weblogic.xml is generated with required entries.
    Can anyone help me in this please:-
    Thanks,
    Vikram

    Me too have tested the application by running the public page. Its working fine.
    But my hole point here is, why application is not moving to the PrivatePage.jspx from login page. Means why can't we directly run the login page and access the PrivatePage. Even when success_url is configured in web.xml
    <servlet>
    <servlet-name>adfAuthentication</servlet-name>
    <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
    <init-param>
    <param-name>success_url</param-name>
    <param-value>/faces/PrivatePage.jspx</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    Thanks again,
    Vikram

  • BT Sport Online Player - Blank Login Page

    Logged in, click BT Sports 1, 2 and ESPN but the page goes blank and the tab at the top flickers from "login page" to "connecting" and back again. But the main page remains completely white blank.
    I'm on a Mac if that makes any difference.
    Why no work?

    On a Mac, are you using Safari (with Silverlight plug-in) or Chrome browser? Chrome is not supported.
    See http://bt.custhelp.com/app/answers/detail/a_id/45893/c/348,6466

  • Calendar Page displays No Response from Application Web Server

    Hi there,
    I have OCS 9.0.4 on a linux ES 2.1 box (single box install). The installation went fine without any errors. When I click the Oracle Calendar Administrator link on the OCS welcome page and sign on using SSO, I get "No Response from Application Web Server.
    There was no response from the application web server for the page you requested.
    Please notify the site's webmaster and try your request again later. " Any ideas what is wrong ? The calendar server started without any errors (and I restarted HTTP on the midtier). Also, when I access the calendar page thru "http://midtier:7778/ocas-bin/ocas.fcgi?sub=web", only orclguest can login successfully. Every other user gets "Calendar Server connection error. Contact your Administrator" .
    I appreciate every help.

    Hi!
    Try the following:
    a) go to the midtier:port/um/admin/UMAdminLogin.uix and log in as UMADMIN with the password you specified during the installation
    b) create a mail user (one that already has an account in the OIDDAS)
    c) give that mail user the domain admin right
    d) logout
    e) login to the collab suite main page (midtier:port/pls/portal) with this user
    f) you should see the collaboration suite portlets
    g) go to messages
    h) click on the administration tab
    i) go to calendar admin
    j) create a calendar account for this user
    Hope this helps
    cu
    Andreas

  • "How to forward from a struts form to a login page?"or "how to connect form

    Can Any boby please let me know
    "How to forward from a struts form to a login page?"or "how to connect form to login session id"?
    Thanks
    Shailajakrishna

    I believe I can not use a
    request.sendRedirectURL("....") in which I would
    encode all my parameters, because:Righto. This is a bit tricky.
    Basically, you have two options, and both of those are a little nasty.
    1) You could use and intermediate JSP page. Just dispatch you request to that page, use the attributes to construct a form with hidden fields, and use Javascript to POST that form to your intended URL on the document's BODY onload event. Would work, but wouldn't be pretty and requires you to use JSPs and Javascript. Still an idea.
    2) This is something that I wouldn't recommend. Open a socket to the URL you you want to post your data. Manually construct a HTTP POST request, encoding your parameters into the headers. Read and parse the response & modify your HttpServletResponse object accordingly.
    Take a look at i.e. http://javaalmanac.com/egs/java.net/PostSocket.html?l=new for some pointers.
    I'd go with item #1.
    For my own edification, I'd be also interested in
    knowing why such a function does not exist in the
    current httpServletRequest api.I suppose it's a little out of scope. Servlets were ment to interoperate inside one container, not across domains and different implementations.
    I'm guessing I must be missing something fundamentals
    maybe?No, you're not.
    .P.

  • I am unable to login from my login page after I restarted my mini mac running snow leopard 10.6 server. I am a new user. Need help

    I am unable to login from my login page after I restarted my mini mac running snow leopard 10.6 server. I am a new user. Need help

    Try clearing your cache, [https://support.mozilla.org/en-US/kb/How to clear the cache Instructions here]. Then, try going to [https://accounts.google.com Google Accounts]. If there is currently an account singed in, sign out, then back in. After that, try going to Google Adwords.

Maybe you are looking for

  • How do I set up my iphone to sync with my outlook account?

    How do I set up my iphone to sync with my outlook account?

  • Refresh UWL from ABAP

    Hi All, I have a ABAP webdynpro which is launch from a work item. The work item is an action step. In the webdynpro there would be a button, after the user had click on the button i would call the FM 'SAP_WAPI_EXECUTE_WORKITEM'. But the workitem is s

  • Running total in footer

    I have a table with several In, Out and Bal columns. I would like a footer row that shows the current balance for each Bal column. So it needs to reference the most recent row. Any ideas how to do this?

  • Titling iPhotos outside of iPhoto - ipad, etc.

    I have a client who has an enormous iPhoto library, and wishes to title every single photo. She has been asking me for a way to be able to title them without sitting in front of her iMac in her office. She'd love to be able to sit on the couch with h

  • Adobe Presenter 7.0.2 update Error

    When I tried to apply patch (7.0.2) it brought an error " Patch cannot be applied. Please contact product support." Why do I get this? Did anybody else faced this problem? Is there any solution for this?