• JHA
  • NEWBIE
  • 25 Points
  • Member since 2009

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 26
    Questions
  • 41
    Replies

While writing i can't use insert code,insert image functionality, getting error below. im using internet explorer 6. Its working fine with  some where else. what settings i need to change... any suggestion?

 

Tnx.

 

line : 10
char :1
error : 'tinyMCEPopup' is undefined


line : 2
char : 1
error : 'tinyMCE' is undefined

Message Edited by JHA on 02-02-2010 04:32 AM
  • February 02, 2010
  • Like
  • 0

I have few query regarding packages, plz clarify..

 

1) I have created a managed package and aslo installed it but wen im trying to reinstall it,it says to uninstall then install again. its fine but im facing the same thing,in case package is unmanaged.so wats the difference as per this contaxt.

 

2) I have inclued one VF page in managed package and installed it. when im going to setup->develop->pages. i can view my script there! I want to know if i use any apex class, it will be also viewed  as my VF page script or not??

 

if so, i think anyone can copy code and do destructive changes,right? so, isn't there any way dat one can use apps but cant view exact code?

 

3) unmanaged package 1:1 Distribution  means, the link can be used to install only once or what? 

 

Plz clarify with some  practicle facts.....

 

Thanks.

 

  • January 29, 2010
  • Like
  • 0
public class MileageUtil {

static final Integer MAX_MILES_PER_DAY = 500;
public static void areMilesAllowed(accelerantforce__Mileage__c[] miles) {
Double totalMiles = 0;
String createdbyId = UserInfo.getUserId();
 
for(accelerantforce__Mileage__c mq:[SELECT miles__c FROM accelerantforce__Mileage__c
WHERE Date__c = TODAY
AND accelerantforce__Mileage__C.createdById = :createdbyId
AND accelerantforce__miles__c != null]) {
totalMiles += mq.miles__c;
}
 
for (accelerantforce__Mileage__c m:miles) {
totalMiles += m.miles__c;
if(totalMiles > MAX_MILES_PER_DAY)
m.addError('Mileage request exceeds daily limit: ' + MAX_MILES_PER_DAY);
}
}
}

Anyone can plz help me out to write test method for above code?

 

Thanks.

  • January 29, 2010
  • Like
  • 0

i need some clarification about approval.

 

say one user entered some record,which required approval by his manager.

 

i jst want to know why we need approval ?

 

One thing i noticed,its locks untill manager unlock it, what else ?? 

 

  

 

  • January 13, 2010
  • Like
  • 0

Anyone can you please explain

 

1)what is appexchange?

 

2)what is sandbox (test enviroment) and production. wats difference between these two?  

 

3) How testmethod relates to sandbox and also to production?

 

 

Thanks

Message Edited by JHA on 01-12-2010 05:02 AM
  • January 12, 2010
  • Like
  • 0

// Method

 

public pagereference showmsg(){
//ApexPages.addMessage(new ApexPages.message(ApexPages.severity.INFO,'asdf'));
system.debug('asdfasdf');
return null;
}

Im calling above method on button click but can't see any result!

 

 setup->monitor->log

 system Log  link near setup.

 

I cant figure out anything here also.

 

can anyone please let me know how to  use

 

system.debug('asdf') and also how to debug apex code?

 

 

Any one can please help!!

 

 

 

  • January 12, 2010
  • Like
  • 0

I have a 2 custom object 1 for customer and other for product.i just wan to retrieve all the possible combination of customer and product, say one customer relates to all product.

 

if i have 2 customer a,b
            3  product    c,d,e
 
i want following combination 


                               Customer     product
                                       a                  c
                                        a                  d
                                        a                  e
                                        b                  c     
                                        b                   d
                                        b                   e

but none of my query belows working fine can anyone please correct my query, there is no relation between customer and product objects.

 

Select  Name,(select name  from newproduct__c)  FROM NewCustomer__c

 

Select  Name, newproduct__r.name   FROM  newcustomer__c. 

 

 

  • January 04, 2010
  • Like
  • 0

Anyone can have help me with some code or refrence link of child wrapper class use and implementation.

 

Thanks.

  • December 30, 2010
  • Like
  • 0

All i need to design UI page in given below scenario. 

say i have customer and product master. i want combination of 1 customer and all product , for all customers.

 

if i have 2 customer a,b

            3  product    c,d,e

 

