Développer ma barre des réalisations de la Communauté.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.

RÉSOLU

Deleting a archived field while creating survey

Avatar

Level 2

Jayan_Sk_0-1692612454920.png

I want to remove the "Language" field.
Can anyone help me in this ?

Sujets

Les sujets facilitent la catégorisation du contenu de la Communauté et vous aident à retrouver le contenu le plus pertinent.

1 solution acceptée

Avatar

Réponse correcte par
Community Advisor

Hi @Jayan_Sk ,

Extend the nms:webAppLogRcp schema.
Data schema > new > Select Extension of a schema > Schema: nms:webAppLogRcp
> modify the element tag as below,
  <element label="Responses to recipient forms" labelSingular="Response to a recipient form" name="webAppLogRcp">
       <attribute _operation="delete" name="language"/>    
  </element>
  
Save it and Update the database structure, disconnect & Reconnect. Now the 'Language' field will be removed from nms:webAppLogRcp schema.
(Test this in Lower environment.)

Voir la solution dans l'envoi d'origine

2 Replies

Avatar

Réponse correcte par
Community Advisor

Hi @Jayan_Sk ,

Extend the nms:webAppLogRcp schema.
Data schema > new > Select Extension of a schema > Schema: nms:webAppLogRcp
> modify the element tag as below,
  <element label="Responses to recipient forms" labelSingular="Response to a recipient form" name="webAppLogRcp">
       <attribute _operation="delete" name="language"/>    
  </element>
  
Save it and Update the database structure, disconnect & Reconnect. Now the 'Language' field will be removed from nms:webAppLogRcp schema.
(Test this in Lower environment.)

Avatar

Level 2

Thank you @ParthaSarathy