cancel
Showing results for 
Search instead for 
Did you mean: 

Inspection report output

Former Member
0 Kudos

Hi Friends,

Currently i am working in inspection report . In out put i am getting in exponential format

(0.0000000000000000E+00) ie for the field QPMK-SOLLWERT. I want to convert this into

decimal format. Please anyone help me,

its urgent.

regards,

desha.

Accepted Solutions (1)

Accepted Solutions (1)

former_member189629
Active Contributor
0 Kudos

Desha,

Consider the code below, its serves your requirement, make changes accordingly

data:

SOLLWERT type QPMK-SOLLWERT,

temp(16) type p decimals 2.

SOLLWERT = '0.0000000000000000E+00.

move SOLLWERT to temp.

write: SOLLWERT,temp.

Reward if helpful,

Karthik

Answers (0)