REPORT ytestjro. DATA: * Déclaration des tables internes : lt_sflight TYPE STANDARD TABLE OF sflight, lt_fldcat TYPE lvc_t_fcat. START-OF-SELECTION.

Size: px
Start display at page:

Download "REPORT ytestjro. DATA: * Déclaration des tables internes : lt_sflight TYPE STANDARD TABLE OF sflight, lt_fldcat TYPE lvc_t_fcat. START-OF-SELECTION."

Transcription

1 REPORT ytestjro. DATA: * Déclaration des tables internes : lt_sflight TYPE STANDARD TABLE OF sflight, lt_fldcat TYPE lvc_t_fcat. START-OF-SELECTION. * Récupération des vols : SELECT * INTO TABLE lt_sflight FROM sflight. * Construction du fied-catalog : CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' i_structure_name = 'SFLIGHT' CHANGING ct_fieldcat = lt_fldcat inconsistent_interface = 1 program_error = 2 OTHERS = 3. * Génération du fichiers Excel : PERFORM f_xxl_full_api USING lt_sflight[] lt_fldcat[]. END-OF-SELECTION. * FORM F_XXL_FULL_API * * Routine de téléchargement avancé tableur * * -->XT_OUTTAB Table * -->XT_FIELDCAT Field-catalog de l'alv * * FORM f_xxl_full_api USING xt_outtab TYPE STANDARD TABLE xt_fieldcat TYPE lvc_t_fcat. * Déclaration des données locales * DATA: * Déclaration des tables internes locales : lt_hkey TYPE gxxlt_h OCCURS 90, lt_vkey TYPE gxxlt_v OCCURS 90, lt_print_text TYPE gxxlt_p OCCURS 90, lt_online_text TYPE gxxlt_o OCCURS 90, lt_sema TYPE gxxlt_s OCCURS 90, lt_fieldtab LIKE dfies OCCURS 40, * Déclaration des structures locales : ls_sema LIKE LINE OF lt_sema, ls_hkey LIKE LINE OF lt_hkey, ls_vkey LIKE LINE OF lt_vkey, ls_online_text LIKE LINE OF lt_online_text, ls_print_text LIKE LINE OF lt_print_text,

2 * Déclaration des variables locales : lv_n_att_cols TYPE sytabix, lv_repid TYPE gxxld_file, lv_title TYPE gxxld_text, lv_so_title TYPE gxxld_ttl, lv_index TYPE syindex, lv_n_vrt_keys TYPE n, lv_tabname TYPE tabname, lv_column TYPE sytabix. FIELD-SYMBOLS: * Déclaration des field-symbols locaux : <lfs_fieldcat> LIKE LINE OF xt_fieldcat, <lfs_fieldcat2> LIKE LINE OF xt_fieldcat, <lfs_fieldtab> LIKE LINE OF lt_fieldtab, <lfs_sema> LIKE LINE OF lt_sema, <lfs_hkey> LIKE LINE OF lt_hkey. * Rafraichissement des données locales * REFRESH: * Rafraichissement des tables internes locales : lt_hkey, lt_vkey, lt_print_text, lt_online_text, lt_sema, lt_fieldtab. CLEAR: * Rafraichissement des structures locales : ls_sema, ls_hkey, ls_vkey, ls_online_text, ls_print_text, * Rafraichissement des variables locales : lv_n_att_cols, lv_repid, lv_title, lv_so_title, lv_index, lv_n_vrt_keys, lv_tabname, lv_column. * Début du traitement * * Tri du field-catalog : SORT xt_fieldcat BY no_out ASCENDING tech ASCENDING col_pos ASCENDING. * Initialisation de l'index : lv_index = 1. * Initialisation de la première colonne : lv_column = 1. * On parcourt tous les champs du field-catalog : DO. * Lecture du champ du field-catalog : READ TABLE xt_fieldcat ASSIGNING <lfs_fieldcat> INDEX lv_index. * Le champ a-t-il été trouvé? IF sy-subrc IS INITIAL AND <lfs_fieldcat>-no_out = space AND <lfs_fieldcat>-tech = space. * Le champ a été trouvé, * Initialisation de la structure d'informations des zones du tableur : CLEAR ls_sema. ls_sema-col_no = lv_column.

3 ls_sema-col_src = <lfs_fieldcat>-col_pos. CASE <lfs_fieldcat>-inttype. WHEN 'Z'. ls_sema-col_ops = 'AVG'. WHEN 'C'. WHEN 'X'. WHEN 'T'. WHEN 'P'. ls_sema-col_ops = 'ADD'. WHEN 'F'. ls_sema-col_ops = 'ADD'. WHEN 'I'. ls_sema-col_ops = 'ADD'. WHEN 'N'. WHEN 'D'. ls_sema-col_typ = 'DAT'. WHEN OTHERS. ENDCASE. IF <lfs_fieldcat>-datatype = 'CURR'. READ TABLE xt_fieldcat ASSIGNING <lfs_fieldcat2> WITH KEY datatype = 'CUKY'. ls_sema-col_cur = <lfs_fieldcat2>-col_pos. * Ajout de la structure d'informations des zones du tableur : APPEND ls_sema TO lt_sema. * Initialisation de la structure des zones clés de la table : ls_hkey-col_no = lv_column. ls_hkey-row_no = 1. * Ajout de la structure des zones de la table : ls_hkey-col_name = <lfs_fieldcat>-scrtext_m. APPEND ls_hkey TO lt_hkey. lv_column = lv_column + 1. lv_index = lv_index + 1. ELSE. EXIT. ENDDO.

