SAP Application Interface Framework with Error and Conflict Handler

Size: px
Start display at page:

Download "SAP Application Interface Framework with Error and Conflict Handler"

Transcription

1 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler Applies t: SAP Applicatin Interface Framewrk 2.0 with cmpnent AIFX and SAP NetWeaver Summary This dcument describes the integratin scenaris between the SAP Applicatin Interface Framewrk and the Errr and Cnflict Handler. Tw different scenaris exist. The first scenari allws yu t display data f the ECH in Mnitring and Errr Handling. The secnd scenari enables yu t handle messages prcessed with the SAP Applicatin Interface Framewrk in ECH. Authr: Verena Wörner Cmpany: SAP AG Created n: 03 December 2012 Authr Bi Verena Wörner is a develper fr SAP Custm Develpment. She is a member f the develpment team fr the SAP Applicatin Interface Framewrk. scn.sap.cm 2012 SAP AG 1

2 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler Table f Cntents Overview... 3 Preparatin... 3 Display Messages f ECH in Mnitring and Errr Handling... 3 Display Messages Prcessed with SAP Applicatin Interface Framewrk in ECH... 8 Related Cntent Cpyright scn.sap.cm 2012 SAP AG 2

3 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler Overview SAP Applicatin Interface Framewrk prvides yu with mnitring and errr handling functinality. The Errr and Cnflict Handler (ECH) is an errr handling tl implementing the cncept f frward errr handling prvided by SAP NetWeaver. The integratin f the SAP Applicatin Interface Framewrk and ECH invlve tw different scenaris: Display messages f ECH in Mnitring and Errr Handling (/AIF/ERR). This scenari allws yu, t als display messages that yu wuld usually see in ECH in Mnitring and Errr Handling f SAP Applicatin Interface Framewrk. In rder t display this message in Mnitring and Errr Handling yu have t d sme custmizing in the SAP Applicatin Interface Framewrk. This guide will shw yu an example f an interface that will create a custmer fr the flight mdel. The example will then shw yu hw yu can mnitr thse messages in the SAP Applicatin Interface Framewrk Preparatin Display messages prcessed with the SAP Applicatin Interface Framewrk in ECH. This scenari applies if yu want t make use f the interface implementatin capabilities f the SAP Applicatin Interface Framewrk. Hwever, fr ding errr handling yu wuld like t use the ECH. The dcument will prvide yu with an example f hw yu can implement such an interface. Befre yu can use the SAP Applicatin Interface Framewrk with the Errr and Cnflict Handler (ECH), yu shuld make sure that the ECH is activated. Yu can activate the ECH in Custmizing (transactin SPRO) under Crss Applicatin CmpnentsPrcesses and Tls fr Business ApplicatinsEnterprise ServicesErrr and Cnflict HandlerActivate Errr and Cnflict Handler. A service interface shuld have been created in ESR. Then yu can generate the prxy class in yur applicatin system. Display Messages f ECH in Mnitring and Errr Handling If yu chse this scenari yu can d errr handling (fr example, edit, save, restart and cancel) fr yur ECH interface in the SAP Applicatin Interface Framewrk s Mnitring and Errr Handling, t. The lcking, versin handing, and status cntrlling reuse ECH standard functins, s that they are cnsistent and synchrnized between Mnitring and Errr Handling in the SAP Applicatin Interface Framewrk and ECH mnitring. This integratin scenari is independent f the SAP Applicatin Interface Framewrk runtime as Mnitring and Errr Handling wrks n the PPO persistence layer utilized by ECH. First f all yu need an implemented prxy interface. If yu have nt already dne s generate the prxy class frm the service interface yu wuld like t implement in transactin SPROXY. Implement the prxy methd. Example Implementatin f prxy class methd t create custmers: The implementatin belw shws hw the implementatin f the prxy methd culd lk like. The interface will create a custmer fr the flight mdel. In rder t create the custmer BAPI_FLCUST_CREATEFROMDATA will be called. T be able t display the messages in ECH yu need t call methd COLLECT f class CL_FEH_REGISTRATION in case the BAPI returns an errr. METHOD zaif_x102_ii_ech_aif_in01~test_inbund01. DATA: lt_add_data TYPE zaif_test_zgtp_test_raw_ad_tab, ls_custmer_data TYPE bapiscunew, lt_return TYPE bapirettab, ls_return TYPE bapiret2. FIELD-SYMBOLS: <ls_add_data> TYPE zaif_test_zgtp_test_raw_add_da. lt_add_data = input-zgtp_test_raw_mt-raw_add_data_t. LOOP AT lt_add_data ASSIGNING <ls_add_data>. ls_custmer_data-custname = <ls_add_data>-add_data_key. scn.sap.cm 2012 SAP AG 3

4 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler ls_custmer_data-street = <ls_add_data>-add_data1. ls_custmer_data-pstcde = <ls_add_data>-add_data2. ls_custmer_data-city = <ls_add_data>-add_data3. ls_custmer_data-cuntr = <ls_add_data>-add_data4. ls_custmer_data-custtype = <ls_add_data>-add_data5. ls_custmer_data- = <ls_add_data>-add_data6. CALL FUNCTION 'BAPI_FLCUST_CREATEFROMDATA' EXPORTING custmer_data = ls_custmer_data TABLES return = lt_return. ENDLOOP. *check if an errr ccured during when creating the custmer READ TABLE lt_return INTO ls_return WITH KEY type = 'E'. IF sy-subrc = 0. DATA: lr_feh_registratin TYPE REF TO cl_feh_registratin, lv_errr_categry TYPE ech_dte_errr_categry, ls_main_bject TYPE ech_str_bject. lr_feh_registratin = cl_feh_registratin=>s_initialize( ). lv_errr_categry = 'PRE'. "as per table /SAPPO/SERR_CAT. ls_main_bject-bjcat = '1'. ls_main_bject-bjtype = 'SCUSTOM'. ls_main_bject-bjkey = ls_custmer_data-custname. TRY. lr_feh_registratin->cllect( i_single_b = input i_errr_categry = lv_errr_categry i_main_message = ls_return i_main_bject = ls_main_bject ). CATCH cx_ai_system_fault. ENDTRY. cl_prxy_fault=>raise( exceptin_class_name bapireturn_tab ). ENDIF. ENDMETHOD. = 'ZAIF_TEST_CX_ZGT_FAULT' = lt_return Furthermre, yu need an ECH actin class, which shuld implement interface IF_ECH_ACTION. Yur actin class needs a static attribute GO_ECH_ACTION, which shuld have the type f yur actin class. The visibility f the attribute shuld be set t prtected. Additinally, yu have t implement methd S_CREATE, with the cding displayed belw: METHOD if_ech_actin~s_create. IF NOT g_ech_actin IS BOUND. CREATE OBJECT g_ech_actin. ENDIF. r_actin_class = g_ech_actin. ENDMETHOD. scn.sap.cm 2012 SAP AG 4

