SAP DPR_ABS_URL Absolute URL for Project Management Call Table data and field list

DPR_ABS_URL is a standard SAP Table which is used to store Absolute URL for Project Management Call data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The DPR_ABS_URL table consists of various fields, each holding specific information or linking keys about Absolute URL for Project Management Call data available in SAP. These include ABS_URL (Absolute URL for Project Management Application Call), ABS_URL2 (Absolute URL for Project Management Application Call), ABS_URL3 (Absolute URL for Project Management Application Call), IGNORE_DEFAULT (Ignore the WD default URL ('X'=yes, ' '=no))... See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

DPR_ABS_URL table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP DPR_ABS_URL table fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the DPR_ABS_URL table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
CLIENTClient MANDTCLNT3Assigned to domainMANDT
ABS_URLAbsolute URL for Project Management Application Call DPR_TV_ABS_URLCHAR255DPR_ABS_URL
ABS_URL2Absolute URL for Project Management Application Call DPR_TV_ABS_URLCHAR255DPR_ABS_URL
ABS_URL3Absolute URL for Project Management Application Call DPR_TV_ABS_URLCHAR255DPR_ABS_URL
IGNORE_DEFAULTIgnore the WD default URL ('X'=yes, ' '=no) DPR_TV_IGNORE_DEFAULT_URLCHAR1BOOLE
ABS_PORTAL_URLAbsolute Portal URL for Proj. Mgmt Appl. Call DPR_TV_ABS_PORTAL_URLCHAR255DPR_ABS_URL
ABS_PORTAL_URL2Absolute Portal URL for Proj. Mgmt Appl. Call DPR_TV_ABS_PORTAL_URLCHAR255DPR_ABS_URL
ABS_PORTAL_URL3Absolute Portal URL for Proj. Mgmt Appl. Call DPR_TV_ABS_PORTAL_URLCHAR255DPR_ABS_URL
ABS_NW_BC_URLAbsolute NWBC URL for Proj. Mgmt Application Call DPR_TV_ABS_NWBC_URLCHAR255DPR_ABS_URL
ABS_NW_BC_URL2Absolute NWBC URL for Proj. Mgmt Application Call DPR_TV_ABS_NWBC_URLCHAR255DPR_ABS_URL
ABS_NW_BC_URL3Absolute NWBC URL for Proj. Mgmt Application Call DPR_TV_ABS_NWBC_URLCHAR255DPR_ABS_URL

Key field Non-key field



How do I retrieve data from SAP table DPR_ABS_URL using ABAP code

The following ABAP code Example will allow you to do a basic selection on DPR_ABS_URL to SELECT all data from the table
DATA: WA_DPR_ABS_URL TYPE DPR_ABS_URL.

SELECT SINGLE *
FROM DPR_ABS_URL
INTO CORRESPONDING FIELDS OF WA_DPR_ABS_URL
WHERE...

How to access SAP table DPR_ABS_URL

Within an ECC or HANA version of SAP you can also view further information about DPR_ABS_URL and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).