EJEMPLO IMPRESIÓN PDF desde llamada RFC a SAP utilizando una variable binaria SAP (XSTRING)

Size: px
Start display at page:

Download "EJEMPLO IMPRESIÓN PDF desde llamada RFC a SAP utilizando una variable binaria SAP (XSTRING)"

Transcription

1 En SAP R/3. EJEMPLO IMPRESIÓN PDF desde llamada RFC a SAP utilizando una variable binaria SAP (XSTRING) Crear formulario Z_TEST2 con transacción SFP Entonces si tenemos function RFC function zhr1_certs_via_portal_action. *" *"*"Local Interface: *" IMPORTING *" VALUE(REQUESTOR_ID) TYPE UNAME *" VALUE(I_ACTION) TYPE CHAR10 *" VALUE(I_FORM) TYPE NUMC01 OPTIONAL *" EXPORTING *" VALUE(E_PDF) TYPE XSTRING *" EXCEPTIONS *" PERNR_NOT_FOUND *" RUT_NOT_FOUND *" CONTRACT_DATE_NOT_FOUND *" PAYMENT_NOT_FOUND *" SHIFT_NOT_FOUND *" ASSET_NOT_FOUND *" * FUNCITON MODULE: # ZHR1_CERTS_VIA_PORTAL_ACTION * RELEASE # ECC 5.0 * DATE WRITTEN # * MODULE # HR * TYPE # Remote Function Module * AUTHOR # Wdjacn * TITLE # HR Certificates via Portal * PURPOSE # Provides required data for Web Dynpro front end * to HR Certificates * ASSOCIATED # Class: ZCL_HR_CERTS_EFORM * RESTRICTIONS # * DESCRIPTION # WD validates the user on the portal, and passes * the REQUESTOR_ID(UNAME) to retrieve data for. * AMENDMENTS # * VER DATE CHANGE # CHANGE DESCRIPTION User *====================================================================== * /07/08 GHDK9B0GJO New for WO Wdjacn data: wo_form type ref to zcl_hr_certs_eform.

2 * Copy to Export Structure translate requestor_id to upper case. create object wo_form type zcl_hr_certs_eform. * Process the Action case i_action. when 'PDF'. endcase. endfunction. Donde call method wo_form->print_pdf i_get_pdf = X e_pdf = e_pdf pernr_not_found = 1 rut_not_found = 2 contract_date_not_found = 3 payment_not_found = 4 shift_not_found = 5 asset_not_found = 6. if sy-subrc ne 0. case sy-subrc. when 1. raise pernr_not_found. when 2. raise rut_not_found. when 3. raise contract_date_not_found. when 4. raise payment_not_found. when 5. raise shift_not_found. when 6. raise asset_not_found. endcase. exit. method print_pdf. data: fm_name type rs38l_fnam, fp_outputparams type sfpoutputparams, fp_docparams type sfpdocparams, fp_formoutput type fpformoutput, wc_fpname type fpname,

3 wstr_fields type z_csr_eform, wstr_texts type z_csr_longtext, wstr_data type z_csr_eform. fp_outputparams-getpdf = i_getpdf. fp_outputparams-device = 'PRINTER'. fp_outputparams-dest = 'LP01'. fp_outputparams-nodialog = 'X'. fp_outputparams-preview = 'X'. * Sets the output parameters and opens the spool job call function 'FP_JOB_OPEN' changing ie_outputparams = fp_outputparams cancel = 1 usage_error = 2 system_error = 3 internal_error = 4 others = 5. perform get_data changing wstr_data. *Sets formname here *wc_fpname = * Get the name of the generated function module call function 'FP_FUNCTION_MODULE_NAME' i_name = 'Z_TEST2' e_funcname = fm_name. * Call the generated function module call function fm_name /1bcdwb/docparams = fp_docparams otb_ben_detail = wstr_data /1bcdwb/formoutput = fp_formoutput usage_error = 1 system_error = 2 internal_error = 3. * Close the spool job call function 'FP_JOB_CLOSE' usage_error = 1 system_error = 2 internal_error = 3 others = 4. e_pdf = fp_formoutput-pdf. endmethod.

4 En NW Developer Studio. public void retrievereviewpdf( ) //@@begin retrievereviewpdf() // we only call this model if it hasn't been called before - otherwise we just relaunch the url form and if (wdcontext.currentcontextelement().getreviewpdfwebcacheurl()!= null) launchnewpdfwindow(); else // we now have two parameters - which are then used to get the status of the // the type of eform reviewpdfmodel.seti_dgs_application(getdgsapplicationcode()); reviewpdfmodel.seti_eform_id(geteformid()); //@@end try reviewpdfmodel.execute(); wdcontext.nodezhr1_certs_via_portal_action_output().invalidate(); catch (Exception e) logger.errort( Category.APPLICATIONS, e.tostring() + " : " + reviewpdfmodel.getclass().getname()); // report message fpm.getmessagemanager().reportmessage( wdcomponentapi, "LOGGED_ERROR", WDMessageType.ERROR, IMessageFcGbsHrDgsReuse.LOGGED_ERROR)); return; // now we have to open a new window with this data if (writepdftowebcache()) launchnewpdfwindow();

