Events in Salesforce available to be placed on Expense Reports in iExpense

Hi to All,
In attempting to resolve an issue with expenses for an user in R12 iExpense. End user creates events in Salesforce application as events and states that these events created as expense get available in iExpense to be created on an expense report.
Does anyone have this as a current business process or can someone point me to training material on this.
Thanks

Identified the process on how expenses get entered in salesforce and interfaced into iExpense.

Similar Messages

  • All-Day-Events Not affecting Availability

    Hi All,
    We have iCal server setup on 10.5.4 and I've come across a bug in the iCal client (3.05).
    If someone has created an event and checked it as All-Day, that event will not affect that users availability if someone else tries to add them as an attendee.
    I have checked the option on for each calendar (Get Info) that "Events Affect Availability". Other events do affect availability, just not events flagged as "All Day".
    Any ideas? Or is it still a bug in 10.5.5 (also happened in 10.5.4)?
    Thanks in advance!

    In the iCalendar data format used to represent the event information, there is a TRANSP property that can indicate whether a specific event contributes to freebusy or not. By default iCal makes timed events appear as busy, and all-day events appear as free (transparent). There is no way in iCal itself to change that. The only workaround when using iCal is to create a timed event that blocks out 24 hours.

  • Travel Mgmt:Click on Create Expense Report -PAGE NOT FOUND or NOT AVAILABLE

    I am trying to configure Travel management in the portal.
    When I log into the portal as the user and click on:
    (1) Travel and Expenses -> Create Expense Report, the corresponding iview is displayed
    (2) But when I create a travel request. And then go to My Trips and Expenses and for the just created Travel Request, Click on the same link "Create Expense Report", I get PAGE NOT FOUND or NOT AVAILABLE error.

    Hello, there.
    I have a similar problem.
    Could u plz tell me how to resolve this problem?

  • Recurrent event is not available in icalendar 2013?

    I'm trie to add a recurrent event but i don't find the repeat option and get a recurrent event. i don't want to copy paste the event every week.

    This webpart has not yet been rolled out to all tenants. The roll out is not yet fully completed.
    You can use the trick from
    here to check if you have gotten the roll out:
    Log in to your SharePoint Online
    Navigate to https://YOUR ADDRESS/_vti_pvt/service.cnf
    If vti_extenderversion:SR|16.0.0.2120 you should have Content by Search webpart
    Also check 
    http://community.office365.com/en-us/f/154/t/225073.aspx
    http://community.office365.com/en-us/f/154/t/150941.aspx
    The CQWP is part of the Publishing feature which is only available in the Enterprise plans and not in the Small Business plan.
    If you are an Enterprise user, you first need to activate the "SharePoint Server Publishing Infrastructure" Site Collection feature, afterwards you can activate the "SharePoint Server Publishing" Site feature.
    As this issue is develop-related, I have included some links for you that may be helpful, including the features available to developers in Office 365. (Microsoft does provide custom solution and development support, however there may be a consulting fee associated.)
    You may also want to post your question to the
    MSDN forums for a better response for custom solutions.
    Here are the links for your reference:
    http://msdn.microsoft.com/en-us/library/ie/gg454740.aspx
    http://blogs.msdn.com/b/sharepointdesigner/archive/2008/06/20/data-source-issues-and-workarounds.aspx
    http://msdn.microsoft.com/en-us/library/hh147180.aspx
    http://blogs.msdn.com/b/johnwpowell/archive/2010/03/01/a-lap-around-sharepoint-2010-sandboxed-solutions-resource-quotas.aspx
    If this helped you resolve your issue, please mark it Answered

  • Any exit or event that is available for FM IDOC_START_INBOUND

    Hi,
    Getting a requirement that need to send an email after batch of IDOC have been processed. Try to search all the user exit and sdn and can not get any information.
    And I can see that the FM IDOC_START_INBOUND will process idoc in batch, however there is no user exit for this. Appreciate someone can share some light on this.
    Thank you,

    Well, there is always the implicit enhancement point at the very end of the fuction module if that's what you're looking for... but I don't think that's the best way to handle a requirement like this.
    How is the processing of the IDocs performed? Via a background job? It would then be better to include sending the email as the last step of the job... or something like that.

  • Placing barcode on report

    Question 1
    ===========
    I have a simple records as follow:
    Customer Amount Account_no
    John Walsh 1500 123456
    Mary Joe 700 985000
    Lisa Black 2510 456000
    Kim Blackson 980 254100
    I would like in the report to ruen the account no column
    into barcode number. I am using (report builder 3) developer/2000
    Question 2
    ===========
    I choose the form letter style report.
    I placed the columns on the form. However, how do I format
    a number column to have comma? For example, I want
    1200 to be formated like 1,200
    thanks for your assistance

    To print barcode you have to install a barcode font on your machine.
    Create a query like:
    select customer, amount,account_no
    from customers;
    You should then create a field for account_no and define the barcode font as the font for this field.
    See the help on barcode in Developer 2000.
    To format a number, use the "format mask" property of the field. E.g. NNN,NN0.NN

  • Drag event handling in JFXPanel has performance implications with expensive event handlers

    We have a drag event handler that is a little expensive, takes something like 20ms. The respective code must be run in a synchronous manner however.
    That is no problem in a pure JavaFX environment, as less drag events are created when CPU load is high.
    However, when embedded into Swing using JFXPanel this adaptation doesn't kick in, lots of drag events are created and the application becomes sluggish.
    Is there a way to mimic what JavaFX does in the JFXPanel scenario?
    The code below is a self-contained example that demonstrates what I'm describing.
    Some results I had:
    -eventHandlerSleep=5 -noswing --> 128 drag events
    -eventHandlerSleep=30 -noswing --> 46 drag events
    -eventHandlerSleep=5  --> 136 drag events
    -eventHandlerSleep=30  --> 135 drag events
    {code}import java.util.Arrays;
    import javax.swing.*;
    import com.sun.glass.ui.Robot;
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.embed.swing.JFXPanel;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.BorderPane;
    import javafx.stage.Stage;
    public class DragHandlingTester {
        private static long EVENT_HANDLER_SLEEP = 30;
        public static void main(String[] args) {
            for (String arg : args) {
                if (arg.startsWith("-eventHandlerSleep=")) {
                    EVENT_HANDLER_SLEEP = Long.parseLong(arg.split("=")[1]);
            if (Arrays.asList(args).contains("-noswing")) {
                Application.launch(JavaFXDragHandlingTestApp.class, args);
            } else {
                new SwingDragHandlingTestApp();
        static class SwingDragHandlingTestApp {
            SwingDragHandlingTestApp() {
                JFrame frame = new JFrame();
                final JFXPanel fxMainPanel = new JFXPanel();
                Platform.runLater(new Runnable() {
                    @Override
                    public void run() {
                        DragTestScene dragTestScene = new DragTestScene();
                        fxMainPanel.setScene(dragTestScene.createScene());
                frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
                frame.getContentPane().add(fxMainPanel);
                frame.setSize(800, 600);
                frame.setVisible(true);
        public static class JavaFXDragHandlingTestApp extends Application {
            @Override
            public void start(Stage primaryStage) {
                primaryStage.setWidth(800);
                primaryStage.setHeight(600);
                primaryStage.setX(0.0);
                primaryStage.setY(0.0);
                DragTestScene dragTestScene = new DragTestScene();
                primaryStage.setScene(dragTestScene.createScene());
                primaryStage.show();
        static class DragTestScene {
            private int drags = 0;
            public Scene createScene() {
                new Thread(new Runnable() {
                    @Override
                    public void run() {
                        try {
                            // after 1 second drag mouse across window
                            Thread.sleep(1000);
                            Robot robot = com.sun.glass.ui.Application.GetApplication().createRobot();
                            robot.mouseMove(50, 50);
                            robot.mousePress(1);
                            for (int i = 20; i < 700; i = i + 5) {
                                robot.mouseMove(i, 50);
                                Thread.sleep(10);
                            robot.mouseRelease(1);
                        } catch (Exception e) {
                            e.printStackTrace();
                }).start();
                BorderPane borderPane = new BorderPane();
                borderPane.setOnMouseDragged(new EventHandler() {
                    @Override
                    public void handle(MouseEvent mouseEvent) {
                        drags++;
                        try {
                            Thread.sleep(EVENT_HANDLER_SLEEP);
                        } catch (InterruptedException ignored) {
                        System.out.println("Number of drag events: " + drags);
                return new Scene(borderPane);
    {code}

    Ok, I expected something like this to be the reason. We'll probably have to live with it.
    My workaround right now is to use background tasks with an executor that has a single element queue handling the events in order, but rejecting any additional events as long as there is a queued event.
    Still not the same performance as in JavaFX, but at least it's usable now.

  • Available from Date in IW38 List report

    Hi All,
    There is one field,  'Available to Date' (RIHAUFK_LIST- ANLBD) in IW38-Change Order List report.
    I wanted to know the use of this field. This is balnk for all PM orders in my system. I checked all the fields in IW33 Order screen but could not find this field. This field is also available in Order- header (AFIH) Table.
    Please let me know the use of this field or how is it calculated in report? Where can we see this field in IW33 screen?
    Thanks,
    Sandy.

    FYI...I contacted SAP regarding this problem and they created Note 1537921 to solve my issue.  If your fiscal year is not the same as the calendar year, this could be of interest to you.  Thought I would share the solution.

  • Family Locator - When available on the Droid 3?  Reportedly it is available on older Droid phones

    Does anyone know when the Verizon Family Locator service will be available on the Droid 3?
    The locatee application is reportedly available on the Droid 2, but not yet with the Droid 3.
    Thanks!

    This may be because of hardware and OS diffrences, I would guess that they are working on a update that should work for you...  Have you contacted CS and see if they had a update for this?

  • No expense types available in PR05, too many expense types in trx TRIP

    Dear Experts,
    I have done all the customizing in our system (concerning the travel expenses) and now I want to create a travel expense document.
    After creating the employee in the HR mini master I can start the creation of the Expense doc. in transaction PR05 (Travel Expense Manager).
    When I want to enter the Expense type in the form, no expense types are available.
    Do I need an additional activation or something like that to make the expense types available?
    Next problem that I have with the Expense types is when I want to create a Travel expense document with transaction TRIP (Travel Manager). I can start the creation of the document but when I want to select an expense type I see a large list of expense types with many doubled types and a lot of expense types we never created. The ones we created are missing.
    Does any of you have an idea how I could solve this??
    Thanks a lot.
    Jurriaan

    Hello - I am having a similar problem. All of our existing expense types are working fine. We just created a new one (16 variations going to different GL accounts) and they are not showing up in any of the perspective schemas.
    I do NOT have this checked:
    SPRO > Financial Accounting (New) > Travel Management > Integration of Travel Planning and Travel Expenses > Activate Integration: Travel Planning - Travel Expenses.
    Because we are not using Travel Planning, only Travel Expenses. So for my trip provision variant 10 for US, it is NOT checked.
    I DO, however have this
    SPRO > Financial Accounting (New) > Travel Management > Travel Expenses > Dialog and Travel Expenses Control > Dialog Control > Restrict Travel Expense Types for Trip Schemas setup correctly. The items are listed in 8 of our 10 schemas appropriately.
    But when trying to create TRIP, the expense types are not available.
    I can share my config steps with you if you need them. We are thinking we are missing a step as this is our first one to create after go-live in January.

  • Placing an exception reporting in a crosstable based on a key figure not "visible" in the crosstable

    Hello Community,
    I've come across the above question. As far as I've experienced, this is not possible. not with an exception reporting created in Query Designer, not in Analysis Office "Conditional Formatting".
    Who can asure my experience or (even better) share different experiences?
    Regards,
    Sarah

    I have no experience with this but...take a look at this SAP Note http://service.sap.com/sap/support/notes/852194 and could you try this option in the BEx query to see if it works:
    Hide (Can be Shown)

  • API to create expense reports

    Are there any apis available in R12 to create expense report in iExpense?
    We are receiving a flat file with employee expenses and we need to import these expenses into oracle and create expense reports, send it for approval, finally create invoices in payables.
    Flow:
    Expenses flat file --> Expense Report creation in iExpense --> Approval --> Audit --> Payables InvoiceThanks in advance!
    Edited by: user641008 on Mar 12, 2013 10:29 AM

    Hi,
    have a look at documentation of tables
    AP_EXPENSE_REPORT_HEADERS
    AP_EXPENSE_REPORT_LINES
    You can populate those tables with information coming from your flat files, maybe you
    must populate some mandatory columns which are not included in your file information.
    Regards

  • Bapi to change travel expense report

    Hi,
       I am working on an program to create a travel expense report using the 'BAPI_TRIP_CREATE_FROM_DATA' FM and it is working fine.However,i am unable to change the trip created using this FM.When i use the SAP transaction TRIP,i am able to change the travel expense report created.I am passing the status approved as '3' and account as '1' in the BAPI.Is there any bapi's available to change the travel expense report created?I would appreciate any assistance.
    Regards,
    Rajiv C

    Dear there is no standard Bapi to change the same, However there is one to delete the same( <b>BAPI_TRIP_DELETE</b>) and then you can create the same.
    Why you not trying to write a new BApi to change the Trip ( as standard is not available).
    See other reply there is step by step process to write a custom bapi.
    Just start you will find it intersting.
    rewardif useful.
    Amit Singla

  • Travel expenses types

    I would like to know if SAP expense types can be set up so that certain expenses will be available when creating expense report? For example if you have an approved travel request then breakfast, lunch, dinner expense types are available to choose when creating expense report. If you don't have an approved travel request then the list of expense types available for reimbursement will not have breakfast, lunch, dinner.
    Thanks

    Hello Catherine,
    Restricting an Expense Type is already available in the               
    Enhancement Package 2 for ERP2005.                                                                               
    Furthermore, please kindly see the documentation available in         
    service.sap.com/tm.                                                                               
    If you like you have the alternative to create an User Exit on which  
    will check the Expense Type if it is valid for this User or not before
    saving the trip data.                                                                               
    Enhancement name: FITR0003: User Exit: Save Trip (PR01, PR04, Pr05,   
    TRIP) - before assigning trip number.                                                                               
    Enhancement Name: FITR0005: User Exit: Save Trip  (PR01, PR04, PR05,  
    TRIP) - after assigning trip number.                                  
    Regards,
    Raynard

  • Travel expense types

    I would like to know if SAP expense types can be set up so that certain expenses will be available when creating expense report?  For example if you have an approved travel request then breakfast, lunch, dinner expense types are available to choose when creating expense report.  If you don't have an approved travel request then the list of expense types available for reimbursement will not have breakfast, lund, dinner.
    Thanks

    Hi Mr. Phan,
    You can create the expence types in table  V_T706B1 and use in reporting.
    Regards,
    Kapil Kaushal

Maybe you are looking for

  • No alert when I receive a text message

    Ok, well I downloaded OS6 on my Bold 9650 a couple days ago.  The first day all my alerts worked fine, then just suddenly I have no alert for text messages. No sound nor viberate. I have tried going to every setting that I can find and haven't seen a

  • The app could not be added to your itunes library because an error occurred. There is not enough memory available.

    Hi guys, When i drag and drop an application(development app built) to my iTunes> Library > App. Then i got a error "The app 'XYZ' could not be added to your itunes library because an error occurred. There is not enough memory available." Please see

  • ENHANCEMENT:  Sort thread by Date

    As suggested by Host Kady, we are now extracting Bugs and Enhancements from our consolidation threads, and re-posting them individually. Reported by Da Gopha: There is no longer any way to sort a long thread by date. It used to be possible (in Tree v

  • Catalyst Blade Switches 3020 For HP Blade Chassis

    I was trying to access Catalyst Blade Switch 3020 through serial port to reset the lost password. This Switch is plug-in to HP c7000 Chassis. I followed the instruction from Cisco documentation for this password re-set process as follows. { Step 1 Co

  • Mapping Mapwthdefault at tiem level -Values Missing in Queue context

    Here is the logic If (E1EDP19-IDTNR_EXTR is not empty and (E1EDP19-QULF)=001 map IDT_EXTR to target Buyerpart else     if E1EDP19-IDTNR is empty and E1EDP19-QULF=002   if E1EDP01-MENEE IS NOT EQAUL TO AU   map const (SEE_DESCRIPTION) to target All co