pyxecm 1.4__py3-none-any.whl → 1.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pyxecm might be problematic. Click here for more details.
- pyxecm/__init__.py +3 -0
- pyxecm/coreshare.py +2636 -0
- pyxecm/customizer/__init__.py +4 -0
- pyxecm/customizer/browser_automation.py +164 -54
- pyxecm/customizer/customizer.py +451 -235
- pyxecm/customizer/k8s.py +6 -6
- pyxecm/customizer/m365.py +1136 -221
- pyxecm/customizer/payload.py +13163 -5844
- pyxecm/customizer/pht.py +503 -0
- pyxecm/customizer/salesforce.py +694 -114
- pyxecm/customizer/sap.py +4 -4
- pyxecm/customizer/servicenow.py +1221 -0
- pyxecm/customizer/successfactors.py +1056 -0
- pyxecm/helper/__init__.py +2 -0
- pyxecm/helper/assoc.py +24 -1
- pyxecm/helper/data.py +1527 -0
- pyxecm/helper/web.py +170 -46
- pyxecm/helper/xml.py +170 -34
- pyxecm/otac.py +309 -23
- pyxecm/otcs.py +2779 -698
- pyxecm/otds.py +347 -108
- pyxecm/otmm.py +808 -0
- pyxecm/otpd.py +13 -10
- {pyxecm-1.4.dist-info → pyxecm-1.5.dist-info}/METADATA +3 -1
- pyxecm-1.5.dist-info/RECORD +30 -0
- {pyxecm-1.4.dist-info → pyxecm-1.5.dist-info}/WHEEL +1 -1
- pyxecm-1.4.dist-info/RECORD +0 -24
- {pyxecm-1.4.dist-info → pyxecm-1.5.dist-info}/LICENSE +0 -0
- {pyxecm-1.4.dist-info → pyxecm-1.5.dist-info}/top_level.txt +0 -0
pyxecm/customizer/sap.py
CHANGED
|
@@ -39,21 +39,21 @@ __email__ = "mdiefenb@opentext.com"
|
|
|
39
39
|
|
|
40
40
|
import logging
|
|
41
41
|
|
|
42
|
+
logger = logging.getLogger("pyxecm.customizer.sap")
|
|
43
|
+
|
|
42
44
|
try:
|
|
43
45
|
import pyrfc
|
|
44
46
|
|
|
45
47
|
_has_pyrfc = True
|
|
46
48
|
|
|
47
49
|
except ModuleNotFoundError as module_exception:
|
|
48
|
-
|
|
50
|
+
logger.error("pyrfc not installed, SAP integration impacted")
|
|
49
51
|
_has_pyrfc = False
|
|
50
52
|
|
|
51
53
|
except ImportError as import_exception:
|
|
52
|
-
|
|
54
|
+
logger.error("pyrfc could not be loaded, SAP integration impacted")
|
|
53
55
|
_has_pyrfc = False
|
|
54
56
|
|
|
55
|
-
logger = logging.getLogger("pyxecm.customizer.sap")
|
|
56
|
-
|
|
57
57
|
|
|
58
58
|
class SAP(object):
|
|
59
59
|
"""Used to implement Remote Function Calls (RFC) to SAP S/4HANA"""
|