5 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler Furthermre, yu have t maintain sme ECH specific custmizing. Therefre, g t transactin SPRO and perfrm fllwing steps: Create an ECH business prcess and assign the actin class as well as the ntificatin class. T d s g t Crss Applicatin CmpnentsPrcesses and Tls fr Business ApplicatinsEnterprise ServicesErrr and Cnflict HandlerDefine Business Prcess. Yu have t maintain fllwing values: Cmpnent Business Prcess Actin Class (Nte: the actin class has t implement interface IF_ECH_ACTION) Ntificatin: CL_FEH_REGISTRATION Business Prcess Descriptin Create a business prcess fr the Pstprcessing Office. G t Crss Applicatin CmpnentsPrcesses and Tls fr Business ApplicatinsEnterprise ServicesErrr and Cnflict HandlerPstprcessing OfficeBusiness PrcessDefine Business Prcesses. Maintain fllwing fields: Sftware Cmpnent Prcess Prcess Descriptin Map the ECH Business Prcess t the PPO Business Prcess. G t Crss Applicatin CmpnentsPrcesses and Tls fr Business ApplicatinsEnterprise ServicesErrr and Cnflict HandlerDefine Business Prcess fr Pstprcessing Office. Maintain fllwing fields: Cmpnent Business Prcess (ECH) Sftware Cmpnent (PPO) PPO Prcess Assign the prxy class fr yur service peratin t the ECH prcess. G t Crss Applicatin CmpnentsPrcesses and Tls fr Business ApplicatinsEnterprise ServicesErrr and Cnflict HandlerAssign Caller t a Business Prcess. Maintain fllwing fields: API Name API Cmpnent Call Type Cmpnent Business Prcess In rder t be able t display messages f this service interface in Mnitring and Errr Handling, yu need t d sme SAP Applicatin Interface Framewrk specific custmizing. This can be dne in transactin /AIF/CUST. Create a new interface in Custmizing activity Define Interfaces. Select a namespace and maintain an interface name and an interface versin. Enter the name f yur prxy class int Prxy Class Inbund. The Raw Data Structure and Recrd Type in Raw Structure shuld be filled autmatically. Furthermre, enter the recrd type s type as SAP Data Structure. Furthermre, yu have t define which data messages shuld belng t yur interface in the SAP Applicatin Interface Framewrk. Therefre, g t Custmizing activity Additinal Interface PrpertiesAssign ECH Cmpnent. Select yur interface and enter the Sftware Cmpnent and the ECH Prcess. T enable the Mnitring and Errr Handling t select the messages prcessed with ECH, it is necessary t define the crrespnding interface engines. Yu can d this in Custmizing activity Specify Interface Engines. Select yur interface and maintain fllwing engines: Applicatin Engine: ECH scn.sap.cm 2012 SAP AG 5

