• Mohamed Azarudeen
  • NEWBIE
  • 10 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 4
    Replies
1) How can I create bigobjects in SFDC? As per documentation, itis available in create-> bigobjects.. but it is not available.
2) where will bigobjects records are stored? what is the cost for 1 gb? 

​currently I have below storage in my prod system.

2015 - 100 GB
2016 - 100 GB
2017 - 75 GB

we want to delete 2015 and 2016 records in sfdc and also we need to create  a Data Archival for 2015 and 2016 Datas for report purpose. because we paid to sfdc for last 3 years. Do you havre any suggestion  back up and archival of sfdc data?

Is bigobject really useful for this scenario?  How many GB will reduced? How will i enable Bigobject in my production and sandbox?
1) How can I create bigobjects in SFDC? As per documentation, itis available in create-> bigobjects.. but it is not available.
2) where will bigobjects records are stored? what is the cost for 1 gb? 
 
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js" djConfig="parseOnLoad: true,
modulePaths: { 'dojo': 'https://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo',
'dijit': 'https://ajax.googleapis.com/ajax/libs/dojo/1.5/dijit',
'dojox': 'https://ajax.googleapis.com/ajax/libs/dojo/1.5/dojox' } "> </script>

<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/dojo/1.5/dijit/themes/claro/claro.css" />

Queries:
How to use below java script in static Resource Code?
Where will i download and put in to static resorce? and also mose of link as 404 not found eror.

Please help me for this issue
<apex:page renderAs="pdf"   >
<html>
<head>


<!--[if IE]>
   <style>
      .rotate_text
      {
         writing-mode: tb-rl;
         filter: flipH() flipV();
      }
   </style>
<![endif]-->
<!--[if !IE]><!-->


     <style>
       .rotate_text
      {
         -moz-transform:rotate(-90deg);
         -moz-transform-origin: top left;
         -webkit-transform: rotate(-90deg);
         -webkit-transform-origin: top left;
         -o-transform: rotate(-90deg);
         -o-transform-origin:  top left;
          position:relative;
        
      }
   </style>
<!--<![endif]-->
   <style> 
      table
      {
       
         table-layout: fixed;
         width: 69px; /*Table width must be set or it wont resize the cells*/
      }
      th, td
      {
          border: 1px solid black;
          width: 23px;
      }
      .rotated_cell
      {
         height:50px;
         vertical-align:bottom
      }
   </style>
  
</head>

<body>
   <table border='1'>
      <tr>
         <td class='rotated_cell'>
            <div class='rotate_text'>Test1</div>
         </td>
         <td class='rotated_cell'>
            <div class='rotate_text'>Test2</div>
         </td>
         <td class='rotated_cell'>
            <div class='rotate_text'>Test3</div>
         </td>
      </tr>
      <tr><td>X</td><td>X</td><td>X</td></tr>
      <tr><td>X</td><td>X</td><td>X</td></tr>
      <tr><td>X</td><td>X</td><td>X</td></tr>
      <tr><td>X</td><td>X</td><td>X</td></tr>
   </table>
   </body>
  </html>
</apex:page>
pageblock table or datatable header column display in transform: rotate(-90deg); . If any body have a code please share..


-90degrees
1) How can I create bigobjects in SFDC? As per documentation, itis available in create-> bigobjects.. but it is not available.
2) where will bigobjects records are stored? what is the cost for 1 gb? 
 
Hi All,
I am getting error as following : IN operator must be used with an iterable expression .
My code is : 
List<Task> ts1=[Select Id,WhoId from Task];
    for(Task ts2 : ts1){
    Map<ID, Obj1__c> mapAccounts = new Map<ID, Obj1__c>([SELECT Id, Name, Filed1__c  FROM Obj1__c WHERE                                                                                                               Field1__r.Id IN: ts2.whoId]);
}
Filed1__c is lookup to account.
How to resolve this?

Thanks in Advance
pageblock table or datatable header column display in transform: rotate(-90deg); . If any body have a code please share..


-90degrees