i want following combination on page load of my UI

 

                               Customer     product

                                       a                  c

                                        a                  d

                                        a                  e

                                        b                  c     

                                        b                   d

                                        b                   e

im able to get customer in one list and product on other list but cant able to  desing wrapper class and merge those list on that object.

 

My code piece is below

 

// controller public with sharing class ForecastController{ private List<newcustomer__c> Customer; Private List<newproduct__c> Product; public List<newcustomer__c> getCustomer() { Customer=[SELECT name FROM newcustomer__c a ]; return Customer; } public List<newproduct__c> getProduct() { Product=[SELECT name FROM newproduct__c a ]; return Product; } } //Page <apex:page controller="ForecastController"> <apex:form > <apex:pageBlock title="Forecast Entry Form"> <apex:pagemessages /> <apex:pageblockButtons > <apex:commandButton Value="Save" /> <apex:commandButton value="Cancel" /> </apex:pageblockButtons> <apex:pageblockSection > <apex:dataTable value="{!Customer}" var="a" styleClass="list"> <apex:column > <apex:facet name="header">Customer Name</apex:facet> <apex:inputfield value="{!a.name}" /> </apex:column> <apex:column > <apex:facet name="header"> <div align="left"> Month1 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" /> </apex:column> <apex:column > <apex:facet name="header"> <div align="left"> Month2 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" /> </apex:column> </apex:datatable> </apex:pageblockSection> </apex:pageBlock> </apex:form> </apex:page>

 

 

   Anyone can please help ? Thanks!

  • December 29, 2010
  • Like
  • 0

I need to pass text box value from UI page to controller to get it save.

  

anyone can please help me out!

 

 

Thanks

  • December 28, 2010
  • Like
  • 0
 

 

I have following piece of code giving error on save click. "System.NullPointerException: Attempt to de-reference a null object error"

 

Any one having idea please help me out.

 

-================================================ Control code ================================================= public with sharing class TestForecastExtension { public TestForecastExtension (ApexPages.StandardController controller) { } private List<forecast_entry__c> forecasts; private List<forecast_entry__c> fcwrapperList; public List<foreCastWrapper> getForecastRecords() { List<foreCastWrapper> fcwrapperList = new List<foreCastWrapper> (); for(Forecast_entry__c fc : [SELECT a.Customer_name__c,a.item_name__c,a.month__c,a.forecast_qty__c,a.contact__c FROM forecast_entry__c a ]) { fcwrapperList.add(new foreCastWrapper(fc)); } return fcwrapperList;} class foreCastWrapper { public forecast_entry__c fc {get; set;} public String month1 {get; set;} public String month2 {get; set;} public String month3 {get; set;} public String month4 {get; set;} public String month5 {get; set;} public String month6 {get; set;} public String month7 {get; set;} public String month8 {get; set;} public String month9 {get; set;} public String month10 {get; set;} public String month11 {get; set;} public String month12 {get; set;} public foreCastWrapper(forecast_entry__c fc) { this.fc = fc; } } public List<forecast_entry__c> getForecasts() { forecasts =[SELECT a.Customer_name__c,a.item_name__c, a.month__c,a.forecast_qty__c,a.contact__c FROM forecast_entry__c a ]; return forecasts; } Public pagereference getUpdateData(){ update fcwrapperList; return null; } Public pagereference getUpdateData1(){ update forecasts; return null; } }

 

 

 

====================================== Page UI ====================================== <apex:page standardController="Forecast_Entry__c" extensions="TestForecastExtension" > <apex:form > <script type="text/javascript"> function displaymessage() { alert("Testing Javascript!"); } </script> <apex:pageBlock title="Forecast Entry Form"> <apex:pagemessages /> <apex:pageblockButtons > <apex:commandButton Value="Save" action="{!getUpdateData}" /> <apex:commandButton value="Cancel" onclick="displaymessage()"/> </apex:pageblockButtons> <apex:pageblockSection > <apex:dataTable value="{!ForecastRecords}" var="fcc" styleClass="list"> <apex:column > <apex:facet name="header">Customer Name</apex:facet> <apex:inputfield value="{!fcc.fc.Customer_Name__c}" /> </apex:column> <apex:column > <apex:facet name="header">Item Name</apex:facet> <apex:inputfield value="{!fcc.fc.Item_Name__c}"/> </apex:column> <apex:column > <apex:facet name="header"> <div align="center"> Month1 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="{!fcc.month1}" /> </apex:column> <apex:column > <apex:facet name="header"> <div align="center"> Month2 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="{!fcc.month2}" /> </apex:column> <apex:column > <apex:facet name="header"> <div align="center"> Month3 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="{!fcc.month3}" /> </apex:column> </apex:datatable> </apex:pageblockSection> </apex:pageBlock> </apex:form> </apex:page>

 

 

 

 

 