6 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler Persistence Engine: ECH Selectin Engine: ECH Lgging Engine: ECH If yu want t be able t edit messages in Mnitring and Errr Handling yu have t define thse fields as changeable. Yu can d this in custmizing activity Define Namespace-Specific Features (see ckbk) and Define Interface-Specific Features (see ckbk). After sending sme messages t yur new interface yu shuld be able t see them in Mnitring and Errr Handling (transactin /AIF/ERR). In rder t be able t reslve errrs sme further cding is required fr an ECH interface. Yu can implement fllwing methds f yur actin class: Retry: this methd needs t be implemented t trigger the reprcessing f a message. The message will be called if yu click Restart in Mnitring and Errr Handling r if yu select Repeat in Errr and Cnflict Handler Fail: This methd can be used if the errr cannt be reslved. After the methd is executed the message cannt be reprcessed anymre. Yu shuld at least call methd CL_FEH_REGISTRATION=>S_FAIL. This methd will be called if yu select Cancel in Mnitring and Errr Handling r if yu select Discard in Errr and Cnflict Handler Finish: Within this methd yu can fr example trigger the sending f an , t infrm a user that the prcessing steps have t be perfrmed manually. In any case methd CL_FEH_REGISTRATION=>S_FINISH shuld be called at the end. The methd will be called if yu select Cnfirm in Errr and Cnflict Handler. Nte: Since this dcument fcuses n the SAP Applicatin Interface Framewrk the implementatin f an actin class is shwn fr reasns f cmpleteness. If yu need mre infrmatin n hw the actin class fr the ECH can be implemented refer t the Applicatin Help fr the Errr and Cnflict Handler. In the fllwing nly simple examples are given. Example Implementatin f Retry Methd METHOD if_ech_actin~retry. DATA: lr_feh_registratin TYPE REF TO cl_feh_registratin, ls_api_data TYPE zaif_test_zgtp_test_raw_mt, lr_pre_input TYPE REF TO data, lr_pst_input TYPE REF TO data, ls_main_bject TYPE ech_str_bject, ls_custmer_data TYPE bapiscunew, lt_return TYPE bapirettab, ls_return TYPE bapiret2. FIELD-SYMBOLS: <ls_raw_data> TYPE any, <ls_rec_type> TYPE any, <ls_add_data> TYPE zaif_test_zgtp_test_raw_add_da, <lt_add_data> TYPE zaif_test_zgtp_test_raw_ad_tab. *create FEH instance fr retry lr_feh_registratin = cl_feh_registratin=>s_retry( i_errr_bject_id = i_err r_bject_id ). CREATE DATA lr_pre_input TYPE zaif_test_zgtp_test_raw_mt. CREATE DATA lr_pst_input TYPE zaif_test_zgtp_test_raw_mt. *retrieve data stred in FEH lr_feh_registratin->retrieve_data( EXPORTING i_data = i_data IMPORTING e_pre_mapping_data_ref = lr_pre_input e_pst_mapping_data_ref = lr_pst_input scn.sap.cm 2012 SAP AG 6

7 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler ). ASSIGN lr_pst_input->* TO <ls_raw_data>. IF <ls_raw_data> IS INITIAL. ASSIGN lr_pre_input->* TO <ls_raw_data>. ENDIF. ASSIGN COMPONENT 'ZGTP_TEST_RAW_MT' OF STRUCTURE <ls_raw_data> TO <ls_rec_type >. ASSIGN COMPONENT 'RAW_ADD_DATA_T' OF STRUCTURE <ls_rec_type> TO <lt_add_data>. *try t re-prcess the data LOOP AT <lt_add_data> ASSIGNING <ls_add_data>. ls_custmer_data-custname = <ls_add_data>-add_data_key. ls_custmer_data-street = <ls_add_data>-add_data1. ls_custmer_data-pstcde = <ls_add_data>-add_data2. ls_custmer_data-city = <ls_add_data>-add_data3. ls_custmer_data-cuntr = <ls_add_data>-add_data4. ls_custmer_data-custtype = <ls_add_data>-add_data5. ls_custmer_data- = <ls_add_data>-add_data6. CALL FUNCTION 'BAPI_FLCUST_CREATEFROMDATA' EXPORTING custmer_data = ls_custmer_data TABLES return = lt_return. ENDLOOP. *check if an errr ccured during when creating the custmer READ TABLE lt_return INTO ls_return WITH KEY type = 'E'. IF sy-subrc = 0. e_return_message = ls_return. ls_main_bject-bjcat = '1'. ls_main_bject-bjtype = 'SCUSTOM'. ls_main_bject-bjkey = ls_custmer_data-custname. TRY. lr_feh_registratin->cllect( i_external_guid = i_errr_bject_id i_single_b = <ls_raw_data>"ls_api_data i_errr_categry = 'PRE' i_main_message = ls_return i_messages = lt_return i_main_bject = ls_main_bject i_pre_mapping = 'X' ). CATCH cx_ai_system_fault. ENDTRY. ENDIF. *update FEH lr_feh_registratin->reslve_retry( ). ENDMETHOD. scn.sap.cm 2012 SAP AG 7

8 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler Example Implementatin f Fail methd METHOD if_ech_actin~fail. cl_feh_registratin=>s_fail( EXPORTING i_data = i_data IMPORTING e_executin_failed = e_executin_failed e_return_message = e_return_message ). ENDMETHOD. Example Implementatin f Finish methd METHOD if_ech_actin~finish. cl_feh_registratin=>s_finish( EXPORTING i_data = i_data IMPORTING e_executin_failed = e_executin_failed e_return_message = e_return_message ). ENDMETHOD. Display Messages Prcessed with SAP Applicatin Interface Framewrk in ECH A secnd scenari fr the integratin f ECH and SAP Applicatin Interface Framewrk exists. In this scenari the data will be prcessed with the SAP Applicatin Interface Framewrk. Generate a prxy frm yur service interface and implement the prxy methd. Within the prxy methd yu shuld call methd /AIFX/CL_AIF_ACTION_CLASS=>EXECUTE_AIF_AND_ECH. Fr example the methd s implementatin culd lk as fllws: METHOD zaif_x102_ii_ech_aif_in02~test_inbund01. DATA: lr_rt TYPE REF TO cx_rt, lr_previus TYPE REF TO zaif_test_cx_zgt_fault. SET UPDATE TASK LOCAL. TRY. /aifx/cl_aif_actin_class=>execute_aif_and_ech( i_input = input ). CATCH cx_rt INTO lr_rt. lr_previus?= lr_rt->previus. RAISE EXCEPTION TYPE zaif_test_cx_zgt_fault EXPORTING standard = lr_previus->standard. ENDTRY. ENDMETHOD. Afterwards yu have t define yur interface in the SAP Applicatin Interface Framewrk. In custmizing fr the SAP Applicatin Interface Framewrk g t Interface DevelpmentDefine Interfaces. Select a namespace and enter an interface name and versin. Furthermre, yu shuld maintain the SAP data structure and a prxy class. After entering the prxy class the raw data structure and recrd type shuld be filled autmatically. T map the surce structure t the destinatin structure, g t custmizing activity Define Structure Mappings. Furthermre, yu shuld assign an actin in this custmizing activity. Optinally, yu assign checks, value mappings and s n t the interface. Fr mre infrmatin n interface implementatin with the SAP Applicatin Interface Framewrk refer t the ckbk. scn.sap.cm 2012 SAP AG 8

9 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler Nte: If yu use the SIW cnfiguratin /AIFX/DEFAULT_WO_ESR, yu can set the ECH indicatr in the Prject Cntext Data. If the ECH indicatr is set the prxy class implementatin will be created accrdingly. Furthermre, yu have t maintain sme ECH specific custmizing. Therefre, g t transactin SPRO and perfrm fllwing steps: Create an ECH business prcess and assign the actin class as well as the ntificatin class. T d s g t Crss Applicatin CmpnentsPrcesses and Tls fr Business ApplicatinsEnterprise ServicesErrr and Cnflict HandlerDefine Business Prcess. Yu have t maintain fllwing values: Cmpnent Business Prcess Actin Class: fr this scenari actin class /AIFX/CL_AIF_ACTION_CLASS is delivered with the SAP Applicatin Interface Framewrk. Ntificatin: CL_FEH_REGISTRATION Business Prcess Descriptin Create a business prcess fr the Pstprcessing Office. G t Crss Applicatin CmpnentsPrcesses and Tls fr Business ApplicatinsEnterprise ServicesErrr and Cnflict HandlerPstprcessing OfficeBusiness PrcessDefine Business Prcesses. Maintain fllwing fields: Sftware Cmpnent Prcess Prcess Descriptin Map the ECH Business Prcess t the PPO Business Prcess. G t Crss Applicatin CmpnentsPrcesses and Tls fr Business ApplicatinsEnterprise ServicesErrr and Cnflict HandlerDefine Business Prcess fr Pstprcessing Office. Maintain fllwing fields: Cmpnent Business Prcess (ECH) Sftware Cmpnent (PPO) PPO Prcess Assign the prxy class fr yur service peratin t the ECH prcess. G t Crss Applicatin CmpnentsPrcesses and Tls fr Business ApplicatinsEnterprise ServicesErrr and Cnflict HandlerAssign Caller t a Business Prcess. Maintain fllwing fields: API Name API Cmpnent Call Type Cmpnent Business Prcess T enable the Mnitring and Errr Handling t select the messages prcessed with AIF, it is necessary t define the crrespnding interface engines. Yu can d this in Custmizing activity Specify Interface Engines. Select yur interface and maintain fllwing engines: Applicatin Engine: ECH Persistence Engine: ECH Selectin Engine: AIF Index tables Lgging Engine: ECH r AIF Applicatin Lg If yu nw sent messages t yur interface yu shuld be able t see the messages in Mnitring and Errr Handling. In case an errr ccurred when the message was prcessed the status shuld be Transferred t External Applicatin. When yu select a data message the data structure and the lg messages shuld be displayed. Furthermre, if yu select a cmpnent in Data Structure view, the cntent f the structure will be displayed in Data Cntent view. Yu can use the Errr and Cnflict Handler fr editing, restarting and canceling messages. scn.sap.cm 2012 SAP AG 9

10 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler Nte: In this scenari editing, restarting and canceling messages in Mnitring and Errr Handling is nly pssible after ntes and are implemented. Start the Errr and Cnflict Handler using transactin ECH_MONI_SEL. Enter selectin criteria in rder t be able t see the messages prcessed with yur interface. Fr example, enter Technical Creatin Date, select Order Assignment: All Orders. A list that fits the selectin criteria is displayed. After selecting a message, the Pstprcessing Desktp will be displayed. In rder t be able t edit a message in ECH yu need t be assigned as prcessr. Select Prcess t be assigned as prcessr. T edit a message select Message Data in Order Details and duble click Change. The paylad editr shuld start in change mde. Change the cntent f the fields that require changing and select As New Versin in the applicatin tlbar. When yu return t the pst prcessing ffice yu can restart the message by clicking Repeat in the applicatin tlbar. Fr mre infrmatin abut errr handling with Errr and Cnflict handler, refer t the applicatin help f Errr and Cnflict Handler. scn.sap.cm 2012 SAP AG 10

11 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler Related Cntent Ckbk fr the SAP Applicatin Interface Framewrk SAP Applicatin Interface Framewrk and ECH Applicatin Help fr ECH scn.sap.cm 2012 SAP AG 11

12 SAP Applicatin Interface Framewrk with Errr and Cnflict Handler Cpyright Cpyright 2012 SAP AG. All rights reserved. N part f this publicatin may be reprduced r transmitted in any frm r fr any purpse withut the express permissin f SAP AG. The infrmatin cntained herein may be changed withut prir ntice. Sme sftware prducts marketed by SAP AG and its distributrs cntain prprietary sftware cmpnents f ther sftware vendrs. Micrsft, Windws, Excel, Outlk, and PwerPint are registered trademarks f Micrsft Crpratin. IBM, DB2, DB2 Universal Database, System i, System i5, System p, System p5, System x, System z, System z10, System z9, z10, z9, iseries, pseries, xseries, zseries, eserver, z/vm, z/os, i5/os, S/390, OS/390, OS/400, AS/400, S/390 Parallel Enterprise Server, PwerVM, Pwer Architecture, POWER6+, POWER6, POWER5+, POWER5, POWER, OpenPwer, PwerPC, BatchPipes, BladeCenter, System Strage, GPFS, HACMP, RETAIN, DB2 Cnnect, RACF, Redbks, OS/2, Parallel Sysplex, MVS/ESA, AIX, Intelligent Miner, WebSphere, Netfinity, Tivli and Infrmix are trademarks r registered trademarks f IBM Crpratin. Linux is the registered trademark f Linus Trvalds in the U.S. and ther cuntries. Adbe, the Adbe lg, Acrbat, PstScript, and Reader are either trademarks r registered trademarks f Adbe Systems Incrprated in the United States and/r ther cuntries. Oracle is a registered trademark f Oracle Crpratin. UNIX, X/Open, OSF/1, and Mtif are registered trademarks f the Open Grup. Citrix, ICA, Prgram Neighbrhd, MetaFrame, WinFrame, VideFrame, and MultiWin are trademarks r registered trademarks f Citrix Systems, Inc. HTML, XML, XHTML and W3C are trademarks r registered trademarks f W3C, Wrld Wide Web Cnsrtium, Massachusetts Institute f Technlgy. Java is a registered trademark f Oracle Crpratin. JavaScript is a registered trademark f Oracle Crpratin, used under license fr technlgy invented and implemented by Netscape. SAP, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP Business ByDesign, and ther SAP prducts and services mentined herein as well as their respective lgs are trademarks r registered trademarks f SAP AG in Germany and ther cuntries. Business Objects and the Business Objects lg, BusinessObjects, Crystal Reprts, Crystal Decisins, Web Intelligence, Xcelsius, and ther Business Objects prducts and services mentined herein as well as their respective lgs are trademarks r registered trademarks f Business Objects S.A. in the United States and in ther cuntries. Business Objects is an SAP cmpany. All ther prduct and service names mentined are the trademarks f their respective cmpanies. Data cntained in this dcument serves infrmatinal purpses nly. Natinal prduct specificatins may vary. These materials are subject t change withut ntice. These materials are prvided by SAP AG and its affiliated cmpanies ("SAP Grup") fr infrmatinal purpses nly, withut representatin r warranty f any kind, and SAP Grup shall nt be liable fr errrs r missins with respect t the materials. The nly warranties fr SAP Grup prducts and services are thse that are set frth in the express warranty statements accmpanying such prducts and services, if any. Nthing herein shuld be cnstrued as cnstituting an additinal warranty. scn.sap.cm 2012 SAP AG 12

Customizable Subject Line for Subscription Notifications and Approval Workflow Mails

Customizable Subject Line for Subscription Notifications and Approval Workflow Mails Custmizable Subject Line fr Subscriptin Ntificatins and Apprval Wrkflw Mails Applies t: Usage type Enterprise Prtal (EP) f SAP enhancement package 1 fr SAP NetWeaver 7.0 Summary The Knwledge Management

More information

How to Work with Configurable UI Templates

How to Work with Configurable UI Templates Hw T Guide SAP Business One and SAP Business One, Versin fr SAP HANA Dcument Versin: 1.2 2018-09-20 SAP Business One 9.3 and SAP Business One 9.3, Versin fr SAP HANA Typgraphic Cnventins Type Style Example

More information

Duet Enterprise: Tracing Reports in SAP, SCL, and SharePoint

Duet Enterprise: Tracing Reports in SAP, SCL, and SharePoint Duet Enterprise: Tracing Reports in SAP, SCL, and SharePoint Applies to: Duet Enterprise 1.0. For more information, visit the. Duet Enterprise Home Site Summary Duet Enterprise consists of a SharePoint

More information

Visual Composer Modeling: Data Validation in the UI

Visual Composer Modeling: Data Validation in the UI Visual Composer Modeling: Data Validation in the UI Applies to: Visual Composer for SAP NetWeaver Composition Environment (CE) 7.1. Summary In Visual Composer, validation rules are an often overlooked

More information

Integration Framework for SAP Business One

Integration Framework for SAP Business One Integratin Framewrk fr SAP Business One DIPrxy Cnfiguratin PUBLIC Glbal Rll-ut Octber 2018, B Zha TABLE OF CONTENTS 1 INTRODUCTION... 3 2 INSTALLATION... 3 3 CONFIGURATION... 5 3.1 Services in Service

More information

App Center User Experience Guidelines for Apps for Me

App Center User Experience Guidelines for Apps for Me App Center User Experience Guidelines fr Apps fr Me TABLE OF CONTENTS A WORD ON ACCESSIBILITY...3 DESIGN GUIDELINES...3 Accunt Linking Prcess... 3 Cnnect... 5 Accept Terms... 6 Landing Page... 6 Verificatin...

More information

SAP AddOn Quantity Distribution. by Oliver Köhler, SAP Germany

SAP AddOn Quantity Distribution. by Oliver Köhler, SAP Germany SAP AddOn Quantity Distribution by Oliver Köhler, SAP Germany Agenda 1. Overview / Introduction 2. Prerequisites 3. How to use / Example 4. Integration with Change Log Monitor 5. Authorization SAP 2009

More information

SAP NetWeaver Identity Management Identity Center Minimum System Requirements

SAP NetWeaver Identity Management Identity Center Minimum System Requirements SAP NetWeaver Identity Management Identity Center Minimum System Requirements Version 7.2 Rev 1 No part of this publication may be reproduced or transmitted in any form or for any purpose without the express

More information

How to Find Suitable Enhancements in SAP Standard Applications

How to Find Suitable Enhancements in SAP Standard Applications How to Find Suitable Enhancements in SAP Standard Applications Applies to: User Exits, Customer Exits, Business Add-Ins. For more information, visit the ABAP homepage. Summary ABAP developers will often

More information

How to Enable an IDOC for Variant 2 (AIF Runtime - Call IDoc Function in Action) in AIF 2.0 SP2 or Higher

How to Enable an IDOC for Variant 2 (AIF Runtime - Call IDoc Function in Action) in AIF 2.0 SP2 or Higher How to Enable an IDOC for Variant 2 (AIF Runtime - Call IDoc Function in Action) in AIF 2.0 SP2 or Higher Applies to SAP Application Interface Framework 2.0 SP2 or higher. Recommendation is to apply the

More information

How to Handle the System Message in SAP NetWeaver Mobile 7.1

How to Handle the System Message in SAP NetWeaver Mobile 7.1 How to Handle the System Message in SAP NetWeaver Mobile 7.1 Applies to: SAP NetWeaver Mobile 7.10 - SP03 and above. For more information, visit the Mobile homepage. Summary This document briefly explains

More information

How to Enable Single Sign-On for Mobile Devices?

How to Enable Single Sign-On for Mobile Devices? How to Enable Single Sign-On for Mobile Devices? Applies to: SAP Netweaver Mobile Client 7.11 and onwards. For more information, visit the Mobile homepage. Summary This guide explains how to enable Single

More information

Duplicate Check and Fuzzy Search for Accounts and Contacts. Configuration with SAP NetWeaver Search and Classification (TREX) in SAP CRM WebClient UI

Duplicate Check and Fuzzy Search for Accounts and Contacts. Configuration with SAP NetWeaver Search and Classification (TREX) in SAP CRM WebClient UI Duplicate Check and Fuzzy Search for Accounts and Contacts Configuration with SAP NetWeaver Search and Classification (TREX) in SAP CRM WebClient UI April 2012 Copyright Copyright 2012 SAP AG. All rights

More information

Visual Composer for SAP NetWeaver Composition Environment - Connectors

Visual Composer for SAP NetWeaver Composition Environment - Connectors Visual Composer for SAP NetWeaver Composition Environment - Connectors Applies to: Visual Composer for SAP enhancement package 1 for SAP NetWeaver Composition Environment 7.1 For more information, visit

More information

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide

HPE AppPulse Mobile. Software Version: 2.1. IT Operations Management Integration Guide HPE AppPulse Mbile Sftware Versin: 2.1 IT Operatins Management Integratin Guide Dcument Release Date: Nvember 2015 Cntents Overview: The IT Operatins Management Integratin 3 System Requirements 3 Hw t

More information

Introduction to Mindjet on-premise

Introduction to Mindjet on-premise Intrductin t Mindjet n-premise Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 www.mindjet.cm 2012 Mindjet. All Rights Reserved

More information

Single Sign-on For SAP NetWeaver Mobile PDA Client

Single Sign-on For SAP NetWeaver Mobile PDA Client Single Sign-on For SAP NetWeaver Mobile PDA Client Applies to: SAP NetWeaver PDA Mobile Client 7.30. For more information, visit the Mobile homepage. Summary Single Sign-On (SSO) is a mechanism that eliminates

More information

Configuring relay server in Sybase Control Center

Configuring relay server in Sybase Control Center Configuring relay server in Sybase Control Center Applies to: SUP 2.1.x SUP 2.2.x SUP 2.3.x Summary Relay servers can be used to connect to SUP server through internet and this would be one of the best

More information

SAP Business One DI Event Service Article

SAP Business One DI Event Service Article SAP Business One DI Event Service 2.0.1 Article Applies T: SAP Business One / SAP Business One SDK. Fr mre infrmatin, visit the Business One hmepage.. Summary This article describes hw t define and implement

More information

SAP BusinessObjects Predictive Analysis 1.0 Supported Platforms

SAP BusinessObjects Predictive Analysis 1.0 Supported Platforms SAP BusinessObjects Predictive Analysis 1.0 Supported Platforms Applies to: SAP BusinessObjects Predictive Analysis 1.0 Summary This document contains information specific to platforms and configurations

More information

Visual Composer Modeling: Migrating Models from 7.1.X to 7.2.0

Visual Composer Modeling: Migrating Models from 7.1.X to 7.2.0 Visual Composer Modeling: Migrating Models from 7.1.X to 7.2.0 Applies to: Visual Composer for SAP Netweaver Composition Environment (CE) 7.2.0, 7.1.X. Summary This document discusses known issues, following

More information

BC100. Introduction to Programming with ABAP COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

BC100. Introduction to Programming with ABAP COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) BC100 Introduction to Programming with ABAP. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may

