cancel
Showing results for 
Search instead for 
Did you mean: 

Error in Travel Request Standard FIORI App:Required entry field "Trip Ends At" is empty

former_member212124
Active Participant
0 Kudos

Hi Experts,

Please help me resolve this issue.

I am getting following error message while creating a travel request( Standard App) through Fiori Launchpad:

Even After Entering all the Mandatory* entries (Purpose, trip activity,From,To etc) I am facing this error on press of save or submit.

But There is No field named 'Trip Ends At' on the travel request creation screen.We also upgraded both backend system(SP-0008 )

and front end system(SP-0007).

Still we are facing same issue.

I am assuming there must be 2 more fields for Time 'Trip Start At' and 'Trip Ends At'.




And I am Able to Edit and Save already created travel requests without any problem.

Please provide your valuable inputs

Accepted Solutions (0)

Answers (2)

Answers (2)

abdulbasha_shaik
Active Participant
0 Kudos

Hi Vidyasagar,

Clear the front end and backend cache using following t-codes

/iwfnd/cache_cleanup

/iwbep/cache_cleanup

after that clear the browser cookies and cache also.

--

Abdul

former_member212124
Active Participant
0 Kudos

Hi Abdul,

Thanks for your inputs.


Cleared cache,but still not working.


Vidyasagar

gill367
Active Contributor
0 Kudos
former_member212124
Active Participant
0 Kudos

Hello Sarbjeet,

Thanks for your helpful reply.

For note number  

2207881 - [Fiori] MTR: Beginning Date and End Time of Trip Segment default values not taken into acc..."

We are on higher version of  UIX01TRV SP7

and below note number we have already implemented.

"2223622 - MTR: Additional note after initial shipment of version 1.6 of My Travel Request"


Backend - SRA004 SP8



Please provide some alternate solution to resolved the issues.



Regards,

Vidyasagar

gill367
Active Contributor
0 Kudos

Hi

If you are on SRA004 sp level 8 ideally this error should not be coming. Could you please check and compare the function module SRA004_CREATE_TRAVEL_REQUEST with the correction instructions of note "https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/corr_instr/correction_detail.htm?_CINST..."  " 2207881".

whether the following block is there.

"

* Begin CAL2207881

  CALL FUNCTION 'PTRA_UTIL_BUF_TRIP_DEFAULT_GET'

  EXPORTING

  i_employeenumber = l_pernr

  i_trip_schema = 'PL'

  i_language = sy-langu

  i_trip_action = 'INS'

  i_trip_component = 'R'

  i_trip_tcode = 'WEBR'

  IMPORTING

  e_head = l_head_default

  EXCEPTIONS

  error_occurred = 1.

  IF i_general_data-timedep IS INITIAL AND l_head_default-uhrv1 IS NOT INITIAL.

  i_general_data-timedep = l_head_default-uhrv1.

  OVERLAY i_general_data-timedep WITH '000000'.

  ENDIF.

  IF i_general_data-timearr IS INITIAL AND l_head_default-uhrb1 IS NOT INITIAL.

  i_general_data-timearr = l_head_default-uhrb1.

  OVERLAY i_general_data-timearr WITH '000000'.

  ENDIF.

* End CAL2207881

"


Regards,

Sarbjeet Singh

former_member212124
Active Participant
0 Kudos

Hi,

This Code Block Is present in the function module SRA004_CREATE_TRAVEL_REQUEST.

But I do not find any 'Trip Begins At' or 'Trip Ends At' fields in the travel request creation app.

Am I missing any Note or Patch here?