• Madhu SFDC Phoenix
  • NEWBIE
  • 0 Points
  • Member since 2014
  • Phoenix

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

In My org i have created a read only user. This read only user is having the read only permissions on product object but i am not able to see the products when logged in with read only user

Regards
Suresh S
hi,

I have a vf page. I am calling rerender from action function. But the Rerender doesnt work
<apex:form>
<div class="panel-group" id="FromAction">
    <apex:outputPanel id="projectcomp">
    <apex:actionstatus id="counterStatus">
        <apex:facet name="start">
            <div class="waitingSearchDiv" id="el_loading" style="background-color: #fbfbfb;">
                <div class="waitingHolder">
                <img class="waitingImage" src="/img/loading.gif" title="Please Wait..." />
                <span class="waitingDescription">Loading...</span>
                </div>
            </div>
        </apex:facet>
        <apex:facet name="stop">
            <c:Rollouts pId="{!project.Id}" /> 
        </apex:facet>
    </apex:actionstatus>
    </apex:outputPanel> 
    <apex:actionFunction name="paraFunction1" status="counterStatus" reRender="projectcomp" />   
</div>
<apex:commandLink value="FOrmat Plans" onclick="getClusters();" oncomplete="paraFunction1();" /> 
</apex:form>
I'm tasked with creating an Opportunity Amount field Trigger to Roll-Up from Opportunity Products. How would I go about creating this trigger to roll up from Opportunity Products? Sample code would be awesome!

Sincerely,
Junior Developer!
Hi,

In My org i have created a read only user. This read only user is having the read only permissions on product object but i am not able to see the products when logged in with read only user

Regards
Suresh S
VF Page
-----------

                 <apex:pageblockTable value="{!users}" var="user" >                                                           
                         <apex:column width="20%">
                           <apex:facet name="header">Owner ID </apex:facet>                         
                            
                            <apex:commandlink value="Del" action="{!delCont}" rerender="" >
                               <apex:param name="contIdChosen"  value="{!user.UserOrGroupId}" assignTo="{!contIdChosen}"/>                         
                             </apex:commandlink>                            
                         </apex:column>                                    
                  </apex:pageblockTable>


class
=------

public PageReference delCont()
    {    
     system.debug('----------------------------------------Test Me------------------------------');
     Id id = System.currentPageReference().getParameters().get('contIdChosen');
     Scheme__Share toDel=new Scheme__Share(Id=contIdChosen );
     system.debug('----------Id is------------'+contIdChosen );     
     PageReference nextpage1 = new PageReference('/apex/share/WV_SharingDetails?parentId='+id);
     nextpage1.setredirect(true);
     return nextpage1;
    
    }


The method delCont  itself is not called inside pageblock.. If i place outside it it works fine but i need it inside pageblock..