Published on :
Function / Macro CREATION_INTERNE

Custom FCMP function template (f_uc_xxx)

This code is also available in: Deutsch Español Français
This script is a template for developers to create custom SAS© functions. It provides a detailed documentation structure (Doxygen style) and the syntactic skeleton of a function named 'f_uc_xxx'. The PROC FCMP and QUIT instructions are currently commented out to prevent accidental execution, and the function parameters contain generic tags (like <name>) that must be replaced with valid code for the script to be functional.
Data Analysis

Type : CREATION_INTERNE


This script is purely definitional (function logic) and does not consume any external or internal data sources.

1 Code Block
PROC FCMP
Explanation :
Skeletal definition of an FCMP function. The block is commented out and uses syntactic placeholders (<name>) that must be adapted by the developer.
Copied!
1/*
2proc fcmp outlib=WORK.functs.ucfuncts;
3*/
4 
5 function f_uc_xxx( [$]);
6 
7 
8 endsub;
9 
10/*
11quit;
12*/
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.
Copyright Info : Copyright 2008-2025 Paul Alexander Canals y Trocha.