Code: Select all
@01 panelist ib4.
@05 system ib2.
@07 units rb4.
@11 dealbits pib1.
@12 footprnt pib2
Now I need to convert all of these into decimal using DFORT. Can you please provide the OUTREC FIELDS.
Code: Select all
@01 panelist ib4.
@05 system ib2.
@07 units rb4.
@11 dealbits pib1.
@12 footprnt pib2
abejacb wrote:Thanks for the quick response.
Example : if the variable is declared as 9(04) comp, I need to get it converted to 9(04) using DFSORT.
Code: Select all
... BUILD=(...,pos,2,BI,TO=ZD,LENGTH=4,...)
abejacb wrote:Thanks NicC and Sergeyken.