5 private void launchnewpdfwindow() reviewpdfwindow = wdcomponentapi.getwindowmanager().createnonmodalexternalwindow( wdcontext.currentcontextelement().getreviewpdfwebcacheurl(), IMessageFcGbsHrDgsReuse.REVIEW_DATA)); reviewpdfwindow.removewindowfeature(wdwindowfeature.address_bar); reviewpdfwindow.removewindowfeature(wdwindowfeature.menu_bar); reviewpdfwindow.removewindowfeature(wdwindowfeature.status_bar); reviewpdfwindow.removewindowfeature(wdwindowfeature.tool_bar); reviewpdfwindow.open(); private boolean writepdftowebcache() String filename = wdcomponentapi.gettextaccessor().gettext(imessagefcgbshrdgsreuse.review_data).concat(".pdf"); IWDCachedWebResource cachedpdfresource = null; byte[] reviewpdf; try reviewpdf = wdcontext.currentzhr1_certs_via_portal_action_outputelement().gete_pdf(); // create a cached Web Dynpro for the given byte array and filename if (reviewpdf!= null) cachedpdfresource = WDWebResource.getWebResource(reviewPDF, WDWebResourceType.PDF); cachedpdfresource.setresourcename(filename); // Store URL and file name of cached Excel resource in context. if (cachedpdfresource!= null) wdcontext.currentcontextelement().setreviewpdfwebcacheurl( cachedpdfresource.geturl()); return true; else return false; catch (Exception e) logger.errort( Category.APPLICATIONS, e.tostring() + " : " + reviewpdfmodel.getclass().getname() + " : " + IWDCachedWebResource.class.getName()); // report message fpm.getmessagemanager().reportmessage( wdcomponentapi, "LOGGED_ERROR", WDMessageType.ERROR, IMessageFcGbsHrDgsReuse.LOGGED_ERROR)); return false;. private IWDWindow reviewpdfwindow;

Mandatory Field Check in Web Dynpro- ABAP

Mandatory Field Check in Web Dynpro- ABAP Mandatory Field Check in Web Dynpro- ABAP Applies to: SAP ECC 6.0 Onwards. For more information, visit the Web Dynpro ABAP homepage. Summary Efficient way to Apply Mandatory/Obligatory field Check on Input

More information

SRFax Fax API Web Services Documentation

SRFax Fax API Web Services Documentation SRFax Fax API Web Services Documentation Revision Date: July 2015 The materials and sample code are provided only for the purpose of an existing or potential customer evaluating or implementing a programmatic

More information

Visual basic string search function, download source code visual basic 6.0 gratis. > Visit Now <

Visual basic string search function, download source code visual basic 6.0 gratis. > Visit Now < Visual basic string search function, download source code visual basic 6.0 gratis. > Visit Now < Visual studio 2010 c# coding standards microsoft visual studio 2012 ultimate kickass curso online de basic

More information

Building a Multi-Threaded Web Server

Building a Multi-Threaded Web Server Building a Multi-Threaded Web Server In this lab we will develop a Web server in two steps. In the end, you will have built a multi-threaded Web server that is capable of processing multiple simultaneous

More information

Developer Guide. Android Printing Framework. ISB Vietnam Co., Ltd. (IVC) Page i

Developer Guide. Android Printing Framework. ISB Vietnam Co., Ltd. (IVC) Page i Android Printing Framework ISB Vietnam Co., Ltd. (IVC) Page i Table of Content 1 Introduction... 1 2 Terms and definitions... 1 3 Developer guide... 1 3.1 Overview... 1 3.2 Configure development environment...

More information

Manual Steps for SAP note 1596551

Manual Steps for SAP note 1596551 Manual Steps for SAP note 1596551 Manual Pre Implementation Steps 1. Create/upload forms. NOTE All of the forms created (listed below) should be included in package P04F. 1.1. Go to transaction SFP. 1.2.

More information

ABAP. Finding Appropriate Abstractions for Business Application Programming. Horst Keller, SAP AG Tobias Wenner, SAP AG

ABAP. Finding Appropriate Abstractions for Business Application Programming. Horst Keller, SAP AG Tobias Wenner, SAP AG ABAP Finding Appropriate Abstractions for Business Application Programming Horst Keller, SAP AG Tobias Wenner, SAP AG ABAP Finding Appropriate Abstractions for Business Application Programming Business

More information

Schema Classes. Polyhedra Ltd

Schema Classes. Polyhedra Ltd Schema Classes Polyhedra Ltd Copyright notice This document is copyright 1994-2006 by Polyhedra Ltd. All Rights Reserved. This document contains information proprietary to Polyhedra Ltd. It is supplied

More information

Web Services API Developer Guide

Web Services API Developer Guide Web Services API Developer Guide Contents 2 Contents Web Services API Developer Guide... 3 Quick Start...4 Examples of the Web Service API Implementation... 13 Exporting Warehouse Data... 14 Exporting

More information

ALV List with Radio Buttons

ALV List with Radio Buttons ALV List with Radio Buttons Applies to: Application Server ABAP 6.40 Summary The program shows how to define radio buttons in ALV grid lists. Author(s): Uwe Schieferstein Company: Cirrus Consulting AG,

More information

