cancel
Showing results for 
Search instead for 
Did you mean: 

Field for EAN-No. on Delivery Note

Former Member
0 Kudos

Hello !

I`m new here. I have a question regarding a new field in the Smartform Delivery Note.

We are working with StreamServe as Outputmanagement Tool.

So, i`d like to get an field EAN-No. into the Smartform.

If i put the field in, there comes the error message

EANNO    "IS_DLV_DELNOTE-IT_GEN" is a table without a header line and therefore has no component called "EAN_UPC".

Can somebody help me to get the field into the document?

Is there some scripting to do, to put it into a global structure ?

Thanks for your help.

Marco

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

IS_DLV_DELNOTE-IT_GEN must be an internal table ...Then you cant use it this way directly with field name, instead what you can do is ,

creating work area for it_gen

read table  IS_DLV_DELNOTE-IT_GEN into workarea .This way your workarea will get value  IS_DLV_DELNOTE-IT_GEN for field EAN_UPC ..

this should help.