Karthikeya Boyini has Published 2193 Articles

Getting error message: Scalar type not allowed in SAP HANA

karthikeya Boyini

karthikeya Boyini

Updated on 11-Dec-2019 08:57:53

779 Views

Few points about your code to create a Stored Procedure, that you can edit and tryPROCEDURE "SLT_DELETE"."HCDW.IT.IT::TO_TIMESTAMP_CALL" (IN IN_DATE DECIMAL(15),    OUT OUT_DATE TIMESTAMP)    LANGUAGE SQLSCRIPT AS    --DEFAULT SCHEMA    --READS SQL DATA AS BEGIN    select to_timestamp(IN_DATE) into OUT_DATE FROM DUMMY; END;In Line32, you have used ... Read More

Integrating JSession in a Web-Service in SAP

karthikeya Boyini

karthikeya Boyini

Updated on 10-Dec-2019 10:20:40

151 Views

You need to configure the soap manager transaction.First, specify the proxy that you have created in the configurationSpecify the portSet the access path from transport settings. The SAP is making use of ‘cl_http_client’ which has a method ‘create_by_destination’ to make an HTTP call. You can extend that to induce your logic ... Read More

Cellular Architecture

karthikeya Boyini

karthikeya Boyini

Updated on 04-Aug-2019 06:58:13

17K+ Views

Cellular architecture is constituted of the following −A network of cells each with a base station.A packet switched network for communication between the base stations and mobile switching centers.The public switched telephone network to connect subscribers to the wider telephony networkCellular ConfigurationIn all cellular systems, land area is divided into ... Read More

The Mobile Telephone System

karthikeya Boyini

karthikeya Boyini

Updated on 03-Aug-2019 20:16:14

6K+ Views

Mobile telephone service (MTS) connects mobile radio telephones with other networks like public switched telephone networks (PSTN), other mobile telephones and communication systems like Internet.Basic Mobile Communications SystemMobile phones and other mobile devices, called mobile stations are connected to base stations. Communication between the mobile stations and the base stations ... Read More

The Local Loop

karthikeya Boyini

karthikeya Boyini

Updated on 03-Aug-2019 20:03:38

3K+ Views

In a telephone system, the local loop is a two-wire connection between the subscriber’s house and the end office of the telephone company. It is commonly referred to as the “last mile” of the telephone network. The loop may run from 1km to as far as 10 km.CompositionTraditionally, local loops ... Read More

HTML DOM Input Button name Property

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:26

147 Views

The HTML DOM name property returns and alter the value of name attribute of an input button in HTML.SyntaxFollowing is the syntax −1. Returning nameobject.name2. Modifying nameobject.name=”text”Here, “text” represents the new name of the input button.ExampleLet us see an example of name property − Live Demo HTML DOM name ... Read More

HTML DOM Input Checkbox checked Property

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:26

323 Views

The HTML DOM input checkbox checked property returns and alter the value of checked attribute of a checkbox in HTML.syntaxFollowing is the syntax −1. Returning checkedobject.checked2. Altering checkedobject.checked = true|falseExampleLet us see an example of HTML DOM Input Checkbox checked property − Live Demo HTML DOM checked property ... Read More

HTML DOM Input Checkbox defaultChecked Property

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:26

392 Views

The HTML DOM input checkbox defaultChecked property returns the default value of checked attribute of a checkbox in HTML.SyntaxFollowing is the syntax −object.defaultCheckedExampleLet us see an example of defaultChecked property − Live Demo HTML DOM checked property    body{       text-align:center;    }    p{   ... Read More

HTML DOM Input Checkbox autofocus Property

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:26

158 Views

The HTML DOM Input Checkbox autofocus property returns and modify the value of autofocus attribute of an input HTML element with type=”checkbox”.SyntaxFollowing is the syntax −1. Returning autofocusobject.autofocus2. Modifying autofocusobject.autofocus = true|falseExampleLet us see an example of autofocus property − Live Demo

HTML DOM Image Object

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:26

497 Views

The HTML DOM image Object represents the element of an HTML document.Let us create an img object −SyntaxFollowing is the syntax −document.createElement(“IMG”);PropertiesFollowing are the properties of image Object −PropertyExplanationaltIt returns and modify the value of the alt attribute of an image HTML element.completeIt returns whether the browser finished loading ... Read More

Advertisements