Tutorial - Creating Pop Up Window Using New Features in WebDynpro Java CE 7.1 Ehp1

Tutorial - Creating Pop Up Window Using New Features in WebDynpro Java CE 7.1 Ehp1 Tutorial - Creating Pop Up Window Using New Features in WebDynpro Java CE 7.1 Ehp1 Applies to: SAP Net Weaver CE 7.11. For more information visit the User Interface Home Page. For more information visit

More information

B A S I C S C I E N C E S

B A S I C S C I E N C E S B A S I C S C I E N C E S 10 B A S I C S C I E N C E S F I R S T S E M E S T E R C O U R S E S : H U M A N S T R U C T U R E A N D F U N C T I O N [ H S F I ] M O L E C U L A R B A S I S O F M E D I C

More information

BC - XBP Background Processing, Job Scheduling System Test Catalogue for BC-XBP 6.10 (Version 2.0) and BC-XBP 7.0 (Version 3.0)

BC - XBP Background Processing, Job Scheduling System Test Catalogue for BC-XBP 6.10 (Version 2.0) and BC-XBP 7.0 (Version 3.0) 1 BC - XBP Background Processing, Job Scheduling System Catalogue for BC-XBP 6.10 (Version 2.0) and BC-XBP 7.0 (Version 3.0) External Interface for Background Processing 2 regarding the certification of

More information

Problem 1 (2.5 points)

Problem 1 (2.5 points) Duration: 90 minutes University Carlos III of Madrid Instructions for the exam: Books and notes are not allowed. Please write your name, surname, NIA and group on all pages. Problem 1 (2.5 points) Context:

More information

Writing Bluetooth Mobile Apps

Writing Bluetooth Mobile Apps Writing Bluetooth Mobile Apps Vincent Gao, Bluetooth SIG, Inc. Bluetooth SIG Proprietary 1 Agenda Bluetooth Smart Ready application development overview Platform support ios Android Windows Phone Cross

More information

Business Scenario Using GP/Web Dynpro with Back and Forth 3 Level Process and Dynamic Approvers in a Loop

Business Scenario Using GP/Web Dynpro with Back and Forth 3 Level Process and Dynamic Approvers in a Loop Business Scenario Using GP/Web Dynpro with Back and Forth 3 Level Process and Dynamic Approvers in a Loop Applies to This Article applies to Guided Procedures, Web Dynpro Java, Business Process Modeling

More information

Migration Instructions for MS Dynamics CRM

Migration Instructions for MS Dynamics CRM USER MANUAL Migration Instructions for MS Dynamics CRM e-con 2012 3-9-2009 To-Increase BV Document Information Title Migration Instructions for MS Dynamics CRM Subject e-con 2012 Version Status Solution

More information

Cabot Consulting Oracle Solutions. The Benefits of this Approach. Infrastructure Requirements

Cabot Consulting Oracle Solutions. The Benefits of this Approach. Infrastructure Requirements Scheduling Workbooks through the Application Concurrent Manager By Rod West, Cabot Oracle Application users will be very familiar with the Applications concurrent manager and how to use it to schedule

More information

Global Search Developers Guide. Rev 2.7.5

Global Search Developers Guide. Rev 2.7.5 Rev 2.7.5 20 th October 2005 Introduction The goal of the IntraNomic Global Search module is to allow you to retrieve information from anywhere within your organization (e.g. a true organization wide search).

More information

Making SAP Information Steward a Key Part of Your Data Governance Strategy

Making SAP Information Steward a Key Part of Your Data Governance Strategy Making SAP Information Steward a Key Part of Your Data Governance Strategy Part 3 SAP Information Steward Metadata Management and Metapedia Part 1 in our series on Data Governance defined the concept of

More information

First Java Programs. V. Paúl Pauca. CSC 111D Fall, 2015. Department of Computer Science Wake Forest University. Introduction to Computer Science

First Java Programs. V. Paúl Pauca. CSC 111D Fall, 2015. Department of Computer Science Wake Forest University. Introduction to Computer Science First Java Programs V. Paúl Pauca Department of Computer Science Wake Forest University CSC 111D Fall, 2015 Hello World revisited / 8/23/15 The f i r s t o b l i g a t o r y Java program @author Paul Pauca

More information

Illustration 1: Diagram of program function and data flow

Illustration 1: Diagram of program function and data flow The contract called for creation of a random access database of plumbing shops within the near perimeter of FIU Engineering school. The database features a rating number from 1-10 to offer a guideline

More information

Unit Testing & JUnit

Unit Testing & JUnit Unit Testing & JUnit Lecture Outline Communicating your Classes Introduction to JUnit4 Selecting test cases UML Class Diagrams Rectangle height : int width : int resize(double,double) getarea(): int getperimeter():int

More information

DEPLOYMENT GUIDE DEPLOYING F5 WITH SAP NETWEAVER AND ENTERPRISE SOA

DEPLOYMENT GUIDE DEPLOYING F5 WITH SAP NETWEAVER AND ENTERPRISE SOA DEPLOYMENT GUIDE DEPLOYING F5 WITH SAP NETWEAVER AND ENTERPRISE SOA Table of Contents Table of Contents Introducing the F5 Deployment Guide for SAP NetWeaver and Enterprise SOA Prerequisites and configuration

