SAP Managed Tags: ABAP Development Hi There, Basiaclly speaking, if you look at the constructor of a class, it generally returns the object of the class. You cannot have a exporting parameters. So exporting is generally used if you need to retun more than one value. In general a metho...
... RETURNING VALUE(r) typing Effect Alongside any other formal parameters, a functional method has precisely one return valuerdeclared using the additionRETURNING. The return value must be passed by value usingVALUEand be fully typed usingtyping. In the typing check,special rulesapply, depending ...
SAP Managed Tags: ABAP Development I have a public static method in my class which returns a variable of type BOOLE_D. Once I save the method parameters, I'm unable to set a default value as that column gets greyed out. Why does this happen? Does it have something to do with retur...
SAP Managed Tags: SAP Process Integration Hi All, In my mapping, in the java UDF i do the RFC lookup and send values. The RFC in ABAP side has the table parameter.(There is not import or export parameter)When i execute in se37 the RFC gives the values. But when I do the RFC...
PUBLIC SECTION. CLASS-METHODS parse importing fdata type string_table returning value(fmeta) type ty_line_tt. ENDCLASS. "cl_rep DEFINITION Got an error as in the subject. Does that mean that the table type MUST be declared in the ABAP dictionary? Regards, MichalReply...
This CONVERT_AMOUNT_TO_CURRENCY is returning empty value Former Member 2010 Jan 15 1:06 AM 0 Kudos 715 SAP Managed Tags: ABAP Development CONVERT_AMOUNT_TO_CURRENCY is returning empty value. Do I need to configure something in somewhere? Thanks! Reply All forum topics Previous ...
The concept behind that is, every character including space can be represented in Hexadecimal Format. The Hexadecimal value for TAB is 9. Reply Former Member 2008 Sep 15 5:14 AM 0 Kudos 1,556 SAP Managed Tags: ABAP Development Are you doing cross platform transfers? I mean is ...
SAP Managed Tags: ABAP Development Are you passing it as an EXPORT parameter? use and define it in the TABLES section of your function module as so: *" IMPORTING *" VALUE(INCLUDE_X_LEVELS) TYPE CHAR1 OPTIONAL *" TABLES *" I_SELECTED_OU STRUCTURE HRROOTOB *" I_SELECTED_EE STRUCTURE...
SAP Managed Tags: SAP Gateway, NW ABAP Gateway (OData) Hello, currently I am building an OData service that offers certain functionality only to certain logged in users. Is it possible to somehow manually return the HTTP error code 401 if the user does not match? Using DATA(lv_message)...
An error always occurs, however, if the typing of the return value does not match the operand type. BR, Suhas Reply retired_member Product and Topic Expert 2015 Jan 29 7:53 AM 0 Kudos 186 SAP Managed Tags: ABAP Development The answer is that it is a kind of missing funct...