4 * Calcul du nombre de colonnes : DESCRIBE TABLE lt_sema LINES lv_n_att_cols. * Initialisation du nom du programme : lv_repid = sy-repid. * Le nom du programme contient-il des '/'? IF lv_repid CA '/'. * Le nom du programme contient des '/', * Il faut les remplacer par du vide : REPLACE '/' WITH space INTO lv_repid. CONDENSE lv_repid. * Initialisation du titre : lv_title = sy-title. lv_so_title = sy-title. lv_tabname = 'SYST'. REFRESH: lt_fieldtab. * Récupération de la structure de la table SYST : CALL FUNCTION 'GET_FIELDTAB' langu = sy-langu tabname = lv_tabname withtext = 'X' TABLES fieldtab = lt_fieldtab no_texts_found. * Initialisation des données sytèmes : ls_online_text-line_no = 1. READ TABLE lt_fieldtab ASSIGNING <lfs_fieldtab> WITH KEY fieldname = 'TITLE'. ls_online_text-info_name = <lfs_fieldtab>-scrtext_l. ls_online_text-info_value = sy-title. APPEND ls_online_text TO lt_online_text. ls_print_text-hf = 'F'. ls_print_text-lcr = 'R'. ls_print_text-line_no = 1. ls_print_text-text = sy-title. APPEND ls_print_text TO lt_print_text. READ TABLE lt_fieldtab ASSIGNING <lfs_fieldtab> WITH KEY fieldname = 'UNAME'. ls_online_text-info_name = <lfs_fieldtab>-scrtext_l. ls_online_text-info_value = sy-uname. ls_online_text-line_no = 2. APPEND ls_online_text TO lt_online_text. ls_print_text-hf = 'F'. ls_print_text-lcr = 'R'. ls_print_text-line_no = 2. ls_print_text-text = sy-uname. APPEND ls_print_text TO lt_print_text.

5 READ TABLE lt_fieldtab ASSIGNING <lfs_fieldtab> WITH KEY fieldname = 'DATUM'. ls_online_text-info_name = <lfs_fieldtab>-scrtext_l. ls_online_text-line_no = 3. WRITE sy-datlo TO ls_online_text-info_value. APPEND ls_online_text TO lt_online_text. ls_print_text-hf = 'F'. ls_print_text-lcr = 'R'. ls_print_text-line_no = 3. WRITE sy-datlo TO ls_print_text-text. APPEND ls_print_text TO lt_print_text. * Affichage de la popup de saisie du nombre de colonnes clés : CALL FUNCTION 'PM_NUMBER_OF_KEY_COL' key_col_default = 1 key_col_max = lv_n_att_cols IMPORTING key_col = lv_n_vrt_keys cancel = 01. IF sy-subrc <> 0. EXIT. CLEAR lv_index. * Prise en compte des colonnes clés : DO lv_n_vrt_keys TIMES. lv_index = sy-index. READ TABLE lt_sema ASSIGNING <lfs_sema> INDEX lv_index. <lfs_sema>-col_ops = 'DFT'. READ TABLE lt_hkey ASSIGNING <lfs_hkey> INDEX 1. ls_vkey-col_no = lv_index. ls_vkey-col_name = <lfs_hkey>-col_name. APPEND ls_vkey TO lt_vkey. DELETE lt_hkey INDEX 1. ENDDO. lv_n_att_cols = lv_n_att_cols - lv_n_vrt_keys. LOOP AT lt_hkey ASSIGNING <lfs_hkey>. <lfs_hkey>-col_no = <lfs_hkey>-col_no - lv_n_vrt_keys. ENDLOOP. * Téléchargement tableur : CALL FUNCTION 'XXL_FULL_API' sema_type = 'X' filename = lv_repid header_1 = lv_title so_title = lv_so_title

6 no_dialog = ' ' no_start = ' ' n_att_cols = lv_n_att_cols n_hrz_keys = 1 n_vrt_keys = lv_n_vrt_keys TABLES data = xt_outtab[] hkey = lt_hkey[] online_text = lt_online_text[] print_text = lt_print_text[] sema = lt_sema[] vkey = lt_vkey[] cancelled_by_user = 01 data_too_big = 02 dim_mismatch_data = 03 dim_mismatclt_sema = 04 dim_mismatclt_vkey = 05 error_in_hkey = 06 error_in_sema = 07 file_open_error = 08 file_write_error = 09 inv_data_range = 10 inv_winsys = 11 inv_xxl = 12. IF sy-subrc = 2. MESSAGE i020(pc). ENDFORM. "F_XXL_FULL_API

REPORT zalv_fcat. * Output table T006 structure declaration. TYPES : BEGIN OF ty_t006. INCLUDE STRUCTURE t006. TYPES : END OF ty_t006.

REPORT zalv_fcat. * Output table T006 structure declaration. TYPES : BEGIN OF ty_t006. INCLUDE STRUCTURE t006. TYPES : END OF ty_t006. *& Report ZALV_FCAT * *& Author : Swarna.S *& AS : ALV report which displays the contents of the table T006 *& (as a docking container in the bottom) along with the *& editable ALV which contains the ALV

More information

ABAP Code Sample to Report IDOCs in Error

ABAP Code Sample to Report IDOCs in Error Applies To: SAP 4.6 C and SAP 4.7 Enterprise Edition Summary This report displays all the error IDOCs for both INBOUND and OUTBOUND based on message type, it also having a provision to drill down the number

More information

ABAP Code Sample for Data Browser Using ALV Grid

ABAP Code Sample for Data Browser Using ALV Grid ABAP Code Sample for Data Browser Using ALV Grid Applies To: ABAP Summary : Here is a code sample that performs the operation similar to Data Browser. This adopts the simplest way to display any table

More information

Program to Find Where used List of a Query for Web Template (3.5), Work Books and RRI

