• Moha
  • NEWBIE
  • 119 Points
  • Member since 2013
  • software engineer
  • EventCatayst

  • Chatter
    Feed
  • 4
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 27
    Questions
  • 93
    Replies
hi guys,
does anyone know something about ISV Customer Community Members licenses ? if there is a link or a document it would help a lot.
thanks :)

hello, i'm using <apex:repeat> in my visualforce page and i want  the results to be displayed like this : 

1   2   3

and with <apex:reapeat> they are diplayed like that : 

1

2

3

i tried to implement <apex:panelgrid> but it's not working anyhelp please

this is my VF Code : 

 

<apex:page cache="false" sidebar="true" showHeader="true" controller="xxxxx">

<apex:pageBlock title="SAMPLE - Custom xxxx" >

<apex:repeat value="{!DashName}" var="oneName">
<apex:pageBlockSection columns="3">
<apex:outputPanel layout="block" style="width: 25%; float: left;">
<apex:panelGrid columns="2">

<apex:pageBlockSectionItem >
<c:GoogleChartComponent dashboardName1="oneName.Name" />
</apex:pageBlockSectionItem>
<apex:pageBlockSectionItem >
<c:GoogleChartComponent dashboardName1="oneName.Name"/>
</apex:pageBlockSectionItem>
</apex:panelgrid>
</apex:outputPanel>

</apex:pageBlockSection>
<apex:pageBlockSection columns="2">
<apex:outputPanel layout="block" style="width: 25%; float: left;">
<apex:panelGrid columns="1">

<apex:pageBlockSectionItem >
<c:GoogleChartComponent dashboardName1="{!oneName.Name}"/>
</apex:pageBlockSectionItem>

</apex:panelgrid>
</apex:outputPanel>
</apex:pageBlockSection>
</apex:repeat>
</apex:pageBlock>
</apex:page>

Hello, i've deployed my package in a dev org, but some problems remains, as example i cannot acces a record on a list of a customized object, it gives me SOQL query, but when i try to do that in my production environement it wroks fine,

anyhelp please i need help

Hello, i would like to log a Case to Salesforce support team, but it's not possible it gives me a loop when i go to Help ==>customer support ==> Case

Hello everyone, i'm tryuing to upload a beta managed package, when i want to upload it gives me the error : 

 

Average test coverage across all Apex Classes and Triggers is 24%, at least 75% test coverage is required.

 

and when i go to the ApexClasses List and i run all  test then i click on Code Coverage it gives me 75%, it means i can upload but i dont have the possibility do to the error i wrote above

 

anyhelp please, thank you

hello i have this method : 

public string getViewEmailsReport()
{
logo = 'Reportlogo';
lstDocument = [Select Id,Name,LastModifiedById from Document where Name = :logo limit 1];
strOrgId = UserInfo.getOrganizationId();
String instance =URL.getSalesforceBaseUrl().toExternalForm();
strDocUrl = instance + '/servlet/servlet.FileDownload?file='+lstDocument[0].Id;
return strDocUrl ;
}

and i wrote a test method for it :

public string getViewEmailsReport()
{
logo = 'Reportlogo';
lstDocument = [Select Id,Name,LastModifiedById from Document where Name = :logo limit 1];
strOrgId = UserInfo.getOrganizationId();
String instance =URL.getSalesforceBaseUrl().toExternalForm();
strDocUrl = instance + '/servlet/servlet.FileDownload?file='+lstDocument[0].Id;
return strDocUrl ;
}

 

but it gives me an error : 

System.ListException: List index out of bounds: 0

 

 

anyhelp please

I'm trying to show or hide a <tr> HTML tag inside an apex:repeat, but can't find a way where SFDC will save the code without error. Basically I'm building a table and want to start a new <tr> if a certain condition is met (item number mod 3 = 0, so create a new row when the table row has three cells). Attached is a simplifed example, but it shows what I'm trying to do.

 

Note: I can't use an apex:panelGroup because I have nested repeaters in each "column".

 

Thanks!

 

Controller:

public with sharing class TestBuildTable {
	public List<Integer> Ints {get;set;}
	
	public TestBuildTable() {
		this.Ints = new List<Integer>();
		for (Integer i=0; i<20; i++) {
			this.Ints.add(i);
		}
	}
}

 

VF page first try (fail):

<apex:page id="TestBuildTable" Controller="TestBuildTable">
  <table>
    <apex:repeat value="{!Ints}" var="int">
	  {!IF(MOD(int,3)==0,'<tr>',' ')}
	    <td>{!int} nested repeat here</td>
	  {!IF(MOD(int,3)==0,'</tr>',' ')}
	</apex:repeat>
  </table>
</apex:page>

 

VF page second try (fail):

<apex:page id="TestBuildTable" Controller="TestBuildTable">
  <table>
    <apex:repeat value="{!Ints}" var="int">
	  <apex:outputPanel rendered="{!MOD(int,3)==0}" layout="none"><tr></apex:outputPanel>
	    <td>{!int}</td>
	  <apex:outputPanel rendered="{!MOD(int,3)==0}" layout="none"></tr></apex:outputPanel>
	</apex:repeat>
  </table>
</apex:page>

 

The desired result is a table that looks like this:

1    2    3

4    5    6

7    8    9

10 11 12

13 14 15

Hi All,

 

I work with an ISV Partner who has a developer org where a managed package is updated / upgraded / tested and then uploaded "privately' to the exchange for a set of clients to install.

 

The orgs that install my package have the standard EE limits applied to them.

 

Herein lies the issue I have come across, whilst doing some development a new TAB was inadvertently added to the managed package and subsequently uploaded as a 'managed - released' package. It took the custom TABS within the managed package to 26.

 

This as you can see has caused HUGE implications across the current install base and for new clients. The package is constantly being updated / customised to suit clients needs and updates are continously being pushed however now that it has 26 TABS it will not install on any of the orgs as it reaches the 25 custom tab limit.

 

I REALLY NEED HELP BRAINSTORMING SOME POSSIBLE SOLUTIONS!!!

 

As I see it there are a range of possibilities and I look to any sf reps / partner ops / product managers subject matter experts out there to let me know what is feasible.

 

IDEAL SOLUTION - Since the tab that has been added is not installed on any clients org (it physically cannot be because of the limit on the install orgs, developer org doesn't have a tab limit) - I'm looking for an overall package admin or someone that can reference or edit the package I have created and manually remove the tab from it altogether. It can be deleted from the salesforce developer instance altogether I don't care it's not needed at all! Support tells me it cannot be deleted but someone out there must have access to it!!

Is there a way to 'rollback' to a previous package version that only had 25tabs in it's managed set>? And then be able to delete the 25th tab somehow completely from the developer org?

 

Other options include:

 

Going through the LMA process and getting the application security checked so that it's contents do not affect sf org limits. This is obviously primary concern right now however the whole process could take up to 2-3 weeks which is time we don't have! This problem needed to be sorted out YESTERDAY!

 

Upgrading provisions on future clients and current installbase so that orgs can install apps with more than 25 tabs. (i.e. increase tab limit)

 

I really need to know if the ideal solution is feasible here as that would be well... Ideal. But I'm interested to see if anyone has any other suggestions.

TIME IS A FACTOR. There are new clients coming on board this week and next not to mention the current install base that is catered for in package updates so this really needs to get sorted out.

 

As always any help is much appreciated. Thanks in advance for any reads of this post.

 

Patrick