APJ_X_JT_VAL

Transparent Table Application Table

Local Application Job Templates Parameter Values

APJ_X_JT_VAL is an SAP database table in S/4HANA. Local Application Job Templates Parameter Values. It contains 10 fields. 5 CDS views read from this table.

CDS Views using this table (5)

ViewTypeJoinVDMDescription
APJ_V_JT_X_PARAMETERS view inner Parameters for customer templates
FCCX_V_APJ_TEMPLATE_VAL_UNION view_entity union_all APJ Job Template Union
P_APJ_JOB_TEMPLATE_VALUE view union_all Job Template Value
P_APJ_JT_C_PARAMS view inner Parameters for collective job templates
XAJ_JOB_TEMPLATE_VALUES view inner JT Parameter Values

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY client symandt Client ID
KEY job_template_name apj_job_template_name Job Template Name
KEY job_template_version apj_object_version Object Version
KEY user_name syuname User Name
KEY uuid apj_job_temp_value_identifier Identifier
job_parameter_name apj_job_parameter_name Parameter
sign raldb_sign SIGN
opt raldb_opti Option
low apj_job_template_value Value
high apj_job_template_value Value

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Local Application Job Templates Parameter Values
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE APJ_X_JT_VAL (
    CLIENT,                -- Client ID [symandt]
    JOB_TEMPLATE_NAME,     -- Job Template Name [apj_job_template_name]
    JOB_TEMPLATE_VERSION,  -- Object Version [apj_object_version]
    USER_NAME,             -- User Name [syuname]
    UUID,                  -- Identifier [apj_job_temp_value_identifier]
    JOB_PARAMETER_NAME,    -- Parameter [apj_job_parameter_name]
    SIGN,                  -- SIGN [raldb_sign]
    OPT,                   -- Option [raldb_opti]
    LOW,                   -- Value [apj_job_template_value]
    HIGH,                  -- Value [apj_job_template_value]
    PRIMARY KEY (CLIENT, JOB_TEMPLATE_NAME, JOB_TEMPLATE_VERSION, USER_NAME, UUID)
);