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

Data Dictionary

Former Member
0 Likes
439

Hi sap friens,

1. If i deleted a field which is primary key , what's the effect of this on forienkey tables?

2. what will happen when i called a function module which is stored in a funcion group?( Is it load all function modules which are in that function group.?

Thanks in advance.

bye.

Ramesh M.

3 REPLIES 3
Read only

Sm1tje
Active Contributor
0 Likes
418

1. If foreign key relationship is defined for this primary key field, you will have change the relationship. Check the foreignkey relationship is this second table, by clicking the 'check' button.

2. All function modules, includes (also TOP include) will be loaded into memory.

Read only

Former Member
0 Likes
418

hi ,

1. you cannot able to delete the primary key that is having a forien key relation ship. It will show an error primary key change cannot be permitted.

2. The entire function group is loaded in a program the first time that you call a function module that belongs to it.

The system also triggers the LOAD-OF-PROGRAM event for the function group.

The function group remains active in the background until the end of the calling program. It is therefore a suitable means of retaining data objects for the entire duration of a program. All of the function modules in a group can access the group's global data.

reward points if useful

dilip

Read only

0 Likes
418

Hi Dilip,

very thankful to ur reply...bye.