Extra field along with Destination in Travel expense

Hi all,
We are getting a text box under travel expense (Destination). And we need to hide or remove it.
Please see the attachment.
Please tell how to delete/hide the small box.
Regards,
Namsheed.

I tried to hide all fields in Travel Management->Employee Self-Services->Interface Configuration for Web Dynpro Interface in Travel Management->Schema and Single Field Control for Web Dynpro.
Still I am unable to hide it.
Pls find the details about this small box : -
Regards,
Namsheed

Similar Messages

  • Additional destination in travel expense

    is it possible if we can add additional destination in travel expense report?
    while there was no such information in travel request?
    i can't find "additional destination" button in travel expense report.
    anyone can help?
    thx

    Hi !
    M correcting my answer......
    In the TRIP Schema Thier is a separate flag option for 'Additioanl Designation'.
    Path :IMG>Financial Accounting (New)>Travel Management>Travel Expenses>Dialog and Travel Expenses Control>Define Schema and Individual Field Control> Select TRIP Schema -Domestic Travel >F8 >
    In the same screen under the head of Activate Entry Screen
    1. check box Enter Address for Destination
    2. check box for Additioanl Destinations.
    3. TRIP Segment
    4. Advances
    5. User Data
    2nd Check box is for Additional Destination
    Regards
    Sheetal

  • Insertion of a field along with dropdown box in a view of IC Webclient crm4

    I have  got a error when doing a customization in ic webclient
    My  intention is to add a field along with a drop down box associated with it
    i am doing it in crm 4.0
    i created a customize bsp application and added profile to the custom icwebclient
    framework.
    i had made all changes in z_crm_ic  and z_crm_ic_rt_rep
    and z_crm_ic_dt_rep.
    but after running the program , i am getting the error as follows
    <b>View IRecReason.htm Cannot Be Displayed
    An Exception OccurredException Class CX_SY_REF_IS_INITIAL
    Text: Dereferencing of the NULL reference.
    Program: CL_CRM_IC_LABEL===============CP
    Include: CL_CRM_IC_LABEL===============CM002
    Source Text Row: 31</b>
    Please any one suggest the solution approach.
    If my solution is wrong ,give the details from scratch.
    Much awaited solution.
    Bye,
    satish.

    Hi SATs,
                I think the problem is with the newly added field. So u just remove the field and check whether the view is displaying or not. If not diplaying u just check customization entries once again u should replace all the occurence of IRecReason with z_crm_ic/IRecReason. If its the problem with newly added field plz check the "for" field in the label is it correctly given .
    Thanks & Regards,
    Sujith

  • F4 help for field along with description

    Hi,
    I have given fixed values and thier description for a domian. I am getting F4 help because of them. But in F4 help i am getting description of the fixed value instead of fixed value.
    One more thing is, I want to display both value and description in F4 help, when I select any entry from  the pop up table i sholud get only value but I am getting description here again. This i have done using a value table.
    How can I get F4 help with both value and description and after selection only value should get selected.
    Thank you,
    Regards,
    Kusuma K.

    HI,
    Try using this FM - F4IF_INT_TABLE_VALUE_REQUEST.
    You can use the below code for reference.
    REPORT  Z_F4_VAL_DESCRIPTION.
    DATA: is_Planning_plant TYPE t399i OCCURS 0.
    DATA: is_return TYPE ddshretval OCCURS 0,
         w_return LIKE LINE OF is_return.
    PARAMETER : p_mpla TYPE iloa-swerk.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_mpla.
    IF is_Planning_plant[] IS INITIAL.
    SELECT * FROM t399i INTO TABLE is_Planning_plant.
    ENDIF.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield = 'IWERK'
    dynpprog = sy-repid
    dynpnr = sy-dynnr
    dynprofield = 'P_MPLA'
    value_org = 'S'
    TABLES
    value_tab = is_Planning_plant
    return_tab = is_return.
    IF sy-subrc EQ 0.
    READ TABLE is_return INTO w_return INDEX 1.
    IF sy-subrc EQ 0.
    p_mpla = w_return-fieldval.
    ENDIF.
    ENDIF.
    Regards,
    Snehal

  • Put some additional field in pdf form for travel expenses report

    Heloo,
    I would like to get additional field (P0001-PLANS) organisational data in form ZPTRV_EXPENSE_FORM (copy of standard PTRV_EXPENSE_FORM).
    How to do that?
    BR
    Saso

    Hello,
    I am aasume you´re Adobe forms beginner, so I am sorry if I am going to tell you something what you already know.
    1) you have to find the interface of the form
    2) into the interface you have to add your field (probably you will have to copy the interface into a customer one)
    3) if you copy the interface, you have to change the interface name in the form properties
    4) you have to refresh the interface information in the form (sfp transaction, left part, refresh) and you should be now able to see your new field
    5) use drag and drop left to right (from interface to form context) to copy the new field into your form context (so the form is aware there is a new field)
    6) open LCD designer (if you don t have one, you have to download and install one, use 8.1)
    7) in the form layout, left side find "data view" tab from where you can drag a new field and drop it onto your form layout
    8) you must populate the new field, you can use initialization in the form interface or find the right spot in the printing program to populate the value before you send the data to the form
    9) save, activate, enjoy
    regards, Otto

  • Restricting extra drives along with the apps on other accounts

    I've got one other non-admin account on my system which has various user restriction. However, I have several other hard drives besides my home drive. How can I restrict access to my other drives and just allow that user to use the home drive?
    thanks

    If you want to have a drive not appear in an application's open or save dialog box, you have to set the permissions of that drive to No Access for that user.
    If you want to restrict access to internal drives to read-only, you'll have to change the drive's permissions to read-only. This will ONLY work on internal drives.
    With external drives, you have two options, either full read/write access or no access. If you try to set an external drive to read-only, an unprivileged user can override it and make it full read+write by checking the Ignore Ownership box in the drive's Get Info panel.
    But what you are asking, namely have the boot drive not accessible in an application's open or save dialog box, is not possible. The boot drive is where the user's home folder is stored and where their documents are saved. If you try and lock them out from editing or viewing this, then their account will not function.
    If you have documents you don't want the user to be able to open, just keep them in the Documents folder of another user. Users cannot see the contents of others' Documents folders.

  • ManyToOne relationship with extra field in the joinTable

    Hi,
    I wanted to make a ManyToMany unidirectional relationship using these two entities.
    Invoice (id)
    Product (id, price)
    The problem is that I want in the resulting joinTable another field named QUANTITY
    I don’t think there is a way to obtain a join table with an extra field from a ManyToMany relationship, am I right ?
    Si I decided to add an InvoiceLine table
    With Invoice and InvoiceLine tables having a OneToMany unidirectional relationship.
    And InvoiceLine and Product tables having a ManyToOne unidirectional relationship.
    This is the code I made
    import java.util.Set;
    import java.util.HashSet;
    import javax.persistence.*;
    @Entity
    public class Invoice implements java.io.Serializable {
         private long id;
         private Set<InvoiceLine> InvoiceLines = new HashSet<InvoiceLine>();
         @Id
         @GeneratedValue
         public long getId() {
              return id;
         public void setId(long id) {
              this.id = id;
         @OneToMany(cascade={CascadeType.ALL})
         @JoinColumn(name="INVOICE_ID")
         public Set<InvoiceLine> getInvoiceLines() {
              return InvoiceLines;
         public void setInvoiceLines(Set<InvoiceLine> InvoiceLines) {
              this.InvoiceLines = InvoiceLines;
    import javax.persistence.*;
    @Entity
    public class InvoiceLine implements java.io.Serializable {
         private long id;
         private Product product;
         private int quantity;
         @Id
         @GeneratedValue
         public long getId() {
              return id;
         public void setId(long id) {
              this.id = id;
         @ManyToOne
         public Product getProduct() {
              return product;
         public void setProduct(Product product) {
              this.product = product;
         public int getQuantity() {
              return quantity;
         public void setQuantity(int quantity) {
              this.quantity = quantity;
    import javax.persistence.*;
    @Entity
    public class Product implements java.io.Serializable {
         private long id;
         private double price;
         public Product() {
         public Product(double price) {
              this.price = price;
         @Id
         @GeneratedValue
         public long getId() {
              return id;
         public void setId(long id) {
              this.id = id;
         public double getPrice() {
              return price;
         public void setPrice(double price) {
              this.price = price;
    }The problem is that I want the InvoiceLine table to have a composite primary key (from the two foreign keys in the table invoice_id and product_id).
    Can anyone tell me how I can do this.
    Thanks.
    Edited by: Exhortae on Jun 23, 2009 4:59 PM
    Edited by: Exhortae on Jun 23, 2009 5:01 PM

    Hello,
    If we create a Z report for this program, can anyone please tell me where can I find the function "REUSE_ALV_GRID_DISPLAY" in the given program so that I can add my fields along with the default filelds displayed...
    Thanks
    ~Him

  • To capture the selected rows along with edited field contents in alv report

    Dear All,
             I do have requirement where, in alv report output one field is editable and need to save the content of the edited field along with the selected rows.
             For example If there are 10 records displayed in the alv output with 20 fields.
    Out of this 20 fields one field (say XYZ) is editable. Also i have already created a new pushbutton (say ABC) on alv output. Now in the alv output if we maintain some value in the field (XYZ ) for the 2nd and 4th record and select this two records, and when clicked on the pushbutton (ABC) it has to update the DB table.
          I am using the Func Module  'REUSE_ALV_GRID_DISPLAY'. 
          Your early reply with sample code would be appreciated.
    Thanks in Advance.

    HI Naveen ,
    There is an import parameter "i_callback_program" in the function module,
    plz pass the program name to it.
    Capture the command by passing a field of type sy-ucomm to "I_CALLBACK_USER_COMMAND ".  Check the returned command and
    and program a functionality as desired.
    u can try the event double_click or at line selection. there u can use READLINE command to c if the line has been selected.
    In case it is , process the code segment.
    Regards
    Pankaj

  • Adding customized fields for Travel Expenses

    Hi,
    I would like to add some customized fields for user input during the creation of travel expense form.  Is this possible?  If yes, any advise on the steps to create customized fields for data entry of travel expense form?
    Thanks.

    Hi Yvonne ,
    Thank you for the tip , it was helpfull.
    We are using field BUS_REASON "Business Partners", We changed label for data element but is not showed in TRIP transaction we can see it in PR05 transaction.
    How can I change labels for TRIP transacction?
    We did the change in CMOD transaction
    Thanks.

  • How to add an extra field in the alv display(Scope of List:ALV) for me55.

    Hello..
    I've to display 2 fields- (wbs element description) and (network description) along with the standard ALV display, for the Account Assignment type 'Q'  and 'N' of all purchase requisitions being displayed.
    I was suggested to modify the standard program RM06BF00.
    Can you please let me know where and how should I modify the program RM06BF00. Is there any userexit or badi to add my fields??
    Thanks in advance.
    With Regards,
    Him

    Hello,
    If we create a Z report for this program, can anyone please tell me where can I find the function "REUSE_ALV_GRID_DISPLAY" in the given program so that I can add my fields along with the default filelds displayed...
    Thanks
    ~Him

  • VAT entry field in Travel Expense Manager

    Dear Experts,
    Besides a field for the VAT code in the Travel Manager entry screen, I also would like to have a field where I can enter the VAT amount. This is a requirement for The Netherlands because the VAT amount on the invoice should always be reported to the authorities. And this amount can differ from the VAT amount calculated by the system.
    In customizing I have not been able to find a setting to make that field available.
    Does anybody have a suggestion for me how to make this VAT amount field available in the Travel expense entry forms?
    Thanks.
    Regards,
    Jurriaan

    I suspect you get this error message during posting?
    There is new behaviour with note 1421746 and the intention for 1BS entry in T030 is this: If the cross company
    clearing accounts are vendors or customers and the posting line also contains a vendor (e.g. employee vendor), the cross-company clearing accounts cannot be directely posted to (debit cross company vendor, credit employee vendor). Therefore the posting to the cross company clearing accounts must happen via an additional clearing account. And this is searched per default for the activity HRT and the symbolic account BS (entry 1BS in T030).
    Now you can implement the note 1421746. Doing this, this above described split will only occur, if a posting line indeed contains
    a jurisdiction code. If not, the split will not occur and subsequently the 1BS account will not be searched for.
    this is a new behaviour which is intended. If the involved company codes are located in different countries and the Jurisdiction Codes are active in 1 of these countries, the document is split into 1 document per company code connected with the cross company clearing accounts. This was done directly in FI before, now the sending application sends 2 documents.
    Exactely this behavour you already have if the 2 company codes are in different logical systems or you choose a document summarization on the selection screen of '1 document per company code' or '1 document per CO object'.
    This split functionality is just re-used for a new case which is the above described country difference with Jurisdiction codes.
    So basically check your entries in T030 for 1BS and the clearing G/L account!!

  • Expensive Queries along with Program_name its belong

    We need to find expensive queries along with "Program_name" it's belong.
    We can easily find expensive queries using DMVs (sys.dm_exec_query_stats, sys.dm_exec_sql_text)
    but I am not able to link it with "Program_name" they belong, where as I have setup Data Collection and there I can see Program_name(see in green color), please help me to find the same without setup the Data Collection as it add load to
    the server.

    The Program_name field is available in exec_sessions DMV, where it list all active users connections and internal tasks unless you store these details in som e table and join based on the text with dm_exec_query_stats.
    SELECT
    r.session_id,
    command,
    s.text,es.program_name,
    SUBSTRING(s.text, ( r.statement_start_offset / 2 ) + 1, ( ( CASE WHEN r.statement_end_offset <= 0 THEN DATALENGTH(s.text)
    ELSE r.statement_end_offset END - r.statement_start_offset ) / 2 ) + 1) AS statement_text FROM sys.dm_exec_requests r inner join sys.dm_exec_sessions es on es.session_id = r.session_id CROSS APPLY sys.dm_exec_sql_text(r.sql_handle) s
    Store the data periodically in some table 
    SELECT TOP 10
    total_worker_time/execution_count AS Avg_CPU_Time
    ,execution_count
    ,total_elapsed_time/execution_count as AVG_Run_Time
    ,(SELECT
    SUBSTRING(text,statement_start_offset/2,(CASE
    WHEN statement_end_offset = -1 THEN LEN(CONVERT(nvarchar(max), text)) * 2
    ELSE statement_end_offset
    END -statement_start_offset)/2
    ) FROM sys.dm_exec_sql_text(sql_handle)
    ) AS statement_text
    FROM sys.dm_exec_query_stats
    You can try this. There is no straight forward approach to get such details unless you are capturing in depth details at frequent intervals of time.
    --Prashanth

  • Problem with the Travel Expenses PDF Form

    Hi Experts,
    We are facing a strange issue in our production system that the Travel Expenses PDF form is coming as a blank pop up when users raise a Travel Expenses request or try to see the form in 'My trips and Expenses'.
    The strange thing is that it is happning for only 3 users in Production system only.We have confirmed that it is not a Desktop issue. We did not come across this earlier while 3500 users are using it for 9 months now.
    The same problem is not repeated in Dev, Qua or even in Production for any other user.
    The SAP Security team has also confirmed that all relevent authorisations have been given to effected users like other users for whom the same is working
    Kindly help me with the same if you have encountered the same problem or can suggest something that may rectify the problem.
    Help will be appreciated << Please do not offer points >>
    Regards,
    -Amol Gupta
    Edited by: Rob Burbank on Sep 21, 2010 2:38 PM

    Hi Siddharth,
    Thanks for the reply.
    We have checked that it is not a Desktop issue.
    Also SAP Security team says that the effected users have been given the regular authorisations as given to other users using the same functionality.
    As i mentioned it is not a problem with ADS as the same functionality is working fine for 3500 users for 9 months.
    Regards,
    -Amol Gupta

  • Custom field to add number of packages shipped along with Delivery

    Hi Sap Experts,
    We have scenario, we have created sales order with quantity 1(Like soft copy or hard copy of CD).
    Now we want to create delivery with sales order and quantity is 1(Copy from sales order).
    Our requirement is some time we have to send additional things like hard copy of manual or complement gift which we are not entering in sales order.
    Exp: Sales order- quantity 1.
    Want to deliver quantity 1(+ manual+ complement gift, these items are not part of standard order)
    For more clarity, we have to add one field and want to enter number (How many items we have send along with main materials and these items are not relevant for pricing also).
    So requirement is add one additional field in delivery header/item.
    Customer doesn’t want to use Free of goods or BOM which we have propose him. How to customize standard table and standard program.
    Kindly suggest.
    Regards,
    Kotli

    Hi All,
    We don't want to use BOM options.
    I have also checked "No. of packages'` at header level but my requirement is at item level.So we are also exploring the option of  APPEND  standard table and add this field.
    Kindly let me know  if we can do it without Appending standard table.
    Regards,
    Field to add to enter number of items which are  shipped to customer 

  • Need additional field populated along with this FMS on Market Docs

    During creation of a marketing doc such as Sales order, the user searches for the item which has this query loaded into item field.
    SELECT T0.[ItemCode], t1.[AvgPrice],t1.[OnHand], T1.[WhsCode] FROM OITM T0  INNER JOIN OITW T1 ON T0.ItemCode = T1.ItemCode WHERE T1.[WhsCode] =(SELECT warehouse from oudg where code= 'manager') and t0.[invntitem]='Y'
    Search of item field displays other info such as quanitty in warehouse and warehouse along with item code. In above case the warehouse is 02 for maanger profile.
    However, on selecting any of the above items, the warehouse displayed on sales order is 01 (not 02 which is what it should have been). Why did not the relevant warehouse 02 get loaded?
    How can I over come this without using just the above FMS query. Do I have to use another FMS query for warehouse field also?
    Thank you.
    Hi, I have this FMS query that displays items from warehouse of the  logged in user's defaults. However, the actual warehouse on sales

    Hi,
    FMS query will only return the first column from the query result. Whatever displayed will be irrelevant. If you need Warehouse 02, FMS has to be set on warehouse column with the whscode as first column.
    Thanks,
    Gordon

Maybe you are looking for