Travel request form error

Dear friends
while trying to clik on display/pirnt in ess travel request, showing  an errorm like 
ERROR WHILE INITIATING THE TRAVE FORM
even in TRIP also while trying to display a trave request showing error like   
Error at start of form processing
Message no. PTRA_WEB_INTERFACE162
Any suggestions to over com this problem
Regards
kiran

Have you done the TRVFE feature configuration and made sure if this form exists in the system.
Regards,
Divya

Similar Messages

  • Error while displaying Travel request form (ABAP WD :FITV_TRIP_FORM )

    Hi
    When I am trying to create a travel request form , and then trying to display form its throwing an error
    "The following error text was processed in the system ECD : Error in module RSQL of the database interface".
    The error occurred on the application server mtserpdev_ECD_00 and in the work process 0 .
    Kindly suggest as form "FITV_TRIP_FORM" is already attached via feature . Am I missing some config or
    Is it a issue of patch. (Currently we are at EHP 4 , and all the applications inlcuding FITV_TRIP_FORM are on WD ABAP).
    Thanks
    Abhay

    Have you done the TRVFE feature configuration and made sure if this form exists in the system.
    Regards,
    Divya

  • Adobe Form Logo Edit(Modify) Problem in Travel Request Form of ESS

    Dear Experts
    We have the ESS working in which travel Request form has got the logo of IDES (Adobe Form) thatb come from the t-code: TRIP. My query is to remove that logo and print our company's logo on the same. After doing many effort to change that logo, I am not able to make change on that Adobe Form. Please suggest how could we achieve that?
    Regards,
    Akg
    Moderator message: wrong forum, please have a look in the forum for "Adobe Interactive Forms".
    Edited by: Thomas Zloch on May 25, 2011 11:39 AM

    Hi,
    As per your code, you are seletcing data from BSEG table as 'SELECT * FROM BSEG'.
    BSEG is a cluster table. Its better to use only selected field from this table during select query.
    Other than this run your program in SE30 and check analysis for the queries taking more time.
    Better to modify them, tune them and re transport the program in production.
    Regds,
    Anil

  • Travel Display Form: Error while determining the form function module

    Hi,
    In Travel Reqeust (ECC6/ESS) when i click the Display Form after raising the Travel Request it shows the error
    "Error while determining the form function module"
    Can anyone have idea on this?
    Regards,
    Boobalan

    Hi,
    This error was due to Not supported platforms of ADS (Adobe Document services)
    It was not supported on itanium64 bit processors.
    Please check where the ADS is supported in service.sap.com/pam
    You can use the ADS in the Non-Supported Server by linking it to Supported Platform Server using the SM59 link. This will make the ADS files to work.
    Please refer the ADS Config Doc for details.
    Hope you also solve this problem.
    Regards,
    Boobalan

  • Travel request print error

    Dear friends
    while trying to clik on display/pirnt in ess travel request, showing an errorm like
    ERROR WHILE INITIATING THE TRAVEl FORM
    even in TRIP also while trying to display a trave request showing error like
    Error at start of form processing
    Message no. PTRA_WEB_INTERFACE162
    Any suggestions to over com this problem
    Regards
    kiran

    Hi
    Thank you for the immediate response, but even in DEV/QUALITY its is not set to be X, they are working fine, the issue is only with production
    Regards
    Kiran

  • Travel Request Form in SharePoint 2010

    I want to make Travel Request related site on SharePoint 2010. I have some basic plan in my mind how it will. Its like User will fill form (Travel Form) then it will go to his/Her Manager then after approval, it will go to HR department. From here onward,
    complexity starts as HR will give some preference of Hotel, Flight & rest info for selection to user. Once user select that then it will again go to HR for confirmation of such info & then HR will book flights, Hotel nd rest. So kindly let me know
    such kind of workflow can be made where multiple loop created with these users for follow up & selection, approval...
    Can anybody will guide me how to move ahead step by step..I did a lot of search n all but didnt found what i need. Also let me know from where i can open "Workflow designer" in SharePoint Designer 2010 as some video showing this tool in SPD.

    Looping in SPD workflows is tricky. To create complex workflows you can break them down into a set of simpler workflows. For looping you will typically create "workflow A" that changes a field that then triggers "workflow B". You might create a typical approval
    workflow that walks through the manager approval. It changes a field that then triggers the HR workflow(s).
    The Workflow Designer is displayed when you edit or create a new workflow. In the left navigation click Workflows and then in the ribbon click one of the new workflow options (List or Reusable (Content Type)).
    Mike Smith TechTrainingNotes.blogspot.com
    Books:
    SharePoint 2007 2010 Customization for the Site Owner,
    SharePoint 2010 Security for the Site Owner

  • Travel Expense Form error

    Hi
    When am creating travel expenses and trying to simulate results its giving following error
    Error while initiating form
    Messege No. 56568
    Thanks
    Neha

    Wel thanks for ur patience n replies.
    I think i need to talk to Basis people for the same. its some form error as in PDF settings.
    i jus noticed one thing noe in TRIP if i right click on the trip in th overview are n select display its opening that form in simulation. but when i click on result button its givin that error while initiating th form. So i think its PDF form error settings.
    Thanks
    Neha

  • Error in custom travel request form

    Hi friends
      I have copied the standard Adobe form FITP_REQUEST_FORM to custom ZFITP_REQUEST_FORM and i have written a function module like this.
    DATA : V_FORMNAME      TYPE FPNAME,
           V_FMNAME        TYPE FUNCNAME,
           FP_OUTPUTPARAMS TYPE SFPOUTPUTPARAMS,
           FP_DOCPARAMS    TYPE SFPDOCPARAMS,
           FP_FORMOUTPUT   TYPE FPFORMOUTPUT.
    DATA : ZVAR1 TYPE WSRM_ERROR-WSRM_DIRECTION,
           IT_SOLIX_TAB TYPE SOLIX-LINE OCCURS 0.
    DATA : E_RESULT TYPE SFPJOBOUTPUT.
    DATA : REASON TYPE FTPS_REQ_REASON_T,
           PERSONNEL_NUMBER TYPE PERNR_D,
           TRIP_NUMBER  TYPE REINR.
    V_FORMNAME = 'ZFITP_REQUEST_FORM'.
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
      EXPORTING
        I_NAME                     = V_FORMNAME
    IMPORTING
       E_FUNCNAME                 = V_FMNAME .
    FP_OUTPUTPARAMS-NOPREVIEW   = 'X'.
    FP_OUTPUTPARAMS-NODIALOG    = 'X'.
    FP_OUTPUTPARAMS-DEST        = 'LP01'.
    FP_OUTPUTPARAMS-CONNECTION  = 'ADS'.
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        IE_OUTPUTPARAMS       = FP_OUTPUTPARAMS
    EXCEPTIONS
       CANCEL                = 1
       USAGE_ERROR           = 2
       SYSTEM_ERROR          = 3
       INTERNAL_ERROR        = 4
       OTHERS                = 5.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    FP_DOCPARAMS-LANGU = 'EN'.
    FP_DOCPARAMS-FILLABLE = 'X'.
    FP_DOCPARAMS-COUNTRY = 'IN'.
    PERSONNEL_NUMBER = '01234544'.
    TRIP_NUMBER = '0002700074'.
    CALL FUNCTION V_FMNAME
    EXPORTING
       /1BCDWB/DOCPARAMS          = FP_DOCPARAMS
    *   EMPLOYEE_HEADER_DATA       = EMPLOYEE_HEADER_DATA
    *   EMPLOYER_HEADER_DATA       = EMPLOYER_HEADER_DATA
    *   ADDRESS_EMPLOYEE           = ADDRESS_EMPLOYEE
    *   ADDRESS_EMPLOYER           =
    *   PERSONNEL_NUMBER           = PERSONNEL_NUMBER
    *   TRIP_NUMBER                = TRIP_NUMBER
    *   PLAN                       =
    *   REQ_HEAD                   =
    *   ACCOUNT                    =
    *   ADVANCE                    =
    *   REASON                     = REASON
    *   REQUEST                    =
    *   STATUS                     =
    *   USER                       =
    IMPORTING
       /1BCDWB/FORMOUTPUT         = FP_FORMOUTPUT
    EXCEPTIONS
       USAGE_ERROR                = 1-------------------------------> error here
       SYSTEM_ERROR               = 2
       INTERNAL_ERROR             = 3
       OTHERS                     = 4.
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'FP_JOB_CLOSE'
    IMPORTING
       E_RESULT             = E_RESULT
    EXCEPTIONS
       USAGE_ERROR          = 1
       SYSTEM_ERROR         = 2
       INTERNAL_ERROR       = 3
       OTHERS               = 4
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        BUFFER                = FP_FORMOUTPUT-PDF
    IMPORTING
       OUTPUT_LENGTH         = ZVAR1
      TABLES
        BINARY_TAB            = IT_SOLIX_TAB.
    Its showing error as job as already started and in my FP_FORMOUTPUT nothing is getting filled. what is the error. How to rectify it. I have written this code in function moduel. No input or exprot parameter.1st i want to test wheater the form is called prporly and getting all the details from the form. Help in resolve this issue
    Regards
    vijay

    its solved. In se37 is not working showing some error. But in se38 its working fine.
    Regards
    vijay

  • BAPI's in Travel Request & Expenses

    Dear All,
         As per Clients requirement we are developing New Travel request Form in Web Dynpro.
    Please help me to find the BAPI's used to save data for Travel Request in Web Dynpro.
    Thank you very much in advance.
    Regards,
    Kamal Rawal
    [email protected]

    Hi,
    You can use BAPI 'BAPI_TRIP_CREATE_FROM_DATA' to create a Travel Request,
    BAPI 'BAPI_TRIP_APPROVE' to approve the trip request.
    Hope this helps,
    Shrinivas

  • Additional Transportation mode on Traval Request form

    Hi all,
    Can we add more transportation modes (in request transportation/accommodation) on travel request form on SAP R/3!
    i.e.  Employee can request for company pool car but currently flight, train, rental car options are available on travel request form.
    Awaiting for responses!

    Hi Raynard Coscolluela,
    Thanks for your response.
    but where i have to activate additional services on travel request form..
    if it is in schema (t-code FITVFELD) there which node i have to activate ?
    Thanks in advance for your time!

  • 500 Internal Server Error Failed to process request. in ESS Travel req form

    Dear Gurus ,
    Please can someone help me out here....I have problem
    for my ESS and MSS portal, but when I click on TRAVEL AND EXPENSES, and go
    down to MY TRIPS and EXPENSES, I sure get to see all the Travel Requests I
    have created, but when click on DISPLAY/PRINT, I get this error message
    below....Any form of assistance would be grately appreciated.
    Display Trip Form
    500 Internal Server Error SAP NetWeaver Application Server 7.00/Java
    AS 7.00
    Failed to process request. Please contact your system administrator.
    also i have restart the EP portal server and also check the master data and ADS services ,all are ok kindly check and do the needful why this error is coming in ESS portal
    Thanks and regards
    RS

    Hi,
    Move this issue to BASIS forum you will get the good solution on this.
    Regards
    Shayam

  • Error in UWL when we click display form in Travel Request

    Hi,
    We configured ESS and we are using Travel functionality.
    We configured tstandard work flow WS20000050
    When the approver clicks on Display form in his UWl it is giving this error message,
    "com.sap.aii.proxy.framework.core.DataAccessException: Type conversion error, field I_TRIPNUMBER, complex type class com.sap.xss.tra.tri.model.tripform.Ptrm_Web_Form_Pdf_Get_Input"
    I checked with sap note number 1055416 according to that in Approve Travel Request step of above mentioned workfow Binding Exists and everything is fine with the work flow.
    We are still facing this probelm.can anybody please guide me on this issue.
    With Regards,
    Pradeep.B

    Hi ,
    We have the same problem , did you fix our ? Can you share the solution . Thank you .
    Regard's

  • Error when Display/Print my expense report,travel request and travel plan

    Hello experts,
    I had configurated the ADS and ESS successfully.We are using ESS and interactive form now.
    And we had developed some interactive form and they work fine .
    In page "My Trips and Expenses   " , there are 4 tabs " All My Trips","  My Travel Requests","  My Travel Plans " and " My Expense Reports " .
    When I selected one row of table and click button " Display/Print" , I got the error :
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Failed to  USEPDF
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException.<init>(PDFDocumentRuntimeException.java:25)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:419)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java:1132)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.afterApplicationModification(ClientComponent.java:895)
    Caused by: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: pdfSource of InteractiveForm UI element should be populated with pdf binary content in USE_PDF mode
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:351)
         ... 48 more
    Is there any guys had met the problem ? Please give me some suggestions .
    Thank you !
    Best Regards,
    Louis

    Louis,
    can yo make sure that you are doing this "pdfSource of InteractiveForm UI element should be populated with pdf binary content in USE_PDF mode"
    check these links
    https://forums.sdn.sap.com/click.jspa?searchID=18701125&messageID=6070514
    https://forums.sdn.sap.com/click.jspa?searchID=18701125&messageID=6426445
    https://forums.sdn.sap.com/click.jspa?searchID=18701125&messageID=6323600
    Thanks
    Bala Duvvuri

  • Error when initially calling Travel Trip Form Web Dynpro application

    Hello all,
    we are facing a problem when calling for the first time the Travel Trip Form Web Dynpro application.
    In the trace file we get the following error message:
    application [webdynpro/dispatcher] Processing HTTP request to servlet [dispatcher] finished with error.
    The error is: com.sap.tc.webdynpro.services.sal.core.DispatcherException: Wrong Web Dynpro URL: "../WebDynpro/Servlet/<deployableObject>/<application>/xx?..". xx is not allowed without exchange key. Retrieved URI path: /sap.com/esstratri/TripForm/~wd_key890_1246626831816/background.gif.
    Exception id: [001E680CB1CE0078000002A600007B4A00046DCCEE3F358A]
    This appears when a trip has been initially created and if the user wants to display a travel trip form.
    However, this does not appear anymore, if you click on the travel trip form again.
    Best Regards
    Philipp

    Hello Philipp,
    We are having same problem. Please let me know solution....
    Som

  • Error while creating a Travel Request

    Hi All,
    EP 7,ESS/MSS 1.0
    We have a issue in Creating Travel Request in Portal.
    Once we fill all the required entries to create a travel request and click the review button it pops a message saying " Errors have been discovered when checking the Expense Report. Please correct them in order to proceed." .
    When i check the same in backend using the tcode- TRIP, we are able to create the travel request.
    Can some one tell me where we are going wrong and is there any configuration at backend to be done still.
    Thanks,
    NR

    Hi NR
    Ensure that all the variant are properly integrated between Travel & Expenses.
    Also, for testing, removing the integration and test if the pop-up comes back.
    If this helps, pl do reward.
    Thanks
    Narsimha

Maybe you are looking for