More information

SAP Business One Hardware Requirements Guide

SAP Business One Hardware Requirements Guide Hardware Requirements Guide Dcument Versin: 1.13 2018-02-02 Release Family 9 Typgraphic Cnventins Type Style Example Descriptin Wrds r characters quted frm the screen. These include field names, screen

More information

EWM125. Labor Management in SAP EWM COURSE OUTLINE. Course Version: 16 Course Duration: 4 Hours

EWM125. Labor Management in SAP EWM COURSE OUTLINE. Course Version: 16 Course Duration: 4 Hours EWM125 Labor Management in SAP EWM. COURSE OUTLINE Course Version: 16 Course Duration: 4 Hours SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

BIT460. SAP Process Integration Message Mapping COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

BIT460. SAP Process Integration Message Mapping COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BIT460 SAP Process Integration Message Mapping. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may

More information

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM AvePint Pipeline Pr 2.0 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin E Issued April 2014 1 Table f Cntents Abut AvePint Pipeline Pr... 3 Required Permissins... 4 Overview f Installatin

More information

Quick View Insider Microblog: Why Is There No Inbox?

Quick View Insider Microblog: Why Is There No Inbox? Quick View Insider Microblog: Why Is There No Inbox? Applies to: SAP SNC (Supply Network Collaboration) release 7.0 enhancement pack 1 For more information, visit the Supply Chain Management homepage.

