cancel
Showing results for 
Search instead for 
Did you mean: 

Purchase Order Driver Program

Former Member
0 Kudos

Hi all

Am using the Standard Smartform /SAPDII/SPP_ORDER for my purchase order rather than the script MEDRUCK.Now please tell me what is the driver program i need to submit for /SAPDII/SPP_ORDER in NACE.Please Help

Vijay

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

You can use this program: SAPFM06P

and Form routine : ENTRY_NEU

Please close , if solved

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Vijay,

You can use this Print program(Smartform)-- /SMB40/FM06P for Purchase order.

OR----- U can create a Program to call the Smartform and then assign those.

to call the smartform use this code.

DATA: smf_name TYPE TDSFNAME VALUE u2019ZSMARTFORM01u2019,

fn_name TYPE RS38L_FNAM.

CALL FUNCTION u2019SSF_FUNCTION_MODULE_NAMEu2019

EXPORTING

FORMNAME = smf_name

IMPORTING

FM_NAME = fn_name.

CALL FUNCTION fn_name

EXPORTING

WA = wa_doc.

Thanks,