cancel
Showing results for 
Search instead for 
Did you mean: 

smartform

Former Member
0 Kudos

Hi,

My requirement is to send a smartform through e-mail as PDF attachment.I have made the changes in the print program of the smart.When I try to assign the output to the medium external send,it is giving dump error.The error is 'Error info... 00 671: ABAP/4 processor: CALL_FUNCTION_PARM_MISSING.Can anyone tell me why am I getting this error?

Regards,

Hema

Accepted Solutions (0)

Answers (2)

Answers (2)

sreelatha_gullapalli
Active Participant
0 Kudos

hi

check the following link

http://www.sapdevelopment.co.uk/reporting/rep_spooltopdf.htm

http://www.sapdevelopment.co.uk/reporting/rep_spooltopdf.htm

/people/pavan.bayyapu/blog/2005/08/30/sending-html-email-from-sap-crmerp

hope it will help you.

Regards,

Sreelatha Gullapalli

Former Member
0 Kudos

Hi,

The dump is caused because you have not passed a manatory parameter to a funciton module. If you look at the whole short dump it should tell you;

which function module call the problem relates to

and

which parameter is missing

Armed with this you can look at your calling code and assign values to the manatory parameter.

Regards,

Nick

Former Member
0 Kudos

Hi Nick,

Thank you.

But in the error it is not mentioned which function module is causing the error.It is just telling ABAP/4 processor: CALL_FUNCTION_PARM_MISSING.How can I know where should I correct the error?

Regards,

Hema

Former Member
0 Kudos

Hi,

I've just run a quick test program to generate the short dump you're getting and the section headed 'Error analysis' contains the following;

An exception occurred that is explained in detail below.

The exception, which is assigned to class 'CX_SY_DYN_CALL_PARAM_MISSING', was

not caught and

therefore caused a runtime error.

The reason for the exception is:

When calling the function module "READ_TEXT", one of the parameters

needed according to the interface description was not specified.

This parameter was "ID".

Where READ_TEXT is my function module and ID is the (first) missing manadatory parameter.

You need to find the same section in your short dump.

Regards,

Nick