Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8395213
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T20:14:37+00:00 2026-06-09T20:14:37+00:00

The transaction AL11 returns a mapping of directory parameters to file paths on the

  • 0

The transaction AL11 returns a mapping of “directory parameters” to file paths on the application server AFAIK.
The trouble with transaction AL11 is that its program only calls c modules, there’s almost no trace of select statements or function calls to analize there.

I want the ability to do this dynamically, in my code, like for instance a function module that took “DATA_DIR” as input and “E:\usr\sap\IDS\DVEBMGS00\data” as output.

This thread is about a similar topic, but it doesn’t help.

Some other guy has the same problem, and he explains it quite well here.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T20:14:38+00:00Added an answer on June 9, 2026 at 8:14 pm

    I strongly suspect that the only way to get these values is through the kernel directly. some of them can vary depending on the application server, so you probably won’t be able to find them in the database. You could try this:

    TYPE-POOLS abap.
    
    TYPES: BEGIN OF t_directory,
             log_name TYPE dirprofilenames,
             phys_path TYPE dirname_al11,
           END OF t_directory.
    
    DATA: lt_int_list    TYPE TABLE OF abaplist,
          lt_string_list TYPE list_string_table,
          lt_directories TYPE TABLE OF t_directory,
          ls_directory   TYPE t_directory.
    
    FIELD-SYMBOLS: <l_line> TYPE string.
    
    START-OF-SELECTION-OR-FORM-OR-METHOD-OR-WHATEVER.
    * get the output of the program as string table
      SUBMIT rswatch0 EXPORTING LIST TO MEMORY AND RETURN.
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          listobject = lt_int_list.
      CALL FUNCTION 'LIST_TO_ASCI'
        EXPORTING
          with_line_break   = abap_true
        IMPORTING
          list_string_ascii = lt_string_list
        TABLES
          listobject        = lt_int_list.
    
    * remove the separators and the two header lines
      DELETE lt_string_list WHERE table_line CO '-'.
      DELETE lt_string_list INDEX 1.
      DELETE lt_string_list INDEX 1.
    
    * parse the individual lines
      LOOP AT lt_string_list ASSIGNING <l_line>.
    *   If you're on a newer system, you can do this in a more elegant way using regular expressions
        CONDENSE <l_line>.
        SHIFT <l_line> LEFT DELETING LEADING '|'.
        SHIFT <l_line> RIGHT DELETING TRAILING '|'.
        SPLIT <l_line>+1 AT '|' INTO ls_directory-log_name ls_directory-phys_path.
        APPEND ls_directory TO lt_directories.
      ENDLOOP.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If you set SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED on a stored procedure that
I have a transaction that contains multiple SQL Statements (INSERT, UPDATE and/or DELETES). When
I have an NHibernate Transaction that does some work and makes a call to
I have Transaction objects that are combined in a Cart object. Some Transaction objects
In my application transaction scope is not working for second transaction..It is working fine
How to free Transaction log space in SQL SERVER 2005: I have Transaction log
I have a large transaction table in SQL server which is used to store
I have a Transaction table that contains a TranRefId (for grouping purchase & reversal
Transaction belongs_to Cart and Cart has_many Transactions . I have a Cart view that
I have an ActiveRecord transaction that takes place during a web service call. It

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.