Thanks,

  • December 16, 2009
  • Like
  • 0

Is it possible to get as many number of combobox in UI as we have combination of one customer to each product.say if i have one customer and 4 product.it should display as below in lookup format.

 

customer1    product1

customer2    product2

customer3    product3

customer4    product4 

 

Anyone having idea,can please share.

 

 

Thanks,

 Jha

  • December 15, 2009
  • Like
  • 0

Hi all,

 

I need to design a page basically a entry form where customer,item is coming from their respective master and having months from jan to dec.

 

User will put the forecast qty below months with respect to customer and item.

 

It should view somewat lke below

 

 

Customer            Products            Jan   Feb  Mar  Apr   ...........................Dec

abc                       mno

xyz                       kst

pqr                        rpt

 

    Save   Edit  Cancel

 

 

anyone having any idea with sample code please hlep me out.

 

I have tried many ways but no use.please refer my earlier postings @

http://community.salesforce.com/sforce/board/message?board.id=Visualforce&thread.id=19379&view=by_date_ascending&page=1

 

http://community.salesforce.com/sforce/board/message?board.id=Visualforce&thread.id=19379&view=by_date_ascending&page=2 

 

I will be vry much thankful to him.

 

Thanks,

 Jha

  • December 12, 2009
  • Like
  • 0

Hi,

 

I want to create a simple UI form  having  some <apex:inputtext > not <apex:inputfield> and save button.

 

 i need to save data using that UI to database.

 

 

what will be code for UI as well controller? how to pass inputtext value to my controller and then saved?

 

Thanks in anticipation of your valuable response.

 

 

Regards,

 Jha

  • December 10, 2009
  • Like
  • 0

I feel a need of control,something lke datagrid in salesforce so that i can fill the datagrid from database,make changes and again using loops save all the data once.

 

Is there any control or functionality provided by salesforce.

 

 

Thanks,

  Jha

  • December 09, 2009
  • Like
  • 0

Is anyone there who knows,how to code to get some data saved in databasec on button click event .I hve custom UI page having some fields and save button.i want the save functionality.

 

 

 

Thanks,

  jha

  • December 08, 2009
  • Like
  • 0

Hi all,

 

 I need a help to create a UI page,requirement is somewhat like

 

 when user open the same page it should have all customername,productname  filled already and able to fill the forecast qty below the months for jan,feb,mar........dec.finally click the save button to save all records at once in table having fields

 

Customername,productname,month,forecastqty with their respective values.

 

i have designed the page and able to enter the forecast qty also below the months but my problem is this that i cant save all the data at one time..... my UI code and page display is below

 

<apex:page standardController="Forecast_Entry__c" extensions="ForecastEntryExtension" > <apex:form > <h1>Sales Forecast</h1> <apex:pageBlock > <apex:pageBlockSection title="Forecast Records"> <div> <apex:dataTable value="{!ForecastRecords}" var="fc" styleClass="list"> <apex:column > <apex:facet name="header">Customer Name</apex:facet> <apex:inputField value="{!fc.Customer_Name__c}"/> </apex:column> <apex:column > <apex:facet name="header">Item Name</apex:facet> <apex:inputfield value="{!fc.Item_Name__c}"/> </apex:column> <apex:column > <apex:facet name="header"> <div align="center"> Month1 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"> <div align="center"> Month2 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"> <div align="center"> Month3 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month4 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month5 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month6 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month7 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month8 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month9 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month10 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month11 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month12 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> </apex:datatable> </div> <div> <td align="right"> <input value=" Save " class="btn" name="save" title="Save" type="submit" /> <input value=" Cancel " class="btn" name="Cancel" title="Cancel" type="submit" /> </td> </div> </apex:pageBlockSection> </apex:pageBlock> <apex:detail ></apex:detail> <apex:detail subject="{!Forecast_Entry__c.Customer_Name__c}" relatedList="false" /> </apex:form> </apex:page>

 

 

 

 

 

Customer    Product       Jan           Feb           Mar       Apr ........................    Dec

 abc               xyz          100           90                                                         20

 abc               pqr           30                             20

 mno              xyz                                                      40

 

 

 

                                         Save   Cancel

 

 

 

 

 

