• Anni
  • NEWBIE
  • 25 Points
  • Member since 2011

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 6
    Questions
  • 6
    Replies
Hi All,

I am creating community tabs with the custom visualforce page, here am facing difficulty in embedding the visualforce page to the community through community builder. Please anyone can help me to sort out this issue. I am using NAPILI template for community.

Regards,
Anni
  • May 06, 2016
  • Like
  • 0
Can we implement complex datastructures in apex
  • March 11, 2016
  • Like
  • 0

Hi All,

 

 

I need to write a trigger to update the Task Status to 'Completed' . when the Lead is converted to Opportunity.

Please help me to sort out this issue

 

regards,

Anni

 

 

  • December 04, 2012
  • Like
  • 0

Hi  All,

 

I  have written a trigger in Leads to convert the Leads from WEB-TO-LEAD   to  Contacts/Accounts.

But i dont know how to write a trigger to convert from contact to portal user. The event should be After insert.

Please anybody help me to sort out this issue.

 

regards,

Anni

  • June 12, 2012
  • Like
  • 0

hi every body,

I heard about Siteforce and want to build a site.I want to use Siteforce in my developer or sandbox account. Can anybody help me how to do that. If it is not relesed yet, then please tell me when its going to release.

THANKS IN ADVANCE

  • September 26, 2011
  • Like
  • 0

Hi all, can anybody help me in resolving the following problem:

  

can we convert Custom report to Tabs? in my Sandbox, if there is any solution please let me know

  • July 20, 2011
  • Like
  • 0

Hi All,

 

 

I need to write a trigger to update the Task Status to 'Completed' . when the Lead is converted to Opportunity.

Please help me to sort out this issue

 

regards,

Anni

 

 

  • December 04, 2012
  • Like
  • 0

Hi  All,

 

I  have written a trigger in Leads to convert the Leads from WEB-TO-LEAD   to  Contacts/Accounts.

But i dont know how to write a trigger to convert from contact to portal user. The event should be After insert.

Please anybody help me to sort out this issue.

 

regards,

Anni

  • June 12, 2012
  • Like
  • 0

Hi all, can anybody help me in resolving the following problem:

  

can we convert Custom report to Tabs? in my Sandbox, if there is any solution please let me know

  • July 20, 2011
  • Like
  • 0

Hi

 

Can anyone help me find which jar includes the javax.servlet.annotation.WebServlet class and where I can download this jar?

 

Many thanks

 

 

Need help in code coverage for constructor with parameters(controller).
PScRMAExtension is EXTENSION
PScRMAExtension_v1  is CONTROLLER

/*
    *Class constructor
    */
    public PScRMAExtension(PScRMAExtension_v1 objext)
    {
        system.debug('$$$ <PScRMAExtension::PScRMAExtension>');
        parent_case_id = ApexPages.currentPage().getParameters().get('id');
        //parent_case_id = '50011000008KcEV';
        //currentInstance = this;
        //case_list = (Case)controller.getRecord();
        RMALineItemCnt = 0;
        show_RMA_list = FALSE;
        showAdvanceExchange = FALSE;
        show_flash_alert = FALSE;
        show_expired_contract_alert = FALSE;
        accept_expired_contact = FALSE;
        show_case_detail = FALSE;
        show_fru_detail = FALSE;
        asset_exists = FALSE;
        show_cli_grid = FALSE;
        show_asset_grid = TRUE;
        disable_save_btn = FALSE;
        show_add_line_item = FALSE;
        show_expired_Asset_alert =FALSE;
        isRMASLASameDay = false;
        isshowassetExipre=FALSE;
        isshowRMAexits =FALSE;
       
        //show_replacement_part_confirmation = FALSE;
        //accept_replacement_part = FALSE;

        RMA_line_item_wrapper_list = new List<PScRMALineItemsWrapper>();
        new_line_item_obj = new RMA_Line_Items__c();
        RMA_line_item_list = new List<RMA_Line_Items__c>();
        view_line_item_obj = new RMA_Line_Items__c();
        line_save_text = 'Add Line Item';
        obj_line_item_tosave = new List<RMA_Line_Items__c>();

        rmaAssignedRtName = '';
        primaryOwnerFld = '';
        secondaryOwnerFld = '';
        default_country = 'United States';

        //replacement_part_error_msg = '';
        system.debug('show_add_line_item1' + show_add_line_item);

        //stateList = new List<selectOption>();
        //stateList.add(new selectOption('', '--None--'));

        //system.debug('$$$ parent_case_id: ' + parent_case_id);
        if(parent_case_list == null)
        {
            parent_case_list = [ SELECT Account.Name, Account.Company_Name__c, Account.ShippingStreet, Account.ShippingCity, Account.ShippingState, Account.ShippingCountry, Account.ShippingPostalCode, Account.Phone, Account.Email__c, Contact.Name, Contact.MailingStreet, Contact.MailingCity, Contact.MailingState, Contact.MailingCountry, Contact.MailingPostalCode, Contact.Phone, Contact.Email, AccountId, ContactId, AssetId, CaseNumber, Subject, Description, Status, Priority, Severity__c, Serial_No__c, Platform__c, Product_Series__c, Ship_To_Account__c FROM Case WHERE Id = :parent_case_id ];
            account_id = parent_case_list.AccountId;
            asset_serial_no = parent_case_list.Serial_No__c;

            if(parent_case_list.Account.Company_Name__c != null)
            {
                account_name = parent_case_list.Account.Company_Name__c;
            }
            else
            {
                account_name = parent_case_list.Account.Name;
            }

            populateIB();
        }
        system.debug('$$$ parent_case_list: ' + parent_case_list);

        List<CreateCaseRT__c> ccRtList = CreateCaseRT__c.getAll().values();
        if(ccRtList.size() > 0)
        {
            for(CreateCaseRT__c t : ccRtList)
            {
                if(t.Case_Trans_Type__c == system.label.RMA_Transaction_Type)
                {
                    rmaAssignedRtName = t.Name;
                }
            }
        }

        getFlashAlerts();
        RMALineItemDetails();
        getReplacementPart();
        getRMALineItemCnt();
        
        system.debug('in PScRMAExtension show_cli_grid ' + show_cli_grid);
        system.debug('in PScRMAExtension show_asset_grid ' + show_asset_grid);
    }
  • March 11, 2016
  • Like
  • 1