Travel Issue

Hi Travel Experts,
I am recieving an issue while creating trips in T-code PR05 for the currency BYR, when i enter is, system is generating error, "Conversion from BYR to GBP is not possible ", i understand system conversion rates are not maintained , but in the tables all conversion are maintained.
I dont know where exactly it was struck. Can any one help me here? 
But exchange rates are maintained,
V_Tcurr,
V_Tcurf
V_Tcurv
Thanks
Sriram

Hi Sriram,
This is the same question that you asked couple of weeks ago which was answered in detail by Sven Ringling and myself in the thread below. Please refer to the link below and specifically my last response about 'Dir.quot.' field and 'Indir.quot field. Basically the values in TCURR are not maintained correctly.
http://scn.sap.com/thread/3422455
Please try and change the entry for BYR to GBP in TCURR to the following (use your own dates):
If this doesn't work then please post a screenshot of table V_TCURN.
Thanks
Ankur

Similar Messages

  • ICal, Blackberry sync, travelling and timezones

    Hi all, I'm hoping someone can help me resolve a travel issue I ran into a few weeks ago. I have a Mac laptop and I use iCal, all set to EST. My BB Pearl is also set to EST and I use PocketMac to sync them - or rather to dump the Mac data onto the BB as two way syncing is a bit rough. A few weeks ago I went to San Francisco on business. I was surprised that the time on my BB didn't update to reflect the new timezone as usually happened with my old celphone. I did have the BB set to get its time off the network so I assumed that was all I needed to do. Perhaps I need to manually select the timezone once I arrive?
    That's the first part of my question. The second is that when I arrived in SF I had my computer timezone change to local time but I didn't change iCal as a 9am meeting is at 9am in the timezone I'm in, no matter which one it is. When I did a sync with my BB all my existing appointments shifted by 3 hours and events that were set to be all day became multi day events (one day + 3 hours). The only way to easily fix this seemed to be to not set my computer to local time so that it was still in EST and I just had to remember to subtract 3 hours from any time display on the computer or the BB (as it was still stuck in EST as well). I also had to do a complete overwrite/sync of the BB to correct all of the calendar entries that were now 3 hours off.
    Can any Mac/BB road warriors out there set me straight on what I need to do to keep this clean and keep my timezones accurate when travelling? The last thing I want to do is have to leave everything in EST but I don't want to start messing around with the settings and cause more problems. I do have Time Zone Support turned on in iCal so maybe that's part of the problem. It's not a feature that I really make use of so I'm ok to turn it off if that's part of the solution.

    BlackBerry Desk Top v2.0 (build 65) will sync with iCal and Address Book, but not with MM.
    Download it at the RIM site:
    http://us.blackberry.com/apps-software/desktop/desktop_mac.jsp
    Sync your iCal and Address Book with MM. Attach the Black Berry to your Mac - Desk Top will launch. Add the device (your Curve) in the Menu. Hit the sync button. All done.
    While it is not an automatic sync, it has worked well for me for the last 4 years. I sync at lunch time each day.

  • Unable to compil class for jsp

    error is
    HTTP Status 500 -
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP:
    An error occurred at line: 6 in the generated java file
    Syntax error on token ".", Identifier expected after this token
    An error occurred at line: 7 in the generated java file
    Syntax error on token ".", Identifier expected after this token
    An error occurred at line: 9 in the jsp file: /travel/issue.jsp
    LibraryStudent cannot be resolved to a type
    6: <BODY>
    7: <H1>issue books</H1>
    8: <CENTER>
    9: <jsp:useBean id="student"
    10: type="LibraryStudent"
    11: scope="session" />
    12: student name:
    An error occurred at line: 9 in the jsp file: /travel/issue.jsp
    LibraryStudent cannot be resolved to a type
    6: <BODY>
    7: <H1>issue books</H1>
    8: <CENTER>
    9: <jsp:useBean id="student"
    10: type="LibraryStudent"
    11: scope="session" />
    12: student name:
    An error occurred at line: 13 in the jsp file: /travel/issue.jsp
    LibraryStudent cannot be resolved to a type
    10: type="LibraryStudent"
    11: scope="session" />
    12: student name:
    13: <jsp:getProperty name="student" property="studentName" />
    14:
    15: book name:
    16: <jsp:getProperty name="student" property="bookName" />
    An error occurred at line: 16 in the jsp file: /travel/issue.jsp
    LibraryStudent cannot be resolved to a type
    13: <jsp:getProperty name="student" property="studentName" />
    14:
    15: book name:
    16: <jsp:getProperty name="student" property="bookName" />
    17:
    18: <jsp:getProperty name="student"
    19: property="issueData" />
    An error occurred at line: 18 in the jsp file: /travel/issue.jsp
    LibraryStudent cannot be resolved to a type
    15: book name:
    16: <jsp:getProperty name="student" property="bookName" />
    17:
    18: <jsp:getProperty name="student"
    19: property="issueData" />
    20: </FORM>
    21: </CENTER>LibraryStudent.java is   
    import java.util.*;
    import java.text.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    public class LibraryStudent {
    private String emailAddress, s,password, sname,bname;
    private String date,value;
    public String getStudentName() {
    return(sname);
    public void setStudentName(String sname) {
    this.sname = sname;
    public String getEmailAddress() {
    return(emailAddress);
    public void setEmailAddress(String emailAddress) {
    this.emailAddress = emailAddress;
    public String getPassword() {
    return(password);
    public void setPassword(String password) {
    this.password = password;
    public String getBookName() {
    return(bname);
    public void setBookName(String bname) {
    this.bname = bname;
    public String getDate() {
    return(date);
    public void setDate(String date) {
    this.date = date;
    public String getIssueData() //method that create connection withh database
    throws ServletException,IOException{
    try{
    getDate();                   //and add a entry in database
    getBookName();
    getStudentName();
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con=DriverManager.getConnection("jdbc:odbc:db2");
    Statement st=con.createStatement();
    String sql =
        "insert into table1 (bookname,studentname,date) values(bname,sname,date)";
      st.executeUpdate(sql);
    System.out.println(sql);
    String s=  "your book has been issued ";
    return(s);
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    public String getSumbitData()
    throws ServletException,IOException{
    try
    getBookName();
    getStudentName();
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con=DriverManager.getConnection("jdbc:odbc:db2");
    Statement st=con.createStatement();
    String sql =
        "delete from db2 where bookname='bname' and studentname=sname";
      st.executeUpdate(sql);
    System.out.println(sql);
    String s="your book has been sumbitted ";
    return(s) ;
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    public static int findStudent    //to validate customer
    (String emailAddress,
    String password) throws ServletException,IOException{
    try
    if (emailAddress == null) {
    return(0);
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con=DriverManager.getConnection("jdbc:odbc:user");
    Statement st=con.createStatement();
    String sql="select * from user where name='"+emailAddress+"' and password='"+password+"'";
    System.out.println(sql);
    ResultSet rs=st.executeQuery(sql);
    if(rs.next())
    return(1);
    else
    return(0);
    }catch(Exception e)
    e.printStackTrace();
    return (0);}
      to be continued.............

    and Library.java is import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Library extends HttpServlet {
    public void doPost(HttpServletRequest request,
    HttpServletResponse response)
    throws ServletException, IOException {
    String emailAddress = request.getParameter("emailAddress");//use to email&pass
    String password = request.getParameter("password");//from html page
    LibraryStudent student = new LibraryStudent();//Make a student Object
    int a=LibraryStudent.findStudent(emailAddress, password);//to validate student
    if (a==0) {
    gotoPage("/library/accounts.jsp", request, response);
    else
    student.setStudentName(request.getParameter("sname"));//use to sent other textbox
    student.setBookName(request.getParameter("bname"));//data in librarystudent
    student.setDate(request.getParameter("date"));//class after validation
    HttpSession session = request.getSession(true);
    session.putValue("student", student);
    //for moving different page
    if (request.getParameter("issue") != null) {
    gotoPage("/travel/issue.jsp",
    request, response);
    } else if (request.getParameter("sumbit") != null) {
    gotoPage("/travel/sumbit.jsp",
    request, response);
    } else if (request.getParameter("search") != null) {
    gotoPage("/travel/search.jsp",
    request, response);
    } else if (request.getParameter("account") != null) {
    gotoPage("/travel/EditAccounts.jsp",
    request, response);
    } else {
    gotoPage("/travel/IllegalRequest.jsp",
    request, response);
    private void gotoPage(String address,
    HttpServletRequest request,
    HttpServletResponse response)
    throws ServletException, IOException {
    RequestDispatcher dispatcher =
    getServletContext().getRequestDispatcher(address);
    dispatcher.forward(request, response);
    }    issue.jsp is
       <%@page import="java.io.,java.util.,java.sql.*"%>
    <HTML>
    <HEAD>
    <TITLE>issue books</TITLE>
    </HEAD>
    <BODY>
    <H1>issue books</H1>
    <CENTER>
    <jsp:useBean id="student"
    type="LibraryStudent"
    scope="session" />
    student name:
    <jsp:getProperty name="student" property="studentName" />
    book name:
    <jsp:getProperty name="student" property="bookName" />
    <jsp:getProperty name="student"
    property="issueData" />
    </FORM>
    </CENTER>
    </BODY>
    </HTML> plz solve my problem .i m new to servlet and jsp and i have keen desire to learn this topic

  • I've been a member since November 2007?

    My Apple profile says I've been registered since November 30, 2007. While it's interesting to see that Apple has finally tackled that pesky time travel issue, is it possible to have this corrected?
    Thanks!
    Bill

    While it's interesting to see that Apple has finally tackled that pesky time travel issue, is it possible to have this corrected?
    interesting. there was a small rash of this in the early days of the changeover to the latest Discussions software back in November 2005. if i'm recalling correctly, all of our time travellers appearing in that period came from 2007.
    what date did you join, Bill? (thinking that if this can be changed, but the information is no longer in the system, the info might help a host with getting the date back to normal.)

  • Imageready 3.0 Export DISABLED???

    What happened to my Imageready 3.0?
    I used to be able to open animated gifs, then export the animation frames as files, but now the "export" option is greyed-out!
    I KNOW this USED to work.  Did some background "update" disable this feature?  If so, I'm going to be very angry!

    Thomas,
    Thanks for your response. I'll have to check and see what the settings were (probably won't know for a couple of days due to the travel issue). But my guess is that the default settings were used so perhaps the "Best Quality" was not used. So that is worth looking into. Though maybe not as your post suggests that based upon the description maybe the best setting was used (though as noted, it did not take as long as expected to burn the DVD, including compression time). I will report back when I know more.

  • The client does not work

    Why do you have to open the latest Skype client and continuously logs only then exit after 1-2 seconds. The Windows event log the following:
    Event ID: Description:
    100 started Skype update
    103 Skype update service is shutting down due to idle timeout.
    101 Service stopped
    I can not use Skype because it has all new clients tried and does not work for months. I once started a few hours after it is confused and began the long walk on the forward end of 2019, has been in the Imprint.
    Op. System Win XP
    Current Client: 6.22

    Reverting to the older Skype 6.14.0.104 version should solve the "time-travelling" issue.
    http://community.skype.com/t5/Windows-desktop-clie​​nt/connetion-problems/m-p/3658855#M303470
    After installing the 6.14.0.104 version from the provided link make sure to disable automatic updates:
    Tools -> Options -> Advanced -> Automatic updates ->Turn off automatic updates
    However, you should also try the "fix" provided in this Microsoft support article:
    https://support2.microsoft.com/kb/895980

  • Skype disconnecting and then reconnecting?

    Okay, so my skype disconnects reconnects every 2 seconds and it keeps going forward in time, have tried so many solutions to try and fix this, I have even reset my whole computer, I am completely clueless on what to do now.
    Solved!
    Go to Solution.

    Reverting to the older Skype 6.14.0.104 version should solve the "time-travelling" issue.
    http://community.skype.com/t5/Windows-desktop-clie​​​nt/connetion-problems/m-p/3658855#M303470
    After installing the 6.14.0.104 version from the provided link make sure to disable automatic updates:
    Tools -> Options -> Advanced -> Automatic updates ->Turn off automatic updates
    However, you should also try the "fix" provided in this Microsoft support article:
    https://support2.microsoft.com/kb/895980

  • Driver issue? with docked T61, and 31P9490- IBM USB Travel Keyboard w/ UltraNav and sleep mode

    Can someone from Lenovo please advise me on which version drivers need to be installed for the external keyboard and mouse, and/or the proper power setting(s) to use with this configuration so the machine will react and wake up from its nap with a Fn+F4 on the external keyboard?
    T61  7658-CTO,  3GB RAM,  Vista Business Ultimate.  These are the external IBM/Lenovo devices used:
    250410U     THINKPAD ADVANCED MINI DOCK
    31P9490    IBM USB TRAVEL KEYBOARD W/ULTRANAV
    31P8700     SCROLLPOINT PRO OPTICAL MOUSE 
    I have an issue with waking my T61 up from sleep mode while it’s docked and using the external keyboard, mouse, and monitor.  When the machine is docked, the blue Fn keys or the Think Vantage button do not function on the external keyboard.
    The external keyboard seems to be the same as the internal keyboard installed in the TP- which I thought would react the same as the internal keyboard when I installed the driver that it came with.  I had hoped something this simple would be easier than it now seems. 
    Thanks in advance! 
    Cheers, Mark  
    Message Edited by masnider on 12-16-2008 03:33 PM
    Message Edited by masnider on 12-16-2008 03:42 PM
    Message Edited by masnider on 12-16-2008 03:42 PM

    Thanks for the advice Izzy.  After installing both sets of keyboard and hotkey drivers it does respond to most (but not all) blue Fn key combinations as marked on the external keyboard.  The blue ThinkVantage button still does not respond. 
    Oddly enough, I am able to use the Fn+F4 key combination to put it into sleep mode and to bring it back out, but when the display comes back I have no control of the UltraNav pad, track pointer, or mouse.  I had to open the TP cover slightly and use the pad to get past the login screen to the desktop.
    Incidently, just after using the UltraNav pad on the machine as it was slightly open a couple of messages popped up onscreen involving the USB port(s).  One indicated it was searching for a new device driver for a USB connected device, and the other indicated I could benefit from connecting the device to a high- speed USB port by unpluging the low-speed hub and connecting directly to an available high-speed USB port.
    Interestingly, I don't have any external hub connected. It may have identified the docking station USB ports as low-speed, which I don't believe they are...any ideas for what to do with this new set of issues? 
    Thanks, Mark

  • SUP Travel Expense Approval login issue

    Hi Guys,
    We have configured Sybase Unwired Platform 2.1 and SAP NetWeaver Gateway 2.0 to use SAP Travel Expense Report application on iOS platform. SAP have upgraded their application to version 1.2.10. Now we have not changed any configuration as we were using lower version earlier and it was working fine. Now after re-registering the Application Connections in SCC , the login is not working for some of the user. Rest of the user are using the app as they were using it earlier.
    Some of the users are getting "Error occurred during user activation" error in their mobile devices (Screen Shot attached). My doubt is as there not so much help from SCC logs and there is no error logs in Gateway server, how can I get the root cause of the issue? Please tolerate little knowledge in SUP as I am new to this technology . You can revert if you need more information from me, I shall happy to provide those as per my  knowledge.
    Thanks,
    Sukalyan

    Hello Karthik,
    We are also about to implement Travel and Expense and want to know how to set it up on the portal...what is the R/3 configuration required....and what R/3 transaction/BAPI does these Travel and Expense ESS services call...?
    Any help would be highly appreciated.

  • Issuing Ticket By an Employee in Travel Planning

    Hi All,
    We are Implementing Travel Module using EhP2 and have a requirement of allowing employee to Issue Tickets on thier own and also print E Ticket. I searched SAP help and found that in SAP we can configure the automatic Issuing of Tickets using queues and also that an employee can print the ticket using 'viewmytrip' site.
    I wish to know what configuration needs to be done for automatic Issuing of tickets and how can we get print the E ticket from SAP system
    Please let me know ASAP as this process will be a real show stopper for our project..
    Regards
    Stuck....

    Hello Stuck,
    Sorry for the delay. Please refer to the following information in help.sap.com:
    http://help.sap.com/erp2005_ehp_02/helpdata/en/e2/4905387ce5fd3ce1000000
    9b38f8cf/frameset.htm
    Issuing a Ticket  
    Prerequisites
    The ticket can only be issued once the travel plan has been booked (see
    Booking Travel Services).
    Use
    Automatic Ticket Issue
    Generally a booking made using SAP Travel Management will automatically
    be sent to a processing queue of the travel agency connected with the
    company, whereby the travel agency can see that the booking has been
    completed and the ticket is then issued. When completing this automatic
    queuing the booking is sent to the queue of the sales office that is set
    up with the processing type "Booking/Booking Modification in Customizing
    (see Customizing for Travel Planning under Master Data -> Control
    Parameters for Travel Planning -> Define Resubmission for Ticket Issue
    (queue) You should use a queue for an operating sales office, and not
    the queues for the virtual SAP Travel Planning sales office.
    Regards,
    Raynard

  • Currency issues while booking travel expenses

    Hi Experts,
    I have configured Travel Management for India, while processing Travel expenses facing the following issues from user.
    1.Meals & Meals-Paid is showing over limit separately instead of consolidate for per day. The same error is pop up against all the expense head e.g. Hotel, Taxi etc..
    For Example: If there are two expenses on meals (Cash & Paid) on a single day and the expenses limit is $50.00 then system is calculation both the expenses as separate expenses. Suppose I am capturing $60.00 for Cash & $80.00 for Paid then it should give me a over limit of $90.00 however it is giving the over limit of $10.00 on cash & $30.00 on paid expenses.
    2. System is not calculating over limit in USD if we are entering  corporate card or cash transaction in INR.
    In this case if we are pulling the credit card transaction (Meals of Rs. 60) where the expenses limit is $50.00 system is given the warning message that the meals is over limt by 10 INR.
    Please advise me to solve this issues.
    Thanking you,
    Kanna

    Hi Ravi Shankar,
    We could solve that ALE Error and now i can post to FI. But now when i create new expense report and settle the same it is taking next posting period automatically and when i post in PRRW it is giving following error.
    Check posting run 0000000042
    E RW609 Error in document: TRAVL 0000000045 AEDCLNT220
    E F5201 Posting period 002 2009 is not open
    Posting run 0000000042 has errors
    I am not able to find the reason for this error. Please let me know how this can be solved.
    Thanks and Regards,
    Shilpashree

  • HT5928 I0S 7 draft folder in email exhcange is gone...anyone else have an issue with this "upgrade".  Draft folder is essential for my work as I create on my laptop and need the draft available on my iPad when I travel...UGH!

    I0S 7 draft folder in email exchange is gone...anyone else have an issue with thie "upgrade"?  Draft folder is essential for my work as I create in draft folder on laptop/desktop and need that information available on the iPad when I travel.

    I0S 7 draft folder in email exchange is gone...anyone else have an issue with thie "upgrade"?  Draft folder is essential for my work as I create in draft folder on laptop/desktop and need that information available on the iPad when I travel.

  • Travel Dock Zen Micro volumn issue

    I just got the Travel Dock and I put my Zen Micro in but it isn't very loud.
    I have the volumn on the docking station all the way up and the volumn on the Micro all the way up, but it isn't very loud. Any suggestions?

    I also have the same issue. I can hear the background music and backup vocals, but the main vocals are really, really quiet - like the singer has locked themselves in the bathroom and the rest of the band are in the room with me!? Plus, the volume will not go up very high. Does anyone have any ideas about this?

  • Blackberry Travel License Agreement Issue

    I have just moved to Warsaw and have a new Blackberry Bold with T-Mobile Poland and cannot now use the Blackberry Travel App.
    The error is :-
    "Could not get updated license agreement (Network Coverage is not available, Please try again later"
    Is this an issue linked to Polish Carriers not yet set-up for this service or is there an issue with the set up of my Blackberry? Help appreciated!

    Hi croissant045,
    Welcome to the BlackBerry Support Community.
    Do you have a data plan from your carrier that includes BlackBerry Internet Service? I would recommend first verifying with them that your plan has the correct services to use the BlackBerry Travel application as not having these services can cause this error.
    If you have the correct services, I suggest checking to see if an IT Policy may be preventing the use of Internet Browsing services. This blog post shows how to check for an IT Policy. http://helpblog.blackberry.com/2011/11/blackberry-it-policy/
    If an IT Policy is present and you are using a BlackBerry Enterprise Server, I suggest contacting your server administrator for assistance with modifying this.
    If you have an IT Policy but are not using a BlackBerry Enterprise Server, this KB article should help you remove the IT Policy by doing a reset to factory. "How to reset a BlackBerry smartphone to factory settings using BlackBerry Desktop Software" http://blackberry.com/btsc/KB31291 Please make sure to backup your data before performing these steps as the reset to factory will remove all data.
    Let me know if you need any further assistance with this.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • Issue when travelling Europe and connecting to public WiFi networks

    I often have an issue when travelling in Europe and go to an Internet café with my iPhone.
    I enter all the info and in wifi settings the network is ticked to say connected. The wifi icon is also visible in menu bar but whenever I try to connect I get a message that page is not available or to check settings.
    Can't see anything wrong and settings are as they normal are when connecting to wifi at home in UK.
    I also get this when connecting to free public wifi even when it requires no password
    Any ideas why this may be? Travelling this weekend and am sure this will be an issue whilst away so would like to get to bottom of it. 
    Message was edited by: RDH

    Thanks for the suggestion but that is not practical once I arrive to Spain.
    Will not be taking a Mac to restore from if there is an issue.
    Restore network settings is worth looking at but full restore of iPhone is out of the question. Just wondered if this is a known issue with a simple fix.
    All seems a bit like using a sledgehammer to crack a nut ;-)

Maybe you are looking for

  • Problem while calling servlet from java bean

    I am trying to call a servlet from java bean in cep. My java bean: package com.bea.wlevs.example.algotrading; import com.bea.wlevs.ede.api.StreamSink; import com.bea.wlevs.example.algotrading.event.MarketEvent; import javax.xml.bind.JAXBContext; impo

  • How do I print a week of calendar events as a list

    How do I print a week of calendar events as a list?

  • Trading Partner Summary Report not getting genrated in PDF

    Hi all We are running EBS r12 on solaris 5.10 machine. Problem is there is a report called "Trading Partner Summary Report" it is getting completed successfully but when i try to c the output it says File does not begin with '%PDF-', Please help Rega

  • Question for Experts in WEB

    Dear Sir, I have a website which is an information portal and I would like to start sending newsletter every month to almost 5000 emails Companies like www.dmxzone.com send emails to thousands on people every month, so I would like to know the best w

  • Search option stopped working - spotlight as well

    I use the search option of Mail on a daily basis to find old emails or topics. I have also used Spotlight to search old emails. Recently my Mail program stopped searching old emails and only finds recent emails with keywords that I know used to find