Changing Data Element of a Column in Transaction SE16N

Anjana
Updated on 30-Jul-2019 22:30:20

396 Views

You probably need to activate the change. Other option is by deleting the description and enter the wrong character in data element name.This will make the system show an error message since that element does not exist.Correct the DDIC element spelling. The system now considers this a big enough change to the pull in an correct description of the element.

Use SUM Function for NUMC Type Field

Johar Ali
Updated on 30-Jul-2019 22:30:20

697 Views

NUMC is numeric text. As this is text, SUM function cannot be implemented as it is of type varchar in the database.There is no simple solution to do it. The one method is to copy the data to internal tables, convert the NUMC data into DEC by looping through all the rows, SUM and GROUP them and then convert back the DEC values back to NUMC values.

What does the method elementAt(int index) do in Java

Vikyath Ram
Updated on 30-Jul-2019 22:30:20

215 Views

The elementAt(int index) method is used to get the component at the specified index/location of the vector.Exampleimport java.util.Vector; public class VectorDemo {    public static void main(String[] args) {       Vector vec = new Vector(4);       vec.add(4);       vec.add(3);       vec.add(2);       vec.add(1);       System.out.println("Element at 1st position :- "+vec.elementAt(1));    } }OutputElement at 1st position :- 3

Read SAP Structures Using RFC

Monica Mona
Updated on 30-Jul-2019 22:30:20

363 Views

It seems you are confused with the definition of structure. The structure does not contain any data. They just type definition.If you want to return or receive a structure as a parameter, that can be done using RFC.

Single Query vs Multiple Queries to Fetch Large Number of Rows in SAP HANA

Smita Kapse
Updated on 30-Jul-2019 22:30:20

1K+ Views

Single query would always be better than the multiple queries. The number of rows does not impact much on performance. It is the way query is written and the data to be fetched which makes the difference. Also, the table should be indexed.

Changing Parameters on the Screen in SAP

Arjun Thakur
Updated on 30-Jul-2019 22:30:20

395 Views

You can do this by going to Menu.Navigate to Goto->Text Elements->Selection Text

Length of XSTRING Variable from an SAP Function Module

Lakshmi Srinivas
Updated on 30-Jul-2019 22:30:20

774 Views

You can fetch the length of XSTRING variable using xstrlen( l_abc_xstring ) where l_abc_xstring is the XSTRING variable.

Read Latest Measurement Point in SAP RFC

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

610 Views

There is a Function Module: MEASUREM_DOCUM_RFC_SINGLE_002 that you can use to read documents if keys are known. When there is no RFC module to get a list of $foo according to a set of selection criteria, it is possible to use RFC_READ_TABLE to get the keys from db directly.Function Module MEASUREM_DOCUM_RFC_SINGLE_002: RFC Measurement document: Individual processing, Change/Display or ReadUseWith use of this RFC, following remote calls can be used:Remote dialog (WITH_DIALOG_SCREEN = 'X')Remote dialog in display mode (EDIT_MODE = ' ')Remote dialog in change mode (EDIT_MODE = 'X')Remote reading of measurement document data (WITH_DIALOG_SCREEN = ' ')NotesApart from when an ... Read More

Creating Attribute and Analytic View as Persistent Model in SAP HANA

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

162 Views

This is possible as all views can be created as persistent in SAP HANA. You need to get XMS representation creating attributeview, .analyticview, .calculationview file and activate it.In your case I think you need to check details of your Analytic view and if there is some path that you need to modify.

Looping through a Dynamic Table in SAP

Rahul Sharma
Updated on 30-Jul-2019 22:30:20

445 Views

You have to use Runtime Type Identification RTTI and assign the component name of structure To .Please refer to below link for more details:https://help.sap.com/doc/abapdocu_750_index_htm/7.50/en-US/index.htm