Is there any such control available already by salesforce?? if not how to save data at once from my this page?

 

All is i need a save functionality code.

 

 

any help will be greatly appreciated... Please help me out in terms of code....

 

 

Thanks,

  Jha

Message Edited by JHA on 12-07-2009 05:20 AM
  • December 07, 2009
  • Like
  • 0

Hi all,

  

I have created a custom UI page having customer,product and  months jan to dec as column.user select customer,product and enter forcast qty monthwise.say

 

Customer    Product    Jan    Feb   Mar   Apr ........................ Dec

 abc               xyz        100   90                                            20

 abc               pqr         30              20

 mno              xyz                                40

 

 i want after making entries ,he press Save button an all data should saved in table having column customer,product,month,forecastqty at one time.

 

All is i want user interface where user enter customer,product and montly forecastqty and save at one time.Basically i want to know how to bulk save using values from my above designed UI.

 

 i have created UI using datatable and simply adding columns to that datatable,all my product and customer is comming from customer and product table.Do we have any pre-designed component for such type of requirement?

 

 Thanks,

   Jha

 

 

  

 

 

 

 

  • December 04, 2009
  • Like
  • 0

 Hi there!

 

I have a entry form containing

 

customer Name      lookup relationship

item name              lookup relationship

month                    combo having month frm jan to dec

forecast qty            text field

 

i made some entries and then created UI page with following code:

 

 

<apex:page standardController="Forecast_Entry__c" extensions="ForecastEntryExtension" > <h1>Sales Forecast</h1> <apex:pageBlock > <apex:pageBlockSection title="Forecast Records"> <apex:dataTable value="{!ForecastRecords}" var="fc" styleClass="list"> <apex:column > <apex:facet name="header">Customer Name</apex:facet> <apex:outputField value="{!fc.Customer_Name__c}"/> </apex:column> <apex:column > <apex:facet name="header">Item Name</apex:facet> <apex:outputField value="{!fc.Item_Name__c}"/> </apex:column> <apex:column > <apex:facet name="header">Month1</apex:facet> <apex:outputText value="{!fc.Forecast_Qty__c}" rendered="{!fc.Month__c='Month1'}" style="font-weight:bold;color:red " /> </apex:column> <apex:column > <apex:facet name="header">Month2</apex:facet> <apex:outputText value="{!fc.Forecast_Qty__c}" rendered="{!fc.Month__c='Month2'}" style="font-weight:bold;color:green " /> </apex:column> <apex:column > <apex:facet name="header">Month3</apex:facet> <apex:outputText value="{!fc.Forecast_Qty__c}" rendered="{!fc.Month__c='Month3'}" style="font-weight:bold;color:blue " /> </apex:column> </apex:datatable> </apex:pageBlockSection> </apex:pageBlock> <apex:detail ></apex:detail> <apex:detail subject="{!Forecast_Entry__c.Customer_Name__c}" relatedList="false" /> </apex:page>

 

 I want the column header should be dynamic and automatically set as per distinct month available in table data during page display. In my code it is code dependent for month1 to month3. but sometime data can  be for month1 to month2 ,sometime month1 to month4 and so on....  i want this part should be dynamic not pre-coded.

 

All is to add column,its header and value dynamically.....Please help in terms of code.

 

 

 

 

 

Any help will be heartly welcomed.

 

 

Thanks,

  Jha

 

 

 

 

  • December 03, 2009
  • Like
  • 0

Hi there,

 

I have created a report using salesforce reporting tool but by default the Header of column in report is same as my fields name in database.i want to customize it  say if i have field name "Total_Qty" as field name but i want to display "Total Quantity" as column header in report. please help....

 

 

 

 

 

Thanks,

  Jha

Message Edited by JHA on 12-01-2009 04:43 AM
  • December 01, 2009
  • Like
  • 0

I have few query regarding packages, plz clarify..

 

1) I have created a managed package and aslo installed it but wen im trying to reinstall it,it says to uninstall then install again. its fine but im facing the same thing,in case package is unmanaged.so wats the difference as per this contaxt.

 

2) I have inclued one VF page in managed package and installed it. when im going to setup->develop->pages. i can view my script there! I want to know if i use any apex class, it will be also viewed  as my VF page script or not??

 

if so, i think anyone can copy code and do destructive changes,right? so, isn't there any way dat one can use apps but cant view exact code?

 

