• Bhanu Tanaka 5
  • NEWBIE
  • 0 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
Hello there!

We are having login issues with Boomi to Salesforce Rest API where our Oauth token is expiring daily.  Any ideas on how best to setup our connected app or any other thoughts?  Thank you!

User-added image
Hello - I'm trying to figure out how to reduce the width of a lightning-tabset set to the vertical variant.  Our tab labels are very short (3 chars) and I'd like to save on the screen real estate.  Current code as follows:
 
<lightning-tabset variant="vertical">
    <template for:each={practiceList} for:item="practice">
        <lightning-tab label={practice.systemOfRecord} key={practice.id}>
            <c-covetrus-practice
                practice={practice}
                oncovetrusshowactivitydetail={showActivityDetail}
            ></c-covetrus-practice>
        </lightning-tab>
    </template>
</lightning-tabset>

Thank you!
Hello there!

We are having login issues with Boomi to Salesforce Rest API where our Oauth token is expiring daily.  Any ideas on how best to setup our connected app or any other thoughts?  Thank you!

User-added image
I have a json which comes from api as follows

{"medicaidDualStatuesResponse": {"readMedicaidDualStatusesResponse": {"medicareMember": [
      {
      "medicaidDualStatus": [      {
         "dualStatusIndicator": "false",
         "source": "MedicaidDualStatusSourceCode",
         "code": "01",
         "codeName": "MedicaidDualStatusCode",
         "effectivePeriod":          {
            "datetimeBegin": "2018-03-01T00:00:00-05:00",
            "datetimeEnd": "2018-07-31T00:00:00-04:00"
         }
      }],
      "medicareIdentifier":       {
         "idSource": "MBI",
         "idValue": "9Y12M55CD02"
      }
   },
      {
      "medicaidDualStatus":       [
                  {
            "dualStatusIndicator": "false",
            "source": "MedicaidDualStatusSourceCode",
            "code": "01",
            "codeName": "MedicaidDualStatusCode",
            "effectivePeriod":             {
               "datetimeBegin": "2018-10-01T00:00:00-04:00",
               "datetimeEnd": "2018-11-30T00:00:00-05:00"
            }
         },
                  {
            "dualStatusIndicator": "false",
            "source": "MedicaidDualStatusSourceCode",
            "code": "01",
            "codeName": "MedicaidDualStatusCode",
            "effectivePeriod":             {
               "datetimeBegin": "2019-01-01T00:00:00-05:00",
               "datetimeEnd": "2019-03-31T00:00:00-04:00"
            }
         }
      ],
      "medicareIdentifier":       {
         "idSource": "MBI",
         "idValue": "9Y12M55CD04"
      }
   },
      {
      "medicaidDualStatus": [],
      "medicareIdentifier":       {
         "idSource": "HICN",
         "idValue": ""
      }
   }
]}}}
 
so in the controller of my lightning component I did as follows
 var medicareMemberList = QMBResponse.medicaidDualStatuesResponse.readMedicaidDualStatusesResponse.medicareMember;

Please let me know how to sort the dates given in the json in descending order. 

I am new to this so do not have much knowledge.
thanks