Published on :
Macro NONE

Definition of macro AHGgetTempVname

This code is also available in: Deutsch Español Français
The provided code defines a SAS© macro `%AHGgetTempVname` that takes two parameters, `dsnname` and `vname`. However, the macro body is completely empty (`%mend;` immediately follows `%macro`). This indicates that it is either a placeholder for future implementation or part of a larger macro system where its logic is generated or included in another way. In its current state, it performs no tasks.
Data Analysis

Type : NONE


As this macro is empty, it neither manipulates nor generates any data.

1 Code Block
MACRO DEFINITION
Explanation :
This code block defines the `%AHGgetTempVname` macro with parameters `dsnname` and `vname`. The macro body is empty, meaning it contains no SAS statements to execute. It serves only as a macro declaration.
Copied!
1%macro AHGgetTempVname(dsnname,vname);
2 
3%mend;
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.