Program to Find Where used List of a Query for Web Template (3.5), Work Books and RRI Program to Find Where used List of a Query for Web Template (3.5), Work Books and RRI Applies to: SAP BW (3.5) / SAP BI(7.0) For more information, visit Business Intelligence Homepage. Summary This article

More information

ZIBASIS_U_ROLES_CREATE

ZIBASIS_U_ROLES_CREATE *& Report ZBASIS_U_ROLES_CREATE * PROGRAM TITLE : Derive Role Creation * MODULE : BASIS * PROGRAM TYPE : Conversion Program(BAPI) * INPUT : Selection Screen/Excel Upload * OUTPUT : Alv Success/Error Report

More information

Dynamic Selection Screen Generation for SAP Solutions

Dynamic Selection Screen Generation for SAP Solutions 52 Informatica Economică vol. 21, no. 3/2017 Dynamic Selection Screen Generation for SAP Solutions Cornelia MUNTEAN Faculty of Economics and Business Administration, West University of Timisoara, Romania

More information

zsql: A tool to execute SQL statements directly in sap

zsql: A tool to execute SQL statements directly in sap in zsql: A tool to execute SQL statements directly in sap Posted by Basar Ozgur Kahraman in ABAP Development on Oct 9, 2013 12:06:43 AM Sometimes i need to write sql statements and get results immediately

More information

SDN Community Contribution

SDN Community Contribution SDN Community Contribution (This is not an official SAP document.) Disclaimer & Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces

More information

ABAP Code Sample to Attach F1 and F4 Help Fields in ALV Grid

ABAP Code Sample to Attach F1 and F4 Help Fields in ALV Grid ABAP Code Sample to Attach F1 and F4 Help Fields in ALV Grid Code samples are intended for educational use only, not deployment They are untested and unsupported by SAP SAP disclaims all liability to any

More information

ABAP Code Sample to Display Data in ALV Grid Using Object-Oriented Programming

ABAP Code Sample to Display Data in ALV Grid Using Object-Oriented Programming ABAP Code Sample to Display Data in ALV Grid Using Object-Oriented Programming Code samples are intended for educational use only, not deployment. They are untested and unsupported by SAP. SAP disclaims

More information

SDN Community Contribution

SDN Community Contribution SDN Community Contribution (This is not an official SAP document.) Disclaimer & Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces

More information

Example Implementation for the Sales Order Monitor BAdI

Example Implementation for the Sales Order Monitor BAdI Example Implementation for the Sales Order Monitor BAdI Table of Contents Introduction... 2 Business Add-In SD_OSO_MONITOR... 2 BADI Implementation Interface IF_SD_OSO_MONITOR... 3 Method IF_SD_OSO_MONITOR~CHANGE_SELECTION_TABLE...

More information

REPORT z_tablestcode. *ALV type pools declarations. TYPE-POOLS : slis. *Internal table and work area declarations for dd02l / dd02t /tstc

REPORT z_tablestcode. *ALV type pools declarations. TYPE-POOLS : slis. *Internal table and work area declarations for dd02l / dd02t /tstc *& Report ZALV_TABLESTCODE * *& Author Swarna.S. *& AS : ALV report to display the dictionary objects *& (tables/structures/views of all types of delivery classes) *& used by a TRANSACTION.The ALV is made

More information

SAP BW - PSA/Change Log Deletion Governance

SAP BW - PSA/Change Log Deletion Governance SAP BW - PSA/Change Log Deletion Governance Applies to: SAP Net Weaver 2004s BI 7.0 Ehp1 SP 05. For more information, visit EDW homepage Summary This article suggests importance of PSA/Change log deletion

More information

PI Monitoring Functionality Fetching Data from SXMB_MONI Standard Tables

PI Monitoring Functionality Fetching Data from SXMB_MONI Standard Tables PI Monitoring Functionality Fetching Data from SXMB_MONI Standard Tables Applies to: SAP Exchange Infrastructure (SAP NetWeaver Process Integration 7.0). For more information, visit the ABAP homepage.

More information

Using Drop Down By Index in Table UI Element in WebDynpro ABAP

Using Drop Down By Index in Table UI Element in WebDynpro ABAP Using Drop Down By Index in Table UI Element in WebDynpro ABAP Applies to: Enterprise portal, ECC 6.0, Web Dynpro ABAP. For more information, visit the Web Dynpro ABAP homepage. Summary This article would

More information

Vertical Tab Control in SAP

Vertical Tab Control in SAP SDN Contribution Vertical Tab Control in SAP Applies to: SAP ABAP Summary This program uses the vertical tab control class CL_GUI_CONTAINER_BAR. This control can be used to display data in vertical tabs.

More information

Step by Step Approach to Find the List of Inactive Objects in SAP BW

Step by Step Approach to Find the List of Inactive Objects in SAP BW Step by Step Approach to Find the List of Inactive Objects in SAP BW Applies to: SAP BW 3.x & SAP BI Net Weaver 2004s. For more information, visit the EDW homepage. Summary This article explains the steps

More information

qwertyuiopasdfghjklzxcvbnmqwertyui opasdfghjklzxcvbnmqwertyuiopasdfgh jklzxcvbnmqwertyuiopasdfghjklzxcvb nmqwertyuiopasdfghjklzxcvbnmqwer

qwertyuiopasdfghjklzxcvbnmqwertyui opasdfghjklzxcvbnmqwertyuiopasdfgh jklzxcvbnmqwertyuiopasdfghjklzxcvb nmqwertyuiopasdfghjklzxcvbnmqwer qwertyuiopasdfghjklzxcvbnmqwertyui opasdfghjklzxcvbnmqwertyuiopasdfgh jklzxcvbnmqwertyuiopasdfghjklzxcvb nmqwertyuiopasdfghjklzxcvbnmqwer ABAP Interview Questions & Answers Set 9 tyuiopasdfghjklzxcvbnmqwertyuiopas

