Handling redirect in Vlocity Integration Procedure having response code of 307 – User friendly Tech help

Problem:-Clients api was having redirect policy on the server but its not handled by Vlocity integration procedure(IP), thus its failing with 307 response code n Solution:-  n n Error:- 307 Temporary Redirect n Inside IP create “Remote Action” to refer the Apex class and apex method, which handles the redirect 307 error. n Note:- This…

Naming conventions for various Vlocity components – User friendly Tech help

This is just a recommendation list, please feel free to share your thoughts and suggestions, to help others n n ClientName_VlocityAbbrevationComponentName n n n n SN n Type n Type-SuggestedPrefix n SuggestedName n n n 1 n VlocityOmniScript n DT_OsXXXX n Example: DT_OsShowUsers n n n 2 n VlocityIntegrationProcedure n DT_IpXXXX n Example: DT_IpGetUsersList n…

How to solve the issue with Resize of TextArea in IE using JQUERY? – User friendly Tech help

Requirement:- We need our TextArea should be flexible to be re-sized by user in Internet Explorer?nnSolution:-nWe followed the approach of JQuery to solve the problem.nnMethod:-nResizable nnWorking DemonCode:-nnnCSS:-n n n n n n CSS part n n n HTML:- n n n n n n HTML Code n n n JavaScript:- n n n n n n JavaScript n n…

QTP-11 Certification.(HP0-M47) – User friendly Tech help

n  Exam Preparation Guide n HP0-M47: HP Functional Testing 11.x Software n Introduction n This information is regarding QTP-11 certification (Full Name: – HP0-M47: HP Functional Testing 11.x Software) and its preparation. As per mine experience to crack this exam, person needs to have some hands on experience and thorough knowledge of Help guide (Provided…

Robot Framework- Working with Excel Library(Part-1) – User friendly Tech help

In part-1 we would discuss on Installing Excel Library to work with Robot Framework. n True Success is balance. For me, this means Health, Wealth, Happiness. n So I try and get 1% better each week in each of these areas. n Lets learn the robot framework integration with Robot Framework to enhance our skills….

Various methodologies to Kill running Process in Task Manager. – User friendly Tech help

Approach 1:- Without using UFT and we will simply create a .VBS file on the system and Run it. n ‘*******************************************Sub***************************************************’Function Name:- fn_KillMe’Function Description:- Kills the Given process using Run Command’Input Parameters:- sProcess,(Process Name)’Output Parameters:- Process Killed Message”**************************************************************************************************msgbox fn_KillMe(“Notepad.exe”)Public Function fn_KillMe(sProcess) On Error Resume Next Dim objShell,sStatus ‘Creating WSH object Set objShell = CreateObject(“WScript.Shell”) ‘Executing…