Joined: 18 Jun 2004 Posts: 61 Location: Kuzhithurai
Hi Sameer,
Dont get confused ? Renames clause is re-grouping of the already existing structure. It is used when u need to use a already existing structure. So different memory are allocated for both.
In case of Redefine clause it uses the already existing memory. So there is no seperate memory allocated for redefined item.
hi,
Rename clause allocates different memory where as redefines just the same memeory. For element to be rename it must be decalred in 66 level whereas for redefining both should be defined in 01 level.Redefines points to the same memory location with different name. like if variable is redefined with variable2 then if you move any data to varibale then same will reflected in variable2(if they same contains same memory area).You can directly see how redefines works, just create one flat file and the record layout is one include and in that include redifined then in file aid just try to change one value see the redefined variable value also get updated.