More information

Batch History: How to Guide on getting Batch information from non SAP systems using SAP MII

Batch History: How to Guide on getting Batch information from non SAP systems using SAP MII Batch History: How to Guide on getting Batch information from non SAP systems using SAP MII Applies to: Batch History functionality (EhP4 release) Summary Today s manufacturing scenario, customers store

More information

SAP BW Copy Existing DTP for Data Targets

SAP BW Copy Existing DTP for Data Targets SAP BW Copy Existing DTP for Data Targets Applies to: SAP BI Consultants with ABAP Knowledge. For more information, visit the EDW HomePage. Summary Copy existing DTP to a new one in not possible in SAP

More information

SERIE N 1. 4 ème Année informatiques. Exercice 3. Exercice 4 (Manuel Scolaire) Page [1] Les enregistrements & Les fichiers Infoslpm.e-monsite.

SERIE N 1. 4 ème Année informatiques. Exercice 3. Exercice 4 (Manuel Scolaire) Page [1] Les enregistrements & Les fichiers Infoslpm.e-monsite. Exercice 3 SERIE N 1 program exercice3; uses wincrt; type st = string[30]; fch = file of st; var f:fch; nom: st; b : integer; procedure saisie(var f:fch); var vil:st; rep:char; write('donner le nom d''une

More information

SDN Community Contribution

SDN Community Contribution SDN Community Contribution (This is not an official SAP document.) Disclaimer & Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces

More information

Chapter 08 ABAP/4 Open SQL

Chapter 08 ABAP/4 Open SQL Chapter 08 ABAP/4 Open SQL ABAP/4 Open SQL Chapter 08 Objectives How to read, change, delete and insert data in database tables with the ABAP/4 Open SQL key words SELECT, MODIFY, UPDATE, DELETE and INSERT

More information

Converting SAP Script outputs to PDF file

Converting SAP Script outputs to PDF file SDN Contribution Converting SAP Script outputs to PDF file Applies to: SAP R/3 46C ABAP / SAPSCRIPTS Summary These code snippets explain how to convert single as well as multiple SAP Script output into

More information

A Simple search program for Dictionary objects

A Simple search program for Dictionary objects A Simple search program for Dictionary objects Applies To: ABAP Programming Article Summary This Code sample is a simple search utility for the dictionary objects. This has three kinds of search functionality

More information

REPORT zsscr. *TYPE POOLS DECLARATIONS FOR VALUE REQUEST MANAGER AND ICONS TYPE-POOLS : vrm, icon. *SELECTION SCREEN FIELDS TABLES : sscrfields.

REPORT zsscr. *TYPE POOLS DECLARATIONS FOR VALUE REQUEST MANAGER AND ICONS TYPE-POOLS : vrm, icon. *SELECTION SCREEN FIELDS TABLES : sscrfields. *& Report Z_sscr * *& * *& AS : DYNAMIC Selection screen based on user clicks on the radiobutton* *& * REPORT zsscr. *TYPE POOLS DECLARATIONS FOR VALUE REQUEST MANAGER AND ICONS TYPE-POOLS : vrm, icon.

More information

Author: Muthubalaji. Step 1: Add the field which has to be act as an input in the structure MCDOKOB.

Author: Muthubalaji. Step 1: Add the field which has to be act as an input in the structure MCDOKOB. Author: Muthubalaji Step 1: Add the field which has to be act as an input in the structure MCDOKOB. Step 2: create a screen in function group CV100 for TCode CV01N and CV130 for TCODE CV02N. The screen

More information

Convert the Spool into PDF and send to External ID

Convert the Spool into PDF and send to External  ID Convert the Spool into PDF and send to External Email ID Applies To: SAP 4.7/Above Article Summary This report program will execute the given program with the specified variant in background and convert

More information

C_TAW12_740

C_TAW12_740 C_TAW12_740 Passing Score: 800 Time Limit: 0 min Exam A QUESTION 1 You want to add a field ZZPRICE to the SAP standard transparent table EKKO. Which of the following actions results in an enhancement of

More information

How to Copy Test Data Set from One Function Module to Another (Comes Handy While Renaming Functions)

How to Copy Test Data Set from One Function Module to Another (Comes Handy While Renaming Functions) SDN Contribution How to Copy Test Data Set from One Function Module to Another (Comes Handy While Renaming Functions) Applies to: SAP R/3 Release 4.6 onwards (might work for earlier versions as well, but

More information

User Guide. for the Transactional Site. belonging to the. Laboratoire de sciences judiciaires et de médecine légale. for

User Guide. for the Transactional Site. belonging to the. Laboratoire de sciences judiciaires et de médecine légale. for User Guide for the Transactional Site belonging to the Laboratoire de sciences judiciaires et de médecine légale for Managing Expert Opinion Requests (GDE) Version 1.7 for External Users Created by Daniel

More information

LIST PROCESSING. Objective Extract datasets. Filling an extract with data Reading an extract Sorting an Extract. Lists

LIST PROCESSING. Objective Extract datasets. Filling an extract with data Reading an extract Sorting an Extract. Lists LIST PROCESSING LIST PROCESSING Objective Extract datasets Lists Filling an extract with data Reading an extract Sorting an Extract Standard list Self-Defined list List with several pages Interactive lists

More information

Enhancing / Modifying Multiple Data Sources in Parallel

Enhancing / Modifying Multiple Data Sources in Parallel Enhancing / Modifying Multiple Data Sources in Parallel Summary Step by Step procedure to implement a way by which we can modify / enhance multiple Data Sources in parallel. This implementation will not

More information

Applies To:...1. Summary...1. Table of Contents...1. Procedure..2. Code... Error! Bookmark not defined.0

Applies To:...1. Summary...1. Table of Contents...1. Procedure..2. Code... Error! Bookmark not defined.0 Applies To: Usage of Table Control in ABAP Summary Normally we use wizard if we are working with table control. This document helps us how to create a table control without using a wizard and how to manipulate

More information

Tracking Zero Record Loads

Tracking Zero Record Loads Applies To: SAP BW 3.0 and Above. Summary Sometimes when we extract data from source systems such as R3, flat files, or databases, we see the load finish successfully but deliver no new records to BW.

More information

Easy Application Integration: How to use the Records Management Call Handler Framework

Easy Application Integration: How to use the Records Management Call Handler Framework Easy Application Integration: How to use the Records Management Call Handler Framework Applies to: SAP NetWeaver > 7.0 For more information, visit the Data Management and Integration homepage. Summary

More information

Description de tous les champs du fichier de statut de retour pour l échange FATCA - version 0.4

Description de tous les champs du fichier de statut de retour pour l échange FATCA - version 0.4 Annexe 3 de la circulaire du directeur des contributions ECHA - n 3 (consolidée) du 18 février 2016 Description de tous les champs du fichier de statut de retour pour l échange FATCA - version 0.4 Introduction

More information

1. KNOWN ISSUES Minimum TWinSoft version: Minimum TView version: NEW FEATURES... 5

1. KNOWN ISSUES Minimum TWinSoft version: Minimum TView version: NEW FEATURES... 5 TView - 3.02 - Release notes April, 2018 TView build number: 487 TComm.dll version: 5.1.0.272 Table of Contents 1. KNOWN ISSUES... 3 1.1. LOGIN PROXY NOT SUPPORTED... 3 1.2. WITH FRENCH VERSION, IMPOSSIBLE

More information

Mass Upload Documents to BW

Mass Upload Documents to BW How to Mass Upload Documents to BW BUSINESS INFORMATION WAREHOUSE ASAP How to Paper SAP (SAP America, Inc. and SAP AG) assumes no responsibility for errors or omissions in these materials. These materials

More information

TD : Compilateur ml2java semaine 3

TD : Compilateur ml2java semaine 3 Module 4I504-2018fev TD 3 page 1/7 TD : Compilateur ml2java semaine 3 Objectif(s) 22 février 2018 Manipulation d un traducteur de code ML vers Java. 1 ML2Java Exercice 1 Structure du runtime 1. Déterminer

More information

Enhancement Technique: How-To-Guide on the usage of Validations

Enhancement Technique: How-To-Guide on the usage of Validations Enhancement Technique: How-To-Guide on the usage of Validations Applies to: SAP 4.6C and higher Summary This article provides a step-by-step guide on the usage of Validations, an Enhancement technique

More information

(APPLIES ONLY TO CLIENTS WHO ENABLE THIS FEATURE)

(APPLIES ONLY TO CLIENTS WHO ENABLE THIS FEATURE) V 4.6.1.January2018 Document version 01-10-2018-02 End of Year LMS Updates Admin Guide NOTE: This DRAFT guide should provide a brief overview and screenshots of the End of Year LMS updates. All items in

More information

A computerized system to store and retrieve data on biological and biotechnological veterinary products of the American continent

A computerized system to store and retrieve data on biological and biotechnological veterinary products of the American continent Rev. sa. lech. Off. int. Epiz., 1992, 11 (3), 925 929 A computerized system to store and retrieve data on biological and biotechnological veterinary products of the American continent L.V. MELENDEZ *,

More information

Corrigé. Leçon A Exercices : Tutoriel a. Dim strmois(1 to 6) as String

Corrigé. Leçon A Exercices : Tutoriel a. Dim strmois(1 to 6) as String Corrigé Tutoriel 10 Leçon A Exercices : 1. a. Dim strmois(1 to 6) as String b. StrMois(1) = "Janvier" StrMois(2) = "Février" StrMois(3) = "Mars" StrMois(4) = "Avril" StrMois(5) = "Mai" StrMois(6) = "Juin"

More information

Repère User Guide 2015

Repère User Guide 2015 Repère User Guide 2015 Help: searching in Repère 1. TYPES OF SEARCHES... 1 Repère offers three types of searches:... 1 1.1 La recherche simple (simple search)... 1 1.2 La recherche Commence par... (starts...

More information

Logical Databases. Objectives. In this Chapter we will discuss. Overview of LDB Usage of LDB in ABAP Program Advantages of LDB

Logical Databases. Objectives. In this Chapter we will discuss. Overview of LDB Usage of LDB in ABAP Program Advantages of LDB Logical Databases Objectives In this Chapter we will discuss Overview of LDB Usage of LDB in ABAP Program Advantages of LDB Database Selections Two ways of accessing data from database tables Accessing

More information

Manage Team Resources

Manage Team Resources You can assign phone books, reason codes, wrap-up reasons, custom desktop layouts, and workflows to teams on the Team Resources tab of the administration console. Team Resources, page 1 Assign Phone Books

More information

TP5 Sécurité IPTABLE. * :sunrpc, localhost :domain,* :ssh, localhost :smtp, localhost:953,*: Tous sont des protocoles TCP

TP5 Sécurité IPTABLE. * :sunrpc, localhost :domain,* :ssh, localhost :smtp, localhost:953,*: Tous sont des protocoles TCP TP5 Sécurité IPTABLE Routage classique Q1) Sur la machiine FIREWALL, les services actifs sont : Netstat -a * :sunrpc, localhost :domain,* :ssh, localhost :smtp, localhost:953,*:53856. Tous sont des protocoles

More information

Graphes: Manipulations de base et parcours

Graphes: Manipulations de base et parcours Graphes: Manipulations de base et parcours Michel Habib habib@liafa.univ-paris-diderot.fr http://www.liafa.univ-paris-diderot.fr/~habib Cachan, décembre 2013 Notations Here we deal with finite loopless

More information

In this Chapter you will learn...

In this Chapter you will learn... Objectives In this Chapter you will learn... Programming Language Basic Syntax of ABAP The ABAP/4 Programming Language A B A P / 4 dvanced usiness pplication rogramming SAP AG ABAP 4 is a programming language

More information

Solution Document: Status Search

Solution Document: Status Search Solution Document Status Search SAPWiki Page 1 Table of Contents Functional Specifications... 3 Technical Specifications... 4 METHOD eh_onsearch_btn.... 11 Class ZCL_DOC_SEARCH_TOOLS... 13 method STATUS_PREP....

More information

Selection-Screen Design

Selection-Screen Design Applies To: SAP R/3, ABAP/4 Summary This program illustrates some of the selection-screen design features, simple use of field symbols and the various events associated with a report program. And one good

More information

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6 HARP_VB projet en VB6 Option Explicit Dim Value As Integer Dim i As Integer Dim il As Long Dim LL, L1S, L250µS, L500µS, L1mS, L2mS, L5mS, L10mS As Single Dim offsetdepart As Long Dim police(256, 8) As

More information

Aerospace Extranet registration

Aerospace Extranet registration Aerospace Extranet registration Requirements:...2 Process of registration...2 Register form...4 Account creation request email...5 Identity Confirmation page...6 Profile modification...7 Registration confirmation

More information

SAP ABAP Interview Questions & Answers

SAP ABAP Interview Questions & Answers SAP ABAP Interview Questions & Answers SAP R/3 ARCHITECTURE 1. What guarantees the integration of all application modules? The R/3 basis system guarantees the integration of all application modules. The

More information

C_TAW12_740

C_TAW12_740 C_TAW12_740 Passing Score: 800 Time Limit: 4 min Exam A QUESTION 1 Which of the foldynpro application to transaction database data to the user interface? A. Interface controller B. Supply function C. Inbound

More information

This post contains all database table operations- like select, insert, update, modify, collect, inner-join, left-outer-join, for all entries...

This post contains all database table operations- like select, insert, update, modify, collect, inner-join, left-outer-join, for all entries... This post contains all database table operations- like select, insert, update, modify, collect, inner-join, left-outer-join, for all entries... ******DB TABLE OPERATION- SELECT - ENDSELECT ****** TYPES

More information

Unit-3 Software Design (Lecture Notes)

Unit-3 Software Design (Lecture Notes) Unit-3 Software Design (Lecture Notes) Prepared by Jay Nanavati, Assistant Professor, SEMCOM Topics Software Design - Introduction Design Principles Module Level concepts Overview of Structured design

More information

Combining Multiple Smartform Outputs Into One PDF File

Combining Multiple Smartform Outputs Into One PDF File SDN Contribution Combining Multiple Smartform Outputs Into One PDF File Applies to: SAP R/3 46C ABAP / SMARTFORMS Summary This program code would help those who want to combine multiple smartform outputs

More information

Tutorial 1 : minimal example - simple variables replacements

Tutorial 1 : minimal example - simple variables replacements Tutorial 1 : minimal example - simple variables replacements The purpose of this tutorial is to show you the basic feature of odtphp : simple variables replacement. require_once('../library/odf.php');

More information

Creating Entity Relationship Diagram

Creating Entity Relationship Diagram ERD, short form for Entity Relationship diagram is a kind of diagram for presenting the properties as well as the relationships between data or participants. Database designer uses ERD to model physical

More information

Voir ces deux articles : [3]

Voir ces deux articles :  [3] Publié sur WindowsLinux.net (http://www.windowslinux.net) Accueil > Microsoft Security Essentials Microsoft Security Essentials [1] Téléchargements Le téléchargement de MSE (Microsoft Security Essentials)

More information

TD 2. Correction TP info

TD 2. Correction TP info TP 2 Exercice 3 : Impôts Sub impot() Dim montant As Integer montant = Cells(1, 1).Value Dim montanttot As Integer Select Case montant Case 0 To 1000 montanttot = 0.1 * montant Case 1001 To 5000 montanttot

More information

Routines in SAP BI 7.0 Transformations

Routines in SAP BI 7.0 Transformations Routines in SAP BI 7.0 Transformations Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary This paper gives an overview about the different routines available

More information

5. Enterprise JavaBeans 5.3 Entity Beans. Entity Beans

5. Enterprise JavaBeans 5.3 Entity Beans. Entity Beans Entity Beans Vue objet d une base de données (exemples: client, compte, ) en général, une ligne d une table relationnelle (SGBD-R) ou un objet persistant (SGBD- OO) sont persistant (long-lived) la gestion

More information

YOUR CONTACT: Cédric BENSOUSSAN Phone: +33(0) HOLOROTOR PRO SOFTWARE USER GUIDE

YOUR CONTACT: Cédric BENSOUSSAN Phone: +33(0) HOLOROTOR PRO SOFTWARE USER GUIDE YOUR CONTACT: Cédric BENSOUSSAN cedric@interactive-studio.fr Phone: +33(0)1.42.06.62.61 HOLOROTOR PRO SOFTWARE USER GUIDE PREPARING THE FILE In order to prepare your video file optimally, please respect

More information

Web Transaction API HELP.BCFESITSTRANAPI. Release 4.6C

Web Transaction API HELP.BCFESITSTRANAPI. Release 4.6C HELP.BCFESITSTRANAPI Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express

More information

TP 3 des architectures logicielles Séance 3 : Architecture n-tiers distribuée à base d EJB. 1 Préparation de l environnement Eclipse

TP 3 des architectures logicielles Séance 3 : Architecture n-tiers distribuée à base d EJB. 1 Préparation de l environnement Eclipse TP 3 des architectures logicielles Séance 3 : Architecture n-tiers distribuée à base d EJB 1 Préparation de l environnement Eclipse 1. Environment Used JDK 7 (Java SE 7) EJB 3.0 Eclipse JBoss Tools Core

More information

SAP IBP Know-How & How-To for External Job Scheduling

SAP IBP Know-How & How-To for External Job Scheduling SAP IBP Know-How & How-To for External Job Scheduling SAP IBP Know-How & How-To for External Job Scheduling... 1 About this document... 2 Prerequisite... 2 Background... 2 Technical Background... 2 OData

More information

Creating an Order. Neighbourhood Mail. Effective January 15, postescanada.ca/cpnmguides

Creating an Order. Neighbourhood Mail. Effective January 15, postescanada.ca/cpnmguides Creating an Order Neighbourhood Mail Effective January 15, 2018 Trade-mark of Canada Post Corporation. OM Official mark of Canada Post Corporation. postescanada.ca/cpnmguides T575217 Neighbourhood Mail

More information

Switching Power Supply DELTA ELECTRONICS INC 3 TUNGYUAN RD CHUNGLI INDUSTRIAL ZONE TAOYUAN COUNTY TAIWAN

Switching Power Supply DELTA ELECTRONICS INC 3 TUNGYUAN RD CHUNGLI INDUSTRIAL ZONE TAOYUAN COUNTY TAIWAN DK-48554-A2-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME SYSTEME CEI D ACCEPTATION MUTUELLE DE CERTIFICATS D ESSAIS DES EQUIPEMENTS ELECTRIQUES (IECEE)

More information

Echo A2 (Nouvelle Version) (French Edition) By Jacky Girardet

Echo A2 (Nouvelle Version) (French Edition) By Jacky Girardet Echo A2 (Nouvelle Version) (French Edition) By Jacky Girardet If looking for the ebook Echo A2 (Nouvelle Version) (French Edition) by Jacky Girardet in pdf form, then you've come to the loyal website.

More information

Cross Database Comparison Enhancement Guide. Document Version 1.0 ( )

Cross Database Comparison Enhancement Guide. Document Version 1.0 ( ) Cross Database Comparison Enhancement Guide Document Version 1.0 (2014-07-15) www.sap.com TABLE OF CONTENT MOTIVATION... 3 Characteristics of generated CDC Data Extractors... 3 Limitation of generated

More information

CCM / Web-Reset. User Guide

CCM / Web-Reset. User Guide CCM / Web-Reset User Guide car.xit.iqvia.com User guide Version 1.0 1/12 Revisions Date Revision Object Rédaction Validation Approbation 2017-11-22 1.0 IQVIA Branding IQVIA 2017/01/09 1.0 Creation of document

More information

COMS 3101 Programming Languages: Perl. Lecture 2

COMS 3101 Programming Languages: Perl. Lecture 2 COMS 3101 Programming Languages: Perl Lecture 2 Fall 2013 Instructor: Ilia Vovsha http://www.cs.columbia.edu/~vovsha/coms3101/perl Lecture Outline Control Flow (continued) Input / Output Subroutines Concepts:

More information

qwertyuiopasdfghjklzxcvbnmqwertyui opasdfghjklzxcvbnmqwertyuiopasdfgh jklzxcvbnmqwertyuiopasdfghjklzxcvb nmqwertyuiopasdfghjklzxcvbnmqwer

qwertyuiopasdfghjklzxcvbnmqwertyui opasdfghjklzxcvbnmqwertyuiopasdfgh jklzxcvbnmqwertyuiopasdfghjklzxcvb nmqwertyuiopasdfghjklzxcvbnmqwer qwertyuiopasdfghjklzxcvbnmqwertyui opasdfghjklzxcvbnmqwertyuiopasdfgh jklzxcvbnmqwertyuiopasdfghjklzxcvb nmqwertyuiopasdfghjklzxcvbnmqwer ABAP Interview Questions & Answers Set 4 tyuiopasdfghjklzxcvbnmqwertyuiopas

More information

CO-OM tools: Functions of transaction SE16H

CO-OM tools: Functions of transaction SE16H - CO-OM tools: Functions of transaction SE16H Version 10 Type SAP Note Language English Master Language German Priority Recommendations / Additional Info Category Consulting Release Status Released for

More information

DÉVELOPPER UNE APPLICATION IOS

DÉVELOPPER UNE APPLICATION IOS DÉVELOPPER UNE APPLICATION IOS PROTOCOLES CE COURS EST EXTRAIT DU LIVRE APP DEVELOPMENT WITH SWIFT 1 PROTOCOLES Définit un plan de méthodes, de propriétés et d'autres exigences qui conviennent à une tâche

More information

Préparation au concours ACM TP 2

Préparation au concours ACM TP 2 Préparation au concours ACM TP 2 Christoph Dürr Jill-Jênn Vie September 25, 2014 Quelques conseils Entraînez-vous à identifier les problèmes les plus faciles. Lisez bien les contraintes d affichage : faut-il

More information

Secure Transfer Site (STS) User Manual

Secure Transfer Site (STS) User Manual Secure Transfer Site (STS) User Manual (Revised 3/1/12) Table of Contents Basic System Display Information... 3 Command Buttons with Text... 3 Data Entry Boxes Required / Enabled... 3 Connecting to the

More information

How to obtain a certificate of equivalence?

How to obtain a certificate of equivalence? How to obtain a certificate of equivalence? Why is it useful? You need the certificate if you want to apply to university. It will provide you an equivalent of your diploma in the French system. What documents

More information

DinLink. Working principle. What is the ideal data source?

DinLink. Working principle. What is the ideal data source? DinLink - Working principle DinLink Working principle DinLink is a DBM6000 module that allows you to use your own data source to fill in the users list of the DBM6000 without having to encode each user.

More information

ABAP Program to Read/Populate Selection Screen Parameters Dynamically

ABAP Program to Read/Populate Selection Screen Parameters Dynamically ABAP Program to Read/Populate Selection Screen Parameters Dynamically Applies to: SAP 4.6c Summary The main purpose of this article is to focus on dynamic read and dynamic population of selection screen

More information

Correction bac pratique 2012 g1

Correction bac pratique 2012 g1 Bac pratique 2012 g1 Correction bac pratique 2012 g1 program FactPrem; uses wincrt; type fdat=file of integer; tab=array[1..20] of string; var fd:fdat; ft:text;n,p,d:integer;decomp:tab; {***** fonction

More information

Application Monitoring Setup and User Guideline. BPMon Data Collectors for non-abap/non-sap: Application Monitoring. Version: 2.0

Application Monitoring Setup and User Guideline. BPMon Data Collectors for non-abap/non-sap: Application Monitoring. Version: 2.0 Application Monitoring Setup and User Guideline BPMon Data Collectors for non-abap/non-sap: Application Monitoring Version: 2.0 Last Change: 20.09.2017 Table of Contents 1 Introduction...5 2 The monitoring

More information

Rev A /03

Rev A /03 Smart Equipment Management Quick Start Guide 5212 EN 5212-029-001 Rev A.1 2018/03 Table of Contents Product description...2 SEM home page...3 Operation...4 My Account tab...4 Resource Center tab...4 Sites

More information

Installation des interfaces et utilisation de WorldCAT-CIF pour le catalogue CD Meusburger

Installation des interfaces et utilisation de WorldCAT-CIF pour le catalogue CD Meusburger Installation des interfaces et utilisation de pour le catalogue CD Meusburger 1. Condition préalable: lors de l installation du catalogue CD Meusburger, il faut avoir mis en place DAKO. 2. Veuillez vérifier

More information

Compilation TP 0.0 : The target architecture: Digmips

Compilation TP 0.0 : The target architecture: Digmips Compilation TP 0.0 : The target architecture: Digmips C. Alias & G. Iooss The goal of these TPs is to construct a C compiler for Digmips, a small MIPS processor implemented using the Diglog logic simulation

More information

Application Monitoring Setup and User Guideline. BPMon Data Collectors. Application Monitoring. Version: 2.0

Application Monitoring Setup and User Guideline. BPMon Data Collectors. Application Monitoring. Version: 2.0 Application Monitoring Setup and User Guideline BPMon Data Collectors for non-abap/non-sap: Application Monitoring Version: 2.0 Last Change: 20.09.2017 Table of Contents 1 Introduction... 5 2 The monitoring

More information

CONCATENATE '{' ld_quote 'url' ld_quote ':' ld_quote fi_qrcode ld_quote '}' INTO ld_data.

CONCATENATE '{' ld_quote 'url' ld_quote ':' ld_quote fi_qrcode ld_quote '}' INTO ld_data. FUNCTION zfm_qrcode_generate. *"---------------------------------------------------------------------- *"*"Local Interface: *" IMPORTING *" VALUE(FI_URL) TYPE STRING OPTIONAL *" VALUE(FI_QRCODE) TYPE ZDE_QRCOD

More information

CERTIFICAT D'ESSAI OC. Switching Power Supply XP POWER L L C RED HILL AVE, SUITE 100 TUSTIN CA 92780, USA

CERTIFICAT D'ESSAI OC. Switching Power Supply XP POWER L L C RED HILL AVE, SUITE 100 TUSTIN CA 92780, USA US-26019-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME SYSTEME CEI D'ACCEPTATION MUTUELLE DE CERTIFICATS D'ESSAIS DES EQUIPEMENTS ELECTRIQUES (IECEE)

More information

Search Hit Report Manual

Search Hit Report Manual Search Hit Report Manual Version 5.07 November 25, 2009 200 West Jackson Blvd. Suite 800 Chicago, IL 60606 (312) 263-1177 Contents 1 Overview...3 2 Importing the Search Hit Report Tool...3 3 Creating a

More information

Attachment of note CR 642 Additional fields in customer and vendor master data

Attachment of note CR 642 Additional fields in customer and vendor master data Attachment of note 1599213 CR 642 Additional fields in customer and vendor master data Changes in Release 46C 1 Table of Content Attachment of note 1599213... 1 1 Table of Content... 2 2 Customer Master...

More information

Can be used in diverse languages / Development Environments

Can be used in diverse languages / Development Environments 1 BAPI: A Business Application Programming Interface is a precisely defined interface providing access process and data in Business Applications Systems Such as SAP R/3 Benefits of BAPI: Can be used in

More information

Custom Body through Action Configuration

Custom Body through Action Configuration Email Custom Body through Action Configuration Applies to: SAP CRM 7.0. For more information, visit the Customer Relationship Management homepage. Summary This document helps in implementing the custom

More information

Reporting Duplicate Entries

Reporting Duplicate Entries Applies to: SAP BI 7.0 and above. For more information, visit the Business Intelligence Homepage. Summary It is a common reporting requirement to display duplicate entries based on a characteristic. This

More information

Online Business Account How to view and download reports

Online Business Account How to view and download reports Online Business Account How to view and download reports Online Business Account How to view and download reports There are a range of reports in the reporting suite that can provide you with information

More information