SAP DNO_OW_TASK_SEARCH_OPEN_PROJ Function Module for









DNO_OW_TASK_SEARCH_OPEN_PROJ is a standard dno ow task search open proj SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for dno ow task search open proj FM, simply by entering the name DNO_OW_TASK_SEARCH_OPEN_PROJ into the relevant SAP transaction such as SE37 or SE38.

Function Group: DNO_OW_TASK
Program Name: SAPLDNO_OW_TASK
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function DNO_OW_TASK_SEARCH_OPEN_PROJ pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'DNO_OW_TASK_SEARCH_OPEN_PROJ'"
EXPORTING
* I_STARTDATE = "Field of Type DATS
* I_PERCENT = "2-Byte Integer (Signed)
* I_DAYS_NEEDED = "2-Byte Integer (Signed)
* I_PRIORITY = "Notification Priority
* I_PUBLISH = "General Flag
* I_ENDDATE = "Field of Type DATS
* I_CUSTOMER = "128 character
* I_LOCATION = "128 character
* I_COUNTRY = "Country Key
* I_CREA_DATE = "Notifications (Header)
* I_PARNR = "Partner Number
* I_FUNCTION = "Function Types
* I_AREA = "Topic, Area

TABLES
TAB_PROJECT_TASKS = "Notification: Data for Task Planning
.



IMPORTING Parameters details for DNO_OW_TASK_SEARCH_OPEN_PROJ

I_STARTDATE - Field of Type DATS

Data type: DNOD_NOTIF_TA-DATE_START
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_PERCENT - 2-Byte Integer (Signed)

Data type: DNOD_NOTIF_TA-PERCENT
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_DAYS_NEEDED - 2-Byte Integer (Signed)

Data type: DNOD_NOTIF_TA-DAYS_NEEDED
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_PRIORITY - Notification Priority

Data type: DNOD_NOTIF-PRIORITY
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_PUBLISH - General Flag

Data type: DNOD_NOTIF_TA-PUBLISH
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_ENDDATE - Field of Type DATS

Data type: DNOD_NOTIF_TA-DATE_END
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CUSTOMER - 128 character

Data type: DNOD_NOTIF_TA-CUSTOMER
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_LOCATION - 128 character

Data type: DNOD_NOTIF_TA-LOCATION
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_COUNTRY - Country Key

Data type: DNOD_NOTIF_TA-COUNTRY
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CREA_DATE - Notifications (Header)

Data type: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_PARNR - Partner Number

Data type: DNOD_NOTIF_P-PARNR
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FUNCTION - Function Types

Data type: DNOD_NOTIF_TA-FUNCTION
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_AREA - Topic, Area

Data type: DNOD_NOTIF-CATEGORY
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for DNO_OW_TASK_SEARCH_OPEN_PROJ

TAB_PROJECT_TASKS - Notification: Data for Task Planning

Data type: CACNS_EASY_PROJ
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for DNO_OW_TASK_SEARCH_OPEN_PROJ Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_i_startdate  TYPE DNOD_NOTIF_TA-DATE_START, "   
lt_tab_project_tasks  TYPE STANDARD TABLE OF CACNS_EASY_PROJ, "   
lv_i_percent  TYPE DNOD_NOTIF_TA-PERCENT, "   
lv_i_days_needed  TYPE DNOD_NOTIF_TA-DAYS_NEEDED, "   
lv_i_priority  TYPE DNOD_NOTIF-PRIORITY, "   
lv_i_publish  TYPE DNOD_NOTIF_TA-PUBLISH, "   
lv_i_enddate  TYPE DNOD_NOTIF_TA-DATE_END, "   
lv_i_customer  TYPE DNOD_NOTIF_TA-CUSTOMER, "   
lv_i_location  TYPE DNOD_NOTIF_TA-LOCATION, "   
lv_i_country  TYPE DNOD_NOTIF_TA-COUNTRY, "   
lv_i_crea_date  TYPE SY-DATUM, "   
lv_i_parnr  TYPE DNOD_NOTIF_P-PARNR, "   
lv_i_function  TYPE DNOD_NOTIF_TA-FUNCTION, "   
lv_i_area  TYPE DNOD_NOTIF-CATEGORY. "   

  CALL FUNCTION 'DNO_OW_TASK_SEARCH_OPEN_PROJ'  "
    EXPORTING
         I_STARTDATE = lv_i_startdate
         I_PERCENT = lv_i_percent
         I_DAYS_NEEDED = lv_i_days_needed
         I_PRIORITY = lv_i_priority
         I_PUBLISH = lv_i_publish
         I_ENDDATE = lv_i_enddate
         I_CUSTOMER = lv_i_customer
         I_LOCATION = lv_i_location
         I_COUNTRY = lv_i_country
         I_CREA_DATE = lv_i_crea_date
         I_PARNR = lv_i_parnr
         I_FUNCTION = lv_i_function
         I_AREA = lv_i_area
    TABLES
         TAB_PROJECT_TASKS = lt_tab_project_tasks
. " DNO_OW_TASK_SEARCH_OPEN_PROJ




ABAP code using 7.40 inline data declarations to call FM DNO_OW_TASK_SEARCH_OPEN_PROJ

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

"SELECT single DATE_START FROM DNOD_NOTIF_TA INTO @DATA(ld_i_startdate).
 
 
"SELECT single PERCENT FROM DNOD_NOTIF_TA INTO @DATA(ld_i_percent).
 
"SELECT single DAYS_NEEDED FROM DNOD_NOTIF_TA INTO @DATA(ld_i_days_needed).
 
"SELECT single PRIORITY FROM DNOD_NOTIF INTO @DATA(ld_i_priority).
 
"SELECT single PUBLISH FROM DNOD_NOTIF_TA INTO @DATA(ld_i_publish).
 
"SELECT single DATE_END FROM DNOD_NOTIF_TA INTO @DATA(ld_i_enddate).
 
"SELECT single CUSTOMER FROM DNOD_NOTIF_TA INTO @DATA(ld_i_customer).
 
"SELECT single LOCATION FROM DNOD_NOTIF_TA INTO @DATA(ld_i_location).
 
"SELECT single COUNTRY FROM DNOD_NOTIF_TA INTO @DATA(ld_i_country).
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_crea_date).
 
"SELECT single PARNR FROM DNOD_NOTIF_P INTO @DATA(ld_i_parnr).
 
"SELECT single FUNCTION FROM DNOD_NOTIF_TA INTO @DATA(ld_i_function).
 
"SELECT single CATEGORY FROM DNOD_NOTIF INTO @DATA(ld_i_area).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!