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

Physical and Logical path

Former Member
0 Likes
2,049

Hello,

what is a physical file and logical file in PATH table of SAP.

Plz help,

aafaq

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
839

Hi aafaqhusain,

1. logical file path is nothing but a IDENTIFIER/STRING/NAME

= the name by which

we refer to that file.

(in our programs)

2. The physical location of that file,

may change from server to server,

or from time to time.

(hence, we do not use hardcoded physical path,

in our programs,

but instead use this MAPPING of logical path,

to the physical path)

regards,

amit m.

Hello,

what is a physical file and logical file in PATH table of SAP.

Plz help,

aafaq

4 REPLIES 4
Read only

Former Member
0 Likes
840

Hi aafaqhusain,

1. logical file path is nothing but a IDENTIFIER/STRING/NAME

= the name by which

we refer to that file.

(in our programs)

2. The physical location of that file,

may change from server to server,

or from time to time.

(hence, we do not use hardcoded physical path,

in our programs,

but instead use this MAPPING of logical path,

to the physical path)

regards,

amit m.

Read only

abdul_hakim
Active Contributor
0 Likes
839

hi,

physical path is the platform specific filename

and logical path is platform independent.....

Have a look the corresponding docu under.

http://help.sap.com

Cheers,

Abdul Hakim

Read only

Former Member
0 Likes
839

Hi

The physical path is the real one, the logical path is an ID to indicate a physical (so real) path.

In this way u can create a costant LOGICAL PATH to be used in your programs and (if you need it) change the only the real (physical) path linked to a logical path.

So you can manage your real path in only one point: the table that links the logical and physical path.

Max

Read only

Former Member
0 Likes
839

thanks