Travel Expense with fixed value

Hi SAP Gurus!
Anyone can suggest me how to create a Travel Expense with a fixed value?
F.e. I want to create a Travel Expense called "Lunch Reimbursement" that is always 5.20€.
Thank you very much, bye!
Stefano

Stupid question, find it!
Thank you.
Stefano

Similar Messages

  • How to read the 'Input help with fixed values' of domain .

    How to read the 'Input help with fixed values' of domain .
    The domain has a Value range i want to read those values .
    Are these values stored in any table ?
    Plz help me i need it ver badly...
    Thanks in Advance...

    Hi Chandra Shekhar,
    To read the 'Input help with fixed values' of domain , you can use the function module : HR_P_GET_FIXED_VALUE_TEXT.
    iIf you enter the domain name, you will find the fixed values entered in the domain.
    These values are stored in a table DD07L(DD zero 7 L). Here the values are stored based on domain name.
    See if it works for you.
    Award points if its helpful.
    Regards,
    Bhanu

  • Offline Travel & Expense with ECC 6.0

    Until we implement permanent solution for Travel & Expense, we currently have Offline Travel & Expense (PRWW) that we would like to use with ECC 6.0. We are in the process of upgrading to ECC 6.0 in about 2 weeks. We have got Offline Travel & Expense working but the only issue is running RFCcomm as a service in windows. We are getting errors running RFCcomm as an service.
    Does anybody have any suggestions for running RFCcomm on windows server ?

    Until we implement permanent solution for Travel & Expense, we currently have Offline Travel & Expense (PRWW) that we would like to use with ECC 6.0. We are in the process of upgrading to ECC 6.0 in about 2 weeks. We have got Offline Travel & Expense working but the only issue is running RFCcomm as a service in windows. We are getting errors running RFCcomm as an service.
    Does anybody have any suggestions for running RFCcomm on windows server ?

  • Aggregate with fixed value for 0SOLD_TO__0REGION wonu00B4t work

    Hi,
    We want to have a aggregate for a specific region. I have problem getting the aggregate to work. When testing it for aggregates in tc rsrt, it states that it will not use the aggregate because of Characteristic/Attribute 0SOLD_TO__0REGION does not have aggregation level */%.
    This in spite of the fact that 0SOLD_TO__0REGION is filtred to only include the same region and country in the aggregate and in the query.
    Maybe the message with the * in the end of it means that the aggregate needs to have all regions (value * in aggregate instead of F), but if that is the case, why?
    BR,
    Niclas
    Edited by: Niclas Erlandsson on Jul 22, 2009 10:30 PM

    Hi
    1.Create separate aggragates for each Attribute, using fixed values and create a multiprovider over this cube and take the report.
    Multiprovider perform parallel search on aggregates hence you query retrival time will be quick.
    2.Create Hierarchy variable and hierarchy node variable in the properties of IO
    in this case also you won't see entirer hierarchy. if you won't provide data for other nodes... it won't display.
    set authorization on hierarchy node also helps
    Hope this helps
    Regards
    CSM Reddy

  • Find characteristic with fixed value at planning levels

    Hi Experts,
    I need to know which are the planning levels that contains a characteristics with a specific fixed value (ex: 0UVERSION = “220” )
    Does anybody know how can I do it?
    Thanks in advance

    Hi,
    Please create a query (tcode SQVI) on tables UPC_PLEVEL and UPC_OPTIOS. The join will be on field GUID. Select all the fields as available for display and selection. UPC_OPTIOS has the selection values maintained for the level. Please put in
    UPC_OPTIOS-FIELDNAME  = 0UVERSION
    UPC_OPTIOS-SIGN            = I
    UPC_OPTIOS-LOW = 220
    this will give you all the levels that have the said value
    hope this was helpful
    thanks

  • XMLTABLE with fix value

    Hello
    I insert XMLData into a table. This works without problems. But now I want to insert one value as a fix value. This is not in the xmlfile but I need this information, that I know from which database is this xmlfile. I'd try with 'DATABASE-NAME', but it doesn't work.
    Can someone helps me?
    Thanks.
    roger
    INSERT INTO event_xml (name,
    dtsysl,
    hrsysl,
    dtcptl,
    nusesi,
    dsp_step,
    dsp_state,
    bat_class,
    bat_program,
    bat_seqi,
    bat_state,
    database)
    SELECT *
    FROM XMLTABLE (
    'Operations/Event'
    PASSING xmltype (BFILENAME ('EVENT_DIR', '$fname_neu'),
    NLS_CHARSET_ID ('CHAR_CS'))
    COLUMNS name VARCHAR (40) PATH 'name',
    dtsysl DATE PATH 'dtsysl',
    hrsysl NUMBER PATH 'hrsysl',
    dtcptl DATE PATH 'dtcptl',
    nusesi NUMBER PATH 'nusesi',
    dsp_step VARCHAR (40) PATH 'DSP/step',
    dsp_state VARCHAR (40) PATH 'DSP/state',
    bat_class VARCHAR (40) PATH 'BAT/class',
    bat_program VARCHAR (40) PATH 'BAT/program',
    bat_seqi NUMBER PATH 'BAT/seqi',
    bat_state VARCHAR (40) PATH 'BAT/state',
    'DATABASE-NAME');

    This is not in the xmlfile but I need this information, that I know from which database is this xmlfileYou mean sth like this:
    insert into event_xml (name,
                           dtsysl,
                           hrsysl,
                           dtcptl,
                           nusesi,
                           dsp_step,
                           dsp_state,
                           bat_class,
                           bat_program,
                           bat_seqi,
                           bat_state,
                           database
           select t.*, 'DATABASE-NAME'
             from xmltable (
                    'Operations/Event'
                    passing xmltype (bfilename ('EVENT_DIR', '$fname_neu'), nls_charset_id ('CHAR_CS'))
                    columns name varchar (40) path 'name',
                            dtsysl date path 'dtsysl',
                            hrsysl number path 'hrsysl',
                            dtcptl date path 'dtcptl',
                            nusesi number path 'nusesi',
                            dsp_step varchar (40) path 'DSP/step',
                            dsp_state varchar (40) path 'DSP/state',
                            bat_class varchar (40) path 'BAT/class',
                            bat_program varchar (40) path 'BAT/program',
                            bat_seqi number path 'BAT/seqi',
                            bat_state varchar (40) path 'BAT/state') t;?

  • SELECT with fixed value

    Hi,
    I want to use SELECT....INTO TABLE statement but using a fixed value in one column, is that possible???
    I'm trying to do something like this:
    SELECT matnr "sy-datum" quantity FROM ztable INTO TABLE it_table.
    The it_table has got 3 columns: matnr, date and quantity but in the ztable there isn't a date and I want to insert into the table with a variable or something...
    Thanks

    Hi,
    you can do like this.
    Suppose your internal table structure is like that,
    data:begin of itab occurs 0,
           matnr type mara-matnr,
          datum type sy-datum,
          quant  type  menge,
          end of itab.
    SELECT matnr  quant FROM ztable INTO corresponding fields of  TABLE it_table.
    loop at itab .
    itab-datum = sy-datum.
    modify itab index sy-tabix.
    endloop.
    If you do like this then your column of itab-datum will have sy-datum .
    I hope this will help you.
    Help children of U.N World Food Program by rewarding them and encourage others to answer your queries

  • Fiori Approve travel expense with POWL?

    Hello - and a special hello and thanks to Masayuki Sekihara which helps us daily with our Fiori questions.
    One customer wants to implement the approve travel expense application and told us he uses an POWL for that - is that possible?
    Many thanks for your help!

    Hello Masa,
    our customer uses "POWL" to approve the travel expenses. I think they use the approve FITV_POWL_APPROVER for that.
    My questions was, if the Fiori Travel expense approval app can use this?

  • Aggregates with Fixed values

    HI
    We have a requirement to create an aggregate on one of our infocubes. Dical period is going to be included as part of this aggregate. I would like to know if it is possible to set this aggregate to be populated for a fixed range of periods eg: 008/2009 - 012/2009.
    I know that we can set this to one fixed date like 008/2009 but is a range of period possible? If so how can I do that.
    Thanks.

    Hi,
    To the best of my knowledge, it is not possible to give a range as a Fixed Value for Aggregate.
    However, I recommend to go for other possible options like partioning, compression, Indexing, OLAP Cache, DB Statistics etc to improve the performance of the query.
    Regards,
    Sekhar.

  • Posting of Travel Expense with Payment via HR Payroll

    Hi
    Assuming expense type code 1111 is assigned to Wage type 1111. At travel mgmt, user declared input tax P3 is applicable for the expense type and enter amount 100. Thus the input tax amount is $3.
    Can I check how the proces RPCIPE00 will pick up the the expense type with input tax P3 ?
    Is it reflected as a separate wT?
    We are using ECC6.0
    Thanks!

    if it thru Pay roll check the sub Schema CREI  for most of the countries we are haveing the Sub Schema to evaluate the results for the Travel Management module but for india we dont have
    Check CREI sub schema thru Pe01
    we need to insert a suc shcema with HR Pay roll Schema
    This info might be help ful to u but not the final solution for ur query

  • How to use array list with fixed values to insert record in trigger

    I have a list  of number 1,30,40,45,60 . These numbers are not being changed so I  don't need to keep in a table. So have to create a  after insert trigger   for 
    As
    Begin
    @list =  1,30,40,45,60 // Array value 
    for i=1 to @list.count
    Insert into mappingtable(arrayvalue,itemcode) values (list[i],Inserted.Itemcode)
    Next
    End
    Please can you help with a code 
    Regards
    Pol
    polachan

    Be careful what you assume - rarely are lists of values like this truly static.  One thing to keep in mind that arrays in sql server are tables.  So, one example is:
    set nocount on;
    /* represents the virtual inserted table in your trigger */
    declare @inserted table (itemcode char(4));
    insert @inserted (itemcode) values ('ABCD'), ('JJKL');
    select * from @inserted;
    select * from @inserted cross join (values (1), (30), (40), (45), (60)) as arrayx(value);

  • Variables with fixed value

    Is there in Java an operator that allow to a variable only a fixed set of values. For example the variable char color have only these value: "red","yellow",.. "etc".

    [Enums.|http://java.sun.com/docs/books/tutorial/java/javaOO/enum.html]

  • SelectChoice with fixed values.

    Good morning!
    I'm using af:selectChoice.
    I want to show a list of values to the user, and saves another values.
    For example.
    With sex select Choice:
    I want to show MAN/WOMAN and saves M/W.
    Thanks in advance,

    You can do something like this:
    <af:selectOneChoice
          value="#{bindings.YourAttributeName.inputValue}"
          binding="#{backing_YourPage.selectGender}"
          id="selectGender">
         <af:selectItem label="Man" value="M"
                 binding="#{backing_YourPage.selMan}"      
                 id="selMan"/>
         <af:selectItem label="Woman" value="W"
                 binding="#{backing_YourPage.selWoman}"
                id="selWoman"/>
    </af:selectOneChoice>

  • Can I compare bind variable with fixed value in where cause

    I found the problem buffer hit ratio < 70%. From monitoring, this below query is full table scan(8.5G)
    I think full table scan is a problem from scanning 720MB buffer cache.
    SELECT CT.LENS_ID,
    TO_NUMBER (TO_CHAR (CT.EXPIRED_DATE, 'YYYYMMDD')) AS EXP_DATE,
    CT.WAREHOUSE_ID,
    COUNT (*) AS QTY
    FROM TB_STK_BARCODE_CTRL CT
    WHERE CT.EXPIRED_DATE IS NOT NULL
    AND (:B7 = -1 OR CT.WAREHOUSE_ID = :B7)
    AND (:B1 = -1 OR CT.LENS_ID = :B1)
    AND CT.L_STATUS_ID = 'I'
    GROUP BY CT.LENS_ID, TO_CHAR (CT.EXPIRED_DATE, 'YYYYMMDD'), CT.WAREHOUSE_ID;
    I try to remove ":B7 = -1" from the query, and performance is OK. Index(WAREHOUSE_ID, LENS_ID, VERTICAL_TEXT, HORIZONTAL_TEXT) is used.
    SELECT CT.LENS_ID,
    TO_NUMBER (TO_CHAR (CT.EXPIRED_DATE, 'YYYYMMDD')) AS EXP_DATE,
    CT.WAREHOUSE_ID,
    COUNT (*) AS QTY
    FROM TB_STK_BARCODE_CTRL CT
    WHERE CT.EXPIRED_DATE IS NOT NULL
    AND CT.WAREHOUSE_ID = :B7
    AND CT.LENS_ID = :B1
    AND CT.L_STATUS_ID = 'I'
    GROUP BY CT.LENS_ID, TO_CHAR (CT.EXPIRED_DATE, 'YYYYMMDD'), CT.WAREHOUSE_ID;
    any suggest please
    Edited by: M.Suradech on Apr 8, 2012 8:11 PM

    M.Suradech wrote:
    AND (:B7 = -1 OR CT.WAREHOUSE_ID = :B7)
    AND (:B1 = -1 OR CT.LENS_ID = :B1)Looks like you are attempting to make some "generic" type of query.
    I'd recommend implementing something like this instead of what you currently have.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1669972300346534908

  • Fixed Value Date at line item level is not in changable mode when copied

    Dear SDN Team,
    Hi i have a problem in the Fixed Value date at the line item level in the Return sales order.
    The Problem is When creating the return order with reference to the scheduling agreement (10.03.2010).  In the Return sales Order at the line item level the fixed value date is coping from scheduling agreement item (fixed value date eg: 31.12.2009)
    But i would like to have the fixed value date in the return order as 10.03.2010  but the field is greyed out.
    But normally when the sales document is created with reference to the preceding document the same will be copied.  But field is greyed out and it is not in changable mode.
    Can any one help how to solve this.
    I have checked also SAP Note where i did not find any messages.
    In normal scenario - when the order is created without any reference the fixed value date is in changable mode until the document is in open.
    Pleas help me to resolve this.
    With Regards,
    Jai

    Hi Lakshmipathi,
    I am sharing the resolution which was done to this requirement.
    We have a specific condition type with statisticaly used and with routine to have KWERT with zero value,
    Based on the different key combination. We have a specific key combination for the SA and SDoc and for this we need to maintain a condition record for the condition type with fixed value date and which will be linked to only the specific document.  Once this is done.
    We need to do update pricing in the sales order for the particular line item. by doing this the Fixed value date will be changed in the particular line item.
    Thanks and Regards,
    Jana

Maybe you are looking for

  • What are the major components in class?

    1)     What is the purpose of ‘load-of-program’? When it will be trigger? 2)     Write the code for displaying the three parameters in single line with the first parameter as mandatory in the selection screen? 3)     Which event triggered whenever th

  • Runtime Error R6034

    My Itunes wont open and i get a message which reads as follows: Runtime Error! R6034 An Application has made an attempt to load the C Runtime Library incorrectly. Please can someone assist to resolve this problem.

  • 8800 Silver - Broken display, want to enable bluet...

    I want to enable bluetooth on my 8800 but the display is broken. Can't see anything so navigation is a bit of a pain!! Can anyone help me with this? Which buttons I need te press (and how many times) to get to the right menu options. So far tried sev

  • Why is my External Hard Drive not showing in Aperture 3.6 Import?

    Why is my External Hard Drive not showing in Aperture 3.6 Import? Only my computer hard drive is and I want to import from an external drive.  I have always been able to until I updated to Aperture 3.6 and Yosemite.

  • Class Creation

    I'm trying to create a class that represents all 52 playing card (Suit and Value), and I'm having difficulties. I'll then create a function in my Document class that compares two card objects as parameters and traces out which one would win in a figh