function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sai ramsai ram 

how to insert multi dependent picklist values from lwc component to object

I have multi dependent picklist iam getting from the salesforce org i need to submit the values when create the record.
    @wire(getObjectInfo, {objectApiName: CASE_OBJECT})
    caseInfo;
    @wire(getPicklistValues, { recordTypeId: '$caseInfo.data.defaultRecordTypeId', fieldApiName: RMAREASON_FIELD })
    RMAReasonFieldInfo({ data, error }) {
        if (data) this.RMAReasonValues = data;
    }
    @wire(getPicklistValues, { recordTypeId: '$caseInfo.data.defaultRecordTypeId', fieldApiName: FUNCTIONALAREA_FIELD })
    functionalAreaFieldInfo({ data, error }) {
        if (data) this.functionalAreaValues = data;
    }
    @wire(getPicklistValues, { recordTypeId: '$caseInfo.data.defaultRecordTypeId', fieldApiName: PRODUCTSUBTYPE_FIELD })
    prdouctSubTypeFieldInfo({ data, error }) {
        if (data) this.productSubTypeValues = data;
    }
    @wire(getPicklistValues, { recordTypeId: '$caseInfo.data.defaultRecordTypeId', fieldApiName: PRODUCTTYPE_FIELD})
    prdouctTypeFieldInfo({ data, error }) {
        console.log('test');
        if (data) this.productTypeOptions = data.values;
    }
based on this code iam getting value