G-Service. Web service description
|
|
- Ilona Nováková
- před 7 lety
- Počet zobrazení:
Transkript
1 Str. 1/48 G-Service Web service description DOCUMENT VERSION: 3.6 DATE:
2 Str. 2/48 About G-Service G-Service is a web service designed for customers of Geis group, which allows customers to fully automatically process transport entry in both Geis group products (cargo and parcel transport). The web service allows entering shipments (expedition or orders in mode), status detection and other information about shipments, ordering pick-up and detection additional services available for the customer. The use of the web service enables full integration in the production process, storage systems or web shop for the Geis group customers. Requirements for the web service and especially responses from the web service are structured in XML format and allow further processing on the part of customers systems. G-Service works on the principle of SOAP architecture ( The access is allowed via secured HTTP protocol (HTTPS) only. To test the web service, for example, the open source program SoapUI ( may be used. To access the web service it is necessary to have access data customer code and password. These access data are communicated on request from the assigned business manager from the Geis group. In order to ensure the availability of service for all customers, the number of calls by individual customers is monitored. Each web service method has a defined call limit for a certain time period. If this number is exceeded, access to that method will be temporarily restricted. In this case, the customer receives an error message when calling the method. Before moving to full operation it is always necessary to go through the first integration tests in the test environment which are done by technical department of customer in cooperation with EDI department of Geis group. The web service is available for customers from the Czech Republic and Slovakia at the following addresses: access to the production environment access to the test environment The web service is available for customers from Poland at following addresses: - access to the production environment access to the test environment - access to the production environment /GserviceTest/Gservice.svc access to the test environment For the successful implementation of the web service in customer environment and understanding the broader context it is recommended to study the Manual for system integration, which is available on the technical support web site of the Geis group under link Technical support in the downloads section at: or (Czech,Slovak and English version) (Polish and English version)
3 Str. 3/48 Content About G-Service... 2 ChangeLog... 4 Implementation steps on customer side... 6 Recommended set of services for GService implementation:... 6 Creation of shipments... 6 Printing of label, pickup list and delete of shipment... 7 Checking of shipment status... 7 Minimal test scenario... 7 Web service base classes... 8 Request... 8 RequestHeader... 8 Language... 8 Currency... 8 Response... 8 ResponseStatus... 8 ZipCodes... 9 Address... 9 Contact... 9 Error codes... 9 Web service methods ServiceList AddServiceList StatusList WrapList DeliveryRouting ShipmentDetail RouteTable CreatePickUp InsertExport InsertOrder AssignRange IsHealthy GetLabel ListOfShipments ShipmentStatus GetPickupList DeleteShipment RangeDetail... 46
4 Str. 4/48 ChangeLog Version Date Change Service creation. Basic methods: - ServiceList - AddServiceList - StatusList - WrapList - DeliveryRouting - ShipmentDetail - RouteTable - CreatePickUp - InsertExport - InsertOrder - AssignRange 1.1 Added list of possible currencies Currency Changes in input: - To ExportService added Parameter_5 - InsertOrder corrected parameter MergedOrder - Edited mandatory parameters in InsertExport - Language CS changed to CZ - Password for logging extended to 20 characters Changes in output: - method ShipmentDetail PackageRow added customer references (Reference) - method InserExport added list of numbers merged shipments (MergedPackNumbers) - method InsertOrder added list of numbers merged orders (MergedPackNumbers) Changes in input: - InsertOrder: added parameter for entering merged orders (MergedOrders) - InsertOrder: removed parameter CountItems - InsertExport: added parameter for entering merged shipments (MergedPackages) - Corrected control of class Contact, now it is checking the format of and Telephone number Changes in input: - DeliveryRouting parameter CountryIn changed to optional for Parcel Updating the obligations parameters. Correction Supplementing dimensions parameters for order Changed description of parameters for method DeliveryRouting Added web service description, implementation scenario Error code list update New method GetLabel. Update of method IsHealthy. Update of response of method ShipmentDetail.
5 Str. 5/ New methods ListOfShipments, ShipmentStatus, GetPickupList, DeleteShipment. Added new parameter BurstId in methods Insertorder and InsertExport GDO service added to list of services (in part of method InsertExport) Modification of methods ListOfShipments, ShipmentDetail Correction of parameter Range for AssignRange method (parameter is mandatory) New web service addresses for K-EX customers Changed description of parameters for method AddServiceList Complementing services for method InsertExport Changed description of parameters for method InsertExport The total revision of the document Changed description for method DeleteShipment, editing references to documentation Changed description for method AssignRange Changed description for method InsertExport Updated table of services parameters for method InsertExport Added new limit information in ShipmentStatus, DeleteShipment, GetLabel and InsertExport methods Updated minimum test scenario and added a recommended set of service for GService implementation New method RangeDetail
6 Str. 6/48 Implementation steps on customer side For web service implementation, following steps are required on customer side: Check the option of API requests and reply processing via HTTPS protocol in customer logistic software Understanding basic concepts in document Manual for system integration (product types, shipment routing, additional shipment services, labels print and hand-over protocol) and this documentation Require access to API interface of test web service from Geis sales manager Test basic methods and classes, response processing, return codes management Create labels and hand-over protocol and send for validation to Geis sales manager Agreement of schedule and go-live Recommended set of services for GService implementation: 1. IsHealthy o verify that the web service is communicating Creation of shipments 1. AssignRange o if package numbering within the customer s number series is required, implementation of the method is necessary o when using GEIS automatic numbering, there is no need to implement this method 2. ServiceList o verify of allowed types of transport necessary for AddServiceList method 3. AddServiceList o verify of available services for a particular customer 4. CreatePickUp o when using GEIS automatic pickup (for big customers only) this method is used for verify of automatically generated pickup o in the event of an error when generating automatic pickup, this method is used for order of pickup o if the GEIS automatic pickup not used, this method must be implemented to order them 5. InsertExport 6. InsertOrder 1 o placing an order 1 if is not used, implementation or testing is not required
7 Str. 7/48 Printing of label, pickup list and delete of shipment 1. GetLabel 1 o printing of label with way that will be used in particular implementation o if this method is not implemented, it is necessary to maintain the current route tables and follow the format of parcel and cargo labels (more in Manual for System Integration) 2. GetPickupList 1 o printing of pickup list for a given shipment day or for specific shipments 3. DeleteShipment o delete of created shipments Checking of shipment status 1. ShipmentStatus o returns the last state of the shipment 2. ShipmentDetail o returns a complete list of shipment states (information from Track & Trace) Minimal test scenario 1. testing the implemented methods a. get state of GService is communicating or not b. verify of allowed types of transport and services c. get a number of range with appropriate method 1 d. create pickup or finding out if the pickup was automatically generated e. create a test set of shipments 1. shipment without services 2. shipment with B2C&COD services 3. shipment for dispensing point (VM) 1 4. merged shipment 2. print a label and pickup list for created shipments and send it for inspection to GEIS IT (edi@geis.cz or specific person of IT department) 3. get states of specific shipment(s) 4. delete of created shipments 1 if is not used, implementation or testing is not required
8 Str. 8/48 Web service base classes The base classes are mentioned below. They are used in almost all methods of service. Request Header RequestHeader Header of request Y RequestObject Generic Input object (specific for call method) Y RequestHeader CustomerCode String Customer code Y* Password String Password for login Y* Language Language Language for communication Y *it does not have to be mandatory for all calls methods. Language List of possible languages: Value Name/Description CZ Czech SK Slovak EN English DE German PL Polish Currency List of possible currencies: Value Name/Description UND Undefined value currency CZK Czech crown EUR Euro CHF Swiss franc USD American dollar PLN Polish Zloty HUF Hungarian forint Response Name Type Description Request Request Input for the called method (it is set only in the case when it ends with an error). ResponseObject Generic Output object (specified for call method) ErrorMessage String Error message. ErrorCode String Error code (List of error codes is here) Status ResponseStatus Status of method processing ResponseStatus Value Name/Description Inserted Insert was successful. Deleted Delete was successful. Updated Update was successful.
9 Str. 9/48 ErrorOccurred Error occurred during the processing. AccesDenied Access denied (invalid combination of customer code and password) Processed Listing/Process in passed right. NoDataFound No data found. ZipCodes Name Type Length Description ZipCodeFrom String 10 Zip code from ZipCodeTo String 10 Zip code to Address Name Type Length Description Name String 50 Name Name2 String 50 Name supplement Street String 50 Street City String 50 City ZipCode String 10 ZipCode Country String 2 Country in ISO alpha-2 format Contact Contact information Name Type Length Description String 50 FullName String 50 Full name Phone String 20 Phone number in an international format (e.g ) Error codes Code Description 1000 Access denied 1001 Unauthorized access! 2000 [#Name of parameter#] is a mandatory parameter! 2001 Distribution channel must have value 1 or 2! 2002 Value [#Value from list of values#] was not found! 2003 No data found 2004 Routing table for this day does not exist! 2005 This type of transport service is not allowed for this pickup address! 2006 Wrong range of data! 2007 Type UM [#Typeunit#] is not allowed for this customer! 2008 Enabled distribution channel [#distribution channel identifier#]! 2009 Type of transport may have value 1- national / 2-international 2010 Parcel number has already been used! 2011 Parcel number does not belong to the numerical series assigned to the customer! 2012 This kind of transport service is not allowed for this customer: [#name of the transport service#]! 2013 Total weight and the weight of individual items do not match Pick-up for the current day can be created only until [#TEXT#] clock The specified service [#TEXT#] cannot be processed, because it does not
10 Str. 10/48 exist in the list of services. The service must be set up. Contact support [#TEXT#] must be in international form (e.g ). Allowed preferences are [#TEXT-1#] [#TEXT#] must be in correct form (e.g [#TEXT#] is not a valid or phone![#text-1#] [#TEXT-2#]* 2020 Order cannot be placed for this day [#TEXT#] must be equal to or greater than [#TEXT-1#]! 2022 Entered code for pickup point is not valid! 2023 Entered pickup point code [#TEXT#] was not found Contact person is required for shipments delivered to pickup point Contact phone is required for shipments delivered to pickup point This method is available only for parcel service 2027 You cannot send shipment to pickup point, this option is not active Field country must be specified for cover address 2029 For customer [#TEXT#] individual COD account option is not active. DistributionChannel [#TEXT-1#] 2030 For export item the dimensions must be specified Number series is not assigned. Call the AssignRange method first with the limit [#TEXT#] Error service GClientWS! [#Error message from the service GClientWS #] 9999 Unexpected Error! *it contains a description of errors 2017 and 2018 Web service methods If the inbound request for a web services exceeds the limit specified for each method, the server rejects the request and show response with an error state in the http header: HTTP Error 413 Request entity too large ServiceList It returns list of transportation services that are set in the primary system. It can return these values: Value Name/Description 10 Parcel expedition 11 Parcel orders 20 Cargo expedition 21 Cargo orders
11 Str. 11/48 Request Header RequestHeader Header of request Y RequestObject ServiceRequest Empty class Response Name Type Description Request Request Input data for the called method (it is set only in the case when it ends with an error). ResponseObject List<Service> List of transport services ErrorMessage String Error message. ErrorCode String Error code (list of error codes is here) Status ResponseStatus Status of method processing Service Detail of transport service. Name Type Length Description Code String 3 Transport service code Name String 30 Transport service name An example of ServiceList method Request: <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" <soap:body> <ServiceList xmlns=" <Request> <Header xmlns=" <CustomerCode> </CustomerCode> <Language>EN</Language> <Password>wspwd</Password> </Header> <RequestObject xmlns=" /> </Request> </ServiceList> </soap:body> </soap:envelope> Response: <s:envelope xmlns:s=" <s:body> <ServiceListResponse xmlns=" <ServiceListResult xmlns:a=" xmlns:i=" <a:errorcode>0000</a:errorcode> <a:errormessage /> <a:request i:nil="true" /> <a:responseobject> <a:service> <a:code>10</a:code> <a:name>parcel dispatch</a:name> </a:service> <a:service> <a:code>11</a:code> <a:name>parcel orders</a:name>
12 Str. 12/48 </a:service> <a:service> <a:code>20</a:code> <a:name>cargo dispatch</a:name> </a:service> <a:service> <a:code>21</a:code> <a:name>cargo orders</a:name> </a:service> </a:responseobject> <a:status>processed</a:status> </ServiceListResult> </ServiceListResponse> </s:body> </s:envelope> AddServiceList It returns the list of additional services that the customer has set up in the primary system. In these service may be included for example COD Cash on delivery, POJ insurance etc. Request Header RequestHeader Header of request Y RequestObject AddServiceRequest Instance of the class AddServiceRequest Y AddServiceRequest Name Type Length Description Mandatory Service String 2 Type of transport service (according to the Y output ServiceList) DeliveryCountry String 2 Country of recipient in ISO alpha-2 form Y Response Name Type Description Request Request Input data for the called method (it is set only in the case when it ends with an error) ResponseObject List<AddService> List of services which customer can use. ErrorMessage String Error message. ErrorCode String Error code (list of error codes is here) Status ResponseStatus Status of method processing. AddService Detail of service. Name Type Length Description Code Int 2 Service Id Abbreviation String 3 Service abbreviation Description String 30 Service description. ZipCodeFrom String 10 Zip code from (if set) ZipCodeTo String 10 Zip code to (if set)
13 Str. 13/48 An example of AddServiceList call method Here is an example below in which we run method which returns what services are authorized for customer for Parcel product. Moreover we are interested only in expedition. Request: <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" <soap:body> <AddServiceList xmlns=" <Request> <Header xmlns=" <CustomerCode> </CustomerCode> <Language>EN</Language> <Password>wspwd</Password> </Headere <RequestObject xmlns=" <DeliveryCountry>CZ</DeliveryCountry> <Service>10</Service> </RequestObject> </Request> </AddServiceList> </soap:body> </soap:envelope> Response: We can see in the answer that customer has assigned services COD, POJ and D12. For service D12 we can notice that another element ZipCodeList is given. This list identifies for which recipient s Zip code it is possible to use D12 service. In case that D12 service is used in InsertExport method and recipient Zip code is not in the interval Zip code, the expedition won t be processed and service will display an error message. <s:envelope xmlns:s=" <s:body> <AddServiceListResponse xmlns=" <AddServiceListResult xmlns:a=" xmlns:i=" <a:errorcode>0000</a:errorcode> <a:errormessage /> <a:request i:nil="true" /> <a:responseobject> <a:addservice> <a:abbreviation>cod</a:abbreviation> <a:code>2</a:code> <a:description>cash on delivery</a:description> <a:service>10</a:service> <a:zipcodeslist i:nil="true" /> </a:addservice> <a:addservice> <a:abbreviation>poj</a:abbreviation> <a:code>3</a:code> <a:description>add. insurance</a:description> <a:service>10</a:service> <a:zipcodeslist i:nil="true" /> </a:addservice> <a:addservice> <a:abbreviation>d12</a:abbreviation> <a:code>6</a:code> <a:description>delivery within 12hrs</a:Description> <a:service>10</a:service> <a:zipcodeslist>
14 Str. 14/48 <a:zipcodes> <a:zipcodefrom>10000</a:zipcodefrom> <a:zipcodeto>19900</a:zipcodeto> </a:zipcodes> <a:zipcodes> <a:zipcodefrom>30100</a:zipcodefrom> <a:zipcodeto>31700</a:zipcodeto> </a:zipcodes> </a:zipcodeslist> </a:addservice> </a:responseobject> <a:status>processed</a:status> </AddServiceListResult> </AddServiceListResponse> </s:body> </s:envelope> StatusList It returns a list of the shipments statuses which are visible in Track & Trace. Request Header RequestHeader Header of request Y RequestObject StatusRequest StatusRequest instance class Y StatusRequest DistributionChannel Int Type of transport service (1 Parcel, 2 Cargo) Y Response Name Type Description Request Request Input data for the called method (it is set only in case when it ends with an error) ResponseObject List<Status> List of statuses according to the transport service ErrorMessage String Error message ErrorCode String Error code (list of error codes is here) Status ResponseStatus Status process method. Status Detail of status of the shipment. Name Type Length Description Code String 3 Status code Description String 20 Service description DistributionChannel Int 1 Type of transport service (1 Parcel, 2 Cargo)
15 Str. 15/48 An example of StatusList call method Request: <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" <soap:body> <StatusList xmlns=" <Request> <Header xmlns=" <CustomerCode> </CustomerCode> <Language>EN</Language> <Password>wspwd</Password> </Header> <RequestObject xmlns=" <DistributionChannel>1</DistributionChannel> </RequestObject> </Request> </StatusList> </soap:body> </soap:envelope> Response: <s:envelope xmlns:s=" <s:body> <StatusListResponse xmlns=" <StatusListResult xmlns:a=" xmlns:i=" <a:errorcode>0000</a:errorcode> <a:errormessage /> <a:request i:nil="true" /> <a:responseobject> <a:status> <a:code>10</a:code> <a:description>pick up of parcel</a:description> <a:distributionchannel>1</a:distributionchannel> </a:status> <a:status> <a:code>11</a:code> <a:description>cancelled</a:description> <a:distributionchannel>1</a:distributionchannel> </a:status> <a:status> <a:code>12</a:code> <a:description>pick up depot</a:description> <a:distributionchannel>1</a:distributionchannel> </a:status> <a:status> <a:code>20</a:code> <a:description>received at depot</a:description> <a:distributionchannel>1</a:distributionchannel> </a:status> </a:responseobject> <a:status>processed</a:status> </StatusListResult> </StatusListResponse> </s:body> </s:envelope>
16 Str. 16/48 WrapList This returns a list of manipulation units allowed for the customer in the primary system. Request Header RequestHeader Header of request Y RequestObject WrapRequest Instance of the WrapRequest class (empty class) Y Response Name Type Description Request Request Input data for the called method (it is set only in case it ends with an error) ResponseObject List<Wrap> List of manipulation units which are allowed for the customer. ErrorMessage String Error message ErrorCode String Error code (list of error codes is here) Status ResponseStatus Status process method. Wrap Detail of the manipulation unit. Name Type Length Description Code String 3 Manipulation unit code Description String 50 Manipulation unit description Returnable Bool Returnable package An example of WrapList call method Request: <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" <soap:body> <WrapList xmlns=" <Request> <Header xmlns=" <CustomerCode> </CustomerCode> <Language>EN</Language> <Password>wspwd</Password> </Header> <RequestObject xmlns=" /> </Request> </WrapList> </soap:body> </soap:envelope>
17 Str. 17/48 Response: <s:envelope xmlns:s=" <s:body> <WrapListResponse xmlns=" <WrapListResult xmlns:a=" xmlns:i=" <a:errorcode>0000</a:errorcode> <a:errormessage /> <a:request i:nil="true" /> <a:responseobject> <a:wrap> <a:code>fp</a:code> <a:description>europallet</a:description> <a:returnable>true</a:returnable> </a:wrap> <a:wrap> <a:code>kh</a:code> <a:description>half pallet</a:description> <a:returnable>true</a:returnable> </a:wrap> </a:responseobject> <a:status>processed</a:status> </WrapListResult> </WrapListResponse> </s:body> </s:envelope> DeliveryRouting It returns country of the recipient, depot and direction. This information is important for compilation of the label - see System integration manual for customers section 2.4. Specification for printing labels on the page 22. Request Header RequestHeader Header of request Y RequestObject DeliveryRoutingRequest Instance of class DeliveryRoutingRequest Y DeliveryRoutingRequest Name Type Length Description Mandatory DistributionChannel Int Type of transport service (1 Parcel, 2 Y Cargo) CountryIn String 2 Sender s country Y* ZipCodeIn String 10 Sender s Zip code Y CountryOut String 2 Recipient s country Y ZipCodeOut String 10 Recipient s Zip code Y TemperatureMode String Temperature mode (not used) *Parameter is mandatory for Cargo
18 Str. 18/48 Response Name Type Description Request Request Input data for the called method (it is set only in case it ends with an error) ResponseObject DeliveryRouting Information about routing. ErrorMessage String Error message ErrorCode String Error code (list of error codes is here) Status ResponseStatus Status of method processing DeliveryRouting Name Type Length Description DeliveryRoute String 4 Delivery routes code DepCode String 3 Depot code An example of DeliveryRouting call method Request: <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" <soap:body> <DeliveryRouting xmlns=" <Request> <Header xmlns=" <CustomerCode> </CustomerCode> <Language>EN</Language> <Password>wspwd</Password> </Header> <RequestObject xmlns=" <CountryIn /> <CountryOut>CZ</CountryOut> <DistributionChannel>1</DistributionChannel> <TemperatureMode /> <ZipCodeIn>33843</ZipCodeIn> <ZipCodeOut>60200</ZipCodeOut> </RequestObject> </Request> </DeliveryRouting> </soap:body> </soap:envelope> Response: <s:envelope xmlns:s=" <s:body> <DeliveryRoutingResponse xmlns=" <DeliveryRoutingResult xmlns:a=" xmlns:i=" <a:errorcode>0000</a:errorcode> <a:errormessage /> <a:request i:nil="true" /> <a:responseobject> <a:deliveryroute>6010</a:deliveryroute> <a:depcode>60</a:depcode> </a:responseobject> <a:status>processed</a:status> </DeliveryRoutingResult> </DeliveryRoutingResponse> </s:body> </s:envelope>
19 Str. 19/48 ShipmentDetail It returns information about shipment. If the information about customer is sent and shipment is created, this method returns information about shipment services, recipient s address and sender s address. If customer/payer does not create shipment, it will only display the statuses of the shipment. Request Header RequestHeader Header of request Y RequestObject ShipmentRequest Instance of the class ShipmentRequest Y ShipmentRequest Name Type Length Description Mandatory DistributionChannel Int Type of transport service (1 Parcel, 2 Y Cargo) ShipmentNumber String 11 / 13 Number of the shipment parcel / cargo Y Response Name Type Description Request Request Input data for the called method (it is set only in case it ends with an error) ResponseObject Shipment Details about shipment ErrorMessage String Error message ErrorCode String Error code (list of error codes is here) Status ResponseStatus Status of method processing. Shipment Detail of the shipment. Channel: P = valid for parcel, C = valid for cargo Name Type Length Description Channel ShipmentNumber String 11 / 13 Number of the shipment PC parcel / cargo ShipmentNumberCust String 50 Customer s reference PC DelivPerson String 50 Name of the shipment PC recipient Weight Decimal (5,2) Weight of the shipment PC CodVarCode String 10 Payment identification code PC for cash on delivery CodValue Decimal (12,2) Cash on delivery value PC DelivDate DateTime Date of delivery PC BorderDate DateTime Sending date (date of loading C to main run) BorderDate DateTime Shipment creation date P Volume Decimal (9,3) Volume C RecAddress Address Address of the recipient PC SendAddress Address Address of the sender PC History List<PackageHistory> List of shipment statuses PC ColliHistory List<ColliHistory> List of statuses for individual C pieces of shipment Services List<PackageService> List of shipment services PC Rows List<PackageRow> List of shipment rows C
20 Str. 20/48 PackageHistory Detail of shipment status. Name Type Length Description StatusDate DateTime Date of status StatusName String 50 Name of status StatusCode String 10 Code of status DepName String 50 Depot of status Description String 50 Note ColliHistory Item of the status piece of shipment Name Type Length Description StatusDate DateTime Date of status StatusName String 50 Name of status StatusCode String 10 Code of status DepName String 50 Depot of status Description String 50 Note ColliNumber String 25 Number of the piece PackageService Item of shipment service Name Type Length Description Name String 30 Name of service Price Decimal (12,2) Service price Currency Currency Currency PackageRow Item of the shipment row Name Type Length Description CountItems Int Number of pieces PackingType String 30 Package Description String 30 Description Weight Decimal (9,2) Weight Reference String 50 Customer s reference Volume Decimal (9,3) Volume Dimension String Dimension (return empty value) Error codes Code Shipment status Description 0 OK Non-delivery, it has status 1 OK Delivery, it has status 2 OK Does not have status yet 3 STORNO Shipment was cancelled. 4 Není Shipment does not exist.
21 Str. 21/48 An example of ShipmentDetail call method Request: <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" <soap:body> <ShipmentDetail xmlns=" <Request> <Header xmlns=" <CustomerCode> </CustomerCode> <Language>EN</Language> <Password>wspwd</Password> </Header> <RequestObject xmlns=" <DistributionChannel>1</DistributionChannel> <ShipmentNumber> </ShipmentNumber> </RequestObject> </Request> </ShipmentDetail> </soap:body> </soap:envelope> Response: <s:envelope xmlns:s=" <s:body> <ShipmentDetailResponse xmlns=" <ShipmentDetailResult xmlns:a=" xmlns:i=" <a:errorcode>0</a:errorcode> <a:errormessage>shipment OK - undelivered, has statuses.</a:errormessage> <a:request i:nil="true" /> <a:responseobject> <a:borderdate> t00:00:00</a:borderdate> <a:codvalue>1,00</a:codvalue> <a:codvarcode>123</a:codvarcode> <a:collihistory i:nil="true" /> <a:delivdate> t00:00:00</a:delivdate> <a:delivperson i:nil="true" /> <a:history> <a:packagehistory> <a:depname /> <a:description>reference to shipment</a:description> <a:statuscode>121</a:statuscode> <a:statusdate> t08:23:03.763</a:statusdate> <a:statusname>customer reference</a:statusname> </a:packagehistory> <a:packagehistory> <a:depname /> <a:description /> <a:statuscode>174</a:statuscode> <a:statusdate> t08:23:03.83</a:statusdate> <a:statusname>recipient s phone</a:statusname> </a:packagehistory> </a:history> <a:recaddress> <a:city>mirošov</a:city> <a:country>česká republika</a:country> <a:name>test GService - test GService</a:Name> <a:name2 /> <a:street>prokopova XXX</a:Street> <a:zipcode>33843</a:zipcode> </a:recaddress>
22 Str. 22/48 <a:rows i:nil="true" /> <a:sendaddress> <a:city>ejpovice</a:city> <a:country>česká republika</a:country> <a:name>test GService - svozová adresa</a:name> <a:name2 /> <a:street>zemská 211/I</a:Street> <a:zipcode>33701</a:zipcode> </a:sendaddress> <a:services> <a:packageservice> <a:currency>und</a:currency> <a:name>mýto</a:name> <a:price>0.0000</a:price> </a:packageservice> <a:packageservice> <a:currency>und</a:currency> <a:name>diesel surcharge</a:name> <a:price>0.0000</a:price> </a:packageservice> <a:packageservice> <a:currency>und</a:currency> <a:name>transport costs</a:name> <a:price>0.0000</a:price> </a:packageservice> <a:packageservice> <a:currency>und</a:currency> <a:name>cash on delivery</a:name> <a:price>0.0000</a:price> </a:packageservice> <a:packageservice> <a:currency>und</a:currency> <a:name>private address</a:name> <a:price>0.0000</a:price> </a:packageservice> </a:services> <a:shipmentnumber> </a:shipmentnumber> <a:shipmentnumbercust>reference of shipment</a:shipmentnumbercust> <a:volume>0</a:volume> <a:weight>4.00</a:weight> </a:responseobject> <a:status>processed</a:status> </ShipmentDetailResult> </ShipmentDetailResponse> </s:body> </s:envelope> RouteTable It returns route table. It is possible to return the table for 7 days in advance. This information is important for creation of label see System integration manual for customers section 2.4.Specification for printing labels on the page 22. Request Header RequestHeader Header of request Y RequestObject RouteTableRequest Instance of the class RouteTableRequest Y
23 Str. 23/48 RouteTableRequest DistributionChannel Int Type of transport service (1 Parcel, 2 Cargo) Y ValidDate DateTime Validity date Y Response Name Type Description Request Request Input data for the called method (it is set only in case it ends with an error) ResponseObject List<RouteTable> List of items from routing table ErrorMessage String Error message ErrorCode String Error code (list of error codes is here) Status ResponseStatus Status of method processing RouteTable Name Type Length Description DistributionChannel Int Service Country String 2 Country Depot String 2 epot code Route String 4 Route ZipCodes ZipCodes Zip code from/to ValidDate Datetime Validity An example of RouteTable call method Request: <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" <soap:body> <RouteTable xmlns=" <Request> <Header xmlns=" <CustomerCode> </CustomerCode> <Language>EN</Language> <Password>wspwd</Password> </Header> <RequestObject xmlns=" <DistributionChannel>1</DistributionChannel> <ValidDate> T00:00:00</ValidDate> </RequestObject> </Request> </RouteTable> </soap:body> </soap:envelope> Response: <s:envelope xmlns:s=" <s:body> <RouteTableResponse xmlns=" <RouteTableResult xmlns:a=" xmlns:i=" <a:errorcode>0000</a:errorcode> <a:errormessage /> <a:request i:nil="true" /> <a:responseobject>
24 Str. 24/48 <a:routetable> <a:country>cz</a:country> <a:depot>81</a:depot> <a:distributionchannel>1</a:distributionchannel> <a:route>8109</a:route> <a:validdate> t00:00:00</a:validdate> <a:zipcodes> <a:zipcodefrom>29444</a:zipcodefrom> <a:zipcodeto>29469</a:zipcodeto> </a:zipcodes> </a:routetable> <a:routetable> <a:country>cz</a:country> <a:depot>81</a:depot> <a:distributionchannel>1</a:distributionchannel> <a:route>8111</a:route> <a:validdate> t00:00:00</a:validdate> <a:zipcodes> <a:zipcodefrom>29300</a:zipcodefrom> <a:zipcodeto>29301</a:zipcodeto> </a:zipcodes> </a:routetable> </a:responseobject> <a:status>processed</a:status> </RouteTableResult> </RouteTableResponse> </s:body> </s:envelope>
25 Str. 25/48 CreatePickUp It creates pick up that belongs to expedition. It is an advice that shipments have been picked up according to the requirement. The pickup may be ordered on the same day when you create requirement, but maximum until 10:00 o clock. After that, the date of pick up must be set up according to the definition: current day + 1, but it must be a working day. Request Header RequestHeader Header of request Y RequestObject PickUpRequest Instance of class PickUpRequest Y PickUpRequest Name Type Length Description Mandatory DistributionChannel Int Type of transport service(1 Y Parcel, 2 Cargo) DateFrom DateTime Date and time of pick up from Y DateTo DateTime? Date and time of pick up to (day and month must be same as DateFrom) CountItems Int Number of pieces Y TotalWeight Decimal (9,2) Total weight (kg) Y* Contact Contact Contact information Y Note String 50 Note PickUpItems List<PickUpItem> List of pick up items TemperatureMode Int Code of temperature mode ** *mandatory for Cargo pick up ** Assumes values 1, 2 ( only for PL ) PickUpItem Detail of pick up item. Name Type Length Description Mandatory CountItems Int Number of items Weight Decimal (9,2) Weight (kg) Type String 3 Type of manipulating item Reference String 50 Reference Response Název Type Description Request Request Input data for the called method (it is set only in case it ends with an error) ResponseObject PickUp Empty class ErrorMessage String Error message ErrorCode String Error code (List of error codes is here) Status ResponseStatus Status of method processing
26 Str. 26/48 An example of CreatePickUp call method Request: <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" <soap:body> <CreatePickUp xmlns=" <Request> <Header xmlns=" <CustomerCode> </CustomerCode> <Language>EN</Language> <Password>wspwd</Password> </Header> <RequestObject xmlns=" <Contact> <FullName /> <Phone> </Phone> </Contact> <CountItems>5</CountItems> <DateFrom> T00:00:00</DateFrom> <DistributionChannel>1</DistributionChannel> <Note>Note to pick up.</note> <PickUpItems> <PickUpItem> <Reference /> <Type /> </PickUpItem> </PickUpItems> </RequestObject> </Request> </CreatePickUp> </soap:body> </soap:envelope> Response: <s:envelope xmlns:s=" <s:body> <CreatePickUpResponse xmlns=" <CreatePickUpResult xmlns:a=" xmlns:i=" <a:errorcode>0</a:errorcode> <a:errormessage>pick up accepted and confirmed.</a:errormessage> <a:request i:nil="true" /> <a:responseobject /> <a:status>inserted</a:status> </CreatePickUpResult> </CreatePickUpResponse> </s:body> </s:envelope>
27 Str. 27/48 InsertExport It creates type of shipment expedition for the product (Parcel, Cargo). Expedition can be created for current day, but there must be pick up for this day, otherwise the method ends with an error. To complete the expedition you may need to know several data such as list of services common for Parcel and Cargo (method AddServiceList), list of merged shipments only for Parcel, list of transport items (manipulating items, WrapList method) only for Cargo. Object InsertExport consists of several objects which can be entered as field of objects (e.g. List of services) see next table ExportRequest. Request Header RequestHeader Header of request Y RequestObject ExportRequest Instance of class ExportRequest Y ExportRequest Name Type Length Description Mandatory BurstId String 50 ID batch (according to this parameter to choose the shipment by method ListOfShipments) CoverAddress Address Cover address DeliveryAddress Address Delivery address Y DeliveryContact Contact Contact for the recipient DistributionChannel Int Type of transport service (1 Parcel, 2 Y Cargo) ExportItems List<ExportItem> Transport items Y** ExportServices List<ExportService> List of shipment services MergedPackages List<MergedItem> List of merged shipments (mandatory when parameter MergedShipment is entered as true ) MergedShipment Bool Merged shipment (only for parcel) Note String 50 Note for recipient NoteDriver String 50 Note for driver PartnerNumber String 40 External number of shipment PickUpDate DateTime Date of pick up (pick up must be created for this date) Reference String 30 Shipment references ShipmentNumber String 11 / 13 Number of shipment (when is empty, shipment number is assigned automatically. For Parcel, is possible fill in according to output method AssignRange ) Weight Decimal (9,2) Weight (in kg) (only for parcel) Y* *it is mandatory for pick up Parcel, **it is mandatory for Cargo Y*
28 Str. 28/48 ExportService Code String Service code Y Parameter_1 String Parameter 1 Parameter_2 String Parameter 2 Parameter_3 String Parameter 3 Parameter_4 String Parameter 4 Parameter_5 String Parameter 5 Parameter_6 String Parameter 6 Parameter_7 String Parameter 7 Parameter_8 String Parameter 8 RODParameters List< RODParameter> Y* * Only for service ROD RODParameter Name String Free document description Y Type** String Abbreviation Y ** allowed values (RUA, RWZ, RIM, RAN, RDW, ROD, RIN, RUM)
29 Str. 29/48 Services parameter List of services with specific parameters (mandatory in bold). Code Service Parameter _1 Parameter _2 Parameter _3 Parameter _4 Parameter _5 Availability ADL POD scan CZ/SK/ PL ADZ Delivered Phone or CZ/SK/ parcel advice PL Can not be used with service: VM Product GP - GP AOZ Damaged parcel advice Phone or CZ/SK/ PL - APZ Problem parcel advice Phone or CZ/SK/ PL - GP B2C Private Address Phone CZ/SK/ PL SMS, AVI, GP/GC D12,GAR, VM - GP/GC COD Cash on delivery Value of the COD Currency of the COD Variable symbol IBAN CZ/SK/ PL ROD Guaranteed Address PL - GP delivery code for documents documents return POJ Additional Value of Currency CZ/SK/ VM GP insurance the PL insurance AVI Telephone Phone CZ/SK/ B2C, VM GP/GC advice PL SMS SMS advice Phone CZ/SK/ B2C&VM - GP/GC PL parcel VM Dispensing GP point * GAR Guaranteed delivery Code of DP in form: VM-[0000] or [0000] Phone or CZ/SK B2C. D12, POJ, GAR, EXW, AVI, POD, EDL CZ/SK/ PL B2C, D12, VM GP EMA** to recipient CZ/SK/PL - GP/GC *In dispensing point service it is necessary to enter contact person (Name and phone number) ** For EMA service must be entered the recipient address in the <DeliveryContact> section Services that are not listed in the table do not require assignment of parameters ExportItem Name Type Length Description Mandatory CountItems Int Number of items Y Description String 50 Description Type String 3 Manipulation unit code (WrapList) Y Reference String 50 References Weight Decimal (9,2) Weight (kg) Y Volume Decimal (9,3) Volume (v m^3) Y Height Decimal (9,2) Height (in meters) Y**
30 Str. 30/48 Width Decimal (9,2) Width (in meters) Y** Length Decimal (9,2) Length (in meters) Y** **It is mandatory in Poland MergedItem Up to 90 shipments can be merged within the MergedItem. Name Type Length Description Mandatory PackNumber String 20 Number of shipment PartnerNumber String 40 External number of shipment Weight Decimal (9,2) Weight (kg) Y Response Name Type Description Request Request Input data for the called method (it is set only in case it ends with an error) ResponseObject Export Empty class ErrorMessage String Error message ErrorCode String Error code (list of error codes is here) Status ResponseStatus Status of method processing An example of InsertExport call method for merged shipment Request: <soapenv:envelope xmlns:soapenv=" xmlns:tem=" xmlns:gser=" <soapenv:header/> <soapenv:body> <tem:insertexport> <tem:request> <gser:header> <gser:customercode> </gser:customercode> <gser:language>cz</gser:language> <gser:password>*****</gser:password> </gser:header> <gser:requestobject> <gser:burstid>test_merge</gser:burstid> <gser:deliveryaddress> <gser:city>wroczlav</gser:city> <gser:country>pl</gser:country> <gser:name>test Test</gser:Name> <gser:street>zemská 211/1</gser:Street> <gser:zipcode>40316</gser:zipcode> </gser:deliveryaddress> <gser:deliverycontact> <gser: >jan.maxa@geis.cz</gser: > <gser:fullname>test Test</gser:FullName> <gser:phone> </gser:phone> </gser:deliverycontact> <gser:distributionchannel>1</gser:distributionchannel> <gser:exportservices> <gser:exportservice> <gser:code>2</gser:code> <gser:parameter_1>100</gser:parameter_1> <gser:parameter_2>pln</gser:parameter_2> <gser:parameter_3> </gser:parameter_3> <gser:parameter_4>pl </gser:parameter_4>
31 Str. 31/48 <gser:parameter_5></gser:parameter_5> <gser:parameter_6></gser:parameter_6> <gser:parameter_7></gser:parameter_7> <gser:parameter_8></gser:parameter_8> </gser:exportservice> </gser:exportservices> <gser:mergedpackages> <gser:mergeditem> <gser:packnumber></gser:packnumber> <gser:partnernumber>partnernumber_1</gser:partnernumber> <gser:weight>15</gser:weight> </gser:mergeditem> <gser:mergeditem> <gser:packnumber></gser:packnumber> <gser:partnernumber>partnernumber_2</gser:partnernumber> <gser:weight>5</gser:weight> </gser:mergeditem> </gser:mergedpackages> <gser:mergedshipment>true</gser:mergedshipment> <gser:note>test_pozn_příjemci</gser:note> <gser:notedriver>test_pozn_řidiči</gser:notedriver> <gser:pickupdate> t00:00:00</gser:pickupdate> <gser:reference>test_reference</gser:reference> <gser:weight>10</gser:weight> </gser:requestobject> </tem:request> </tem:insertexport> </soapenv:body> </soapenv:envelope> Response: <s:envelope xmlns:s=" <s:body> <InsertExportResponse xmlns=" <InsertExportResult xmlns:a=" xmlns:i=" <a:errorcode>0000</a:errorcode> <a:errormessage/> <a:request i:nil="true"/> <a:responseobject> <a:burstid>test_merge</a:burstid> <a:mergedpacknumbers xmlns:b=" <b:string> </b:string> <b:string> </b:string> </a:mergedpacknumbers> <a:packnumber> </a:packnumber> </a:responseobject> <a:status>inserted</a:status> </InsertExportResult> </InsertExportResponse> </s:body> </s:envelope>
32 Str. 32/48 InsertOrder It creates type of shipment order for the product (Parcel, Cargo). The order can be created first for the next working day. To complete the order some data are required such as list of services common for Parcel and Cargo (method AddServiceList), list of merged shipment only Parcel, list of transport pieces (manipulating items, WrapList method) only for Cargo. Object InsertOrder is created from several objects that may be entered as field of objects (e.g. list of services) see following table OrderRequest. Request Header RequestHeader Header of request Y RequestObject OrderRequest Instance of class OrderRequest Y OrderRequest Name Type Length Description Mandatory DistributionChannel Int Type of transport service Y (1 Parcel, 2 Cargo) PartnerNumber String 40 External partner number PickUpDate DateTime Date of pick up Y Reference String 30 Customer s reference of shipment Note String 50 Note to recipient NoteDriver String 50 Note for driver Weight Decimal (9,2) Weight (kg) Y* Volume Decimal (9,3) Volume (m^3) MergedOrder Bool Merged order Y* ExportItems List<ExportItem> List of transport pieces Y** SenderAddress Address Sender s address Y SenderContact Contact Sender s contact DeliveryAddress Address Recipient s address Y DeliveryContact Contact Recipient s contact ExportServices List<ExportService> List of services Y** MergedOrders List<MergedItem> List of merged shipments (mandatory for MergedOrder parameter entered to true ) BurstId String 50 ID batch (according to this parameter to choose the shipment by method ListOfShipments) *mandatory for Parcel pickup, ** mandatory for Cargo
33 Str. 33/48 Response Name Type Description Request Request Input data for the called method (it is set only in case it ends with an error) ResponseObject Order Information about entered order ErrorMessage String Error message ErrorCode String Error code (list of error code is here) Status ResponseStatus Status of method processing Order Name Type Length Description PackNumber String 20 Number of parcel MergedPackNumbers List<String> List of numbers merged orders An example of InsertOrder call method Request: <soap:envelope xmlns:soap=" xmlns:xsi=" xmlns:xsd=" <soap:body> <InsertOrder xmlns=" <Request> <Header xmlns=" <CustomerCode> </CustomerCode> <Language>EN</Language> <Password>wspwd</Password> </Header> <RequestObject xmlns=" <DeliveryAddress> <City>Ejpovice</City> <Country>CZ</Country> <Name>Josef Novák</Name> <Name2 /> <Street>Zemská 211/1</Street> <ZipCode>33701</ZipCode> </DeliveryAddress> <DeliveryContact> <FullName /> <Phone> </Phone> </DeliveryContact> <DistributionChannel>1</DistributionChannel> <ExportItems> <ExportItem> <Description /> <Dimensions /> <Reference /> <Type /> </ExportItem> </ExportItems> <ExportServices> <ExportService> <Code>15</Code> <Parameter_1 /> <Parameter_2 /> <Parameter_3 /> <Parameter_4 /> <Parameter_5 />
Webová služba G-Service dokumentace Str. 1/52. G-Service. popis webové služby
Str. 1/52 G-Service popis webové služby VERZE DOKUMENTU: 2.9 DATUM: 7. 2. 2017 Str. 2/52 O službě G-Service G-Service je webová služba určená pro zákazníky skupiny Geis, která umožňuje zákazníkům zcela
Webová služba G-Service dokumentace Str. 1/51. G-Service. popis webové služby
Str. 1/51 G-Service popis webové služby VERZE DOKUMENTU: 4.1 DATUM: 22.02.2019 Str. 2/51 O službě G-Service G-Service je webová služba určená pro zákazníky skupiny Geis, která umožňuje zákazníkům zcela
Webová služba G-Service dokumentace Str. 1/49. G-Service. popis webové služby
Str. 1/49 G-Service popis webové služby VERZE DOKUMENTU: 3.4 DATUM: 3.11.2017 Str. 2/49 O službě G-Service G-Service je webová služba určená pro zákazníky skupiny Geis, která umožňuje zákazníkům zcela
G-Service. Web service description
Str. 1/53 G-Service Web service description DOCUMENT VERSION: 2.9 DATE: 7. 2. 2017 Str. 2/53 About G-Service G-Service is a web service designed for customers of Geis group, which allows customers to fully
G-Service. Web service description
Str. 1/49 G-Service Web service description DOCUMENT VERSION: 3.7 DATE: 23.05.2018 Str. 2/49 About G-Service G-Service is a web service designed for customers of Geis group, which allows customers to fully
G-Service. Web service description
Str. 1/38 G-Service Web service description DOCUMENT VERSION: 1.8 DATE: 2. 12. 2015 Str. 2/38 About G-Service G-Service is a web service designed for customers of Geis group, which allows customers to
G-Service. popis webové služby
Str. 1/38 G-Service popis webové služby VERZE DOKUMENTU: 1.9 DATUM: 6. 1. 2016 Str. 2/38 O službě G-Service G-Service je webová služba určená pro zákazníky skupiny Geis, která umožňuje zákazníkům zcela
User manual SŘHV Online WEB interface for CUSTOMERS June 2017 version 14 VÍTKOVICE STEEL, a.s. vitkovicesteel.com
1/ 11 User manual SŘHV Online WEB interface for CUSTOMERS June 2017 version 14 2/ 11 Contents 1. MINIMUM SYSTEM REQUIREMENTS... 3 2. SŘHV ON-LINE WEB INTERFACE... 4 3. LOGGING INTO SŘHV... 4 4. CONTRACT
GUIDELINES FOR CONNECTION TO FTP SERVER TO TRANSFER PRINTING DATA
GUIDELINES FOR CONNECTION TO FTP SERVER TO TRANSFER PRINTING DATA What is an FTP client and how to use it? FTP (File transport protocol) - A protocol used to transfer your printing data files to the MAFRAPRINT
Introduction to MS Dynamics NAV
Introduction to MS Dynamics NAV (Item Charges) Ing.J.Skorkovský,CSc. MASARYK UNIVERSITY BRNO, Czech Republic Faculty of economics and business administration Department of corporate economy Item Charges
AIC ČESKÁ REPUBLIKA CZECH REPUBLIC
ČESKÁ REPUBLIKA CZECH REPUBLIC ŘÍZENÍ LETOVÉHO PROVOZU ČR, s.p. Letecká informační služba AIR NAVIGATION SERVICES OF THE C.R. Aeronautical Information Service Navigační 787 252 61 Jeneč A 1/14 20 FEB +420
Postup objednávky Microsoft Action Pack Subscription
Postup objednávky Microsoft Action Pack Subscription DŮLEŽITÉ: Pro objednání MAPS musíte být členem Microsoft Partner Programu na úrovni Registered Member. Postup registrace do Partnerského programu naleznete
Tento materiál byl vytvořen v rámci projektu Operačního programu Vzdělávání pro konkurenceschopnost.
Tento materiál byl vytvořen v rámci projektu Operačního programu Vzdělávání pro konkurenceschopnost. Projekt MŠMT ČR Číslo projektu Název projektu školy Klíčová aktivita III/2 EU PENÍZE ŠKOLÁM CZ.1.07/1.4.00/21.2146
WORKSHEET 1: LINEAR EQUATION 1
WORKSHEET 1: LINEAR EQUATION 1 1. Write down the arithmetical problem according the dictation: 2. Translate the English words, you can use a dictionary: equations to solve solve inverse operation variable
EURO přeshraniční platba
EURO přeshraniční platba EURO přeshraniční platba je platební příkaz splňující následující kriteria: Je předložen elektronicky Je požadováno standardní provedení (tj. nikoliv urgentní nebo expresní) Částka
PRAVIDLA ZPRACOVÁNÍ STANDARDNÍCH ELEKTRONICKÝCH ZAHRANIČNÍCH PLATEBNÍCH PŘÍKAZŮ STANDARD ELECTRONIC FOREIGN PAYMENT ORDERS PROCESSING RULES
PRAVIDLA ZPRACOVÁNÍ STANDARDNÍCH ELEKTRONICKÝCH ZAHRANIČNÍCH PLATEBNÍCH PŘÍKAZŮ STANDARD ELECTRONIC FOREIGN PAYMENT ORDERS PROCESSING RULES Použité pojmy Platební systém Elektronický platební příkaz Účetní
Project Life-Cycle Data Management
Project Life-Cycle Data Management 1 Contend UJV Introduction Problem definition Input condition Proposed solution Reference Conclusion 2 UJV introduction Research, design and engineering company 1000
Mechanika Teplice, výrobní družstvo, závod Děčín TACHOGRAFY. Číslo Servisní Informace Mechanika: 5-2013
Mechanika Teplice, výrobní družstvo, závod Děčín TACHOGRAFY Servisní Informace Datum vydání: 20.2.2013 Určeno pro : AMS, registrované subj.pro montáž st.měř. Na základě SI VDO č./datum: Není Mechanika
valid from 1st November 2011
Client format Payment cards statement valid from 1st November 2011 The file is created every 11th day of the month. In case the 11th day is a holiday or SAT or SUN, the file will be created on the following
APPLICABLE TO CORRESPONDENT BANKS
1 POŠTOVÁ BANKA, a.s., pobočka Česká republika Sokolovská 17 186 00 Prague Czech Republic Telephone: + 421 2/5960 3110 Telefax: + 421 2/5960 2462 E-mail: info@pabk.sk SWIFT: POBNCZPP Valid from: January
7 Distribution of advertisement
Legal regulation relating to the text message advertisement: There are different conditions regarding the SMS advertisement for two groups of recipients. The first group consists of recipients who are
ITICA. SAP Školení přehled 2012. Seznam kurzů
ITICA SAP Školení přehled 2012 Seznam kurzů SAP Školení v roce 2012 Způsob realizace školení Naše školení jsou zaměřena především na cíl předvést obrovský a rozsáhlý systém SAP jako použitelný a srozumitelný
Progressive loyalty V1.0. Copyright 2017 TALENTHUT
Progressive loyalty Copyright 2017 TALENTHUT www.talenthut.io 1. Welcome The Progressive Loyalty Siberian CMS module will allow you to launch a loyalty program and reward your customers as they buy from
Energy vstupuje na trh veterinárních produktů Energy enters the market of veterinary products
Energy news2 1 Energy vstupuje na trh veterinárních produktů Energy enters the market of veterinary products Doposud jste Energy znali jako výrobce a dodavatele humánních přírodních doplňků stravy a kosmetiky.
Čipové karty Lekařská informatika
Čipové karty Lekařská informatika Následující kód je jednoduchou aplikací pro čipové karty, která po překladu vytváří prostor na kartě, nad kterým jsou prováděny jednotlivé operace a do kterého jsou ukládány
DATA SHEET. BC516 PNP Darlington transistor. technický list DISCRETE SEMICONDUCTORS Apr 23. Product specification Supersedes data of 1997 Apr 16
zákaznická linka: 840 50 60 70 DISCRETE SEMICONDUCTORS DATA SHEET book, halfpage M3D186 Supersedes data of 1997 Apr 16 1999 Apr 23 str 1 Dodavatel: GM electronic, spol. s r.o., Křižíkova 77, 186 00 Praha
GENERAL INFORMATION MATCH: ALSA PRO ARENA MASTERS DATE: TIME SCHEDULE:
GENERAL INFORMATION MATCH: ALSA PRO ARENA MASTERS DATE: 22.9. - 23.9.2018 TIME SCHEDULE: Mainmatch 1 - Saturday 22.9. registration: 22.9.2018-9.00h first shot: 22.9.2018-10.00h Mainmatch 2 - Sunday 23.9.
Vánoční sety Christmas sets
Energy news 7 Inovace Innovations 1 Vánoční sety Christmas sets Na jaře tohoto roku jste byli informováni o připravované akci pro předvánoční období sety Pentagramu koncentrátů a Pentagramu krémů ve speciálních
GENERAL INFORMATION MATCH: ALSA PRO HOT SHOTS 2018 DATE:
GENERAL INFORMATION MATCH: ALSA PRO HOT SHOTS 2018 DATE: 7.7. - 8.7.2018 TIME SCHEDULE: Prematch - Friday registration: 6.7.2018-10.00h first shot: 6.7.2018-11.00h Mainmatch 1 - Saturday registration:
Gymnázium a Střední odborná škola, Rokycany, Mládežníků 1115
Číslo projektu: Číslo šablony: Název materiálu: Gymnázium a Střední odborná škola, Rokycany, Mládežníků 1115 CZ.1.07/1.5.00/34.0410 II/2 Business correspondence Business English Ročník: Identifikace materiálu:
Fytomineral. Inovace Innovations. Energy News 04/2008
Energy News 4 Inovace Innovations 1 Fytomineral Tímto Vám sdělujeme, že již byly vybrány a objednány nové lahve a uzávěry na produkt Fytomineral, které by měly předejít únikům tekutiny při přepravě. První
Innovated Solution: Questions and Answers after the Webinar
Innovated Solution: Questions and Answers after the Webinar Budou podkladové materiály webináře také v českém jazyce? Prezentace pro webinář je pouze v anglické verzi. Před začátkem testů s účastníky však
Litosil - application
Litosil - application The series of Litosil is primarily determined for cut polished floors. The cut polished floors are supplied by some specialized firms which are fitted with the appropriate technical
PC/104, PC/104-Plus. 196 ept GmbH I Tel. +49 (0) / I Fax +49 (0) / I I
E L E C T R O N I C C O N N E C T O R S 196 ept GmbH I Tel. +49 (0) 88 61 / 25 01 0 I Fax +49 (0) 88 61 / 55 07 I E-Mail sales@ept.de I www.ept.de Contents Introduction 198 Overview 199 The Standard 200
Transportation Problem
Transportation Problem ١ C H A P T E R 7 Transportation Problem The transportation problem seeks to minimize the total shipping costs of transporting goods from m origins (each with a supply s i ) to n
Digitální učební materiál
Digitální učební materiál Projekt Šablona Tématická oblast DUM č. CZ.1.07/1.5.00/34.0415 Inovujeme, inovujeme III/2 Inovace a zkvalitnění výuky prostřednictvím ICT (DUM) Anglický jazyk pro obor podnikání
Standardní záruka. http://www.alliedtelesis.cz/support/warranty/signup.aspx
Standardní záruka Standardní produkty (Enterprise)» Switches» Routers» Converters» NICs, SFPs Operátorské produkty (NSP)» imgs» imaps» 3rd party (Extricom) Bez registrace 2 roky od prodeje koncovému zákazníkovi
PART 2 - SPECIAL WHOLESALE OFFER OF PLANTS SPRING 2016 NEWS MAY 2016 SUCCULENT SPECIAL WHOLESALE ASSORTMENT
PART 2 - SPECIAL WHOLESALE OFFER OF PLANTS SPRING 2016 NEWS MAY 2016 SUCCULENT SPECIAL WHOLESALE ASSORTMENT Dear Friends We will now be able to buy from us succulent plants at very good wholesale price.
World cup #9 and #10 Czech republic
World cup #9 and #10 Czech republic A. GENERAL INFORMATION A.1 EVENT PLACE - Místo konání 49.3207864N, 14.2012869E Písek South Bohemia Lovecká střelnice Provazce Dolní Novosedly 53 397 01 Písek Jihočeský
Introduction to Navision 4.00 Jaromír Skorkovský, MS., PhD.
Introduction to Navision 4.00 Jaromír Skorkovský, MS., PhD. ESF MU, Czech Republic 1 1 Distribution channels Microsoft Development, new versions, technology, languages.. Country HQ 1 legislation, sales
WYSIWYG EDITOR PRO XML FORM
WYSIWYG EDITOR PRO XML FORM Ing. Tran Thanh Huan, Ing. Nguyen Ba Nghien, Doc. Ing. Josef Kokeš, CSc Abstract: In this paper, we introduce the WYSIWYG editor pro XML Form. We also show how to create a form
Theme 6. Money Grammar: word order; questions
Theme 6 Money Grammar: word order; questions Čas potřebný k prostudování učiva lekce: 8 vyučujících hodin Čas potřebný k ověření učiva lekce: 45 minut KLÍNSKÝ P., MÜNCH O., CHROMÁ D., Ekonomika, EDUKO
Compression of a Dictionary
Compression of a Dictionary Jan Lánský, Michal Žemlička zizelevak@matfyz.cz michal.zemlicka@mff.cuni.cz Dept. of Software Engineering Faculty of Mathematics and Physics Charles University Synopsis Introduction
2 Axiomatic Definition of Object 2. 3 UML Unified Modelling Language Classes in UML Tools for System Design in UML 5
Contents Contents 1 Semestrální práce 1 2 Axiomatic Definition of Object 2 3 UML Unified Modelling Language 2 3.1 Classes in UML............................ 3 4 Tools for System Design in UML 5 5 Student
SPECIFICATION FOR ALDER LED
SPECIFICATION FOR ALDER LED MODEL:AS-D75xxyy-C2LZ-H1-E 1 / 13 Absolute Maximum Ratings (Ta = 25 C) Parameter Symbol Absolute maximum Rating Unit Peak Forward Current I FP 500 ma Forward Current(DC) IF
Database systems. Normal forms
Database systems Normal forms An example of a bad model SSN Surnam OfficeNo City Street No ZIP Region President_of_ Region 1001 Novák 238 Liteň Hlavní 10 26727 Středočeský Rath 1001 Novák 238 Bystřice
2N Voice Alarm Station
2N Voice Alarm Station 2N Lift1 Installation Manual Version 1.0.0 www.2n.cz EN Voice Alarm Station Description The 2N Voice Alarm Station extends the 2N Lift1/ 2N SingleTalk with an audio unit installed
API pro volání služby kurzovního lístku KB
OBSAH API pro volání služby Kurzovní lístek KB... 2 Poskytované informace... 2 Informace pro volání resource exchange-rates... 3 Příklady request / response z volání služby kurzovního lístku... 5 Způsoby
Vypsání závodu / Notice of Race strana/page 1/5. Compotech Cup. v lodních třídách / in classes. D-One, 7P CTL 161315
Vypsání závodu / Notice of Race strana/page 1/5 Compotech Cup v lodních třídách / in classes D-One, 7P CTL 161315 Datum / date: 04.06.2016 05.06.2016 místo konání : Kemp Jestřábí 1, Lipno Černá v Pošumaví
Dohoda č. Agreement No. o podmínkách následného placení s platbou Tankovací kartou on Conditions of Post-Payment Mode with payment using a Fleet Card
o podmínkách následného placení s platbou Tankovací kartou on Conditions of Post-Payment Mode with payment using a Fleet Card Ředitelství silnic a dálnic ČR sídlo (Registered Seat): Na Pankráci 546/56,
Caroline Glendinning Jenni Brooks Kate Gridley. Social Policy Research Unit University of York
Caroline Glendinning Jenni Brooks Kate Gridley Social Policy Research Unit University of York Growing numbers of people with complex and severe disabilities Henwood and Hudson (2009) for CSCI: are the
CZ.1.07/1.5.00/
Projekt: Příjemce: Digitální učební materiály ve škole, registrační číslo projektu CZ.1.07/1.5.00/34.0527 Střední zdravotnická škola a Vyšší odborná škola zdravotnická, Husova 3, 371 60 České Budějovice
PRAVIDLA ZPRACOVÁNÍ EXPRESNÍCH ELEKTRONICKÝCH DOMÁCÍCH PLATEBNÍCH PŘÍKAZŮ EXPRESS ELECTRONIC DOMESTIC PAYMENT ORDERS PROCESSING RULES
PRAVIDLA ZPRACOVÁNÍ EXPRESNÍCH ELEKTRONICKÝCH DOMÁCÍCH PLATEBNÍCH PŘÍKAZŮ EXPRESS ELECTRONIC DOMESTIC PAYMENT ORDERS PROCESSING RULES Použité pojmy Platební systém Domácí platební příkaz Elektronický platební
LOGOMANUÁL / LOGOMANUAL
LOGOMANUÁL / LOGOMANUAL OBSAH / CONTENTS 1 LOGOTYP 1.1 základní provedení logotypu s claimem 1.2 základní provedení logotypu bez claimu 1.3 zjednodušené provedení logotypu 1.4 jednobarevné a inverzní provedení
GENERAL INFORMATION MATCH: ALSA PRO OPEN 2018 DATE: TIME SCHEDULE: Prematch - Friday. registration:
GENERAL INFORMATION MATCH: ALSA PRO OPEN 2018 DATE: 28.7. - 29.7.2018 TIME SCHEDULE: Prematch - Friday registration: 27.7.2018-10.00h first shot: 27.7.2018-11.00h Mainmatch 1 - Saturday registration: 28.7.2018-9.00h
Size / Světlost : DN 1/4 to 4 / DN 1/4 až 4
Size / Světlost : 1/4 to 4 / 1/4 až 4 Ends / Konce : Threaded BSP / Závitové BSP Min. Temperature / Minimální teplota : -20 C Max. Temperature / Maximální teplota : +180 C Max. Pressure / Maximální tlak
PRAVIDLA ZPRACOVÁNÍ URGENTNÍCH ELEKTRONICKÝCH DOMÁCÍCH PLATEBNÍCH PŘÍKAZŮ URGENT ELECTRONIC DOMESTIC PAYMENT ORDERS PROCESSING RULES
PRAVIDLA ZPRACOVÁNÍ URGENTNÍCH ELEKTRONICKÝCH DOMÁCÍCH PLATEBNÍCH PŘÍKAZŮ URGENT ELECTRONIC DOMESTIC PAYMENT ORDERS PROCESSING RULES Použité pojmy Platební systém Domácí platební příkaz Elektronický platební
Travelling Rules for Inbounds in District 2240 Czechia and Slovakia
Travelling Rules for Inbounds in District 2240 Czechia and Slovakia For the purpose of this document, travelling means leaving the territory of the Host Rotary Club (residence of the club and belonging
User Guide Module SBOX
User Guide Module SBOX Document contents 1. Inserting new parcel 1 2. Parcels inserted 5 2.1 Displaying details of inserted parcel... 5 2.2 Removing an inserted parcel... 6 3. Bulletin Board 7 4. Submitting
Publish date 9/13/2013 4:22 AM. Bid due date 11/4/2013 10:00 AM. Change date 9/13/2013 4:22 AM
Office supplies Info Version 2 Url http://com.mercell.com/permalink/38501130.aspx External tender id 306817-2013 Tender type Tender Document type Contract notice Procurement procedure Open procedure Contract
Contact person: Stanislav Bujnovský,
Tender documentation link: https://nen.nipez.cz/seznamzadavacichpostupu/zakladniinformaceozadavacimpostupum- 674611632-20523816/ZakladniInformaceOZadavacimPostupu-674611632-20523816/ Contact person: Stanislav
EXACT DS OFFICE. The best lens for office work
EXACT DS The best lens for office work EXACT DS When Your Glasses Are Not Enough Lenses with only a reading area provide clear vision of objects located close up, while progressive lenses only provide
Byznys a obchodní záležitosti
- Úvod Dear Mr. President, Dear Mr. President, Velmi formální, příjemce má speciální titul či status, který musí být použit v místě jejich jména Dear Sir, Formální, příjemce muž, jméno neznámé Dear Madam,
Czech Republic. EDUCAnet. Střední odborná škola Pardubice, s.r.o.
Czech Republic EDUCAnet Střední odborná škola Pardubice, s.r.o. ACCESS TO MODERN TECHNOLOGIES Do modern technologies influence our behavior? Of course in positive and negative way as well Modern technologies
Gymnázium, Brno, Slovanské nám. 7 WORKBOOK. Mathematics. Teacher: Student:
WORKBOOK Subject: Teacher: Student: Mathematics.... School year:../ Conic section The conic sections are the nondegenerate curves generated by the intersections of a plane with one or two nappes of a cone.
Immigration Studying. Studying - University. Stating that you want to enroll. Stating that you want to apply for a course.
- University I would like to enroll at a university. Stating that you want to enroll I want to apply for course. Stating that you want to apply for a course an undergraduate a postgraduate a PhD a full-time
Immigration Studying. Studying - University. Stating that you want to enroll. Stating that you want to apply for a course.
- University Rád/a bych se zapsal/a na vysoké škole. Stating that you want to enroll Rád/a bych se zapsal/a na. Stating that you want to apply for a course bakalářské studium postgraduální studium doktorské
STRAVOVÁNÍ ZŠ Beehive Y7 Y10. Vážení rodiče, zasíláme bližší informace ke stravnému na školní rok
STRAVOVÁNÍ ZŠ Beehive Y7 Y10 Vážení rodiče, zasíláme bližší informace ke stravnému na školní rok 2018-19. Od září letošního roku je opět nabídka obědů ve formě Bio s firmou Bionea. Firma Bionea se zabývá
Gymnázium a Střední odborná škola, Rokycany, Mládežníků 1115
Číslo projektu: Číslo šablony: Název materiálu: Gymnázium a Střední odborná škola, Rokycany, Mládežníků 1115 CZ.1.07/1.5.00/34.0410 II/2 Parts of a computer IT English Ročník: Identifikace materiálu: Jméno
2N LiftIP. Voice Alarm Station. Communicator for Lifts. Version
2N LiftIP Communicator for Lifts Voice Alarm Station Version 2.4.0 www.2n.cz Description The 2N Voice Alarm Station is a switch that helps you extend 2N LiftIP with one or more audio units installed on
dat 2017 Dostupný z Licence Creative Commons Uveďte autora-zachovejte licenci 4.0 Mezinárodní
Interní pravidla pro zacházení s osobními údaji při archivaci a sdílení výzkumných dat Koščík, Michal 2017 Dostupný z http://www.nusl.cz/ntk/nusl-367303 Dílo je chráněno podle autorského zákona č. 121/2000
Tabulka 1 Stav členské základny SK Praga Vysočany k roku 2015 Tabulka 2 Výše členských příspěvků v SK Praga Vysočany Tabulka 3 Přehled finanční
Příloha I Seznam tabulek Tabulka 1 Stav členské základny SK Praga Vysočany k roku 2015 Tabulka 2 Výše členských příspěvků v SK Praga Vysočany Tabulka 3 Přehled finanční odměny pro rozhodčí platný od roku
Škola: Střední škola obchodní, České Budějovice, Husova 9. Inovace a zkvalitnění výuky prostřednictvím ICT
Škola: Střední škola obchodní, České Budějovice, Husova 9 Projekt MŠMT ČR: EU PENÍZE ŠKOLÁM Číslo projektu: CZ.1.07/1.5.00/34.0536 Název projektu školy: Výuka s ICT na SŠ obchodní České Budějovice Šablona
WL-5480USB. Quick Setup Guide
Quick Setup Guide 1 Czech 7 Install Utility Software Note1: Before installing the utility software, DO NOT inserts the into your computer. If the adapter is inserted already, Windows will detect the adapter
kterou se provádí zákon č. 122/2000 Sb., o ochraně sbírek muzejní povahy a o změně některých dalších zákonů
275/2000 Sb. VYHLÁŠKA Ministerstva kultury ze dne 28. července 2000, kterou se provádí zákon č. 122/2000 Sb., o ochraně sbírek muzejní povahy a o změně některých dalších zákonů Změna: 96/2013 Sb. Ministerstvo
ŽÁDOST O UZNÁNÍ ZAHRANIČNÍHO VYSOKOŠKOLSKÉHO VZDĚLÁNÍ A KVALIFIKACE APPLICATION FOR THE RECOGNITION OF FOREIGN EDUCATION IN THE CZECH REPUBLIC
Otisk podacího razítka VŠE Vysoká škola ekonomická v Praze PRÁVNÍ ODDĚLENÍ nám. W. Churchilla 4 Praha 3 130 67 ŽÁDOST O UZNÁNÍ ZAHRANIČNÍHO VYSOKOŠKOLSKÉHO VZDĚLÁNÍ A KVALIFIKACE APPLICATION FOR THE RECOGNITION
ARTIO B2Sync Jiří Trumpeš Patrik Zakuťanský. Copyright ARTIO International Co.
ARTIO B2Sync 3 2015 Jiří Trumpeš Patrik Zakuťanský Copyright 2015 - ARTIO International Co. B2Sync ARTIO Publication date: 28.5.2015 Version: 3.0.0 Abstract ARTIO B2Sync (dále jen B2S) je komponenta pro
1. Maple - verze. 2. Maple - prostredi. Document Mode vs. Worksheet Mode
1. Maple - verze - Maple 18: Standard Worksheet (.mw) - Classic Worksheet Maple 18 (.mws) - starsi pocitace, mene pameti - Command-line Maple 18 - komplexni vypocty - a jine (kalkulacka, vlastni aplikace
Zelené potraviny v nových obalech Green foods in a new packaging
Energy News1 1 Zelené potraviny v nových obalech Green foods in a new packaging Již v minulém roce jsme Vás informovali, že dojde k přebalení všech tří zelených potravin do nových papírových obalů, které
Připojení internetového modulu econet300 Do regulátoru ecomax 810P3-L TOUCH.
Připojení internetového modulu econet300 Do regulátoru ecomax 810P3-L TOUCH. Connection of econet300 internet module to ecomax 810P3-L TOUCH Controller. Prosím ověřte verzi softwaru vašeho modulu ecomax.
Digitální učební materiál
Digitální učební materiál Projekt: Digitální učební materiály ve škole, registrační číslo projektu CZ.1.07/1.5.00/34.0527 Příjemce: Střední zdravotnická škola a Vyšší odborná škola zdravotnická, Husova
UPM3 Hybrid Návod na ovládání Čerpadlo UPM3 Hybrid 2-5 Instruction Manual UPM3 Hybrid Circulation Pump 6-9
www.regulus.cz UPM3 Hybrid Návod na ovládání Čerpadlo UPM3 Hybrid 2-5 Instruction Manual UPM3 Hybrid Circulation Pump 6-9 CZ EN UPM3 Hybrid 1. Úvod V továrním nastavení čerpadla UPM3 Hybrid je profil PWM
Chapter 7: Process Synchronization
Chapter 7: Process Synchronization Background The Critical-Section Problem Synchronization Hardware Semaphores Classical Problems of Synchronization Critical Regions Monitors Synchronization in Solaris
Medical equipments. Info. Buyer. Version changes Contract notice. Version 2. Publish date 11/21/2014 4:13 AM. Bid due date 12/11/2014 10:30 AM
Medical equipments Info Version 2 Url http://com.mercell.com/permalink/47366182.aspx External tender id 397310-2014 Tender type Tender Document type Contract notice Procurement procedure Open procedure
PixLa PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH
PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH PIXEL LABYRINTH 2015 PIXEL LABYRINTH 2015 Série Pixel Labyrint nás vrací zpět labyrintem
ANGLICKÁ KONVERZACE PRO STŘEDNĚ POKROČILÉ
ANGLICKÁ KONVERZACE PRO STŘEDNĚ POKROČILÉ MGR. VLADIMÍR BRADÁČ ROZVOJ KOMPETENCÍ MANAGEMENTU A PRACOVNÍKŮ VŠ MSK (S PODPOROU ICT) PROJEKT OP VK 2.2: CZ.1.07/2.2.00/15.0176 OSTRAVA 2012 Tento projekt je
( =>)8":(6&0?2&@"6*9:+& (?)(:5(%5&+)$(9&(>>68(:@$&
Děličky těsta BONGARD PANEOTRAD PF9 C3/@= 73X 1// F2: S=F201 V:U0 F/: 293 20 :F =2: 93/0Q F91F?@289:X :2; 9 @CC89 :F3/@1F/@: @==97V2Y901D 0A@B:;$%&*:8) C"#&"'&;*))$%+& D")&8%&'"#& je proces výroby pečiva,
Číslo materiálu: VY 32 INOVACE 29/18. Číslo projektu: CZ.1.07/1.4.00/
Číslo materiálu: Název materiálu: Ironic Číslo projektu: CZ.1.07/1.4.00/21.1486 Zpracoval: Mgr. Petra Březinová IRONIC 1. Listen to the song Ironic from the singer Alanis Morissette. For the first time
Jak importovat profily do Cura (Windows a
Jak importovat profily do Cura (Windows a macos) Written By: Jakub Dolezal 2019 manual.prusa3d.com/ Page 1 of 10 Step 1 Stažení Cura profilů V tomto návodu se dozvíte, jak importovat a aktivovat nastavení
2N LiftIP. IO Extender. Communicator for Lifts. Version
2N LiftIP Communicator for Lifts IO Extender Version 2.4.0 www.2n.cz Description The IO extender helps you extend 2N LiftIP with 1 input and 2 outputs. The purpose of the input is to cancel the rescue
TESSIN OLZA CUP ČESKÝ TĚŠÍN 2011
FAI Open International Space Models Competion TESSIN OLZA CUP ČESKÝ TĚŠÍN 2011 Český Těšín, Czech Republic E-mail: petrosz@centrum.cz ORGANIZER: DATE: Information Sheet Rocket Club Silesia Olza Český Těšín,
VYSOKÁ ŠKOLA HOTELOVÁ V PRAZE 8, SPOL. S R. O.
VYSOKÁ ŠKOLA HOTELOVÁ V PRAZE 8, SPOL. S R. O. Návrh konceptu konkurenceschopného hotelu v době ekonomické krize Diplomová práce 2013 Návrh konceptu konkurenceschopného hotelu v době ekonomické krize Diplomová
Publish date 12/27/2012 4:24 AM. Bid due date 3/4/2013 10:00 AM. Change date 12/27/2012 4:24 AM
Construction work Info Version 1 Url http://com.mercell.com/permalink/37027677.aspx External tender id 410038-2012 Tender type Tender Document type Contract notice Procurement procedure Open procedure
I N F O R M A T I O N
I N F O R M A T I O N about the way of the economic operators registration and assignment of the EORI number in the Czech Republic The Commission Regulation No. 312/2009 which amends the Commission Regulation
EU peníze středním školám digitální učební materiál
EU peníze středním školám digitální učební materiál Číslo projektu: Číslo a název šablony klíčové aktivity: Tematická oblast, název DUMu: Autor: CZ.1.07/1.5.00/34.0515 III/2 Inovace a zkvalitnění výuky
Číslo projektu: CZ.1.07/1.5.00/34.0036 Název projektu: Inovace a individualizace výuky
Číslo projektu: CZ.1.07/1.5.00/34.0036 Název projektu: Inovace a individualizace výuky Autor: Mgr. Libuše Matulová Název materiálu: Education Označení materiálu: VY_32_INOVACE_MAT27 Datum vytvoření: 10.10.2013
Progressive loyalty V1.2. Copyright 2017 TALENTHUT
Progressive loyalty Copyright 2017 TALENTHUT www.talenthut.io 1. Welcome The Progressive Loyalty Siberian CMS module will allow you to launch a loyalty program and reward your customers as they buy from
Číslo projektu: CZ.1.07/1.5.00/ Název projektu: Inovace a individualizace výuky
Číslo projektu: CZ.1.07/1.5.00/34.0036 Název projektu: Inovace a individualizace výuky Autor: Mgr. Libuše Matulová Název materiálu: European Union Označení materiálu: VY_32_INOVACE_MAT 22 Datum vytvoření:
DELJIT D97A / CALDEL
ODVOLÁVKA DELJIT D97A / CALDEL Implementační příručka Podrobný popis zprávy DELJIT / CALDEL D97A používané firmou ŠKODA AUTO a. s. pro EDI komunikaci s dodavateli Odvolávky inteligentních dílů pro Škoda
USER'S MANUAL FAN MOTOR DRIVER FMD-02
USER'S MANUAL FAN MOTOR DRIVER FMD-02 IMPORTANT NOTE: Read this manual carefully before installing or operating your new air conditioning unit. Make sure to save this manual for future reference. FMD Module