More information

Enterprise Search Extension for SAP Master Data Governance

Enterprise Search Extension for SAP Master Data Governance Enterprise Search Extension for SAP Master Data Governance Applies to: ERP 6 EhP 5. For more information, visit the Master Data Management homepage. Summary This article explains the extensibility concept

More information

AC507. Additional Functions of Product Cost Planning COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

AC507. Additional Functions of Product Cost Planning COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) AC507 Additional Functions of Product Cost Planning. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication

More information

Crystal Reports 2008 FixPack 2.4 Known Issues and Limitations

Crystal Reports 2008 FixPack 2.4 Known Issues and Limitations Crystal Reports 2008 FixPack 2.4 Known Issues and Limitations 1/5 Copyright Copyright 2010 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

SOLA and Lifecycle Manager Integration Guide

SOLA and Lifecycle Manager Integration Guide SOLA and Lifecycle Manager Integratin Guide SOLA and Lifecycle Manager Integratin Guide Versin: 7.0 July, 2015 Cpyright Cpyright 2015 Akana, Inc. All rights reserved. Trademarks All prduct and cmpany names

More information

HP Server Virtualization Solution Planning & Design

HP Server Virtualization Solution Planning & Design Cnsulting & Integratin Infrastructure Services HP Server Virtualizatin Slutin Planning & Design Service descriptin Hewlett-Packard Cnsulting & Integratin Infrastructure Cnsulting Packaged Services (HP

More information

Installing SAP NetWeaver Mobile Client (eswt) on a Storage Card

Installing SAP NetWeaver Mobile Client (eswt) on a Storage Card Installing SAP NetWeaver Mobile Client (eswt) on a Storage Card Applies to: SAP NetWeaver Mobile 7.1 client (type eswt) For more information, visit the Mobile homepage. Summary This document explains the

More information

EView/400i Management Pack for Systems Center Operations Manager (SCOM)

EView/400i Management Pack for Systems Center Operations Manager (SCOM) EView/400i Management Pack fr Systems Center Operatins Manager (SCOM) Cncepts Guide Versin 7.0 July 2015 1 Legal Ntices Warranty EView Technlgy makes n warranty f any kind with regard t this manual, including,

More information

NET311. Advanced Web Dynpro for ABAP COURSE OUTLINE. Course Version: 10 Course Duration: 4 Day(s)

NET311. Advanced Web Dynpro for ABAP COURSE OUTLINE. Course Version: 10 Course Duration: 4 Day(s) NET311 Advanced Web Dynpro for ABAP. COURSE OUTLINE Course Version: 10 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

PLM210. Master Data Configuration in SAP Project System COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

PLM210. Master Data Configuration in SAP Project System COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) PLM210 Master Data Configuration in SAP Project System. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication

More information

Manual Activities of SAP Note Globalization Services, 2012/06/05

Manual Activities of SAP Note Globalization Services, 2012/06/05 Manual Activities of SAP Note.1604131 Globalization Services, 2012/06/05 1) 3) Caution: The screen captures are taken in SAP ERP 6.0 system without EhP with SAPKH60017. 1.) In the SAP_APPL system, go to

More information

SAP Intelligent Notification 365, Service. On-boarding process for SAP Hybris Marketing Cloud / SAP Hybris Marketing customers

SAP Intelligent Notification 365,  Service. On-boarding process for SAP Hybris Marketing Cloud / SAP Hybris Marketing customers SAP Intelligent Ntificatin 365, Email Service On-barding prcess fr SAP Hybris Marketing Clud / SAP Hybris Marketing custmers TABLE OF CONTENTS 1. DOCUMENT HISTORY... 3 2. INTRODUCTION... 4 3. HIGH LEVEL

More information

OO Shell for Authoring (OOSHA) User Guide

OO Shell for Authoring (OOSHA) User Guide Operatins Orchestratin Sftware Versin: 10.70 Windws and Linux Operating Systems OO Shell fr Authring (OOSHA) User Guide Dcument Release Date: Nvember 2016 Sftware Release Date: Nvember 2016 Legal Ntices

More information

ADM950. Secure SAP System Management COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s)

ADM950. Secure SAP System Management COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s) ADM950 Secure SAP System Management.. COURSE OUTLINE Course Version: 10 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2013 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

Release Notes Version: - v18.13 For ClickSoftware StreetSmart September 22, 2018

Release Notes Version: - v18.13 For ClickSoftware StreetSmart September 22, 2018 Release Ntes Versin: - v18.13 Fr ClickSftware StreetSmart September 22, 2018 Cpyright Ntice Cpyright 2018 ClickSftware Technlgies Ltd. All rights reserved. N part f this publicatin may be cpied withut

More information

Wave IP 4.5. CRMLink Desktop User Guide

Wave IP 4.5. CRMLink Desktop User Guide Wave IP 4.5 CRMLink Desktp User Guide 2015 by Vertical Cmmunicatins, Inc. All rights reserved. Vertical Cmmunicatins and the Vertical Cmmunicatins lg and cmbinatins theref and Vertical ViewPint, Wave Cntact

More information

CMC Blade BIOS Profile Cloning

CMC Blade BIOS Profile Cloning This white paper describes the detailed capabilities f the Chassis Management Cntrller s Blade BIOS Prfile Clning feature. Authr Crey Farrar This dcument is fr infrmatinal purpses nly and may cntain typgraphical

More information

Hitachi Server Adapter for the SAP HANA Cockpit

Hitachi Server Adapter for the SAP HANA Cockpit Hitachi Server Adapter fr the SAP HANA Cckpit v01.0.0 Release Ntes Cntents Abut This Dcument... 2 Intended Audience... 2 Getting Help... 2 Abut Release v01.0.0... 2 Supprted Hardware and Sftware... 3 Required

More information

MDG100 Master Data Governance

MDG100 Master Data Governance MDG100 Master Data Governance. COURSE OUTLINE Course Version: 10 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

Aras Innovator Viewer Add-Ons

Aras Innovator Viewer Add-Ons Aras Innvatr Viewer Add-Ons Aras Innvatr 9.2 Dcument #: 9.2.02232009 Last Mdified: 4/1/2010 Aras Crpratin ARAS CORPORATION Cpyright 2010 All rights reserved Aras Crpratin 300 Brickstne Square Suite 904

More information

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel NiceLabel LMS Installatin Guide fr Single Server Deplyment Rev-1702 NiceLabel 2017. www.nicelabel.cm 1 Cntents 1 Cntents 2 2 Architecture 3 2.1 Server Cmpnents and Rles 3 2.2 Client Cmpnents 3 3 Prerequisites

More information

DEV523 Customizing and Extending PowerDesigner

DEV523 Customizing and Extending PowerDesigner DEV523 Customizing and Extending PowerDesigner. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may

