Find Jobs
Hire Freelancers

Doing some functions in SAP with PHP

$30-250 USD

Cerrado
Publicado hace más de 7 años

$30-250 USD

Pagado a la entrega
We need to do the following in SAP using RFC -BAPI functions on PHP : - Add new customer - Update customer data. - Add Sales order . - Update sales order data .
ID del proyecto: 12136161

Información sobre el proyecto

13 propuestas
Proyecto remoto
Activo hace 7 años

¿Buscas ganar dinero?

Beneficios de presentar ofertas en Freelancer

Fija tu plazo y presupuesto
Cobra por tu trabajo
Describe tu propuesta
Es gratis registrarse y presentar ofertas en los trabajos
13 freelancers están ofertando un promedio de $214 USD por este trabajo
Avatar del usuario
Hi, How are you? I have 5 years of experience in Sap abap programming.
$166 USD en 2 días
4,5 (14 comentarios)
4,8
4,8
Avatar del usuario
Dear sir, please contact me. We will discuss about your requirements. After I understand all your requirements, I'll do it for you.
$250 USD en 3 días
4,9 (21 comentarios)
4,6
4,6
Avatar del usuario
Hi do you want to create RFC or BAPI fm in SAP or call RFC or BAPI in PHP? I have SAP background experience let me know if you want SAP help.
$200 USD en 5 días
4,9 (4 comentarios)
2,6
2,6
Avatar del usuario
A proposal has not yet been provided
$244 USD en 10 días
5,0 (3 comentarios)
2,4
2,4
Avatar del usuario
Hi, I am vijay dhaka SAP ABAP Webdynpro consultant having 6+ years of experience in SAP ABAP .I work for an MNC and right now working for denmark based client and giving my solutions related to Consulting as well as implementing the development for the requirements related to different SAP modules. I believe i can deliver excellent solutions within deadline with quality work in SAP ABAP AND Webdynpro .. I have worked in ABAP core areas in all the projects like BAPI,ALV reports,BADI's,User exit,enhancementssmartforms and adobeforms as well. In my previous company i was working with TCS for different clients ,I have very good experience in SD module and the requirement is most suitable for me ,Currently I am handling the ABAP area from SD and PLM module perspective In training ,I have experience in grooming my team members for in house project training as well as actively participated in competency building exercises as well. i am confident in my skill set and i believe i will not disappoint you if given a chance. Worked on various projects like Implementations, Rollouts, Support/AMS, Products and Upgrade. Also I have worked for company OCTAL in OMAN for 3 months I was there in 2011 Thanks Vijay Dhaka
$155 USD en 3 días
4,4 (1 comentario)
0,8
0,8
Avatar del usuario
I am assuming you already have customer and salesOrder pages built in PHP and only require integration with SAP using the BAPI functions to update and add new records. I have quoted in general. Let me know the details and then we can proceed forward.
$166 USD en 5 días
0,0 (0 comentarios)
0,0
0,0
Avatar del usuario
I am SAP ABAP certified professional with over 11 yrs of industry experience in implementing ERP solutions across various industry specific sectors.
$188 USD en 3 días
0,0 (0 comentarios)
0,0
0,0
Avatar del usuario
I have strong exp in interface functionality for more discussion contact me +91-7757012335 +91-8983735782
$388 USD en 8 días
0,0 (0 comentarios)
0,0
0,0
Avatar del usuario
SAP Technical Consultant with Administration and development experience in Webdynpro Java with EJB's. Webydnpro ABAP with FPM for ESS/MSS applications, ABAP OO, ABAP HR, Workflows, SAP UI5 / FIORI / SAP Screen Personas with SAP Netweaver Gateway OData Services for HR Renewal. HCM Forms and Process using FPM Forms. BSP for SRM SUS applications. SAP e-sourcing / CLM 7.0 with Bean shell scripting, report queries and workflow using XPDL. SAP CRM ISA 5.0/7.3 application for e-commerce. Java/J2EE with technologies like struts and springs framework application with JPA, JSP, JMS, JSF, JavaScript, XML, JAXB, Web services, WSDL and Aspect Oriented Programming on the Portal version 7.0/7.2 and 7.3
$200 USD en 30 días
0,0 (0 comentarios)
0,0
0,0
Avatar del usuario
A proposal has not yet been provided
$166 USD en 5 días
0,0 (0 comentarios)
0,0
0,0
Avatar del usuario
Hi Sir, Below is brief summery about my experience. Kindly let me know if I can add value to your work. • Work Experience of 9.5 Yrs with 4 Implementation, 1 rollout and 4 Production Support projects • Technical competency in ABAP including simple and interactive reports, ALV reports, dialog programming, RFC, Smartforms, Adobe forms, User Exits, BAPI, BAdI, batch processing, Business Workflow and WebDynpro. • Consulting responsibilities include requirement analysis, design, coding, testing, review, impact and gap analysis, and coordination. • Experienced in technical specifications preparation and coordination with functional consultants for RICEFW developments • Have a good working experience in HR business process • Excellent communication, problem solving and analytical skills • Onsite from Oct-2012 to Aug-2013 New York, USA. • Onsite for 3 months. Al Khobar, Saudi Arabia • Extensive experience working with international clients, onsite-offshore model & Quality Assurance • Presently working as Lead HR ABAP WebDynpro Workflow Consultant, at AtoS India Pvt. Ltd. from Mar’14 till date. • Part of Interview Panel. • WebDynpro and workflow training conducted for internal employees and MunichRe client • Comprehensive problem solving ability, Innovative out of box ideas, Good verbal communication skills, willingness to learn, Team facilitator, Team Builder, Team Piloting Skills. • Completed MCA from Pune University with first class. Regards, Rahul Bhokre
$177 USD en 5 días
0,0 (0 comentarios)
0,0
0,0
Avatar del usuario
data : lt_dyn_table type ref to data, lw_dyn_table type ref to data, lt_fieldcat type lvc_t_fcat, lw_fieldcat like line of lt_fieldcat. field-symbols : <fs_table> type standard table, <fs_wa> type any, <fs_variable> type any. clear lt_fieldcat. lw_fieldcat-fieldname = 'FLD1'. lw_fieldcat-datatype = 'string'. lw_fieldcat-outputlen = '24'. lw_fieldcat-coltext = 'FLD1'. lw_fieldcat-seltext = lw_fieldcat-coltext. append lw_fieldcat to lt_fieldcat. lw_fieldcat-fieldname = 'FLD2'. lw_fieldcat-datatype = 'string'. lw_fieldcat-outputlen = '24'. lw_fieldcat-coltext = 'FLD2'. lw_fieldcat-seltext = lw_fieldcat-coltext. append lw_fieldcat to lt_fieldcat. call method cl_alv_table_create=>create_dynamic_table exporting it_fieldcatalog = lt_fieldcat importing ep_table = lt_dyn_table exceptions generate_subpool_dir_full = 1 others = 2. if sy-subrc <> 0. message id sy-msgid type sy-msgty number sy-msgno with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4. endif
$333 USD en 5 días
0,0 (0 comentarios)
0,0
0,0

Sobre este cliente

Bandera de EGYPT
Egypt
0,0
0
Miembro desde nov 20, 2016

Verificación del cliente

¡Gracias! Te hemos enviado un enlace para reclamar tu crédito gratuito.
Algo salió mal al enviar tu correo electrónico. Por favor, intenta de nuevo.
Usuarios registrados Total de empleos publicados
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Cargando visualización previa
Permiso concedido para Geolocalización.
Tu sesión de acceso ha expirado y has sido desconectado. Por favor, inica sesión nuevamente.