-------------------------------------------- On Thu, 1/5/17, Kyaw Thura Maung <[email protected]> wrote:
Subject: Re: [android-developers] Digest for [email protected] - 24 updates in 22 topics To: [email protected] Date: Thursday, January 5, 2017, 12:23 PM Kyaw On Jan 5, 2017 12:51 PM, <[email protected]> wrote: android-developers@ googlegroups.com Google Groups Topic digest View all topics Storing IMEI on Android M - 1 Update Perfect Java candidate for your requirement - 1 Update Destroy FragmentStatePagerAdapter instance with parent Fragment - 2 Updates Oracle SCM Functional Consultant @ Irvine, California - 1 Update WCS Developer ||| San Diego, CA - 1 Update AWS Engineer-------EAD or GC or Citizens Only - 1 Update Opportunity!! Sr. Workday Developer in Seattle, WA - 1 Update Looking for PeopleSoft HRMS (finance) consultant in Minneapolis, MN - 1 Update SAP FI/CO Business Systems Analyst in New Haven, CT ! - 1 Update Immediate Requirement :: SSRS Developer(9+ only) :: Alpharetta, GA :: Contract/Full time - 1 Update Urgent Need :: ETL Lead @ Zell, Missouri - 1 Update - Sr SQL DBA || GIS Analyst || Remedy / ServiceNow || Project Manger (PMP, Agile, CSM) || Marketing / Brand Specialist || Data Modeller || B. A || Administrative Support ||Corporate Writer || Technical Write / Instructional Designer / Systems Enginee - 1 Update Regarding Jr. Business Objects Developer , at La Vergne, TN - 1 Update SAP Consultant with Transport Management System (TMS)@Fort Worth, TX - 2 Updates Java Application Developer,NY @JPMC - 1 Update Need Enterprise storage Maintain Engineer , at Dublin, OH. - 1 Update Need Business Analyst - Web Operations , at Dublin, OH. - 1 Update : immed req: Performance tester @ El Segundo, CA (need local to CA for f 2f interview) - 1 Update Urgent Requirement_PeopleSoft GL/KK Functional Consultant_Sacramento,CA - 1 Update Immediate Need - Lead Responsive Web Designer / Architect - 1 Update Required: Sr. .Net Developer at Birmingham, AL. - 1 Update PMP Certification Training in Hyderabad | Project management training Hyderabad - Ulearn Systems - 1 Update Storing IMEI on Android M Vaghela Harshad <[email protected]>: Jan 04 06:54PM -0800 Hi, I am developing a payment domain application. My application have extensive use of IMEI number, so I block the user at the very first start of the application for phone permission and when user allow the phone permission application stores IMEI number in DB. I wants to make sure that storing IMEI on android M device should not be an issue. Would like to have thoughts from others about it. Back to top Perfect Java candidate for your requirement V4 Informatics <[email protected]>: Jan 04 08:52PM -0600 Hello all, Please find a perfect java candidate for your requirement. Resume was attached... No need to call me, directly you can reach him and take him on board.... i won't be available for call. Java Developer_SANDEEP.doc <https://drive.google.com/ file/d/ 0Bz75FrtHoIFXTU1telV2N29sWk0/ view?usp=drive_web> WITH BEST REGARDS Subscribe to our YouTube Channel " *V4 Informatics*" Back to top Destroy FragmentStatePagerAdapter instance with parent Fragment Abdullah Fahim <[email protected]>: Jan 04 06:18PM -0800 Sorry, the Toast in the example is defined in onStart method, but the result is same even if I put that inside onCreate method. Abdullah Fahim <[email protected]>: Jan 04 06:16PM -0800 I tried in several platforms, but couldn't get an answer. Please note, the App below uses Googles SlidingTabLayout <https://www.google.com.au/ url?sa=t&rct=j&q=&esrc=s& source=web&cd=1&cad=rja&uact= 8&ved=0ahUKEwjCsfjZ7Z_ RAhWCKJQKHUznC9kQFggZMAA&url= https%3A%2F%2Fdeveloper. android.com%2Fsamples% 2FSlidingTabsBasic%2Fsrc% 2Fcom.example.android.common% 2Fview%2FSlidingTabLayout. html&usg= AFQjCNE2Ra2Qi2iZSYuL7so1Vb871F -4UQ&sig2=tFX-AQgNaVLM3Inyj6- Mzg&bvm=bv.142059868,d.dGo> . Fragment1 is a simple fragment with one textview. Fragment2 contains a viewpager where I load a separate fragment "FragmentViewPager" via FragmentStatePagerAdapter. In the below example, at any point I click Button1, the `FrameLayout` (defined in the MainActivity Layout) should replace `Fragment2` (if exists) with `Fragment1`. Therefore, FragmentViewPager should also be destroyed along with `Fragment2`. However that does not happen, as when I change the orientation of my device (after clicking Button1), I still get the Toast which is defined in the `onCreate()` method of `FragmentViewPager`. Why `FragmentViewPager`'s onCreate method is called even if `Fragment2` is paused/destroyed? Is it possible that, the Toast of `FragmentViewPager` will not be shown when `Fragment2` is destroyed? *MainActivity* package com.abdfahim.testproject; import android.app.Fragment; import android.os.Bundle; import android.support.v7.app. AppCompatActivity; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate( savedInstanceState); setContentView(R.layout. activity_main); Button button1 = (Button) findViewById(R.id.button1); button1.setOnClickListener( onClickListener); Button button2 = (Button) findViewById(R.id.button2); button2.setOnClickListener( onClickListener); } private View.OnClickListener onClickListener = new View. OnClickListener() { @Override public void onClick(View v) { Fragment fragment; switch (v.getId()){ case R.id.button1: fragment = new Fragment1(); break; case R.id.button2: fragment = new Fragment2(); break; default: return; } getFragmentManager(). beginTransaction().replace(R. id. frame_container, fragment, v.getTag().toString()). addToBackStack(null). commit(); } }; } *Fragment1* package com.abdfahim.testproject; import android.app.Fragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; public class Fragment1 extends Fragment { public Fragment1(){} @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout. fragment1,container, false); setHasOptionsMenu(true); return rootView; } } *Fragment2* package com.abdfahim.testproject; import android.app.Fragment; import android.app.FragmentManager; import android.os.Bundle; import android.support.v13.app. FragmentStatePagerAdapter; import android.support.v4.view. ViewPager; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; public class Fragment2 extends Fragment { public Fragment2(){} @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout. fragment2,container, false); setHasOptionsMenu(true); CharSequence titles[]= {"Tab A", "Tab B"}; // Creating The ViewPagerAdapter ViewPagerAdapter adapter = new ViewPagerAdapter(getActivity() . getFragmentManager(), titles, titles.length); ViewPager pager = (ViewPager) rootView.findViewById(R.id. pager); pager.setAdapter(adapter); // Assigning the Sliding Tab Layout View SlidingTabLayout tabs = (SlidingTabLayout) rootView.findViewById (R.id.tabs); // Setting the ViewPager For the SlidingTabsLayout tabs.setViewPager(pager); return rootView; } static class ViewPagerAdapter extends FragmentStatePagerAdapter { private CharSequence titles[]; private int numbOfTabs; public ViewPagerAdapter( FragmentManager fm, CharSequence mTitles [], int mNumbOfTabs) { super(fm); this.titles = mTitles; this.numbOfTabs = mNumbOfTabs; } @Override public int getItemPosition(Object object) { return POSITION_NONE; } @Override public Fragment getItem(int position) { Bundle bundle = new Bundle(); bundle.putString("displayText" , "Inside Fragment 2, " + titles[position]); FragmentViewPager fragment = new FragmentViewPager(); fragment.setArguments(bundle); return fragment; } // This method return the titles for the Tabs in the Tab Strip @Override public CharSequence getPageTitle(int position) { return titles[position]; } // This method return the Number of tabs for the tabs Strip @Override public int getCount() { return numbOfTabs; } } } *FragmentViewPager* package com.abdfahim.testproject; import android.app.Fragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import android.widget.Toast; public class FragmentViewPager extends Fragment { public FragmentViewPager(){} @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout. fragment_view_pager, container,false); setHasOptionsMenu(true); Bundle bundle = this.getArguments(); TextView textView = (TextView) rootView.findViewById(R.id. tabText); textView.setText(bundle. getString("displayText")); return rootView; } @Override public void onStart() { super.onStart(); Toast.makeText(getActivity(), "This is View Pager Fragment", Toast.LENGTH_SHORT).show(); } } Back to top Oracle SCM Functional Consultant @ Irvine, California ANUDEEP <[email protected]>: Jan 04 04:14PM -0600 *Title : Oracle SCM Functional Consultant* *Location : Irvine, California* *Duration : 6+ Months* *NEED 10+ YEARS PROFILES* *Description:* Client is looking for *SCM Functional Consultant with PO, iProc, Inventory and Quality* *Thanks* *Anudeep | Anblicks | www.anblicks.com <http://www.kforce.com/>* *14651 Dallas Parkway, Suite 816, Dallas, TX-75254* *[email protected] <[email protected]>* Back to top WCS Developer ||| San Diego, CA swamil singh <[email protected]>: Jan 05 03:18AM +0530 Hi, Hope you are Doing well...!!! I have urgent requirement for below position. Please go through the job description and if you are interested kindly let me know. Please revert me on [email protected] *Role*: WCS Developer *Location*: San Diego, CA *JD*: o Architect, Design & Develop eCommerce solutions using I IBM's WebSphere Commerce o Drive innovation and new ideas using the technical teams o Analysis of business requirements and subsequent creation of high level technical design documents and technical specifications o Fitment Analysis o Create designs that are adequately scalable o Consistently create maintainable code that follows standard o Work with other internal IT teams to complete project activities Good troubleshooting and problem-solving skills Able to work as part of a team Excellent communication and interpersonal skills Experience in integration with other backend systems and 3 rd party tools Understanding and awareness of Responsive Web Design and Web 2.0 concepts Understanding of Security and Penetration Testing Experience in Sizing and Capacity Planning Good design and working experience in DB design Ability to create build and deployment scripts Experience in using caching products with IBM WCS Experience in configuring search products Understanding of basic administration skills -- -- *Thanks & Regards* *Swamil Singh* | SYSMIND, LLC Phone: 609-897-9670 x 5121 Email: [email protected] Hangout: [email protected] Website: www.sysmind.com Address: 38 Washington Road, Princeton Junction, NJ 08550 Back to top AWS Engineer-------EAD or GC or Citizens Only Saikiran Nandrolu <[email protected]>: Jan 04 04:43PM -0500 Hi Friends, Hope you are doing great, I have an urgent requirement from one of my esteem client, I will appreciate if you can have an eye on the below requirement and send me *AWS Engineer* *Raleigh, NC* *12 month contract* *EAD or GC or Citizens Only* *Top Requirements:* • Operational AWS experience – understanding how to stand up instances and utilize services such as: EC2, RDS, Route 53, Cloud Watch and Cloud Trail • Scripting – Very strong in Python** • Configuration Management – Chef • Strong with CI/CD tools – Jenkins, Gulp, etc. • Experience with VPC design and sub-netting *Please send me the top consultants you have and their contact information. Please be sure these consultants are either local or on the east coast.* Best Regard Sai Kiran [email protected] 703-880-4146 Back to top Opportunity!! Sr. Workday Developer in Seattle, WA Mohd Taher <[email protected]>: Jan 04 04:27PM -0500 Hello, Please share your consultant resume to [email protected] Title: Sr. Workday Developer Duration: 6+ months Location: Seattle, WA *Need EAD, GC, TN or Citizen Only!!* *Must have: * *-Experience working as a Workday Developer in a fast paced enterprise environment* *-Hands on experience in custom report, calculated fields, and EIB’s inbound/outbound REST APIs. * Overall Job Description • 4-5 years of experience in integrations programing in Workday: Reports, Calculated fields, Custom Objects, EIBs, Core Connector and workday studio Integrations. • Deep knowledge and understanding of business process, workday security, matrix and composite reports. • Hands on experience in custom report, calculated fields, and EIB’s inbound/outbound REST APIs. • Advance Security knowledge to configure Integration System Security Group and Integration System User and solve any issue regarding data access. • Proficient in XSLT, Oxygen tool, MVEL, Java and Java-script. • Build integrations using workday delivered tools like EIB, Core Connectors and workday studio. • Build and modify programs using HTML and XSLT programming tools. • Proficient documentation skills. Functional and Technical. • Working experience in Agile and DevOps frameworks. Best Regards, Mohammed Taher US IT Recruiter Direct: 703 349 4237 USM Business Systems Chantilly, VA 20151, USA. Back to top Looking for PeopleSoft HRMS (finance) consultant in Minneapolis, MN Sudhakar Reddy <sudhakarreddy.recruiter@ gmail.com>: Jan 05 02:50AM +0530 Hi, Hope you are doing great, My Self, Sudhakar from *logic soft**.* We have a requirement for *PeopleSoft finance consultant *in *Minneapolis, MN* Please review the Job description below and if you’d like to pursue this, please include a word copy of your latest resume along with a daytime phone number and rate in your response. You can also reach me at *614-884-5544 Ext. 229*, Drop the suitable profiles on *[email protected] <[email protected]>* *Title:** PeopleSoft finance consultant* *Location: Minneapolis, MN* *Duration: 6 Months +* - Minimum of five years PeopleSoft experience - Experience with PeopleSoft 9.2 - PeopleSoft Financials/SCM Software Development Life Cycle (SDLC) implementations, specifically with Contracts Management, eSupplier Connection, and Strategic Sourcing - Upgrade and implementation experience - Ability to work on all project phases - Solid understanding of setup tables and reporting - Solid understanding of integration of all modules - Solid understanding of processing requirements for module in which candidate has expertise - Expert knowledge in PeopleSoft Financials modules - Proven business knowledge as well as PeopleSoft specific functional knowledge - Must have PeopleSoft FSCM/HCM/EPM/Portal experience 8 - Must have PeopleSoft Technical and Functional experience - Ability to engage appropriate resources from the City at appropriate phases of the project(s) *Thanks and Regards . . . . * *Sudhakar.Muchumari* *Logic soft,inc.* 5900, Sawmill Road, Suite 200, Dublin, OH - 43017 WORK: (614) 884-5544 x 229| FAX: (614) 884-5540 | Email: [email protected] | Visit Us: www.logicsoftusa.com | Back to top SAP FI/CO Business Systems Analyst in New Haven, CT ! Abhishek ojha <[email protected]>: Jan 04 04:07PM -0500 *SAP FI/CO Business Systems Analyst* *New Haven, CT* *2 Months + Extension* *US Citizen or Green Card Only* *Phone then F2F/Skype* *Onsite Job – No Remote* *Job Summary * Provide support to deploy SAP Functionality to global Legal Entities Provide support in establishing financial master data governance across Alexion systems landscape Provide expertise related to SAP modules including FI, CO, BPC, & BW Provide expertise related to CO allocations and assessments Provide expertise related to Financial Consolidations systems Work with finance function to understand business requirements and align those to IT solutions Act as an end-to-end service broker to the accounting teams--including requirements gathering, functional design, systems and user documentation, testing and training. Ensure compliance with project timelines and response to information requests for all functions within accounting Develop and implement policies, controls and processes in compliance with regulatory requirements. Ensure oversight of existing accounting systems landscape Architecture skills, leadership skills, and project management skills will be keys to success. *Skills: * 10+ years of successfully delivering Finance systems initiatives 7+ years of SAP FI/CO business process and configuration experience Experience with the design, build, and implementation of master data (MDM) solutions Experience with the design, build, and implementation of reporting solutions using SAP tool sets Experience implementing financial consolidation systems Business process experience within the bio-pharma industry or life sciences Understands the business processes of finance organizations Experience with master data design and implementation of MDM systems *Education: * Bachelor’s degree in a related field (Finance / Accounting) Master’s degree preferred SAP Functional or Technical certifications preferred Project Management or Six Sigma or other process certifications preferred *Thanks & Regards,* *Abhishek Ojha* *732- 837- 2138* *[email protected] <[email protected]>* Back to top Immediate Requirement :: SSRS Developer(9+ only) :: Alpharetta, GA :: Contract/Full time Sharad Rajvanshi <[email protected]>: Jan 05 02:32AM +0530 Hi Hope you are doing fine!! Please share your consultant resume at *sree.singh@softnet- consulting.com <sree.singh@softnet- consulting.com>* *Rate $55 to $60* *Position Title: *SSRS Developer *Location: *Alpharetta, GA *Position Type: *Contract and fulltime We are looking for candidates having experience in SSRS Developer Regards, Sree Singh Softnet Consulting, Inc. *sree.singh@softnet- consulting.com <sree.singh@softnet- consulting.com>* Ph: 925-350-6855 <(925)%20350-6855> www.softnet-consulting.com Back to top Urgent Need :: ETL Lead @ Zell, Missouri satish kumar <[email protected]>: Jan 04 04:02PM -0500 Hi , Hope you are doing great! Please review the following Job Description and share updated resume if you find comfortable for this position... *Note: Need Passport copy/number.* *Role: ETL lead* *Location: Zell, Missouri* *Duration: Long Term* Experience (Years) 8-10 ETL lead position at Onsite. Please see below update JD. Responsible for design, development and maintenance of technology solutions. Assists in the development of and manages an business governance process. Provides technical guidance to project team areas as appropriate. Informatica, Unix, DB experience is required. Knowledge in *Finance domain* with BI Analytics .Typically has at least 6 years of IT work experience in data architecture design and ETL *Satish Kumar* | SYSMIND, LLC *Technical Recruiter* [image: https://newoldstamp.com/ editor/profilePictures/ profile- b15c8fc3ea4630e2ca604f11e3e951 c7-41898.png] Phone: 609-897-9670 x 2152 Email: [email protected] Gmail: [email protected] Website: sysmind.com Address: 38 Washington Road, Princeton Junction, NJ 08550 Back to top - Sr SQL DBA || GIS Analyst || Remedy / ServiceNow || Project Manger (PMP, Agile, CSM) || Marketing / Brand Specialist || Data Modeller || B. A || Administrative Support ||Corporate Writer || Technical Write / Instructional Designer / Systems Enginee [email protected]: Jan 04 12:35PM -0800 Hello Friends Available Consultant HotList from “vTech Solution Inc.” So Send me requirement on [email protected] Ph: (202) 241.2419 (D) Name :- MARC B Technology Skill :- SERVICE NOW DEVELOPER/ BMC REMEDY DEVELOPER Work Authorization :- U.S Citizen Current Location :- NJ Relocation :- EASTERN USA Total Exp :- 17+ Name :- Kebede Technology Skill :- GIS Analyst / SQL DBA Work Authorization :- Green Card Holder Current Location :- VA Relocation :- Any-Where Total Exp :- 16+ Name :- Donald Technology Skill :- Business Analyst / Project Manager Work Authorization :- U.S Citizen Current Location :- MD Relocation :- MD, DC, VA Total Exp :- 8+ Name :- Adrain Technology Skill :- System Admin (CCNA Certified ) Work Authorization :- U.S Citizen Current Location :- Houston, TX Relocation :- Houston, TX Total Exp :- 10+ Name :- Ibrahim Technology Skill :- Sr. Data Architect, / Data Modeller / Business Intelligence. Work Authorization :- U.S Citizen Current Location :- OH Relocation :- OH Total Exp :- 20+ Name :- Piyush Technology Skill :- .NET DEVELOPER Work Authorization :- OPT Current Location :- Fremount, CA Relocation :- ALL USA Total Exp :- 5+ Name :- Syed Technology Skill :- Business Analyst with HealthCare Major Work Authorization :- OPT Current Location :- TX Relocation :- ALL USA Total Exp :- 6+ *Thanks & Regards,* *Nirmal Patel* *Technical Recruiter* *vTech Solution Inc.* *You Seek, We Deliver**.s* (202) 241.2419 (D) 866.733.4974 Fax *[email protected]* [email protected] 1100 H street, N.W. Suite 450, Washington DC 20005 www.vTechSolution.com <http://www.vtechsolution.com/ > This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind vTech to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose. Back to top Regarding Jr. Business Objects Developer , at La Vergne, TN Shaik Salam <[email protected]>: Jan 04 03:30PM -0500 Hi Everyone, hope your doing good We have an immediate opportunity for *Jr. Business Objects Developer , at La Vergne, TN*. Below is the job description and if you’d like to pursue this, please include a word copy of your latest resume along with a daytime phone number and rate in your response. *Send resumes to [email protected] <[email protected]>* *Job: Jr. Business Objects Developer * *Location: La Vergne, TN* *Duration: 6 months* *The data provided to and for our clients is a critical part of their business operations and a major aspect of the value that Cardinal 3PL provides. As a Data Developer with the 3PL Client Implementations team you will be responsible for designing, developing, implementing and supporting applications, systems and IT products to extract, transform, and load data for pharmaceutical manufacturer clients.* - Demonstrates knowledge of software development techniques and fluency in software languages and application programming interfaces. - Demonstrates general understanding of hardware/software platforms including but not limited to operating systems, databases, application servers, web servers and integration technologies. - Plans and executes system implementations that ensure success and minimize risk of system outages or other negative production impacts. - Demonstrates conceptual knowledge of architecture standards and database and operating systems. - Demonstrates problem solving ability that allows for effective and timely resolution of system issues including but not limited to production outages. - Analyzes production system operations using tools such as monitoring, capacity analysis and outage root cause analysis to identify and drive change that ensures continuous improvement in system stability and performance. - Demonstrates knowledge of software development, life cycle, modeling of business processes, application design patterns, and business/functional documents. Estimates to high level business requirements and provide options analysis. - Demonstrates ability to clearly and concisely communicate complex information to a variety of audiences and mediums. *Qualifications:* - Bachelors Degree in related field, or equivalent work experience - 5+ years experience in related field preferred - Experience with Oracle databases - Experience with data extract, transform, and load processes and tools - Experience with data query, visualization, dashboard and/or scorecard tools required - Experience with Business Objects preferred - Job Duties – 3PL Client Implementations Data Developer - (60%) Solves 3PL client and customer information problems and requirements by analyzing requirements; designing and implementing solutions. - Determines operational objectives by studying business functions; gathering information; evaluating output requirements and formats. - Designs and develops new data extract programs by analyzing requirements; constructing workflow charts and diagrams; studying system capabilities; writing specifications; writing and testing programs. - Designs and develops new reports by analyzing requirements; constructing workflow charts and diagrams; studying system capabilities; writing specifications; writing and testing reports. - Improves systems by studying current practices; designing modifications. - Recommends controls by identifying problems; writing improved procedures. - Monitors project progress by tracking activity; resolving problems; publishing progress reports; recommending actions. - Maintains system protocols by writing and updating procedures. - Provides references for users by writing and maintaining user documentation; providing help desk support; training users. - Maintains user confidence and protects operations by keeping information confidential. - Prepares technical reports by collecting, analyzing, and summarizing information and trends. - Maintains professional and technical knowledge by attending educational workshops; reviewing professional publications; establishing personal networks; benchmarking state-of-the-art practices; participating in professional societies. - Contributes to team effort by accomplishing related results as needed. - - (40%) Resolves 3PL client and customer technical problems and responding to questions in accordance to service level objectives, processes and procedures. Serves as liaison between customer/client and IT to resolve business issues related to technologies. - Answers questions regarding system procedures, online transactions, systems status and downtime procedures. - Serves as a liaison between customer/client and IT to resolve business issues related to technologies. - Collaborates with network services, software systems engineering and/or applications development in order to restore service and/or identify problems. - Respond to calls and emails from clients, customers, and internal staff in a reasonable time. - Monitor designated support queues as assigned. - Resolve incidents or service requests as assigned using the appropriate processes including incident management, problem management, change management and request fulfillment processes in line with team objectives. - Document work on assigned incidents and tasks. - Effectively communicate status on assigned incidents to clients, customers, and internal staff. - Develop best practices and tools for service management. Thanks and Regards, Sam Salam New York Technology Partners – Rochester T1: (201) 680-0200 x 7026 [email protected] www.nytp.com Back to top SAP Consultant with Transport Management System (TMS)@Fort Worth, TX Santosh kumar Nityo <[email protected]>: Jan 04 03:28PM -0500 *URGENT NEED * Hi, Hope you doing Well !!! Here is our Implementing partner Requirement, Please go through the below requirement and send us suitable consultant with their updated resume, rates and Contact details .. *Role:** SAP Consultant with **Transport Management System (TMS)* *Location: **Fort Worth, TX* *Work Duration:** Long Term* *Note: We need Photo id and visa copy (H1B)* * Job Description: Must Have Skills* 1.SAP BASIS 2. Transport Management System (TMS) and releasing and importing transports (STMS) 3. CCMS configuration and monitoring Top 3 responsibilities you would expect the subcon to shoulder and execute*: 1. Security Administration: Managed SAP server's security like creating users, deleting users, creating profiles using profile generator (PFCG). Creating and maintaining authorization roles and profiles. 2. Expert in Operation modes setup and configuration 3. Expert in Performance Tuning - Memory Management, Database Tuning and OS Tuning using the following T-codes - SM50, SM12, DB01, ST03N, ST04, ST05, ST06, ST22, SM21, DB02 Experience in configuring Transport Management System TMS and releasing and importing transports STMS between Development, Quality Assurance and Production systems within a landscape. Perform SAP system copy and refreshes, Database backup and recovery Database table space administration and management, reorganization of tables. *If I'm not available over the phone, best way to reach me in email.......* [image: cid:image001.jpg@01D0BE16. B9DD7240] Nityo Infotech Corp. 666 Plainsboro Road, Suite 1285 Plainsboro, NJ 08536 *Santosh Kumar * *Technical Recruiter* Desk No-609-853-0818 Ext-2170 Fax : 609 799 5746 [email protected] www.nityo.com ------------------------------ USA | Canada | India | Singapore | Malaysia | Indonesia | Philippines | Thailand | UK | Australia / Zealand ------------------------------ *Nityo Infotech has been rated as One of the top 500 Fastest growing companies by INC 500* ------------------------------ *Disclaimer:* http://www.nityo.com/Email_ Disclaimer.html ------------------------------ Santosh kumar Nityo <[email protected]>: Jan 04 03:28PM -0500 *URGENT NEED * Hi, Hope you doing Well !!! Here is our Implementing partner Requirement, Please go through the below requirement and send us suitable consultant with their updated resume, rates and Contact details .. *Role:** SAP Consultant with **Transport Management System (TMS)* *Location: **Fort Worth, TX* *Work Duration:** Long Term* *Note: We need Photo id and visa copy (H1B)* * Job Description: Must Have Skills* 1.SAP BASIS 2. Transport Management System (TMS) and releasing and importing transports (STMS) 3. CCMS configuration and monitoring Top 3 responsibilities you would expect the subcon to shoulder and execute*: 1. Security Administration: Managed SAP server's security like creating users, deleting users, creating profiles using profile generator (PFCG). Creating and maintaining authorization roles and profiles. 2. Expert in Operation modes setup and configuration 3. Expert in Performance Tuning - Memory Management, Database Tuning and OS Tuning using the following T-codes - SM50, SM12, DB01, ST03N, ST04, ST05, ST06, ST22, SM21, DB02 Experience in configuring Transport Management System TMS and releasing and importing transports STMS between Development, Quality Assurance and Production systems within a landscape. Perform SAP system copy and refreshes, Database backup and recovery Database table space administration and management, reorganization of tables. *If I'm not available over the phone, best way to reach me in email.......* [image: cid:image001.jpg@01D0BE16. B9DD7240] Nityo Infotech Corp. 666 Plainsboro Road, Suite 1285 Plainsboro, NJ 08536 *Santosh Kumar * *Technical Recruiter* Desk No-609-853-0818 Ext-2170 Fax : 609 799 5746 [email protected] www.nityo.com ------------------------------ USA | Canada | India | Singapore | Malaysia | Indonesia | Philippines | Thailand | UK | Australia / Zealand ------------------------------ *Nityo Infotech has been rated as One of the top 500 Fastest growing companies by INC 500* ------------------------------ *Disclaimer:* http://www.nityo.com/Email_ Disclaimer.html ------------------------------ Back to top Java Application Developer,NY @JPMC Hemanth Logicplanet <[email protected]>: Jan 04 12:21PM -0800 *Hello Partner, * Hope you are doing great. Please find below requirement and kindly send your updated resume at *[email protected] <[email protected]>* *Role : Java Application Developer Client : JPMC(Direct) Location : Houston Duration : 1 Year * *Job Description : * Experience with Python is Mandatory Back end Developer Application Support Monitoring Application Development All SDLC phases including Source Control Repository Testing and Continuous Build Integration *Skills : Python, Oracle, Java, Unix/Linux, Scripting, SQL* Thanks & Regards Hemanth Email ID : [email protected] 101 College Road East Second Floor, Princeton, NJ 08540 ------------------------------ ------------------------------ ---------- 15 years in IT. 300 employees. $30M in revenues ------------------------------ ------------------------------ ---------- [image: Description: Description: Logo] <http://www.logicplanet.com/> Back to top Need Enterprise storage Maintain Engineer , at Dublin, OH. Shaik Salam <[email protected]>: Jan 04 03:19PM -0500 Hi Everyone, hope your doing good We have an immediate opportunity for *Enterprise storage Maintain Engineer , at Dublin, OH.* Below is the job description and if you’d like to pursue this, please include a word copy of your latest resume along with a daytime phone number and rate in your response. *Send resumes to [email protected] <[email protected]>* *Job: Enterprise storage Maintain Engineer* *Location: Dublin, OH* *Duration: 6 months* *What IT Storage contributes to Cardinal Health: * - The Data Storage and Protection team provides reliable, available and scalable data services to Cardinal Health. Focus is on Stability and zero Customer Impacting Events in all areas, flawless project execution, keeping the technology up-to-date and current, showing innovation and reducing operational costs by introducing new and advanced infrastructure, improve on process and execution, and invest in our people to build dynamics that attract skillful talent within and outside Cardinal Health. Our shared IT storage services support a complex heterogeneous environment providing backup and storage to support 9000 plus servers, located in two main data centers, continental USA and around the world. *What is expected of you and others at this level -* - Applies comprehensive knowledge and a thorough understanding of concepts, principles, and technical capabilities to perform varied tasks and projects. - Demonstrates knowledge of storage, hardware, software and storage area network (SAN) technologies. - Must be a self-starter with the ability to pick up and learn new products with little supervision, as well as adapt to a variety of situations and tasks. - Strong analytical skills; Able to assess and solve issues in a high-pressure environment. - Strong organizational skills; must be able to prioritize work and ability to multitask without sacrificing attention to details. - Able to work effectively with other groups and teams outside Storage team. - Ability to work independently and as part of a team with minimal guidance. - Interact with vendors where appropriate to work collaboratively on system upgrades or to resolve system issues. - May act as a mentor to less experienced colleagues - Able to coordinate and collaborate with business application stakeholders and infrastructure teams to ensure successful upgrades or system maintenance activities. *Accountabilities in this role: * - Plan and execute upgrades for enterprise storage and backup platforms coordinating with managed service provider, vendors, company leaders, IT staff, and business partners - Good understanding of SAN, NAS and Backup technologies. - Working knowledge of at least three of the following technologies and a desire to learn what you do not know yet o EMC VMAX, VNX, Isilon, IBM XIV, SVC, Nexenta, Cisco and Brocade SAN Fabric, NetBackup and Actifio - Partner with vendors and internal teams to be the Technical Resource in Proof of Concept and production deployments - Perform routine maintenance on systems to ensure security compliance, perform external and internal audits and system health. - Experience using Service-Now with understanding of Service-Now CMDB structure and the relationships between CIs. ITIL V3 certification is preferred. - Design and review processes to identify gaps in design and/or execution of the environment solutions. - Develop and implement storage automation solutions. - Create and present the planned changes in different change control boards and at the different level of the Leadership. - Working knowledge of Linux, Unix (AIX, HP, Sun) and Windows operating systems is an added bonus. - Maintaining and update storage and backup topologies. *Required Skills -* - Bachelor's Degree in related field or equivalent work experience - 5+ years’ experience in related field preferred - 5+ years of experience with both block and file storage, SAN fabrics and backup solutions Thanks and Regards, Sam Salam New York Technology Partners – Rochester T1: (201) 680-0200 x 7026 [email protected] www.nytp.com Back to top Need Business Analyst - Web Operations , at Dublin, OH. Shaik Salam <[email protected]>: Jan 04 03:15PM -0500 Hi Everyone, hope your doing good We have an immediate opportunity for *Business Analyst - Web Operations , at Dublin, OH.* Below is the job description and if you’d like to pursue this, please include a word copy of your latest resume along with a daytime phone number and rate in your response. *Send resumes to [email protected] <[email protected]>* *Job: Business Analyst - Web Operations * *Location: Dublin, OH* *Duration: 6 months* *Required:* - Web Operations is responsible for the direct management of a portfolio of websites and deals with the complexities of web-based applications and the systems that support them, including application deployment, management, maintenance, configuration and repair. - Demonstrates deep knowledge and understanding of web design and usability, SEO, branding, marketing, network systems and IT infrastructure for support, maintenance and planning purposes. - Demonstrates and applies knowledge of website analytics tools, HTML, CSS and JavaScript. - Experience with Adobe Marketing Cloud a plus. - Ensures that developed solutions meet the company's strategic and tactical business needs, client and business stakeholder needs, and fit well with the platform or product for which they are built. - Manages and maintains site presentation, interface design, information architecture, URLs and subdomain names, template development/customization and implementation. - Defines site strategy and purpose: user needs; business and support needs; communication and marketing needs; budget and resources; publishing policy and process. - Initiates and approves new developments. - Experience working closely with an IT development team to define and drive requirements, test development work, etc. - Represents the client or business stakeholder to the IT development team. - Deploys and instruments web content. - Measures the impact of changes to content, applications, networks and infrastructure. - Ensures standard operating process and procedures are developed and maintained while overseeing multiple projects. *Qualifications:* - Bachelor’s degree in related technical major (e.g. CS, CIS, IS, etc.), or equivalent work experience, preferred - 5+ years’ experience in related field preferred. Thanks and Regards, Sam Salam New York Technology Partners – Rochester T1: (201) 680-0200 x 7026 [email protected] www.nytp.com Back to top : immed req: Performance tester @ El Segundo, CA (need local to CA for f 2f interview) Tej mishra <[email protected]>: Jan 05 01:38AM +0530 Hi, Hope you are doing great! I have urgent requirement for below position. Please go through the job description and if you have consultant kindly let me know. Please revert me on [email protected].! Role: Performance tester Location: El Segundo, CA Job Details: Must Have Skills (Top 3 technical skills only) * 1. 1.Strong performance testing experience with Apache JMeter 2. Performance Testing Tool, Load Runner, SQL Queries, JMeter, Web Services 3. Java, JavaScript, Python, C++, Perl, Python, Ruby, HTML Top 3 responsibilities you would expect the Subcon to shoulder and execute*: 1. Design test scripts 2. Performance testing of test scripts 3. client communication *Thanks And Regards * *Tej Mishra* | SYSMIND, LLC *Technical Recruiter* Phone: 609-897-9670 x 2167 Email: [email protected] Gtalk: [email protected] Website: sysmind.com Address: 38 Washington Road, Princeton Junction, NJ 08550 Back to top Urgent Requirement_PeopleSoft GL/KK Functional Consultant_Sacramento,CA shailaja kolthuru <[email protected]>: Jan 05 12:17AM +0530 Hi I hope all is well. My name is *Shailaja.k*. I am a Sr.Technical Recruiter. I thought you might be interested in the following opportunity. If you're available for an opportunity or keeping your options open, please reply to my email with your resume. Looking forward to speaking with you soon. *The following is the job description that we received from our client* *Job Role : **PeopleSoft GL/KK Functional Consultant* *Location : Sacramento,CA* *Duration : 6+months* *Responsibilities:* *As a PeopleSoft GL/KK Functional Consultant your job responsibilities are:* · Acts as a SME on PeopleSoft ELM · Works on the various phases of the project business process analysis/design, fit/gap, configuration, testing and training . · Configures PeopleSoft to meet the client's unique business requirement · Completes all tasks timely, efficiently and reports status to the project manager and customer. *Technical Skills:-* *For the position of PeopleSoft GL/KK Functional Consultant, Our client is looking for the following skills.* · Experience with PeopleSoft End to End Implementations. · Peoplesoft FSCM module especially in General Ledger and KK. · Experience and emphasis on PeopleSoft Finance Modules. · Experienced in planning, scheduling, and conducting fit/gap sessions for implementation/upgrade of PeopleSoft Financials. *Thanks & Regards,* *Shailaja.k* *Sr. Technical Recruiter* *Graviton Consulting Services Inc.* Back to top Immediate Need - Lead Responsive Web Designer / Architect "Mohammad Imran" <mohammad.imaran@ idctechnologies.com>: Jan 04 10:45AM -0800 Hi Partner, I hope you are doing great! Please share profile for the below position. Title: Lead Responsive Web Designer / Architect Location: Boston, MA -** They are open to have them work in Marlborough with occasional travel to Boston on an as needed basis Contract: C2C Visa: USC, GC's and H-1's are ok Candidates: They prefer local candidates first- Interview Process: There is a test being added for this requirement. They will be required to complete and send us back the test within 3-5 hours the same day that they have been given the test If this goes well, we will likely set up 2 phone screens and then an inperson interview or do a WAVE with the person to validate that the person that did the exercise is the same person that we are interviewing. Keys to the position: 1. 10 + years of responsive web design, architecture and implementation experience. Although this is a lead role, they will not be managing the team but rather be responsible for providing technical leadership and ownership. 2. Must have at least 5 years of experience with AJAX, HTML5, CSS3 and Javascript. 3. Candidate must have at least 3 years of web services experience 4. Must have at least 2 years of experience working with a No SQL database or a Graph database is a must 5. We are looking for candidates that also have OS framework experience - prefer candidates to have Angular.JS, ReactJS, Node.js or Open Social framework. 6. Must have experience with cloud technologies 7. Working with offshore teams would be a + as this person will be working with 2 offshore team members. 8. We are looking for a technologist that has a passion for the above technology and this resource will be based in Boston but we are open to have them work in Marlborough with occasional travel to Boston on an as needed basis. 9. Financial services experience is a + Minimum Requirements: Lead technologist Technical Requirements . Minimum of 10 years of hands-on design and development experience in commercial environments Demonstrated experience developing Web applications using AJAX, HTML5, CSS3, Web Services and other related technologies. At least three years of experience in use of these technologies is preferred. Experience with AngularJS, ReactJS, Node.js, Open Social framework is highly desirable. . Demonstrated expertise in modern database technologies like Mongo, Neo4j, Hadoop with MapReduce with exposure to parallel data processing concepts.Exposure and experience with AWS is a strong plus, specifically familiarity with cloud formation template, elastic search, S3, Scaling up and down in AWS, and Cloud watch logging and monitoring. . Demonstrated knowledge of use of Oracle with Java. . Demonstrated knowledge of common design patterns and their application and mobile technologies. . Experience with, and demonstrated understanding of modern software development (GIT, JIRA, Maven), open source frameworks and testing methodologies. Description: The team is looking build a platform for Fixed Income Research so that analysts can have access to data via mobile apps as well as on the desktop. We understand the importance that technology has in supporting the business to make better investment decisions and are looking for technologists to help us build this platform. We are looking for a resource with responsive web development experience and a passion for working with open source technologies and frameworks. The technical requirements are above. We are open to have this person work in Marlborough but Boston is our preference. this is an exciting new project that we are looking for this resource to be a part of. Best Regards, Mohammad Imran Uddin Manager Talent Acquisition IDC Technologies Inc. 1851 McCarthy Boulevard, Suite 116, Milpitas, CA, USA, 95035. Ph - 408-459-5636 Fax - 408-608-6088 Email - <mailto:Neeraj@ idctechnologies.com> Mohammad.imaran@ idctechnologies.com URL- . <http://www.idctechnologies. com/> www.idctechnologies.com CMM LEVEL 3 Company & ISO 9001-2008 Certified "Under Bill s. 1618 Title III passed by the 105th U.S. Congress this mail can not be considered spam as long as we include a way to be removed from our mailing list. Simply send us an e-mail with REMOVE in the subject and we will gladly REMOVE you from our mailing list." Back to top Required: Sr. .Net Developer at Birmingham, AL. Praveen <[email protected]>: Jan 04 11:57AM -0500 Hi, I have an urgent requirement mentioned below. If you find yourself comfortable with the requirement please reply back with your updated resume and I will get back to you or I would really appreciate if you can give me a call back at my contact number. *Position: **Sr. .Net Developer * *Location: **Birmingham, AL* *Duration: Contract * *H1b Only* *Need H1b Copy photo id* *Please share genuine consultants only* *Job Description: * *Required Skills:* · ASP.NET (or MVC) · HTML · C# · JavaScript · Web services ( integration layer) · working on maintenance and integration layer. Solid .Net Developer needed. *Job Description: * Senior .NET - ASP.net C# Application Developer needed. We are looking for a senior .NET developer to complement our team. The developer should have 6+ years of development experience in .NET ASP.net C#, MS SQL and Oracle Database SQL/PL SQL. The right candidate should be versed in C#, ASP.NET, MVC, Web Services and other key web app development technologies. *Skills Requirements* · 6+ years of experience developing with .Net C# ASP.net MVC technology · Experienced with backend and frontend development · Fluent in HTML and Javascript · Follows SOLID development principles · Great communication skills and an effective team player · Eager to learn new technologies and capable of looking for pragmatic solutions to problems · Experience with SQL development · Agile development experience desired. *Regards,* *Praveen Tiwari* Senior Technical Recruiter *Sage Group Consulting, Inc* *W:*+ 732-767-0010 x 113 |Direct: 732-851-1637 | *F:* 732-749-8969 | *Email: **[email protected]* <[email protected]> *Gtalk/yahoo/Skype: praveentj101* [image: SageLogoC] <http://www.sageci.com/>[ image: saplogoone] This message contains information that may be privileged or confidential and is the property of Sage Group Consulting, Inc. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message. Sage Group Consulting, Inc does not accept any liability for virus infected mails. Back to top PMP Certification Training in Hyderabad | Project management training Hyderabad - Ulearn Systems Ulearn System <[email protected]>: Jan 03 11:27PM -0800 <https://lh3. googleusercontent.com/- bqT5xhTLfSU/WGyj1cXeidI/ AAAAAAAAAeE/wZtw2-05Vsow-C7h- FkwdeQfgx2hys10gCLcB/s1600/U% 2BL%2BS%2Blogo%2B%25281%2529. jpg> U learn systems <http://ulearnsystems.com/> provides complete certification training for project management. we’re best in PMP, safe agile and many more certification training programs. Back to top You received this digest because you're subscribed to updates for this group. You can change your settings on the group membership page. To unsubscribe from this group and stop receiving emails from it send an email to android-developers+ [email protected]. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/android-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/android-developers/CAAiNdt4kL1SfLEng4QJ%2BFNADcGLv67X6ZQOnqv7OAeg8X5zyqw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout. ceea ce probabil asteptau opozitionistii - conservatori si burghezia liberal-radicala - pentru a actiona. E greu de crezut totusi ca s-a dorit rasturnarea prin forta a domnului in absenta sa. Organizarea unor tulburari discredita insa pe detinatorul tronului si putea grabi indepartarea sa prin jocul concertat al Marilor Puteri. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/android-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/android-developers/339014560.374050.1483622794436%40mail.yahoo.com. For more options, visit https://groups.google.com/d/optout.