More information

BC400 Introduction to the ABAP Workbench

BC400 Introduction to the ABAP Workbench BC400 Introduction to the ABAP Workbench. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be

More information

How to Download Software and Address Directories in SAP Service Marketplace

How to Download Software and Address Directories in SAP Service Marketplace How to Download Software and Address Directories in SAP Service Marketplace Summary This document explains how to download software and address directories from the SAP Service Marketplace. It assumes

More information

BC405 Programming ABAP Reports

BC405 Programming ABAP Reports BC405 Programming ABAP Reports. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

DS50. Managing Data Quality with SAP Information Steward COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s)

DS50. Managing Data Quality with SAP Information Steward COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s) DS50 Managing Data Quality with SAP Information Steward. COURSE OUTLINE Course Version: 10 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication

More information

Verena Wörner is a developer for SAP Custom Development. She is a member of the development team for the SAP Application Interface Framework.

Verena Wörner is a developer for SAP Custom Development. She is a member of the development team for the SAP Application Interface Framework. Template Function Modules of the SAP Application Interface Framework Applies to: SAP Application Interface Framework Summary In customizing of the SAP Application Interface Framework several places exist

More information

BOC320. SAP Crystal Reports - Business Reporting and Report Processing Strategies COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

BOC320. SAP Crystal Reports - Business Reporting and Report Processing Strategies COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BOC320 SAP Crystal Reports - Business Reporting and Report Processing Strategies. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved.

More information

Admin Report Kit for Exchange Server

Admin Report Kit for Exchange Server Admin Reprt Kit fr Exchange Server Reprting tl fr Micrsft Exchange Server Prduct Overview Admin Reprt Kit fr Exchange Server (ARKES) is an Exchange Server Management and Reprting slutin that addresses

More information

BOCE20. SAP Crystal Reports for Enterprise: Advanced Report Design COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

BOCE20. SAP Crystal Reports for Enterprise: Advanced Report Design COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BOCE20 SAP Crystal Reports for Enterprise: Advanced Report Design. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of

More information

BOC310. SAP Crystal Reports: Fundamentals of Report Design COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

BOC310. SAP Crystal Reports: Fundamentals of Report Design COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) BOC310 SAP Crystal Reports: Fundamentals of Report Design. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication

More information

Visual Composer s Control Types

Visual Composer s Control Types Visual Composer s Control Types Applies to: Visual Composer for CE. For more information, visit the Portal and Collaboration homepage. Summary The document will discuss Control types and their properties

More information

BC410. Programming User Dialogs with Classical Screens (Dynpros) COURSE OUTLINE. Course Version: 10 Course Duration: 3 Day(s)

BC410. Programming User Dialogs with Classical Screens (Dynpros) COURSE OUTLINE. Course Version: 10 Course Duration: 3 Day(s) BC410 Programming User Dialogs with Classical Screens (Dynpros). COURSE OUTLINE Course Version: 10 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2013 SAP AG. All rights reserved. No part of this

More information

BC400. ABAP Workbench Foundations COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

BC400. ABAP Workbench Foundations COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) BC400 ABAP Workbench Foundations. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

Universal CMDB. Software Version: Backup and Recovery Guide

Universal CMDB. Software Version: Backup and Recovery Guide Universal CMDB Sftware Versin: 10.32 Backup and Recvery Guide Dcument Release Date: April 2017 Sftware Release Date: April 2017 Backup and Recvery Guide Legal Ntices Warranty The nly warranties fr Hewlett

More information

Using Default Values in Backend Adapter

Using Default Values in Backend Adapter Using Default Values in Backend Adapter Applies to: SAP NetWeaver Mobile 7.1 applicable for all service packs Summary Background, concept and usage of default values in BAPI Wrapper based backend adapter

More information

Quick View Insider: Understanding Quick View Configuration

Quick View Insider: Understanding Quick View Configuration Quick View Insider: Understanding Quick View Configuration Applies to: SAP SNC (Supply Network Collaboration) release 7.0 enhancement pack 1 SNC 7.0: Most concepts described here apply to SAP SNC 7.0.

More information

USO RESTRITO. SNMP Agent. Functional Description and Specifications Version: 1.1 March 20, 2015

USO RESTRITO. SNMP Agent. Functional Description and Specifications Version: 1.1 March 20, 2015 Functinal Descriptin and Specificatins Versin: 1.1 March 20, 2015 SNMP Agent Simple Netwrk Management Prtcl Optin S fr IE and PM Mdules Supplement t Functinal Descriptin and Specificatins f RUB Ethernet

More information

Testing Your New Generated SAP NetWeaver Gateway Service

Testing Your New Generated SAP NetWeaver Gateway Service Testing Your New Generated SAP NetWeaver Gateway Service Applies to: SAP NetWeaver Gateway 2.0 SP02 Summary In this Article we will focus on how to test the NetWeaver Gateway Service you created using

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

Using JournalEntries and JournalVouchers Objects in SAP Business One 6.5

Using JournalEntries and JournalVouchers Objects in SAP Business One 6.5 Using JournalEntries and JournalVouchers Objects in SAP Business One 6.5 Applies to: Business One. For more information, visit the Business One homepage. Summary This article explains how to use the JournalEntries

More information

BC430 ABAP Dictionary

BC430 ABAP Dictionary BC430 ABAP Dictionary. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s)12 SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication may be reproduced or transmitted

More information

DocAve 6 Software Platform

DocAve 6 Software Platform DcAve 6 Sftware Platfrm Release Ntes Service Pack 3, Cumulative Update 2 DcAve Fr Micrsft SharePint Released Octber 25, 2013 1 New Features and Imprvements DcAve Platfrm Verified cmpatibility with Micrsft

More information

TBIT44 PI Mapping and ccbpm

TBIT44 PI Mapping and ccbpm TBIT44 PI Mapping and ccbpm. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced or

More information

How to reuse BRFplus Functions Similar to R/3 Function Modules using BRF+ Expression Type Function Call

How to reuse BRFplus Functions Similar to R/3 Function Modules using BRF+ Expression Type Function Call How to reuse BRFplus Functions Similar to R/3 Function Modules using BRF+ Expression Type Function Call Applies to: Tax and Revenue Management. Summary During the building process of BRF+ Rules you might

More information

ADM900 SAP System Security Fundamentals

ADM900 SAP System Security Fundamentals ADM900 SAP System Security Fundamentals. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

RELEASE NOTES. HYCU Data Protection for Nutanix

RELEASE NOTES. HYCU Data Protection for Nutanix RELEASE NOTES HYCU Data Prtectin fr Nutanix Versin: 3.0.0 Prduct release date: April 2018 Dcument release date: April 2018 Legal ntices Cpyright ntice 2017 2018 HYCU. All rights reserved. This dcument

