cancel
Showing results for 
Search instead for 
Did you mean: 

Code 58 : Entry doesn't exist ...

Former Member
0 Kudos

I use this BAPI_TRIP_CREATE_FROM_DATA.

I use departure date, arrival date, location, and pernr.

In SAP 4.6C, BAPI works fine. In my webdynpro, i fill correctly my bapi. But i Have this error : Code 58 doesnt' exist...

Well, how to debug this call in 4.6C or what can be this error ?

Thanks for your help

Aurélien

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

I think BAPI_TRIP_CREATE_FROM_DATE has activity type as mandatory input parameter...

Maybe this error is because the activity type given is not known of SAP ?

Former Member
0 Kudos

No, I add this code :

minp.setT_Actype("F");

This activity type exist in my SAP R/3 backend...

Former Member
0 Kudos

Hi

Try this link

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/webdynpro/tu... on debugging abap code from within web dynpro applications.htm

This link tells you how you can debug ABAP code from Webdynpro.

This will help you debug in ABAP from your WebDynpro. You should be able to solve your error. The input values in SAP get converted into CAPS but it does not happen the same way when you pass values from WebDynpro.

Check out the link i gave you and then you will know what is happening with your code.

regards

ravi

Former Member
0 Kudos

I use a 4.6C. HTTP Breakpoint doesn't exist...

Former Member
0 Kudos

Hi,

When creating a trip, do you also create some receipts ?

In that case, maybe you have to fill some fields (such as description etc...).

Entry doesn't exist most of time is thrown when you are trying to save a value that does not exist in a drop down

Hope that helps