• Sravan Reddy 137
  • NEWBIE
  • 0 Points
  • Member since 2021

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

component1 and component2 are connected using flow and when we click on back button on screen (with component2), it should come back to component1 screen and display the same data what was there before on component1 screen. 
Here the data is of type wrapper class that is used to display the data on screen1. Flow variable is not able to store wrapper class data and therefore returning {} to screen1.

Please help and  suggest any solution.

Thanks,
Sravan

 
Hi,

The below code is giving table data in worng format. when there are 5 rows, first 2 rows are coming correctly and then remaining 3 rows data in a single row. Other part of the code looks correct. Please help here

  for(PG01_POSM_InitiativeProduct2__c posmData : newposmlist ){
                    messageBody +=posmData.PG01_POSM_Product2Id__r.PG01_POSM_Channel__c+'</td><td nowrap>'+posmData.PG01_POSM_Product2Id__r.PG01_POSM_Type__c+'</td><td nowrap>'+posmData.PG01_POSM_Product2Id__r.PG01_POSM_SubType__c+'</td><td nowrap>'+posmData.PG01_POSM_Product2Id__r.PG01_POSM_Size__c+'</td><td nowrap>'+posmData.PG01_POSM_Product2Id__r.PG01_POSM_Artwork__c+'</td></tr>';   
                }

Thanks,
Sravan