3) unmanaged package 1:1 Distribution  means, the link can be used to install only once or what? 

 

Plz clarify with some  practicle facts.....

 

Thanks.

 

  • January 29, 2010
  • Like
  • 0

Anyone can you please explain

 

1)what is appexchange?

 

2)what is sandbox (test enviroment) and production. wats difference between these two?  

 

3) How testmethod relates to sandbox and also to production?

 

 

Thanks

Message Edited by JHA on 01-12-2010 05:02 AM
  • January 12, 2010
  • Like
  • 0

// Method

 

public pagereference showmsg(){
//ApexPages.addMessage(new ApexPages.message(ApexPages.severity.INFO,'asdf'));
system.debug('asdfasdf');
return null;
}

Im calling above method on button click but can't see any result!

 

 setup->monitor->log

 system Log  link near setup.

 

I cant figure out anything here also.

 

can anyone please let me know how to  use

 

system.debug('asdf') and also how to debug apex code?

 

 

Any one can please help!!

 

 

 

  • January 12, 2010
  • Like
  • 0

I have a 2 custom object 1 for customer and other for product.i just wan to retrieve all the possible combination of customer and product, say one customer relates to all product.

 

if i have 2 customer a,b
            3  product    c,d,e
 
i want following combination 


                               Customer     product
                                       a                  c
                                        a                  d
                                        a                  e
                                        b                  c     
                                        b                   d
                                        b                   e

but none of my query belows working fine can anyone please correct my query, there is no relation between customer and product objects.

 

Select  Name,(select name  from newproduct__c)  FROM NewCustomer__c

 

Select  Name, newproduct__r.name   FROM  newcustomer__c. 

 

 

  • January 04, 2010
  • Like
  • 0

I need to pass text box value from UI page to controller to get it save.

  

anyone can please help me out!

 

 

Thanks

  • December 28, 2010
  • Like
  • 0

Hi all,

 

 I need a help to create a UI page,requirement is somewhat like

 

 when user open the same page it should have all customername,productname  filled already and able to fill the forecast qty below the months for jan,feb,mar........dec.finally click the save button to save all records at once in table having fields

 

Customername,productname,month,forecastqty with their respective values.

 

i have designed the page and able to enter the forecast qty also below the months but my problem is this that i cant save all the data at one time..... my UI code and page display is below

 

<apex:page standardController="Forecast_Entry__c" extensions="ForecastEntryExtension" > <apex:form > <h1>Sales Forecast</h1> <apex:pageBlock > <apex:pageBlockSection title="Forecast Records"> <div> <apex:dataTable value="{!ForecastRecords}" var="fc" styleClass="list"> <apex:column > <apex:facet name="header">Customer Name</apex:facet> <apex:inputField value="{!fc.Customer_Name__c}"/> </apex:column> <apex:column > <apex:facet name="header">Item Name</apex:facet> <apex:inputfield value="{!fc.Item_Name__c}"/> </apex:column> <apex:column > <apex:facet name="header"> <div align="center"> Month1 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"> <div align="center"> Month2 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"> <div align="center"> Month3 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month4 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month5 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month6 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month7 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month8 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month9 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month10 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month11 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> <apex:column > <apex:facet name="header"><div align="center"> Month12 </div> </apex:facet> <input maxlength="80" name="sbstr" size="3" type="text" value="" /> </apex:column> </apex:datatable> </div> <div> <td align="right"> <input value=" Save " class="btn" name="save" title="Save" type="submit" /> <input value=" Cancel " class="btn" name="Cancel" title="Cancel" type="submit" /> </td> </div> </apex:pageBlockSection> </apex:pageBlock> <apex:detail ></apex:detail> <apex:detail subject="{!Forecast_Entry__c.Customer_Name__c}" relatedList="false" /> </apex:form> </apex:page>

 

 

 

 

 

Customer    Product       Jan           Feb           Mar       Apr ........................    Dec

 abc               xyz          100           90                                                         20

 abc               pqr           30                             20

 mno              xyz                                                      40

 

 

 

                                         Save   Cancel

 

 

 

 

 

Is there any such control available already by salesforce?? if not how to save data at once from my this page?

 

All is i need a save functionality code.

 

 

any help will be greatly appreciated... Please help me out in terms of code....

 

 

Thanks,

  Jha

Message Edited by JHA on 12-07-2009 05:20 AM
  • December 07, 2009
  • Like
  • 0