Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CALL_FUNCTION_PARM_MISSING in delivery output

Former Member
0 Likes
2,997

Hi All,

I am facing an issue while adding the output type to delivery.I have created a print program and a smartform and assigned to a output type.When the output type added in the vl02n I m getting an update termination error and run time error.

CALL_FUNCTION_PARM_MISSING

An exception occurred. This exception is dealt with in more detail below

. The exception, which is assigned to the class 'CX_SY_DYN_CALL_PARAM_MISSING',

was neither

caught nor passed along using a RAISING clause, in the procedure "PROCESSING"

"(FORM)"

.

Since the caller of the procedure could not have expected this exception

to occur, the running program was terminated.

The reason for the exception is:

When calling the function module "/1BCDWB/SF00000XXX", one of the parameters

needed according to the interface description was not specified.

This parameter was "IS_DLV_DELNOTE".

Please guide me to solve this.

Thanks,

Narmadha M.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,220

Hi,

I have declared a structure as is_delv_delnote and added that parameter while calling the smartform from the driver program.

Now i am not getting the update error.

Thanks all for your help.

Regards,

Narmadha M.

7 REPLIES 7
Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
2,220

You need to pass the parameter in the smartform call in driver program. Is it a standard driver/smartform

Read only

0 Likes
2,220

No its a customized program and smartforms

Read only

0 Likes
2,220

Please check the call of your smartform in your driver program. In your smartform you have this IS_ parameter which you have not passed while calling smartform. In case you do not need it delete it from smartform.

Read only

Former Member
0 Likes
2,220

Your smartform has a importing parameter in its interface "IS_DLV_DELNOTE" which is needed to be passed to the form from the driver program.

Check you driver program for the smartform call and add the parameter to the exporting parameters.

regards,

Ashish

Read only

0 Likes
2,220

There is no importing parameter in the interface "IS_DLV_DELNOTE".

Read only

Former Member
0 Likes
2,220

Hi Narmadha,

You have made the parameter IS_DLV_DELNOTE as mandatory in the smartform Interface.

Either make the parameter as optional or else make sure you supply the parameter with some value while calling the FM.

Thanks,

Ajay Bose

Read only

Former Member
0 Likes
2,221

Hi,

I have declared a structure as is_delv_delnote and added that parameter while calling the smartform from the driver program.

Now i am not getting the update error.

Thanks all for your help.

Regards,

Narmadha M.