More information

SAP" Interactive Forms by Adobe*

SAP Interactive Forms by Adobe* Jurgen Hauser, Andreas Deutesfield, Stephan Rehmann, and Thomas Sziks SAP" Interactive Forms by Adobe* a ^. Galileo Press Bonn Boston ILIiJ*!^^^ 2.1 PDF, PDF-Based Print Forms, and Interactive PDF Forms

More information

µtasker Document FTP Client

µtasker Document FTP Client Embedding it better... µtasker Document FTP Client utaskerftp_client.doc/1.01 Copyright 2012 M.J.Butcher Consulting Table of Contents 1. Introduction...3 2. FTP Log-In...4 3. FTP Operation Modes...4 4.

More information

Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today.

Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today. & & 1 & 2 Lecture #7 2008 3 Terminology Structure & & Database server software referred to as Database Management Systems (DBMS) Database schemas describe database structure Data ordered in tables, rows

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Request Management help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Request Management help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Request Management help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

How To Use Syntheticys User Management On A Pc Or Mac Or Macbook Powerbook (For Mac) On A Computer Or Mac (For Pc Or Pc) On Your Computer Or Ipa (For Ipa) On An Pc Or Ipad

How To Use Syntheticys User Management On A Pc Or Mac Or Macbook Powerbook (For Mac) On A Computer Or Mac (For Pc Or Pc) On Your Computer Or Ipa (For Ipa) On An Pc Or Ipad SYNTHESYS MANAGEMENT User Management Synthesys.Net User Management 1 SYNTHESYS.NET USER MANAGEMENT INTRODUCTION...3 STARTING SYNTHESYS USER MANAGEMENT...4 Viewing User Details... 5 Locating individual

More information

CREATING AN IMAGE FROM AUTOCAD CADD NOTE 16. MENU: AutoCAD, File, Plot COMMAND: plot ICON:

CREATING AN IMAGE FROM AUTOCAD CADD NOTE 16. MENU: AutoCAD, File, Plot COMMAND: plot ICON: CADD NOTE 16 This CADD Note provides instructions on creating an image from an AutoCAD drawing that can be pasted into another application (e.g., Word, Powerpoint, etc.). These instructions assume the

More information

Exposing RFC as Web Service and Consuming Web Service in Interactive Forms in ABAP

Exposing RFC as Web Service and Consuming Web Service in Interactive Forms in ABAP Exposing RFC as Web Service and Consuming Web Service in Interactive Forms in ABAP Applies to: SAP Interactive Forms by Adobe and Web Service in ABAP. For more information, visit SAP Interactive forms

More information

How To Use Senior Systems Cloud Services

How To Use Senior Systems Cloud Services Senior Systems Cloud Services In this guide... Senior Systems Cloud Services 1 Cloud Services User Guide 2 Working In Your Cloud Environment 3 Cloud Profile Management Tool 6 How To Save Files 8 How To

More information

Message handling in SAP CRM Web UI

Message handling in SAP CRM Web UI Message handling in SAP CRM Web UI Applies to: SAP CRM 7.0. For more information, visit Customer Relationship Management homepage Summary This article is aimed at understanding different ways of handling

More information

Splitting the Custom Container & Display more than one ALV

Splitting the Custom Container & Display more than one ALV Splitting the Custom Container & Display more than one ALV Applies to: This document applies to SAP ECC 6.0, SAP Netweaver 2004s. For more information, visit the ABAP homepage. Summary This article contains

More information

PE Training and Event Management. SAP ERP Central Component

PE Training and Event Management. SAP ERP Central Component PE Training and Event Management SAP ERP Central Component Release 5.0 Release Notes Copyright 2004 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form

More information

SAP BI Generic Extraction Using a Function Module

SAP BI Generic Extraction Using a Function Module SAP BI Generic Extraction Using a Function Module Applies to: SAP BI Summary This article demonstrates a step-by-step process for doing generic extraction from R3 into BI using a Function Module. Author(s):

More information

RT Support Ticket System

RT Support Ticket System Table of Contents RT Self Service Panel Login... 1 Creating a New Ticket... 1 Reviewing the Ticket... 3 Reading a Thread... 3 Resolving a Ticket... 4 Re-opening a Ticket... 4 Note: At the time of purchase,

More information

Working with the ERP Integration Service of EMC Documentum Process Services for SAP

Working with the ERP Integration Service of EMC Documentum Process Services for SAP Working with the ERP Integration Service of EMC Documentum Process Services for SAP Applied Technology Abstract EMC Documentum Process Services for SAP is a new product that integrates with EMC Documentum

More information

Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication

Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication Contents Domain Controller Certificates... 1 Enrollment for a Domain Controller Certificate...

More information

Installation Description

Installation Description OrgPublisher SAP Interface Version 6.1 SAP ERP 6.0 Trademarks SAP, mysap, and R/3 are trademarks and/or registered trademarks of SAP AG in Germany and in other countries. OrgPublisher is a trademark of

More information

Brekeke PBX Web Service

Brekeke PBX Web Service Brekeke PBX Web Service User Guide Brekeke Software, Inc. Version Brekeke PBX Web Service User Guide Revised October 16, 2006 Copyright This document is copyrighted by Brekeke Software, Inc. Copyright