More information

SAP Afaria Post- Installation Part 1

SAP Afaria Post- Installation Part 1 SAP Afaria 6.6FP1 March 2011 English Version 1.1 {03/29/2011:Changed the header to: Afaria Post- Installation Shival Tailor} SAP Afaria Post- Installation Part 1 Document for Afaria Post - Installation

More information

AvePoint Timeline Enterprise for Microsoft Dynamics CRM

AvePoint Timeline Enterprise for Microsoft Dynamics CRM AvePint Timeline Enterprise 1.0.2 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin B Issued Nvember 2013 Timeline Enterprise fr Micrsft Dynamics CRM Install and Cnfig 1 Table f Cntents

More information

How to Guide to create Sample Application in IOS using SUP ODP 2.2

How to Guide to create Sample Application in IOS using SUP ODP 2.2 How to Guide to create Sample Application in IOS using SUP ODP 2.2 Applies to: SUP ODP 2.2. Summary This document provides a step-by-step description on how to use the IOS sample application using SUP

More information

ADM950. Secure SAP System Management COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

ADM950. Secure SAP System Management COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) ADM950 Secure SAP System Management. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

BC401. ABAP Objects COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

BC401. ABAP Objects COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) BC401 ABAP Objects. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced or transmitted

More information

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents HP ExpertOne HP2-T21: Administering HP Server Slutins Industry Standard Servers Exam preparatin guide Table f Cntents In this sectin, include a table f cntents (TOC) f all headings. After yu have finished

More information

BC490 ABAP Performance Tuning

BC490 ABAP Performance Tuning BC490 ABAP Performance Tuning. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

Message Alerting for SAP NetWeaver PI Advanced Adapter Engine Extended

Message Alerting for SAP NetWeaver PI Advanced Adapter Engine Extended Message Alerting for SAP NetWeaver PI Advanced Adapter Engine Extended Applies to SAP NetWeaver PI Advanced Adapter Engine Extended 7.30. Summary This article explains how to set up Message Alerting for

More information

Cisco Tetration Analytics, Release , Release Notes

Cisco Tetration Analytics, Release , Release Notes Cisc Tetratin Analytics, Release 1.102.21, Release Ntes This dcument describes the features, caveats, and limitatins fr the Cisc Tetratin Analytics sftware. Additinal prduct Release ntes are smetimes updated

More information

TIBCO Statistica Options Configuration

TIBCO Statistica Options Configuration TIBCO Statistica Optins Cnfiguratin Sftware Release 13.3 June 2017 Tw-Secnd Advantage Imprtant Infrmatin SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

BW Text Variables of Type Replacement Path

BW Text Variables of Type Replacement Path BW Text Variables of Type Replacement Path Applies to: This article is applicable to SAP BI 7.0. For more information, visit the EDW homepage. Summary This document shows how to use and also helps in the

More information

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment

Technical Paper. Installing and Configuring SAS Environment Manager in a SAS Grid Environment Technical Paper Installing and Cnfiguring SAS Envirnment Manager in a SAS Grid Envirnment Last Mdified: Octber 2016 Release Infrmatin Cntent Versin: Octber 2016. Trademarks and Patents SAS Institute Inc.,

More information

HP Universal CMDB. Software Version: Backup and Recovery Guide

HP Universal CMDB. Software Version: Backup and Recovery Guide HP Universal CMDB Sftware Versin: 10.21 Backup and Recvery Guide Dcument Release Date: July 2015 Sftware Release Date: July 2015 Backup and Recvery Guide Legal Ntices Warranty The nly warranties fr HP

More information

Announcing Veco AuditMate from Eurolink Technology Ltd

Announcing Veco AuditMate from Eurolink Technology Ltd Vec AuditMate Annuncing Vec AuditMate frm Eurlink Technlgy Ltd Recrd any data changes t any SQL Server database frm any applicatin Database audit trails (recrding changes t data) are ften a requirement

More information

Xerox Security Bulletin XRX12-007

Xerox Security Bulletin XRX12-007 Disable sftware upgrades by default Backgrund The Xerx prducts listed belw were shipped with sftware upgrades enabled by default. The firmware released belw changes the default state f sftware upgrade

More information

SAP BusinessObjects Dashboards 4.0 SAP Crystal Dashboard Design 2011 SAP Crystal Presentation Design 2011

SAP BusinessObjects Dashboards 4.0 SAP Crystal Dashboard Design 2011 SAP Crystal Presentation Design 2011 SAP BusinessObjects Dashboards 4.0 SAP Crystal Dashboard Design 2011 SAP Crystal Presentation Design 2011 August 18th, 2011 Product Availability Matrix (PAM) Dashboard Design 2011 / Presentation Design

More information

Quick View Insider: How Can I Change the Colors? (SNC 7.0)

Quick View Insider: How Can I Change the Colors? (SNC 7.0) Quick View Insider: How Can I Change the Colors? (SNC 7.0) Applies to: SAP SNC (Supply Network Collaboration) release 7.0 For more information, visit the Supply Chain Management homepage. Summary This

More information

VMware AirWatch Certificate Authentication for Cisco IPSec VPN

VMware AirWatch Certificate Authentication for Cisco IPSec VPN VMware AirWatch Certificate Authenticatin fr Cisc IPSec VPN Fr VMware AirWatch Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using the Supprt Wizard n supprt.air-watch.cm. This

More information

How to Check or Derive an Attribute Value in MDG using BRFPlus

How to Check or Derive an Attribute Value in MDG using BRFPlus How to Check or Derive an Attribute Value in MDG using BRFPlus Applies to: SAP Master Data Governance, as of SAP Master Data Governance 6.1 (or lower). Summary With SAP Master Data Governance you can use

More information

EP350. Innovated Content Management and Collaboration COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s)

EP350. Innovated Content Management and Collaboration COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s) EP350 Innovated Content Management and Collaboration. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication

More information

HA150 SQL Basics for SAP HANA

HA150 SQL Basics for SAP HANA HA150 SQL Basics for SAP HANA. COURSE OUTLINE Course Version: 10 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

ADM100 AS ABAP - Administration

ADM100 AS ABAP - Administration ADM100 AS ABAP - Administration. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

BC480 PDF-Based Print Forms

BC480 PDF-Based Print Forms BC480 PDF-Based Print Forms. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced or

More information

BC404. ABAP Programming in Eclipse COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

BC404. ABAP Programming in Eclipse COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BC404 ABAP Programming in Eclipse. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

AFA461 SAP Afaria 7.0 System Administration (SP03)

AFA461 SAP Afaria 7.0 System Administration (SP03) AFA461 SAP Afaria 7.0 System Administration (SP03). COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication

More information