Du kan nå slå sammen attributtinformasjon i avtalene dine. Alle attributter har nå fått en unik ID, som kan brukes til å hente informasjon fra dem. Dette inkluderer selskaps-, kontaktperson-, prosjekt- og kandidatattributter.
Sammenslåing av attributtinformasjon kan brukes på mange måter. For eksempel, hvis du har et kandidatattributt med et tekstfelt og du ønsker å referere dette i en avtale, kan du ganske enkelt hente informasjonen med flettetaggen @candidate.attribute.XXX.text, og teksten vil bli inkludert i din avtale.
I eksemplet nedenfor er kandidatens ID-kortnummer lagret som et kandidattekstattributt, som vi refererer til i avtalen ved å bruke flettetaggen.
Mscript-konfigurasjon
@"objektnavn" + .attribute + ."attributt-ID" + ."attributt type"
- objektnavn: candidate, project, company eller companyContact
- attribute: konstant og uforanderlig del av mscriptet
-
attributt-ID: opprettes automatisk av systemet når attributtet legges til i Systeminnstillinger → Kandidater, CRM eller Prosjekter → Attributter
- attributt type: velg en av alle tilgjengelige attributttyper som er oppført nedenfor
Mscript ending | Attribute type |
---|---|
.bool | Ja/Nei verdi |
.date | Dato |
.dropdown | Nedtrekk |
.rating | Stjernerangering |
.text | Tekst (255 tegn) |
.multipleChoice | Flervalg |
.singleLineText | Vanlig tekstinntasting |
Eksempler
Du kan kopiere disse eksemplene og bare erstatte sifrene – bruk din unike attributt-ID i stedet.
Eksempler for kandidater:
@candidate.attribute.4927.bool
@candidate.attribute.4927.date
@candidate.attribute.4927.dropdown
@candidate.attribute.4927.rating
@candidate.attribute.4927.text
@candidate.attribute.4927.multipleChoice
@candidate.attribute.4927.singleLineText
Eksempler for prosjekt:
@project.attribute.326.bool
@project.attribute.326.date
@project.attribute.326.dropdown
@project.attribute.326.rating
@project.attribute.326.text
@project.attribute.326.multipleChoice
@project.attribute.326.singleLineText
Eksempler for selskapet:
@company.attribute.603.bool
@company.attribute.603.date
@company.attribute.603.dropdown
@company.attribute.603.rating
@company.attribute.603.text
@company.attribute.603.multipleChoice
@company.attribute.603.singleLineText
Eksempler på kontaktperson:
@companyContact.attribute.345.bool
@companyContact.attribute.345.date
@companyContact.attribute.345.dropdown
@companyContact.attribute.345.rating
@companyContact.attribute.345.text
@companyContact.attribute.345.multipleChoice
@companyContact.attribute.345.singleLineText