More information

The New ABAP Debugger - An Introduction. Boris Gebhardt Christoph Stoeck SAP AG

The New ABAP Debugger - An Introduction. Boris Gebhardt Christoph Stoeck SAP AG The New ABAP Debugger - An Introduction Boris Gebhardt Christoph Stoeck SAP AG 1 Content Motivation & Goals Two Process Architecture Starting The New Debugger New Debugger UI Main Parts Customize The New

More information

Reach 4 million Unity developers

Reach 4 million Unity developers Reach 4 million Unity developers with your Android library Vitaliy Zasadnyy Senior Unity Dev @ GetSocial Manager @ GDG Lviv Ankara Android Dev Days May 11-12, 2015 Why Unity? Daily Users 0 225 M 450 M

More information

Forensic Analysis of Internet Explorer Activity Files

Forensic Analysis of Internet Explorer Activity Files Forensic Analysis of Internet Explorer Activity Files by Keith J. Jones keith.jones@foundstone.com 3/19/03 Table of Contents 1. Introduction 4 2. The Index.dat File Header 6 3. The HASH Table 10 4. The

More information

Using scanners with Axapta Document Management

Using scanners with Axapta Document Management Using scanners with Axapta Document Management pedro.rodriguez@lorca.es Using scanners with Axapta Document Management 2 Foreword I was seeking a way to make more agile the work of introducing documents

More information

CHAPTER 10: WEB SERVICES

CHAPTER 10: WEB SERVICES Chapter 10: Web Services CHAPTER 10: WEB SERVICES Objectives Introduction The objectives are: Provide an overview on how Microsoft Dynamics NAV supports Web services. Discuss historical integration options,

More information

Application Development with TCP/IP. Brian S. Mitchell Drexel University

Application Development with TCP/IP. Brian S. Mitchell Drexel University Application Development with TCP/IP Brian S. Mitchell Drexel University Agenda TCP/IP Application Development Environment Client/Server Computing with TCP/IP Sockets Port Numbers The TCP/IP Application

More information

Implementing Object Tracking on Cisco IOS XR Software

Implementing Object Tracking on Cisco IOS XR Software Implementing Object Tracking on Cisco IOS XR Software This module describes the configuration of object tracking on your Cisco IOS XR network. For information about its application in IPSec, see Cisco

More information

LabVIEW Internet Toolkit User Guide

LabVIEW Internet Toolkit User Guide LabVIEW Internet Toolkit User Guide Version 6.0 Contents The LabVIEW Internet Toolkit provides you with the ability to incorporate Internet capabilities into VIs. You can use LabVIEW to work with XML documents,

More information

Pilot CSI Project Setup Guide

Pilot CSI Project Setup Guide Pilot CSI Project Setup Guide Table of Contents 1. Introduction... 3 2. Setting up Project Information... 4 3. MS Project Basics... 7 Versions, Licensing & Installation... 7 Configure MS Project to Connect

More information

DEVELOPING DATA PROVIDERS FOR NEEDFORTRADE STUDIO PLATFORM DATA PROVIDER TYPES

DEVELOPING DATA PROVIDERS FOR NEEDFORTRADE STUDIO PLATFORM DATA PROVIDER TYPES DEVELOPING DATA PROVIDERS FOR NEEDFORTRADE STUDIO PLATFORM NeedForTrade.com Internal release number: 2.0.2 Public release number: 1.0.1 27-06-2008 To develop data or brokerage provider for NeedForTrade

More information

SQL Server 2005 Reporting Services (SSRS)

SQL Server 2005 Reporting Services (SSRS) SQL Server 2005 Reporting Services (SSRS) Author: Alex Payne and Brian Welcker Published: May 2005 Summary: SQL Server 2005 Reporting Services is a key component of SQL Server 2005. Reporting Services

More information

Web Service Caching Using Command Cache

Web Service Caching Using Command Cache Web Service Caching Using Command Cache Introduction Caching can be done at Server Side or Client Side. This article focuses on server side caching of web services using command cache. This article will

More information

Salesforce Integration Using PI: How to Perform Query and Other DML Operations Using the Enterprise WSDL

Salesforce Integration Using PI: How to Perform Query and Other DML Operations Using the Enterprise WSDL Salesforce Integration Using PI: How to Perform Query and Other DML Operations Using the Enterprise WSDL Applies to: SAP NetWeaver Process Integration 7.1 Summary A case study for integrating Salesforce.com

More information

PRESTASHOP VTIGER CRM CONNECTOR

PRESTASHOP VTIGER CRM CONNECTOR PRESTASHOP VTIGER CRM CONNECTOR Page 1 / 14 Vtiger CRM - Prestashop Connector For PRESTASHOP version 1.4.x and 1.5.x For vtiger CRM version 5.1, 5.2.0, 5.2.1, 5.3 and 5.4 Introduction As an e-shop manager,

More information

Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science. Unit of Study / Textbook Correlation

Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science. Unit of Study / Textbook Correlation Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science updated 03/08/2012 Unit 1: JKarel 8 weeks http://www.fcps.edu/is/pos/documents/hs/compsci.htm

More information

