Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

IMPORTING Parameter

Former Member
0 Likes
362

Hello !

What type is date_internal ( see IMPORTING Parameter ) ?

Regards

sas

CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
              EXPORTING
                date_external            = p_val
              IMPORTING
                date_internal            = p_field
              EXCEPTIONS
                date_external_is_invalid = 1
                OTHERS                   = 2.
            IF sy-subrc  0.
              MOVE sy-subrc TO p_rc.
              EXIT.
            ENDIF.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
340

The type of date_internal is 'DATS'.

2 REPLIES 2
Read only

Former Member
0 Likes
340

date_internal can be of Type d as he is assigning another

variable of type d ....

data : h_date_internal type d,

Read only

Former Member
0 Likes
341

The type of date_internal is 'DATS'.