cancel
Showing results for 
Search instead for 
Did you mean: 

error in smartform

Former Member
0 Kudos

when i am creating purchase order in smart form while cuurency type field is not taking into form NETPR is the field name and from this table (J_1IMOCOMP) is getting error

any body help on this issue?

Accepted Solutions (1)

Accepted Solutions (1)

former_member196280
Active Contributor
0 Kudos

In smart forms if we want to display quantity and currency fields. We can't directly display currency field and quantity fields.

GLOBAL Definitions

WA_NETPR LIKE EKPO-NETPR

For that we have to create an extra variable in global definitions

Ex: netpr FIELD of EKPO

CREATE program lines and specify WA_NETWR = itab-netpr.

Close the thread once your question is answered.

Regards,

SaiRam

Former Member
0 Kudos

THANX

but wat is netpr field of ekpo?

how to declare?

former_member196280
Active Contributor
0 Kudos

Above I have just given a sample example, declare your field in this way..

Under Global settings

a) Form Interface

Table Tab

ITAB LIKE EKPO

b) GLOBAL Definitions

WA_NETPR LIKE EKPO-NETPR

In smart forms if we want to display quantity and currency fields. We can't directly display currency field and quantity fields

For that we have to create an extra variable in global definitions

Ex: netpr FIELD of EKPO

CREATE program lines and specify WA_NETWR = itab-netpr.

close the thread if your question is answered.

Regards,

SaiRam

Answers (0)