Image Verification. Finding Feature Information. Restrictions for Image Verification

Image Verification. Finding Feature Information. Restrictions for Image Verification The feature allows users to automatically verify the integrity of Cisco IOS images. Thus, users can be sure that the image is protected from accidental corruption, which can occur at any time during transit,

More information

Configuring AnyConnect VPN Client Connections

Configuring AnyConnect VPN Client Connections CHAPTER 40 The Cisco AnyConnect SSL VPN Client provides secure SSL connections to the security appliance for remote users. Without a previously-installed client, remote users enter the IP address in their

More information

Using the Studio Source Control Hooks

Using the Studio Source Control Hooks Using the Studio Source Control Hooks Version 2008.1 29 January 2008 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Using the Studio Source Control Hooks Caché Version

More information

DB2 Web Query Interfaces

DB2 Web Query Interfaces DB2 Web Query Interfaces There are several different access methods within DB2 Web Query and their related products. Here is a brief summary of the various interface and access methods. Method: DB2 Web

More information

SMTP-32 Library. Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows. Version 5.2

SMTP-32 Library. Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows. Version 5.2 SMTP-32 Library Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows Version 5.2 Copyright 1994-2003 by Distinct Corporation All rights reserved Table of Contents 1 Overview... 5 1.1

More information

BSc (Hons) Business Information Systems, BSc (Hons) Computer Science with Network Security. & BSc. (Hons.) Software Engineering

BSc (Hons) Business Information Systems, BSc (Hons) Computer Science with Network Security. & BSc. (Hons.) Software Engineering BSc (Hons) Business Information Systems, BSc (Hons) Computer Science with Network Security & BSc. (Hons.) Software Engineering Cohort: BIS/05/FT BCNS/05/FT BSE/05/FT Examinations for 2005-2006 / Semester

More information

Damian Kolasa. Summary. Experience. Freelancer SAP ABAP programmer damiankolasa89@gmail.com. ABAP developer ERP Specialist

Damian Kolasa. Summary. Experience. Freelancer SAP ABAP programmer damiankolasa89@gmail.com. ABAP developer ERP Specialist Damian Kolasa Freelancer SAP ABAP programmer damiankolasa89@gmail.com Summary ABAP developer ERP Specialist Experience SAP ABAP Programmer at ABB stycze# 2014 - Obecnie (2 mies.) SAP ABAP Developer/Consultant

More information

Deploying the BIG-IP System v10 with SAP NetWeaver and Enterprise SOA: ERP Central Component (ECC)

Deploying the BIG-IP System v10 with SAP NetWeaver and Enterprise SOA: ERP Central Component (ECC) DEPLOYMENT GUIDE Deploying the BIG-IP System v10 with SAP NetWeaver and Enterprise SOA: ERP Central Component (ECC) Version 1.1 Table of Contents Table of Contents Deploying the BIG-IP system v10 with

More information

COSC344 Database Theory and Applications. Java and SQL. Lecture 12

COSC344 Database Theory and Applications. Java and SQL. Lecture 12 COSC344 Database Theory and Applications Lecture 12: Java and SQL COSC344 Lecture 12 1 Last Lecture Trigger Overview This Lecture Java & SQL Source: Lecture notes, Textbook: Chapter 12 JDBC documentation

More information

13 File Output and Input

13 File Output and Input SCIENTIFIC PROGRAMMING -1 13 File Output and Input 13.1 Introduction To make programs really useful we have to be able to input and output data in large machinereadable amounts, in particular we have to

More information

ESCI 386 IDL Programming for Advanced Earth Science Applications Lesson 6 Program Control

ESCI 386 IDL Programming for Advanced Earth Science Applications Lesson 6 Program Control ESCI 386 IDL Programming for Advanced Earth Science Applications Lesson 6 Program Control Reading: Bowman, Chapters 16 CODE BLOCKS A code block consists of several lines of code contained between a BEGIN

More information

Technical Note. Micron NAND Flash Controller via Xilinx Spartan -3 FPGA. Overview. TN-29-06: NAND Flash Controller on Spartan-3 Overview

Technical Note. Micron NAND Flash Controller via Xilinx Spartan -3 FPGA. Overview. TN-29-06: NAND Flash Controller on Spartan-3 Overview Technical Note TN-29-06: NAND Flash Controller on Spartan-3 Overview Micron NAND Flash Controller via Xilinx Spartan -3 FPGA Overview As mobile product capabilities continue to expand, so does the demand

More information

Upload Data in Web Dynpro Table from a Text File with Delimiters

Upload Data in Web Dynpro Table from a Text File with Delimiters Upload Data in Web Dynpro Table from a Text File with Delimiters Applies to: SAP NetWeaver Web Dynpro. For more information, visit the Portal and Collaboration homepage. Summary This article uploads the

More information

EPM2000 LabVIEW Building Applications Instructions

EPM2000 LabVIEW Building Applications Instructions EPM2000 LabVIEW Building Applications Instructions Copyright (C) 2000 Molectron Detector, Incorporated Introduction The EPM2000 LabVIEW VI library is a collection of 57 configuration VIs that allow the

More information

Document Management: Document Imaging System Setup

