Skip to main content

#Remote7 discussing

is there any place where i can do salesforce admin internship remotely? any useful information would be appreciated 

 

#Salesforce Admin

4 answers
  1. Jun 28, 2:05 PM

    I am also seeking Salesforce admin onsite| remote |  internship for non-profit organization. 

0/9000
3 answers
  1. Eric Burté (DEVOTEAM) Forum Ambassador
    May 11, 10:25 PM
0/9000

📢We're looking for a Remote Salesforce professionals!

 

Hello everyone, I wanted to share the following remote job openings at DX Foundation:  

Salesforce Solutions Architect ( #Manufacturing Cloud and #Agentforce) - Contractor (Remote)

 

https://www.applicantpro.com/openings/dxfoundation/jobs/4061944-989849

 

Solutions Architect ( #Service Cloud Voice) - Contractor (Remote)

 

https://www.applicantpro.com/openings/dxfoundation/jobs/4061966-989849

 

Salesforce Scrum Master (Agile Delivery) - Contractor (Remote)

 

https://www.applicantpro.com/openings/dxfoundation/jobs/4061928-989849

 

#MuleSoft Architect - Contractor (USA)

 

https://www.applicantpro.com/openings/dxfoundation/jobs/4062056-989849

 

 

Salesforce Solutions Architect ( #Financial Services Cloud) – USA (Remote)

 

https://www.applicantpro.com/openings/dxfoundation/jobs/4061984-989849

 

 

Salesforce Principal Architect - USA (Remote)

https://www.applicantpro.com/openings/dxfoundation/jobs/4061944-989849

 

 

 

#Jobs #Open Jobs #Remote

0/9000

Senior Automation Engineer – Few Good Geeks (Remote) 

 

Few Good Geeks is hiring a Senior Automation Engineer to design and implement practical AI-driven CRM and workflow automations that save measurable time for SMB and mid-market clients.

You’ll architect and build automation across Salesforce, and related tools — connecting systems, optimizing processes, and deploying scalable solutions that reduce manual work.

We’re looking for strong experience in CRM automation, APIs, integrations, and process optimization, with a product-minded, execution-focused approach.

 

Remote role. 

Apply here: 

https://fewgoodgeeks.com/career-details/senior-automation-engineer.html

 

#Job Postings

#Remote

0/9000

Job Title: Salesforce OmniStudio Developer

 

Location: Remote (US-based only)

Hourly Rate: $50-$60

Requirements: should have H1 visa or work permit. Candidates must be ready for a video interview.

 

Interested candidates should be prepared for a video interview and ensure they meet the required qualifications. Apply by submitting your resume on this email: reham.s@plumlogix.com

 

hashtag

#salesforce 

hashtag

#OmniStudio 

hashtag

#salesforceomnistudio 

hashtag

#remote 

hashtag

#USA 

hashtag

#salesforocedeveloper

0/9000

お世話になっております。

 

少々特殊な環境下で動作するVFページを実装しています。

動作環境の都合でJavascriptから値を取得する必要があり、Remote Actionを使用しました。

Apexでひとしきり処理を実行し、実行結果を文字列で返してalert()で出力したいと思っています。

検索やCopilotなどの助けを借りて下記JavascriptコードをVFに埋め込みました。

 

function method1(method){

// 環境特有の処理

method002(param1, param2).then(function(result){

alert(result);

}).catch(function(event){

alert(event.message);

});

}

function method2(param1, param2){

alert('No.1');

return new Promise(function(resolve, reject){

Visualforce.remoting.Manager.invokeAction(

'{!$RemoteAction.VisualforcePageController.apexRemoteActionMethod}',

param1,

param2,

function(result, event){

alert('No.2');

if (event.status) {

alert('No.3-1');

resolve(result);

} else {

alert('No.3-2');

reject(event);

}

},

{ buffer: true, escape: true, timeout: 30000 }

);

});

}

この状態でmethod1を実行したところalertが出力されるのですが、No.1のみ出力される場合とNo.3-1まで出力される場合が感覚ランダムで発生します。

Apex側に問題はなく、No.1のみの場合もNo.3-1まで実行された場合も想定されたメッセージが返されていることは確認できています。

No.3-1まで必ず実行できるようにするにはどうすればよいでしょうか。

 

また、このVFページにはapex:selectRadioが配置してあります(選択した値は別のJavascriptメソッド・変数経由でmethod2のparam2に入ります)。

method1実行後、画面上ではラジオボタンの選択がされたままなものの選択された値そのものは空、という状況になっております。

こちらの解消もしたいと思っているので、ご教示いただければと思います。

 

<apex:page controller="VisualforcePageController" standardStylesheets="true">

<apex:includeScript value="{!$Resource.JavascriptFile}"/>

<script>

var selectedValue = '';

function selectValue(value){

selectedValue = value;

}

</script>

<apex:outputPanel layout="block" style="">

<apex:form >

<apex:pageBlock >

<apex:pageBlockSection collapsible="false" columns="1">

<apex:selectRadio onchange="selectValue(this.value)" layout="pageDirection">

<apex:selectOptions value="{!selectList}"/>

</apex:selectRadio>

<apex:commandButton onclick="method1();" value="実行"/>

</apex:pageBlockSection>

</apex:pageBlock>

</apex:form>

</apex:outputPanel>

</apex:page>

2 answers
  1. Mar 12, 2024, 10:11 AM

    結局どうにもならなかったのでapex:actionFunctionに切り替えたところすんなりいきました。

    この4日間はいったい何だったのか…

     

    <apex:page controller="VisualforcePageController" standardStylesheets="true">

    <script>

    function executeApexMethod(){

    //環境特有の処理

    apexMethodFromJavascript(document.getElementById('formId').elements['radio'].value, javascriptValue);

    }

    </script>

    <apex:outputPanel id="panel" layout="block" style="text-align: center; width:280px; font-size: 80%;">

    <apex:pageMessages />

    <apex:form >

    <apex:pageBlock >

    <apex:pageBlockSection collapsible="false" columns="1">

    <apex:selectRadio value="{!selectedValue}" layout="pageDirection" id="radio">

    <apex:selectOptions value="{!selectList}"/>

    </apex:selectRadio>

    <apex:commandButton onclick="executeApexMethod(); return false;" value="処理実行"/>

    <apex:actionFunction name="apexMethodFromJavascript" action="{!apexRemoteActionMethod}" reRender="j_id0:panel">

    <apex:param name="param1" assignTo="{!selectedValue}" value=""/>

    <apex:param name="param2" assignTo="{!javascriptValue}" value=""/>

    </apex:actionFunction>

    </apex:pageBlockSection>

    </apex:pageBlock>

    </apex:form>

    </apex:outputPanel>

    </apex:page>

0/9000
3 comments
0/9000

Marketing Cloud Admin Position: Barnard College is finally making the transition to Salesforce Marketing Cloud for our email, social, and community engagement tools. If you or someone you know is a MC expert, it's high time you came to work for Barnard College! Posting is below! https://careers.barnard.edu/postings/6279

  ##Hiring #Jobs #Remote #Salesforce Marketing Cloud #NYCJobs

0/9000

350.org is hiring a remote Sr. CRM Specialist

If you have a few years of Salesforce admin experience under your belt, have a sound understanding of NPSP, are looking for a #remote position, and want to be part of an organization that is working to solve the climate crisis, please apply by January 15th.

 

Priority locations: East Coast - North America, South America, Africa, Caribbean, and Europe

0/9000

We are looking for a fully remote Marketing Automation Specialist who can execute Marketing campaigns in Salesforce Marketing Cloud.

 

For more details check out the full posting here: Marketing Automation Specialist Job Posting

 

If you have any questions, please do not hesitate to reach out to me! I would be happy to tell you more about my experience working on this team!

 

#Marketing Cloud Jobs

#RemoteJobs #Remote #Remote Opportunities

0/9000