Skip to content

Commit 2cdb0ba

Browse files
committed
1.8.3 - $SAPSYSTEMNAME in default expimp location
$SAPSYSTEMNAME in default expimp location
1 parent dbf15d0 commit 2cdb0ba

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ www.florian-lamml.de
1717
- Version 1.8 - R3load Parallel Parameter
1818
- Version 1.8.1 - More Templates
1919
- Version 1.8.2 - More Templates
20+
- Version 1.8.3 - $SAPSYSTEMNAME in default expimp location
2021

2122
`copy to your Unix / Linux Server and run sap_tab_exp_imp.sh`
2223

sap_tab_exp_imp.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# Version 1.8 - R3load Parallel Parameter
1515
# Version 1.8.1 - More Templates
1616
# Version 1.8.2 - More Templates
17+
# Version 1.8.3 - $SAPSYSTEMNAME in default expimp location
1718

1819
##### CONFIG EXPORT / IMPORT LOCATION #####
1920
export EXPIMPLOC=
@@ -77,11 +78,11 @@ export global_copy="(c) Florian Lamml 2025"
7778
if [ -z "$EXPIMPLOC" ];
7879
then
7980
export EXPIMPLOCINFO="EXPIMPLOC is not set, use default";
80-
export EXPIMPLOC=$global_pwd/expimp
81+
export EXPIMPLOC=$global_pwd/expimp/$SAPSYSTEMNAME
8182
else
8283
export EXPIMPLOCINFO="EXPIMPLOC is set to";
8384
fi
84-
[ ! -d "$EXPIMPLOC" ] && mkdir $EXPIMPLOC
85+
[ ! -d "$EXPIMPLOC" ] && mkdir -p $EXPIMPLOC
8586

8687
# set logfile
8788
export EXPIMPLOGFILE=$EXPIMPLOC/EXP_IMP_LOG_$(date "+%d_%m_%Y").txt

script/sap_export_tables.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# Version 1.8 - R3load Parallel Parameter
1515
# Version 1.8.1 - More Templates
1616
# Version 1.8.2 - More Templates
17+
# Version 1.8.3 - $SAPSYSTEMNAME in default expimp location
1718

1819
# set config file and delete old one
1920
export selectedtablesforexport=$EXPIMPLOC/selected_tables_for_export.conf

script/sap_import_tables.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# Version 1.8 - R3load Parallel Parameter
1515
# Version 1.8.1 - More Templates
1616
# Version 1.8.2 - More Templates
17+
# Version 1.8.3 - $SAPSYSTEMNAME in default expimp location
1718

1819
# set config file and delete old one
1920
export exportedtables=$EXPIMPLOC/exported_tables.conf

0 commit comments

Comments
 (0)