cancel
Showing results for 
Search instead for 
Did you mean: 

error whille excuting the driver programe of smartform

Former Member
0 Kudos

HI gurus ,

while executing the driver program fro smart form it is resulting an error message

No table line started. Output to cell not

possible.

thanks in advance

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Subramanyam...,

May be the error is due to the following reasons.

1. No records are available in the table that satisfies your selection statement.

2. You have not declared the internal table with a Header Line.

3. Looping the internal table may be incorrect.

4. The work area usage may be faulty.

Try debugging the Driver program.

Check whether the header line is populated with values or not.

May be this will resolve your issue.

Regards,

Naveen K Garuda Reddy.

Former Member
0 Kudos

HI Naveen,

when i debugged the program i was getting data into the function module fm_name.

but when control has come to function module ''SSF_CLOSE' , the data which is to be displayed is moved to 'ERRORTAB' and its resulting in the error message .

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

Call the function module which has been generated by the smartform again in the driver program.

CALL FUNCTION '/1BCDWB/SF00000484'
          EXPORTING
           control_parameters          = w_control
            fs_spfli                          =  fs_spfli
         EXCEPTIONS
           formatting_error           = 1
           internal_error             = 2
           send_error                 = 3
           user_canceled              = 4.

Regards,

Sravanthi