Document Management: Document Imaging System Setup Document Management: DocMan, Release 4.1 2003 Enterprise Computer Systems, Inc., Greenville, SC Notice This manual is provided to enhance your knowledge of the software product. It is your responsibility

More information

Web Application Report

Web Application Report Web Application Report This report includes important security information about your Web Application. Security Report This report was created by IBM Rational AppScan 8.5.0.1 11/14/2012 8:52:13 AM 11/14/2012

More information

Visual Basic Programming. An Introduction

Visual Basic Programming. An Introduction Visual Basic Programming An Introduction Why Visual Basic? Programming for the Windows User Interface is extremely complicated. Other Graphical User Interfaces (GUI) are no better. Visual Basic provides

More information

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

... Introduction... 17

... Introduction... 17 ... Introduction... 17 1... Workbench Tools and Package Hierarchy... 29 1.1... Log on and Explore... 30 1.1.1... Workbench Object Browser... 30 1.1.2... Object Browser List... 31 1.1.3... Workbench Settings...

More information

ControlCenter WebCenter

ControlCenter WebCenter ControlCenter WebCenter User and Installation Manual www.infralogic.dk Copyright and Trademarks ControlCenter WebCenter User Guide Version 1.1 Jan 2005 Part number: CCENT WEBCENTER 11 Copyright 2005 by

More information

WESTMORELAND COUNTY PUBLIC SCHOOLS 2011 2012 Integrated Instructional Pacing Guide and Checklist Computer Math

WESTMORELAND COUNTY PUBLIC SCHOOLS 2011 2012 Integrated Instructional Pacing Guide and Checklist Computer Math Textbook Correlation WESTMORELAND COUNTY PUBLIC SCHOOLS 2011 2012 Integrated Instructional Pacing Guide and Checklist Computer Math Following Directions Unit FIRST QUARTER AND SECOND QUARTER Logic Unit

More information

Adobe Document Service Configuration and Troubleshooting Guide

Adobe Document Service Configuration and Troubleshooting Guide Adobe Document Service Configuration and Troubleshooting Guide Applies to: SAP NetWeaver 7.0. For more information, visit the Application Management homepage. Summary This document is intended to guide

More information

The following program is aiming to extract from a simple text file an analysis of the content such as:

The following program is aiming to extract from a simple text file an analysis of the content such as: Text Analyser Aim The following program is aiming to extract from a simple text file an analysis of the content such as: Number of printable characters Number of white spaces Number of vowels Number of

More information

ADOBE READER AND ACROBAT

ADOBE READER AND ACROBAT ADOBE READER AND ACROBAT IFILTER CONFIGURATION Table of Contents Table of Contents... 1 Overview of PDF ifilter 11 for 64-bit platforms... 3 Installation... 3 Installing Adobe PDF IFilter... 3 Setting

More information

Next Generation ABAP Development

Next Generation ABAP Development Rich Heilman, Thomas Jung Next Generation ABAP Development Bonn Boston Contents at a Glance 1 Workbench Tools and Package Hierarchy... 23 2 Data Dictionary Objects... 43 3 Data Persistence Layer... 71

More information

Create a New Stock Item. Click Stock on top bar of buttons on main screen. To enter a new stock item onto the system click New.

Create a New Stock Item. Click Stock on top bar of buttons on main screen. To enter a new stock item onto the system click New. Chapter 6 Stock 139 140 Create a New Stock Item Click Stock on top bar of buttons on main screen. Stock Section To enter a new stock item onto the system click New. This will open the Stock Wizard. New

More information

Kofax Export Connector 8.3.0 for Microsoft SharePoint

Kofax Export Connector 8.3.0 for Microsoft SharePoint Kofax Export Connector 8.3.0 for Microsoft SharePoint Administrator's Guide 2013-02-27 2013 Kofax, Inc., 15211 Laguna Canyon Road, Irvine, California 92618, U.S.A. All rights reserved. Use is subject to

More information

White Paper. The integration of Formate and Alchemy

White Paper. The integration of Formate and Alchemy Document Genetics Phone 0870 78 79 185 Hall Farm, Sywell, Email info@document-genetics.com Northants. NN6 0BN Fax 0870 78 79 186 http://www.document-genetics.com White Paper The integration of Formate

More information

SAP Senior Consultant Master of Engineering Diploma in business administration

SAP Senior Consultant Master of Engineering Diploma in business administration D A N I E L G R A V E R S E N PERSONAL INFORMATION Degree Company Email Nationality SAP Senior Consultant Master of Engineering Diploma in business administration Figaf ApS Denmark DGR@FIGAF.COM Danish

More information

sngraph * Optimal software to manage scale-free networks

sngraph * Optimal software to manage scale-free networks sngraph * Optimal software to manage scale-free networks R. Maestre-Martínez ** Geographic Information System Unit Center for Humanities and Social Sciences Spanish National Research Council Madrid 200,

More information

Copyright 2011 - Bizagi. Change Management Construction Document Bizagi Process Modeler

Copyright 2011 - Bizagi. Change Management Construction Document Bizagi Process Modeler Copyright 2011 - Bizagi Change Management Bizagi Process Modeler Table of Contents Change Management... 4 Description... 4 Main Facts in the Process Construction... 5 Data Model... 5 Parameter Entities...

More information

