diff --git a/OneM2M_PermutationFunctions.ttcn b/OneM2M_PermutationFunctions.ttcn
index 9fe0d9fa8084e57097e9ec2a1603869205f8e14f..2d3088e49c49e8c7cc7b994e5591d829efceda7f 100644
--- a/OneM2M_PermutationFunctions.ttcn
+++ b/OneM2M_PermutationFunctions.ttcn
@@ -1741,16 +1741,16 @@ module OneM2M_PermutationFunctions {
 			
 			group Create{
 				
-				function f_CSE_REG_CRE_001(in XSD.ID v_aeIdStem) runs on AeSimu system CseSystem {
+				function f_CSE_REG_CRE_001(in XSD.ID p_aeIdStem) runs on AeSimu system CseSystem {
 		  	  	
 					var MsgIn v_response;
 					var RequestPrimitive v_request;
 					var integer v_cseBaseIndex := -1;
 					var ResourceType v_resourceType := int2;
-					var universal charstring v_action :=  __SCOPE__ & ": Please, make sure that the following AE-ID is allowed to register: " & PX_ALLOWED_C_AE_IDS[0];
+					var universal charstring v_action :=  __SCOPE__ & ": Please, make sure that the following AE-ID is allowed to register: " & p_aeIdStem;
 	                
 					//Test control
-					if(v_aeIdStem[0] == "S") {
+					if(p_aeIdStem[0] == "S") {
 						if(not(PICS_IN_CSE)) {
 							setverdict(inconc, __SCOPE__ & ": IUT shall be IN-CSE to run this test case");
 							stop;
@@ -1765,7 +1765,7 @@ module OneM2M_PermutationFunctions {
 					f_sleepIgnoreDef(PX_TCONFIG_IUT);
 					
 					//Test Body
-					v_request := valueof(m_createAe(PX_TS_AE1.appId, omit, PX_CSE_ID & "/" & v_aeIdStem));	
+					v_request := valueof(m_createAe(PX_TS_AE1.appId, omit, PX_CSE_ID & "/" & p_aeIdStem));	
 					
 					v_request := f_getCreateRequestPrimitive(v_resourceType, v_request, -1);