Using XACML Policies to Express OAuth Scope. Hal Lockhart Oracle June 27, 2013

Using XACML Policies to Express OAuth Scope. Hal Lockhart Oracle June 27, 2013 Using XACML Policies to Express OAuth Scope Hal Lockhart Oracle June 27, 2013 Topics Scope Background Requirements Design AlternaKves XACML Overview Proposed Approach Benefits Next Steps Future Research

More information

AT&T VERIFY CONNECT (V3.2.0) GETTING STARTED GUIDE FOR MOBILE SDK

AT&T VERIFY CONNECT (V3.2.0) GETTING STARTED GUIDE FOR MOBILE SDK AT&T VERIFY CONNECT (V3.2.0) GETTING STARTED GUIDE FOR MOBILE SDK AT&T Verify Connect is powered by SecureKey Technologies Inc. briidge.net Connect service platform. No part of this document may be copied,

More information

Data Mailbox. support.ewon.biz. Reference Guide

Data Mailbox. support.ewon.biz. Reference Guide Reference Guide RG 005-0-EN / Rev. 1.0 Data Mailbox The Data Mailbox is a Talk2M service that gathers ewon historical data and makes it available for third party applications in an easy way. support.ewon.biz

More information

ClientAce WPF Project Example

ClientAce WPF Project Example Technical Note ClientAce WPF Project Example 1. Introduction Traditional Windows forms are being replaced by Windows Presentation Foundation 1 (WPF) forms. WPF forms are fundamentally different and designed

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

Emails sent to the FaxFinder fax server must meet the following criteria to be processed for sending as a fax:

Emails sent to the FaxFinder fax server must meet the following criteria to be processed for sending as a fax: FaxFinder FFx30 T.37 Store & Forward Fax (T.37) Introduction The FaxFinder implements T.37 Store and Forward Fax (RFC2304) to convert emails into facsimile transmissions. The FaxFinder fax server accepts

More information

Web Server Manual. Mike Burns (netgeek@speakeasy.net) Greg Pettyjohn (gregp@ccs.neu.edu) Jay McCarthy (jay.mccarthy@gmail.com) November 20, 2006

Web Server Manual. Mike Burns (netgeek@speakeasy.net) Greg Pettyjohn (gregp@ccs.neu.edu) Jay McCarthy (jay.mccarthy@gmail.com) November 20, 2006 Web Server Manual Mike Burns (netgeek@speakeasy.net) Greg Pettyjohn (gregp@ccs.neu.edu) Jay McCarthy (jay.mccarthy@gmail.com) November 20, 2006 Copyright notice Copyright c 1996-2006 PLT Permission is

More information

Mini Project Report ONLINE SHOPPING SYSTEM

Mini Project Report ONLINE SHOPPING SYSTEM Mini Project Report On ONLINE SHOPPING SYSTEM Submitted By: SHIBIN CHITTIL (80) NIDHEESH CHITTIL (52) RISHIKESE M R (73) In partial fulfillment for the award of the degree of B. TECH DEGREE In COMPUTER

More information

Level 3 Develop software using Java (7266/7267-305)

Level 3 Develop software using Java (7266/7267-305) Level 3 Develop software using Java (7266/7267-305) e-quals Assignment guide for Candidates Assignment D www.cityandguilds.com/e-quals07 November 2008 Version 2.0 About City & Guilds City & Guilds is the

More information

DocuSign for SharePoint 2010 1.5.1

DocuSign for SharePoint 2010 1.5.1 Quick Start Guide DocuSign for SharePoint 2010 1.5.1 Published December 22, 2014 Overview DocuSign for SharePoint 2010 allows users to sign or send documents out for signature from a SharePoint library.

More information

1998-2002 by NetMedia, Inc. All rights reserved. Basic Express, BasicX, BX-01, BX-24 and BX-35 are trademarks of NetMedia, Inc. 2.

1998-2002 by NetMedia, Inc. All rights reserved. Basic Express, BasicX, BX-01, BX-24 and BX-35 are trademarks of NetMedia, Inc. 2. Version 2.0 1998-2002 by NetMedia, Inc. All rights reserved. Basic Express, BasicX, BX-01, BX-24 and BX-35 are trademarks of NetMedia, Inc. 2.00H 2 Contents 1. Downloader...4 2. Editor and compiler...8

More information

User Guide. Trade Finance Global. Reports Centre. October 2015. nordea.com/cm OR tradefinance Name of document 8/8 2015/V1

User Guide. Trade Finance Global. Reports Centre. October 2015. nordea.com/cm OR tradefinance Name of document 8/8 2015/V1 User Guide Trade Finance Global Reports Centre October 2015 nordea.com/cm OR tradefinance Name of document 2015/V1 8/8 Table of Contents 1 Trade Finance Global (TFG) Reports Centre Overview... 4 1.1 Key

More information

gomobi Traffic Switching Guide Version 0.9, 28 September 2010

gomobi Traffic Switching Guide Version 0.9, 28 September 2010 gomobi Traffic Switching Guide Version 0.9, 28 September 2010 Mobile/Desktop Traffic Switching... 3 Summary of Options... 3 Single Site Solutions... 4 Server-side Switching Code... 4 JavaScript Switching

More information