diff --git a/IWRS/Drugs/create_report.py b/IWRS/Drugs/create_report.py index 9f3f68e..09eb78b 100644 --- a/IWRS/Drugs/create_report.py +++ b/IWRS/Drugs/create_report.py @@ -1,5 +1,5 @@ import os -import mysql.connector +import sys import pandas as pd from datetime import date from pathlib import Path @@ -7,7 +7,8 @@ from openpyxl import load_workbook from openpyxl.styles import Font, PatternFill, Alignment, Border, Side from openpyxl.utils import get_column_letter -import db_config +sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +from common.mongo_writer import get_db STUDIES = ["77242113UCO3001", "42847922MDD3003"] @@ -23,70 +24,56 @@ DATE_COLUMNS = { N_SHIP_COLS = 9 # počet shipment sloupců před detail sloupci -# ── DB ──────────────────────────────────────────────────────────────────────── +# ── Načítání dat z MongoDB ──────────────────────────────────────────────────── -def get_conn(): - return mysql.connector.connect( - host=db_config.DB_HOST, port=db_config.DB_PORT, - user=db_config.DB_USER, password=db_config.DB_PASSWORD, - database=db_config.DB_NAME, - ) +INVENTORY_COLS = [ + ("site", "Site"), + ("medication_id", "Med ID"), + ("packaged_lot_no", "Lot No."), + ("original_expiration_date", "Orig Exp Date"), + ("expiration_date", "Exp Date"), + ("received_date", "Rcv Date"), + ("receipt_user", "Rcpt User"), + ("subject_identifier", "Subject ID"), + ("quantity_assigned", "Qty Asgn"), + ("irt_transaction", "IRT Tx"), + ("date_assigned", "Date Asgn"), + ("assignment_user", "Asgn User"), + ("dispensation_status", "Disp Status"), + ("dispensing_date", "Disp Date"), + ("quantity_dispensed", "Qty Disp"), + ("dispensing_user", "Disp User"), + ("quantity_returned", "Qty Ret"), + ("date_returned", "Date Ret"), + ("return_user", "Ret User"), +] -def get_latest_import_id(cursor, study): - cursor.execute( - "SELECT MAX(import_id) AS mid FROM iwrs_import WHERE study=%s AND report_type='drugs'", - (study,), - ) - row = cursor.fetchone() - mid = row["mid"] - if mid is None: - raise RuntimeError(f"Žádná data v MySQL pro studii {study}") - return mid +def load_inventory(study): + db = get_db() + inv = list(db.iwrs_inventory.find({"study": study})) + destr = list(db.iwrs_destruction.find({"study": study})) + # map medication_id -> first basket+date + destr_map = {} + for d in destr: + mid = d.get("medication_id") + if mid and mid not in destr_map: + destr_map[mid] = (d.get("basket_id"), d.get("destruction_date")) + records = [] + for doc in inv: + row = {label: doc.get(key) for key, label in INVENTORY_COLS} + b, dt = destr_map.get(doc.get("medication_id"), (None, None)) + row["Destroyed"] = dt + row["Basket No."] = b + records.append(row) -# ── Načítání dat ────────────────────────────────────────────────────────────── + df = pd.DataFrame(records) + if df.empty: + print(" Inventory: 0 kitu") + return df -def load_inventory(cursor, study, import_id): - sql = """ - SELECT - i.site AS Site, - i.medication_id AS `Med ID`, - i.packaged_lot_no AS `Lot No.`, - i.original_expiration_date AS `Orig Exp Date`, - i.expiration_date AS `Exp Date`, - i.received_date AS `Rcv Date`, - i.receipt_user AS `Rcpt User`, - i.subject_identifier AS `Subject ID`, - i.quantity_assigned AS `Qty Asgn`, - i.irt_transaction AS `IRT Tx`, - i.date_assigned AS `Date Asgn`, - i.assignment_user AS `Asgn User`, - i.dispensation_status AS `Disp Status`, - i.dispensing_date AS `Disp Date`, - i.quantity_dispensed AS `Qty Disp`, - i.dispensing_user AS `Disp User`, - i.quantity_returned AS `Qty Ret`, - i.date_returned AS `Date Ret`, - i.return_user AS `Ret User`, - d.destruction_date AS Destroyed, - d.basket_id AS `Basket No.` - FROM iwrs_inventory i - LEFT JOIN ( - SELECT medication_id, - ANY_VALUE(basket_id) AS basket_id, - ANY_VALUE(destruction_date) AS destruction_date - FROM iwrs_destruction - WHERE study = %s - GROUP BY medication_id - ) d ON d.medication_id = i.medication_id - WHERE i.import_id = %s - AND i.study = %s - ORDER BY i.site, i.received_date, i.medication_id - """ - cursor.execute(sql, (study, import_id, study)) - rows = cursor.fetchall() - df = pd.DataFrame(rows) + df = df.sort_values(["Site", "Rcv Date", "Med ID"], na_position="last").reset_index(drop=True) for col in DATE_COLUMNS: if col in df.columns: df[col] = pd.to_datetime(df[col], errors="coerce") @@ -94,78 +81,102 @@ def load_inventory(cursor, study, import_id): return df -def load_shipments(cursor, study, import_id): - sql = """ - SELECT - s.shipment_id AS `Shipment ID`, - s.status AS `IRT Shipment Status`, - s.type AS Type, - s.ship_from AS `Shipment From`, - s.ship_to_site AS `Ship To:`, - s.request_date AS `Request Date`, - s.received_date AS `Received Date`, - s.received_by AS `Received by`, - s.expected_arrival AS `Expected Arrival`, - i.investigator AS Investigator, - i.medication_description AS `Medication Description`, - i.medication_id AS `Medication ID`, - i.packaged_lot_no AS `Packaged Lot number`, - i.expiration_date AS `Expiration Date`, - i.item_status AS Status - FROM iwrs_shipments s - JOIN iwrs_shipment_items i - ON i.study = s.study - AND i.shipment_id = s.shipment_id - AND i.import_id = %s - WHERE s.import_id = %s - AND s.study = %s - ORDER BY s.ship_to_site, s.shipment_id, i.medication_id - """ - cursor.execute(sql, (import_id, import_id, study)) - rows = cursor.fetchall() - df = pd.DataFrame(rows) +SHIP_COLS = [ + ("shipment_id", "Shipment ID"), + ("status", "IRT Shipment Status"), + ("type", "Type"), + ("ship_from", "Shipment From"), + ("ship_to_site", "Ship To:"), + ("request_date", "Request Date"), + ("received_date", "Received Date"), + ("received_by", "Received by"), + ("expected_arrival", "Expected Arrival"), +] + +ITEM_COLS = [ + ("investigator", "Investigator"), + ("medication_description", "Medication Description"), + ("medication_id", "Medication ID"), + ("packaged_lot_no", "Packaged Lot number"), + ("expiration_date", "Expiration Date"), + ("item_status", "Status"), +] + + +def load_shipments(study): + db = get_db() + ships = list(db.iwrs_shipments.find({"study": study})) + items = list(db.iwrs_shipment_items.find({"study": study})) + + # index items by shipment_id + items_by_ship = {} + for it in items: + items_by_ship.setdefault(it.get("shipment_id"), []).append(it) + + records = [] + for s in ships: + base = {label: s.get(key) for key, label in SHIP_COLS} + for it in items_by_ship.get(s.get("shipment_id"), []): + row = dict(base) + for key, label in ITEM_COLS: + row[label] = it.get(key) + records.append(row) + + df = pd.DataFrame(records) + if df.empty: + print(" Shipments: 0 zásilek, 0 kitu") + return df + + df = df.sort_values(["Ship To:", "Shipment ID", "Medication ID"], na_position="last").reset_index(drop=True) for col in ("Request Date", "Received Date", "Expiration Date", "Expected Arrival"): if col in df.columns: df[col] = pd.to_datetime(df[col], errors="coerce") - n_ship = df["Shipment ID"].nunique() if len(df) else 0 + n_ship = df["Shipment ID"].nunique() print(f" Shipments: {n_ship} zásilek, {len(df)} kitu") return df -def load_visits(cursor, study, import_id): - cursor.execute( - "SELECT MAX(import_id) AS mid FROM iwrs_import WHERE study=%s AND report_type='patients'", - (study,), - ) - patients_import_id = cursor.fetchone()["mid"] or import_id - import_id = patients_import_id - sql = """ - SELECT - v.subject AS Subject, - COALESCE(v.actual_date, v.scheduled_date) AS `Visit Date`, - v.scheduled_date AS `Scheduled Date`, - v.irt_transaction_no AS `IRT Tx No`, - v.irt_transaction_description AS `Visit`, - v.medication_assignment AS `Medication`, - GROUP_CONCAT(v.medication_id ORDER BY v.medication_id SEPARATOR ', ') AS `Med IDs`, - SUM(v.quantity_assigned) AS `Qty` - FROM iwrs_subject_visits v - WHERE v.import_id = %s AND v.study = %s AND v.visit_type = 'Past' - AND v.irt_transaction_no IS NOT NULL - GROUP BY v.subject, v.actual_date, v.scheduled_date, - v.irt_transaction_no, v.irt_transaction_description, v.medication_assignment - ORDER BY v.subject, COALESCE(v.actual_date, v.scheduled_date) - """ - cursor.execute(sql, (import_id, study)) - rows = cursor.fetchall() +def load_visits(study): + db = get_db() + cur = db.iwrs_visits.find({ + "study": study, + "visit_type": "Past", + "irt_transaction_no": {"$ne": None}, + }) + rows = [] + for v in cur: + rows.append({ + "Subject": v.get("subject"), + "Visit Date": v.get("actual_date") or v.get("scheduled_date"), + "Scheduled Date": v.get("scheduled_date"), + "IRT Tx No": v.get("irt_transaction_no"), + "Visit": v.get("irt_transaction_description"), + "Medication": v.get("medication_assignment"), + "medication_id": v.get("medication_id"), + "quantity_assigned": v.get("quantity_assigned"), + }) df = pd.DataFrame(rows) + if df.empty: + print(" Visits: 0 radku") + return df + + # GROUP BY subject/actual/scheduled/irt_no/desc/medication + grouped = ( + df.groupby(["Subject", "Visit Date", "Scheduled Date", "IRT Tx No", "Visit", "Medication"], + dropna=False, as_index=False) + .agg(**{ + "Med IDs": ("medication_id", lambda s: ", ".join(sorted([str(x) for x in s if pd.notna(x)]))), + "Qty": ("quantity_assigned", "sum"), + }) + ) + grouped = grouped.sort_values(["Subject", "Visit Date"]).reset_index(drop=True) for col in ("Visit Date", "Scheduled Date"): - if col in df.columns: - df[col] = pd.to_datetime(df[col], errors="coerce") - if study == "77242113UCO3001" and "Visit" in df.columns: - df["Visit"] = df["Visit"].replace("Subject Number Creation", "Screening") - print(f" Visits: {len(df)} řádků") - return df + if col in grouped.columns: + grouped[col] = pd.to_datetime(grouped[col], errors="coerce") + if study == "77242113UCO3001": + grouped["Visit"] = grouped["Visit"].replace("Subject Number Creation", "Screening") + print(f" Visits: {len(grouped)} řádků") + return grouped # ── Odvozené sheety ─────────────────────────────────────────────────────────── @@ -343,49 +354,42 @@ def format_shipment_sheet(ws, header_color_ship, header_color_detail, n_ship_col # ── Pacienti ───────────────────────────────────────────────────────────────── -PATIENT_TABLE = { - "77242113UCO3001": "iwrs_uco3001_subject_summary", - "42847922MDD3003": "iwrs_mdd3003_subject_summary", -} +def load_patients(study): + db = get_db() + docs = list(db.iwrs_subject_summary.find({"study": study})) + if not docs: + raise RuntimeError(f"Žádná data v Mongo pro pacienty {study}") - -def load_patients(cursor, study): - table = PATIENT_TABLE[study] - cursor.execute(f"SELECT MAX(import_id) AS mid FROM {table}") - mid = cursor.fetchone()["mid"] - if mid is None: - raise RuntimeError(f"Žádná data v MySQL pro pacienty {study}") - extra_cols = "" + base_cols = [ + ("subject", "Subject"), + ("investigator", "Investigator"), + ("age", "Subject's age collection"), + ("cohort_per_irt", "Cohort per IRT"), + ("irt_subject_status", "IRT Subject Status"), + ("last_irt_transaction", "Last Recorded IRT Transaction"), + ("next_irt_transaction", "Next Expected IRT Transaction"), + ("next_irt_transaction_date_local", "Next Expected IRT Transaction Date [Local]"), + ] + uco_extra = [ + ("rescreened_subject", "Rescreened Subject"), + ("adt_ir", "ADT-IR"), + ("three_or_more_advanced_therapies", "3+ Adv. Therapies"), + ("only_oral_5asa_compounds", "Only 5-ASA"), + ("ustekinumab", "Ustekinumab"), + ("isolated_proctitis", "Isolated Proctitis"), + ] + cols = list(base_cols) if study == "77242113UCO3001": - extra_cols = """ - rescreened_subject AS `Rescreened Subject`, - adt_ir AS `ADT-IR`, - three_or_more_advanced_therapies AS `3+ Adv. Therapies`, - only_oral_5asa_compounds AS `Only 5-ASA`, - ustekinumab AS `Ustekinumab`, - isolated_proctitis AS `Isolated Proctitis`,""" - sql = f""" - SELECT - subject AS `Subject`, - investigator AS `Investigator`, - age AS `Subject's age collection`, - cohort_per_irt AS `Cohort per IRT`,{extra_cols} - irt_subject_status AS `IRT Subject Status`, - last_irt_transaction AS `Last Recorded IRT Transaction`, - next_irt_transaction AS `Next Expected IRT Transaction`, - next_irt_transaction_date_local AS `Next Expected IRT Transaction Date [Local]` - FROM {table} - WHERE import_id = %s - ORDER BY subject - """ - cursor.execute(sql, (mid,)) - rows = cursor.fetchall() - df = pd.DataFrame(rows) + cols += uco_extra + + rows = [{label: d.get(key) for key, label in cols} for d in docs] + df = pd.DataFrame(rows).sort_values("Subject").reset_index(drop=True) + if "Next Expected IRT Transaction Date [Local]" in df.columns: df["Next Expected IRT Transaction Date [Local]"] = pd.to_datetime( df["Next Expected IRT Transaction Date [Local]"], errors="coerce" ) - print(f" Pacienti: {len(df)} subjektů (import_id={mid})") + print(f" Pacienti: {len(df)} subjektů") return df @@ -574,18 +578,11 @@ def create_study_report(study): output_file = OUTPUT_DIR / f"{today} {study} CZ IWRS overview v{version}.xlsx" - print(f"\n[{study}] Načítám z MySQL...") - conn = get_conn() - cursor = conn.cursor(dictionary=True) - import_id = get_latest_import_id(cursor, study) - print(f" import_id = {import_id}") - - df = load_inventory(cursor, study, import_id) - shipments_df = load_shipments(cursor, study, import_id) - df_patients = load_patients(cursor, study) - visits_df = load_visits(cursor, study, import_id) - cursor.close() - conn.close() + print(f"\n[{study}] Nacitam z MongoDB...") + df = load_inventory(study) + shipments_df = load_shipments(study) + df_patients = load_patients(study) + visits_df = load_visits(study) expired_df, expired_sheet = build_expired(df) assigned_df = build_assigned_not_dispensed(df) diff --git a/IWRS/Drugs/import_to_mongo.py b/IWRS/Drugs/import_to_mongo.py new file mode 100644 index 0000000..18123b2 --- /dev/null +++ b/IWRS/Drugs/import_to_mongo.py @@ -0,0 +1,253 @@ +""" +Import Drugs dat (shipments, shipment_items, inventory, destruction) z XLSX do MongoDB. + +Volá se z IWRS/Drugs/run_all.py po stažení reportů. +""" + +import os +import sys +import re +import glob + +import pandas as pd + +sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +from common.mongo_writer import ( + to_str, to_int, to_date, + ensure_indexes, log_import, + bulk_upsert_with_snapshot, bulk_upsert_only, +) + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) + + +# ── XLSX parsery (převzaté z run_all.py + úprava na Mongo dokumenty) ───────── + +def parse_shipments_report(study): + path = os.path.join(BASE_DIR, f"xls_shipments_{study}", f"shipments_report_{study}.xlsx") + if not os.path.exists(path): + print(f" CHYBI: {path}") + return [] + raw = pd.read_excel(path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Shipment ID" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + return [] + df = pd.read_excel(path, header=header_row).dropna(how="all") + df = df[df["Location"].astype(str).str.contains("Czech", na=False, case=False)] + col = df.columns.tolist() + rows = [] + for _, r in df.iterrows(): + sid = to_str(r["Shipment ID"]) + if not sid: + continue + rows.append({ + "_id": sid, + "shipment_id": sid, + "study": study, + "status": to_str(r["IRT Shipment Status"]), + "type": to_str(r["Type"]), + "ship_from": to_str(r["Shipment From"]), + "ship_to_site": to_str(r["Ship To:"]), + "location": to_str(r["Location"]), + "request_date": to_date(r["Request Date"]), + "shipped_date": to_date(r["Shipped Date"]), + "received_date": to_date(r["Received Date"]) if "Received Date" in col else None, + "received_by": to_str(r["Received by"]) if "Received by" in col else None, + "delivered_date_utc": to_date(r["Delivered Date [UTC]"]) if "Delivered Date [UTC]" in col else None, + "delivery_recipient": to_str(r["Delivery Recipient"]) if "Delivery Recipient" in col else None, + "delivery_details": to_str(r["Delivery Details"]) if "Delivery Details" in col else None, + "cancelled_date": to_date(r["Cancelled Date"]) if "Cancelled Date" in col else None, + "total_medication_ids": to_int(r["Total Medication IDs"]) if "Total Medication IDs" in col else None, + "tracking_no": to_str(r["Tracking #"]) if "Tracking #" in col else None, + "shipping_category": to_str(r["Shipping Category"]) if "Shipping Category" in col else None, + "expected_arrival": to_date(r["Expected Arrival"]) if "Expected Arrival" in col else None, + }) + return rows + + +def parse_shipment_details(study): + detail_dir = os.path.join(BASE_DIR, f"xls_shipment_details_{study}") + files = sorted(glob.glob(os.path.join(detail_dir, "shipment_details_*.xlsx"))) + rows = [] + for path in files: + m = re.search(r"shipment_details_(.+)\.xlsx", os.path.basename(path)) + shipment_id = m.group(1) if m else "UNKNOWN" + raw = pd.read_excel(path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Medication ID" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + continue + df = pd.read_excel(path, header=header_row).dropna(how="all") + for _, r in df.iterrows(): + med_desc = (to_str(r.get("Medication Description")) + or to_str(r.get("Medication ID Description"))) + med_type = (to_str(r.get("Medication type")) + or to_str(r.get("Medication ID type"))) + med_id = to_str(r.get("Medication ID")) + if not med_id: + continue + rows.append({ + "_id": f"{shipment_id}:{med_id}", + "study": study, + "shipment_id": shipment_id, + "destination_location": to_str(r.get("Destination Location")), + "shipment_status": to_str(r.get("IRT Shipment Status")), + "shipment_type": to_str(r.get("Type")), + "destination_site": to_str(r.get("Destination Site")), + "investigator": to_str(r.get("Investigator")), + "medication_description": med_desc, + "medication_type": med_type, + "medication_id": med_id, + "packaged_lot_no": to_str(r.get("Packaged Lot number")), + "packaged_lot_description": to_str(r.get("Packaged Lot description")), + "container_id": to_str(r.get("Container ID")), + "quantity": to_int(r.get("Quantity of Medication IDs")), + "expiration_date": to_date(r.get("Expiration Date")), + "item_status": to_str(r.get("Status")), + }) + # dedupe (poslední vyhrává) + by_id = {r["_id"]: r for r in rows} + return list(by_id.values()) + + +def parse_inventory(study): + inv_dir = os.path.join(BASE_DIR, f"xls_reports_{study}") + files = sorted(glob.glob(os.path.join(inv_dir, "onsite_inventory_detail_*.xlsx"))) + rows = [] + for path in files: + raw = pd.read_excel(path, header=None) + site = investigator = location = None + header_row = None + for i, row in raw.iterrows(): + first = str(row.iloc[0]).strip() if pd.notna(row.iloc[0]) else "" + if first.startswith("Site:"): + site = first.replace("Site:", "").strip() + elif first.startswith("Investigator:"): + investigator = first.replace("Investigator:", "").strip() + elif first.startswith("Location:"): + location = first.replace("Location:", "").strip() + if first in ("Medication", "Medication ID") and header_row is None: + header_row = i + if header_row is None: + continue + df = pd.read_excel(path, header=header_row).dropna(how="all") + df = df.rename(columns={df.columns[0]: "medication_id"}) + for _, r in df.iterrows(): + med_id = to_str(r["medication_id"]) + if not med_id or not site: + continue + rows.append({ + "_id": f"{site}:{med_id}", + "study": study, + "site": site, + "investigator": investigator, + "location": location, + "medication_id": med_id, + "packaged_lot_no": to_str(r.get("Packaged Lot number")), + "original_expiration_date": to_date(r.get("Original Expiration Date when Packaged Lot was Added")), + "expiration_date": to_date(r.get("Expiration date")), + "received_date": to_date(r.get("Received Date")), + "receipt_user": to_str(r.get("Shipment Receipt User")), + "subject_identifier": to_str(r.get("Subject Identifier")), + "quantity_assigned": to_int(r.get("Quantity Assigned")), + "irt_transaction": to_str(r.get("IRT Transaction")), + "date_assigned": to_date(r.get("Date Assigned")), + "assignment_user": to_str(r.get("Assignment User")), + "dispensation_status": to_str(r.get("Dispensation Status")), + "dispensing_date": to_date(r.get("Dispensing date") or r.get("Dispensing Date")), + "quantity_dispensed": to_int(r.get("Quantity Dispensed")), + "dispensing_user": to_str(r.get("Dispensing User")), + "quantity_returned": to_int(r.get("Quantity Returned")), + "date_returned": to_date(r.get("Date Returned")), + "return_user": to_str(r.get("Return User")), + }) + by_id = {r["_id"]: r for r in rows} + return list(by_id.values()) + + +def parse_destruction_files(study): + dest_dir = os.path.join(BASE_DIR, f"xls_ip_destruction_{study}") + files = sorted(glob.glob(os.path.join(dest_dir, "ip_destruction_basket_*.xlsx"))) + rows = [] + for path in files: + raw = pd.read_excel(path, header=None) + meta = {} + header_row = None + for i, row in raw.iterrows(): + first = str(row.iloc[0]).strip() if pd.notna(row.iloc[0]) else "" + for key, attr in [ + ("Investigator Name:", "investigator"), + ("Site ID:", "site_id"), + ("Location:", "location"), + ("Basket ID:", "basket_id"), + ("Drug Destruction Created Date:", "destruction_date"), + ]: + if first.startswith(key): + meta[attr] = first.replace(key, "").strip() + if first == "Medication ID Description" and header_row is None: + header_row = i + if header_row is None: + continue + df = pd.read_excel(path, header=header_row).dropna(how="all") + basket_id = meta.get("basket_id") + for _, r in df.iterrows(): + med_id = to_str(r.get("Medication ID")) + if not med_id or not basket_id: + continue + rows.append({ + "_id": f"{basket_id}:{med_id}", + "study": study, + "site_id": meta.get("site_id"), + "investigator": meta.get("investigator"), + "location": meta.get("location"), + "basket_id": basket_id, + "destruction_date": to_date(meta.get("destruction_date")), + "medication_description": to_str(r.get("Medication ID Description")), + "medication_id": med_id, + "packaged_lot_description": to_str(r.get("Packaged Lot description")), + "comments": to_str(r.get("Comments")), + }) + by_id = {r["_id"]: r for r in rows} + return list(by_id.values()) + + +# ── hlavní import ──────────────────────────────────────────────────────────── + +def import_study(study): + print(f"\n [{study}] parsovani XLSX...") + shipments = parse_shipments_report(study) + items = parse_shipment_details(study) + inventory = parse_inventory(study) + destruct = parse_destruction_files(study) + print(f" Zasilky: {len(shipments)} | Polozky: {len(items)} | Sklad: {len(inventory)} | Destrukce: {len(destruct)}") + + import_id = log_import(study, f"drugs_{study}", "drugs", { + "shipments": len(shipments), + "shipment_items": len(items), + "inventory": len(inventory), + "destruction": len(destruct), + }) + print(f" import_id = {import_id}") + + bulk_upsert_with_snapshot("iwrs_shipments", "iwrs_shipments_snapshots", shipments, import_id) + bulk_upsert_with_snapshot("iwrs_shipment_items", "iwrs_shipment_items_snapshots", items, import_id) + bulk_upsert_with_snapshot("iwrs_inventory", "iwrs_inventory_snapshots", inventory, import_id) + bulk_upsert_only("iwrs_destruction", destruct, import_id) + + +def run(studies): + ensure_indexes() + for s in studies: + import_study(s) + + +if __name__ == "__main__": + studies = sys.argv[1:] if len(sys.argv) > 1 else ["77242113UCO3001", "42847922MDD3003"] + run(studies) diff --git a/IWRS/Drugs/output/2026-06-03 42847922MDD3003 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-06-03 42847922MDD3003 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..992ce3f Binary files /dev/null and b/IWRS/Drugs/output/2026-06-03 42847922MDD3003 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/output/2026-06-03 77242113UCO3001 CZ IWRS overview v1.xlsx b/IWRS/Drugs/output/2026-06-03 77242113UCO3001 CZ IWRS overview v1.xlsx new file mode 100644 index 0000000..b9aed45 Binary files /dev/null and b/IWRS/Drugs/output/2026-06-03 77242113UCO3001 CZ IWRS overview v1.xlsx differ diff --git a/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101245.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101245.xlsx new file mode 100644 index 0000000..101b585 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101245.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-06-03 42847922MDD3003 Subject Summary Report 0622.xlsx b/IWRS/Patients/IncomingSourceReports/2026-06-03 42847922MDD3003 Subject Summary Report 0622.xlsx new file mode 100644 index 0000000..d45767e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-06-03 42847922MDD3003 Subject Summary Report 0622.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-06-03 42847922MDD3003 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-06-03 42847922MDD3003 Subject Summary Report.xlsx new file mode 100644 index 0000000..728fb77 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-06-03 42847922MDD3003 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-06-03 77242113UCO3001 Subject Summary Report 0619.xlsx b/IWRS/Patients/IncomingSourceReports/2026-06-03 77242113UCO3001 Subject Summary Report 0619.xlsx new file mode 100644 index 0000000..9921f1c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-06-03 77242113UCO3001 Subject Summary Report 0619.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReports/2026-06-03 77242113UCO3001 Subject Summary Report.xlsx b/IWRS/Patients/IncomingSourceReports/2026-06-03 77242113UCO3001 Subject Summary Report.xlsx new file mode 100644 index 0000000..834bf42 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReports/2026-06-03 77242113UCO3001 Subject Summary Report.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040001 Subject Detail.xlsx new file mode 100644 index 0000000..5a680ab Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040002 Subject Detail.xlsx new file mode 100644 index 0000000..9fd7be4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040003 Subject Detail.xlsx new file mode 100644 index 0000000..f8971e0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040004 Subject Detail.xlsx new file mode 100644 index 0000000..206d09a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040005 Subject Detail.xlsx new file mode 100644 index 0000000..b42c8a8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040006 Subject Detail.xlsx new file mode 100644 index 0000000..1e69ebf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040007 Subject Detail.xlsx new file mode 100644 index 0000000..a2b2e0d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040008 Subject Detail.xlsx new file mode 100644 index 0000000..69133f2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040009 Subject Detail.xlsx new file mode 100644 index 0000000..77f992a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100040009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100050001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100050001 Subject Detail.xlsx new file mode 100644 index 0000000..1e4192d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100050001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100050002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100050002 Subject Detail.xlsx new file mode 100644 index 0000000..a68599f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100050002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080001 Subject Detail.xlsx new file mode 100644 index 0000000..57dc072 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080002 Subject Detail.xlsx new file mode 100644 index 0000000..adac1f2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080003 Subject Detail.xlsx new file mode 100644 index 0000000..5f2feee Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080004 Subject Detail.xlsx new file mode 100644 index 0000000..1ab59ef Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080005 Subject Detail.xlsx new file mode 100644 index 0000000..94dcefa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080006 Subject Detail.xlsx new file mode 100644 index 0000000..87ad473 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080007 Subject Detail.xlsx new file mode 100644 index 0000000..1aedc6d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100080007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110001 Subject Detail.xlsx new file mode 100644 index 0000000..6992ee8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110002 Subject Detail.xlsx new file mode 100644 index 0000000..fdb82be Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110003 Subject Detail.xlsx new file mode 100644 index 0000000..f7f2a1c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110004 Subject Detail.xlsx new file mode 100644 index 0000000..fa9ce2d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110005 Subject Detail.xlsx new file mode 100644 index 0000000..41944e0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110006 Subject Detail.xlsx new file mode 100644 index 0000000..b913bcc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110007 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110007 Subject Detail.xlsx new file mode 100644 index 0000000..12d9fa5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110007 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110008 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110008 Subject Detail.xlsx new file mode 100644 index 0000000..d98c967 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110008 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110009 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110009 Subject Detail.xlsx new file mode 100644 index 0000000..733c780 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110009 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110010 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110010 Subject Detail.xlsx new file mode 100644 index 0000000..d726af1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110010 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110011 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110011 Subject Detail.xlsx new file mode 100644 index 0000000..cff2cfa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110011 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110012 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110012 Subject Detail.xlsx new file mode 100644 index 0000000..2b4082c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100110012 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120001 Subject Detail.xlsx new file mode 100644 index 0000000..add4ecd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120002 Subject Detail.xlsx new file mode 100644 index 0000000..0ae3d78 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120003 Subject Detail.xlsx new file mode 100644 index 0000000..377783a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120004 Subject Detail.xlsx new file mode 100644 index 0000000..8a95bbc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120005 Subject Detail.xlsx new file mode 100644 index 0000000..718badf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120006 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120006 Subject Detail.xlsx new file mode 100644 index 0000000..a6893cb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-03 42847922MDD3003 CZ100120006 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008_pk6545.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008_pk6545.json new file mode 100644 index 0000000..e4c0590 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008_pk6545.json @@ -0,0 +1,10 @@ +{ + "pk": 6545, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been screened at site S10-CZ10008", + "event": "Screen", + "actual_date": "2025-08-05", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 04-Aug-2025 \n\nDate of Screening in IRT: 05-Aug-2025 \nTransaction Date/Time (site local): 05-Aug-2025 09:24:09\nTransaction Date/Time (system local): 05-Aug-2025 07:24:09\n\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008_pk6545.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008_pk6545.pdf new file mode 100644 index 0000000..cffd291 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_screened_at_site_S10-CZ10008_pk6545.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004_pk6760.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004_pk6760.json new file mode 100644 index 0000000..d4c9e47 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004_pk6760.json @@ -0,0 +1,10 @@ +{ + "pk": 6760, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2025-08-08", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 08-Aug-2025 \n\nDate of Screening in IRT: 08-Aug-2025 \nTransaction Date/Time (site local): 08-Aug-2025 09:39:48\nTransaction Date/Time (system local): 08-Aug-2025 07:39:48\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004_pk6760.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004_pk6760.pdf new file mode 100644 index 0000000..e459cd2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-08_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_screened_at_site_S10-CZ10004_pk6760.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk7427.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk7427.json new file mode 100644 index 0000000..72ddd50 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk7427.json @@ -0,0 +1,10 @@ +{ + "pk": 7427, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-08-26", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1019782\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 26-Aug-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1020699\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 26-Aug-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 26-Aug-2025 13:17:53\n\nTransaction Date/Time (system local): 26-Aug-2025 11:17:53 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk7427.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk7427.pdf new file mode 100644 index 0000000..7a5dc12 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk7427.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8785.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8785.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8785.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8785.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8785.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8785.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8785.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8785.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008_pk7426.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008_pk7426.json new file mode 100644 index 0000000..d2ea756 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008_pk7426.json @@ -0,0 +1,10 @@ +{ + "pk": 7426, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 randomized into Part 1 at site S10-CZ10008", + "event": "Rand", + "actual_date": "2025-08-26", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1019782Seltorexant 20mg or placeboT38028505-Apr-20261020699Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 26-Aug-2025 13:03:37\nTransaction Date/Time (system local): 26-Aug-2025 11:03:37\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008_pk7426.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008_pk7426.pdf new file mode 100644 index 0000000..2a98a4a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_1_at_site_S10-CZ10008_pk7426.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008_pk7414.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008_pk7414.json new file mode 100644 index 0000000..5109d91 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008_pk7414.json @@ -0,0 +1,10 @@ +{ + "pk": 7414, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100080004 has been screened at site S10-CZ10008", + "event": "Screen", + "actual_date": "2025-08-26", + "subject": "CZ100080004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080004 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080004 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 25-Aug-2025 \n\nDate of Screening in IRT: 26-Aug-2025 \nTransaction Date/Time (site local): 26-Aug-2025 09:33:38\nTransaction Date/Time (system local): 26-Aug-2025 07:33:38\n\nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008_pk7414.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008_pk7414.pdf new file mode 100644 index 0000000..e90168a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-08-26_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_screened_at_site_S10-CZ10008_pk7414.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012_pk7772.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012_pk7772.json new file mode 100644 index 0000000..b479fab --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012_pk7772.json @@ -0,0 +1,10 @@ +{ + "pk": 7772, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100120002 has been screened at site S10-CZ10012", + "event": "Screen", + "actual_date": "2025-09-03", + "subject": "CZ100120002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120002 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120002 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 03-Sep-2025 \n\nDate of Screening in IRT: 03-Sep-2025 \nTransaction Date/Time (site local): 03-Sep-2025 13:44:09\nTransaction Date/Time (system local): 03-Sep-2025 11:44:09\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012_pk7772.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012_pk7772.pdf new file mode 100644 index 0000000..c67dab1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-03_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screened_at_site_S10-CZ10012_pk7772.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004_pk7946.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004_pk7946.json new file mode 100644 index 0000000..76cc0ef --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004_pk7946.json @@ -0,0 +1,10 @@ +{ + "pk": 7946, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 randomized into Part 1 at site S10-CZ10004", + "event": "Rand", + "actual_date": "2025-09-05", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1109895Seltorexant 20mg or placeboT38028505-Apr-20261125335Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 05-Sep-2025 10:23:26\nTransaction Date/Time (system local): 05-Sep-2025 08:23:26\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004_pk7946.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004_pk7946.pdf new file mode 100644 index 0000000..89628df Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-05_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_1_at_site_S10-CZ10004_pk7946.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8056.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8056.json new file mode 100644 index 0000000..25a056b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8056.json @@ -0,0 +1,10 @@ +{ + "pk": 8056, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-09-09", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1043808\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 09-Sep-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1056387\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 09-Sep-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 09-Sep-2025 12:10:27\n\nTransaction Date/Time (system local): 09-Sep-2025 10:10:27 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8056.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8056.pdf new file mode 100644 index 0000000..f70c0b3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8056.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9416.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9416.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9416.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9416.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9416.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9416.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9416.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9416.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk8055.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk8055.json new file mode 100644 index 0000000..18bd72a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk8055.json @@ -0,0 +1,10 @@ +{ + "pk": 8055, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10008", + "event": "DB_P1_V6", + "actual_date": "2025-09-09", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1043808Seltorexant 20mg or placeboT38028505-Apr-20261056387Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 09-Sep-2025 12:09:34 \nTransaction Date/Time (system local): 09-Sep-2025 10:09:34 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk8055.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk8055.pdf new file mode 100644 index 0000000..d1ca828 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-09_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk8055.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008_pk8124.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008_pk8124.json new file mode 100644 index 0000000..e7627ff --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008_pk8124.json @@ -0,0 +1,10 @@ +{ + "pk": 8124, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has been screened at site S10-CZ10008", + "event": "Screen", + "actual_date": "2025-09-10", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080005 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 09-Sep-2025 \n\nDate of Screening in IRT: 10-Sep-2025 \nTransaction Date/Time (site local): 10-Sep-2025 10:44:50\nTransaction Date/Time (system local): 10-Sep-2025 08:44:50\n\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008_pk8124.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008_pk8124.pdf new file mode 100644 index 0000000..3888b28 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-10_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_screened_at_site_S10-CZ10008_pk8124.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8351.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8351.json new file mode 100644 index 0000000..469c11c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8351.json @@ -0,0 +1,10 @@ +{ + "pk": 8351, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080004 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-09-16", + "subject": "CZ100080004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1076269\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 16-Sep-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1094935\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 16-Sep-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 16-Sep-2025 12:54:42\n\nTransaction Date/Time (system local): 16-Sep-2025 10:54:42 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8351.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8351.pdf new file mode 100644 index 0000000..f1173ac Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk8351.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008_pk8350.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008_pk8350.json new file mode 100644 index 0000000..b232246 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008_pk8350.json @@ -0,0 +1,10 @@ +{ + "pk": 8350, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100080004 randomized into Part 1 at site S10-CZ10008", + "event": "Rand", + "actual_date": "2025-09-16", + "subject": "CZ100080004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080004 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1076269Seltorexant 20mg or placeboT38028505-Apr-20261094935Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 16-Sep-2025 12:53:29\nTransaction Date/Time (system local): 16-Sep-2025 10:53:29\nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008_pk8350.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008_pk8350.pdf new file mode 100644 index 0000000..8872116 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080004_randomized_into_Part_1_at_site_S10-CZ10008_pk8350.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008_pk8335.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008_pk8335.json new file mode 100644 index 0000000..b7b12ba --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008_pk8335.json @@ -0,0 +1,10 @@ +{ + "pk": 8335, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been screened at site S10-CZ10008", + "event": "Screen", + "actual_date": "2025-09-16", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 15-Sep-2025 \n\nDate of Screening in IRT: 16-Sep-2025 \nTransaction Date/Time (site local): 16-Sep-2025 09:14:53\nTransaction Date/Time (system local): 16-Sep-2025 07:14:53\n\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008_pk8335.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008_pk8335.pdf new file mode 100644 index 0000000..27c925e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-16_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_screened_at_site_S10-CZ10008_pk8335.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk8636.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk8636.json new file mode 100644 index 0000000..2a69eaf --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk8636.json @@ -0,0 +1,10 @@ +{ + "pk": 8636, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10004", + "event": "DB_P1_V6", + "actual_date": "2025-09-19", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1077721Seltorexant 20mg or placeboT38028505-Apr-20261173637Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 19-Sep-2025 11:44:36 \nTransaction Date/Time (system local): 19-Sep-2025 09:44:36 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk8636.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk8636.pdf new file mode 100644 index 0000000..63d5887 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-19_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk8636.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk8681.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk8681.json new file mode 100644 index 0000000..ed8eac0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk8681.json @@ -0,0 +1,10 @@ +{ + "pk": 8681, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-09-22", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040001 has\nbeen performed for the following medication IDs:\n\nMedication No: 1077721\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 19-Sep-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1173637\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 19-Sep-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1109895\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-Sep-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1125335\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-Sep-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040001 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Sep-2025 09:50:51\n\nTransaction Date/Time (system local): 22-Sep-2025 07:50:51 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk8681.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk8681.pdf new file mode 100644 index 0000000..c214089 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk8681.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk9348.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk9348.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk9348.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk9348.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk9348.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk9348.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk9348.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk9348.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk8682.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk8682.json new file mode 100644 index 0000000..9c7f00c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk8682.json @@ -0,0 +1,10 @@ +{ + "pk": 8682, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2025-09-22", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040001 has been performed.\nMedication ID: 1109895\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1125335\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Sep-2025 09:51:59 \nTransaction Date/Time (system local): 22-Sep-2025 07:51:59 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk8682.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk8682.pdf new file mode 100644 index 0000000..cf8b2ae Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk8682.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk9349.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk9349.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk9349.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk9349.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk9349.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk9349.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk9349.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-22_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk9349.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk8783.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk8783.json new file mode 100644 index 0000000..84e455d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk8783.json @@ -0,0 +1,10 @@ +{ + "pk": 8783, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 Rolled Over from Part 1 into Part 2 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2025-09-23", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 23-Sep-2025 11:15:47\nTransaction Date/Time (system local): 23-Sep-2025 09:15:47\n\nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk8783.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk8783.pdf new file mode 100644 index 0000000..8d689c1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk8783.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk8784.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk8784.json new file mode 100644 index 0000000..29f097f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk8784.json @@ -0,0 +1,10 @@ +{ + "pk": 8784, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2025-09-23", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1003030Seltorexant 20mg or placeboT38028505-Apr-20261186247Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 23-Sep-2025 11:15:45 \nTransaction Date/Time (system local): 23-Sep-2025 09:15:45 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk8784.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk8784.pdf new file mode 100644 index 0000000..34c8915 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-23_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk8784.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011.json new file mode 100644 index 0000000..7851cf1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 8952, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2025-09-26", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 26-Sep-2025 \n\nDate of Screening in IRT: 26-Sep-2025 \nTransaction Date/Time (site local): 26-Sep-2025 09:24:26\nTransaction Date/Time (system local): 26-Sep-2025 07:24:26\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..fef3258 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011_pk8952.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011_pk8952.json new file mode 100644 index 0000000..7851cf1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011_pk8952.json @@ -0,0 +1,10 @@ +{ + "pk": 8952, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2025-09-26", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 26-Sep-2025 \n\nDate of Screening in IRT: 26-Sep-2025 \nTransaction Date/Time (site local): 26-Sep-2025 09:24:26\nTransaction Date/Time (system local): 26-Sep-2025 07:24:26\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011_pk8952.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011_pk8952.pdf new file mode 100644 index 0000000..d41ddfc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-26_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_screened_at_site_S10-CZ10011_pk8952.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012_pk9146.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012_pk9146.json new file mode 100644 index 0000000..8d42564 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012_pk9146.json @@ -0,0 +1,10 @@ +{ + "pk": 9146, + "title": "Screenfail", + "label": "Janssen 42847922MDD3003 Subject CZ100120002 has been screen failed at site S10-CZ10012", + "event": "uv_screen_fail", + "actual_date": "2025-09-29", + "subject": "CZ100120002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120002 \nIRT Subject Status: Screen Failed \n\nScreenfail Date: 29-Sep-2025\nTransaction Date/Time (site local): 01-Oct-2025 12:24:16\nTransaction Date/Time (system local): 01-Oct-2025 10:24:16\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012_pk9146.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012_pk9146.pdf new file mode 100644 index 0000000..38c662e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-29_Janssen_42847922MDD3003_Subject_CZ100120002_has_been_screen_failed_at_site_S10-CZ10012_pk9146.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9092.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9092.json new file mode 100644 index 0000000..bd8b5a0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9092.json @@ -0,0 +1,10 @@ +{ + "pk": 9092, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080004 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-09-30", + "subject": "CZ100080004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1113623\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 30-Sep-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1192373\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 30-Sep-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 30-Sep-2025 11:23:38\n\nTransaction Date/Time (system local): 30-Sep-2025 09:23:38 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9092.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9092.pdf new file mode 100644 index 0000000..76db2cd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9092.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk9091.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk9091.json new file mode 100644 index 0000000..d1f2438 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk9091.json @@ -0,0 +1,10 @@ +{ + "pk": 9091, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080004 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10008", + "event": "DB_P1_V6", + "actual_date": "2025-09-30", + "subject": "CZ100080004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080004 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1113623Seltorexant 20mg or placeboT38028505-Apr-20261192373Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 30-Sep-2025 11:22:42 \nTransaction Date/Time (system local): 30-Sep-2025 09:22:42 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk9091.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk9091.pdf new file mode 100644 index 0000000..5a6fb5a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-09-30_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk9091.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012_pk9144.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012_pk9144.json new file mode 100644 index 0000000..754448a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012_pk9144.json @@ -0,0 +1,10 @@ +{ + "pk": 9144, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100120003 has been screened at site S10-CZ10012", + "event": "Screen", + "actual_date": "2025-10-01", + "subject": "CZ100120003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120003 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120003 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 01-Oct-2025 \n\nDate of Screening in IRT: 01-Oct-2025 \nTransaction Date/Time (site local): 01-Oct-2025 12:11:44\nTransaction Date/Time (system local): 01-Oct-2025 10:11:44\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012_pk9144.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012_pk9144.pdf new file mode 100644 index 0000000..7647dd0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screened_at_site_S10-CZ10012_pk9144.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012.json new file mode 100644 index 0000000..31743c9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 9145, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been screened at site S10-CZ10012", + "event": "Screen", + "actual_date": "2025-10-01", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 01-Oct-2025 \n\nDate of Screening in IRT: 01-Oct-2025 \nTransaction Date/Time (site local): 01-Oct-2025 12:22:57\nTransaction Date/Time (system local): 01-Oct-2025 10:22:57\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..a6959ec Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012_pk9145.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012_pk9145.json new file mode 100644 index 0000000..31743c9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012_pk9145.json @@ -0,0 +1,10 @@ +{ + "pk": 9145, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been screened at site S10-CZ10012", + "event": "Screen", + "actual_date": "2025-10-01", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 01-Oct-2025 \n\nDate of Screening in IRT: 01-Oct-2025 \nTransaction Date/Time (site local): 01-Oct-2025 12:22:57\nTransaction Date/Time (system local): 01-Oct-2025 10:22:57\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012_pk9145.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012_pk9145.pdf new file mode 100644 index 0000000..4a802cf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_screened_at_site_S10-CZ10012_pk9145.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk9285.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk9285.json new file mode 100644 index 0000000..ddb85d2 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk9285.json @@ -0,0 +1,10 @@ +{ + "pk": 9285, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 Rolled Over from Part 1 into Part 2 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2025-10-03", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 03-Oct-2025 13:17:58\nTransaction Date/Time (system local): 03-Oct-2025 11:17:58\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk9285.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk9285.pdf new file mode 100644 index 0000000..276d0eb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk9285.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk9286.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk9286.json new file mode 100644 index 0000000..7d3a2ec --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk9286.json @@ -0,0 +1,10 @@ +{ + "pk": 9286, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2025-10-03", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1033211Seltorexant 20mg or placeboT38028505-Apr-20261183601Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 03-Oct-2025 13:17:57 \nTransaction Date/Time (system local): 03-Oct-2025 11:17:57 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk9286.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk9286.pdf new file mode 100644 index 0000000..8f95497 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk9286.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011_pk9272.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011_pk9272.json new file mode 100644 index 0000000..99f20ee --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011_pk9272.json @@ -0,0 +1,10 @@ +{ + "pk": 9272, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110004 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2025-10-03", + "subject": "CZ100110004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110004 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110004 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 03-Oct-2025 \n\nDate of Screening in IRT: 03-Oct-2025 \nTransaction Date/Time (site local): 03-Oct-2025 09:57:26\nTransaction Date/Time (system local): 03-Oct-2025 07:57:26\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011_pk9272.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011_pk9272.pdf new file mode 100644 index 0000000..9e18295 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-03_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screened_at_site_S10-CZ10011_pk9272.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk9415.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk9415.json new file mode 100644 index 0000000..feb1f82 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk9415.json @@ -0,0 +1,10 @@ +{ + "pk": 9415, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10008", + "event": "OL_Ind_V1_1", + "actual_date": "2025-10-07", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1206881Seltorexant 20mgT37484802-May-20261299156Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 07-Oct-2025 12:02:51 \nTransaction Date/Time (system local): 07-Oct-2025 10:02:51 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk9415.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk9415.pdf new file mode 100644 index 0000000..2962bc8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk9415.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11269.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11269.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11269.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11269.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11269.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11269.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11269.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11269.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9513.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9513.json new file mode 100644 index 0000000..fdd7cac --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9513.json @@ -0,0 +1,10 @@ +{ + "pk": 9513, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-10-08", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1123910\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 08-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1148249\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 08-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 08-Oct-2025 13:01:35\n\nTransaction Date/Time (system local): 08-Oct-2025 11:01:35 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9513.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9513.pdf new file mode 100644 index 0000000..55240e0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk9513.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008_pk9511.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008_pk9511.json new file mode 100644 index 0000000..3f44782 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008_pk9511.json @@ -0,0 +1,10 @@ +{ + "pk": 9511, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 randomized into Part 1 at site S10-CZ10008", + "event": "Rand", + "actual_date": "2025-10-08", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080005 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1123910Seltorexant 20mg or placeboT38028505-Apr-20261148249Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 08-Oct-2025 11:41:30\nTransaction Date/Time (system local): 08-Oct-2025 09:41:30\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008_pk9511.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008_pk9511.pdf new file mode 100644 index 0000000..bad978b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-08_Janssen_42847922MDD3003_Subject_CZ100080005_randomized_into_Part_1_at_site_S10-CZ10008_pk9511.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004.json new file mode 100644 index 0000000..a3451c0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 9644, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2025-10-10", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 10-Oct-2025 \n\nDate of Screening in IRT: 10-Oct-2025 \nTransaction Date/Time (site local): 10-Oct-2025 08:46:18\nTransaction Date/Time (system local): 10-Oct-2025 06:46:18\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..cb49b42 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004_pk9644.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004_pk9644.json new file mode 100644 index 0000000..a3451c0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004_pk9644.json @@ -0,0 +1,10 @@ +{ + "pk": 9644, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2025-10-10", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 10-Oct-2025 \n\nDate of Screening in IRT: 10-Oct-2025 \nTransaction Date/Time (site local): 10-Oct-2025 08:46:18\nTransaction Date/Time (system local): 10-Oct-2025 06:46:18\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004_pk9644.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004_pk9644.pdf new file mode 100644 index 0000000..99d257c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-10_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_screened_at_site_S10-CZ10004_pk9644.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk9821.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk9821.json new file mode 100644 index 0000000..aa794b2 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk9821.json @@ -0,0 +1,10 @@ +{ + "pk": 9821, + "title": "Discontinue", + "label": "Janssen 42847922MDD3003 Subject CZ100080004 has been discontinued from IRT managed treatment at site S10-CZ10008", + "event": "uv_discontinue", + "actual_date": "2025-10-14", + "subject": "CZ100080004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Subject CZ100080004 has been Discontinued from IRT Managed Treatment.\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080004 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nDiscontinuation date: 14-Oct-2025 \nTransaction Date/Time (site local): 15-Oct-2025 14:56:51\nTransaction Date/Time (system local): 15-Oct-2025 12:56:51\nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk9821.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk9821.pdf new file mode 100644 index 0000000..7b87df0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-14_Janssen_42847922MDD3003_Subject_CZ100080004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk9821.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk9967.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk9967.json new file mode 100644 index 0000000..ed01dbb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk9967.json @@ -0,0 +1,10 @@ +{ + "pk": 9967, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2025-10-17", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1284494Seltorexant 20mgT37484802-May-20261297594Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 17-Oct-2025 12:00:57 \nTransaction Date/Time (system local): 17-Oct-2025 10:00:57 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk9967.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk9967.pdf new file mode 100644 index 0000000..35341f1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk9967.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011_pk10680.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011_pk10680.json new file mode 100644 index 0000000..f0611d6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011_pk10680.json @@ -0,0 +1,10 @@ +{ + "pk": 10680, + "title": "Screenfail", + "label": "Janssen 42847922MDD3003 Subject CZ100110004 has been screen failed at site S10-CZ10011", + "event": "uv_screen_fail", + "actual_date": "2025-10-17", + "subject": "CZ100110004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110004 \nIRT Subject Status: Screen Failed \n\nScreenfail Date: 17-Oct-2025\nTransaction Date/Time (site local): 31-Oct-2025 08:27:45\nTransaction Date/Time (system local): 31-Oct-2025 07:27:45\nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011_pk10680.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011_pk10680.pdf new file mode 100644 index 0000000..a930bb5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-17_Janssen_42847922MDD3003_Subject_CZ100110004_has_been_screen_failed_at_site_S10-CZ10011_pk10680.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10013.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10013.json new file mode 100644 index 0000000..fff8913 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10013.json @@ -0,0 +1,10 @@ +{ + "pk": 10013, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-10-20", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040001 has\nbeen performed for the following medication IDs:\n\nMedication No: 1284494\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 17-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1297594\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 17-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040001 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Oct-2025 08:35:08\n\nTransaction Date/Time (system local): 20-Oct-2025 06:35:08 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10013.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10013.pdf new file mode 100644 index 0000000..22acaf0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10013.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10012.json new file mode 100644 index 0000000..4ef84aa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10012.json @@ -0,0 +1,10 @@ +{ + "pk": 10012, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2025-10-20", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040001 has been performed.\nMedication ID: 1033211\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1183601\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Oct-2025 08:33:59 \nTransaction Date/Time (system local): 20-Oct-2025 06:33:59 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10012.pdf new file mode 100644 index 0000000..d8e64d0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-20_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk10103.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk10103.json new file mode 100644 index 0000000..f2b9ec1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk10103.json @@ -0,0 +1,10 @@ +{ + "pk": 10103, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10008", + "event": "OL_Ind_V1_4", + "actual_date": "2025-10-21", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1263293Seltorexant 20mgT37484802-May-20261284662Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 21-Oct-2025 11:10:07 \nTransaction Date/Time (system local): 21-Oct-2025 09:10:07 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk10103.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk10103.pdf new file mode 100644 index 0000000..7756356 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-21_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk10103.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10195.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10195.json new file mode 100644 index 0000000..f12ddde --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10195.json @@ -0,0 +1,10 @@ +{ + "pk": 10195, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-10-22", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1017229\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1018200\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Oct-2025 10:53:58\n\nTransaction Date/Time (system local): 22-Oct-2025 08:53:58 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10195.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10195.pdf new file mode 100644 index 0000000..dae3c85 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10195.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11621.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11621.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11621.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11621.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11621.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11621.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11621.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11621.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk10194.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk10194.json new file mode 100644 index 0000000..0e89dd6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk10194.json @@ -0,0 +1,10 @@ +{ + "pk": 10194, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10008", + "event": "DB_P1_V6", + "actual_date": "2025-10-22", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080005 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1017229Seltorexant 20mg or placeboT38028505-Apr-20261018200Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Oct-2025 10:52:42 \nTransaction Date/Time (system local): 22-Oct-2025 08:52:42 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk10194.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk10194.pdf new file mode 100644 index 0000000..4a875ec Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk10194.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011.json new file mode 100644 index 0000000..4e07f75 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 10196, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 randomized into Part 1 at site S10-CZ10011", + "event": "Rand", + "actual_date": "2025-10-22", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1070087Seltorexant 20mg or placeboT38028505-Apr-20261076361Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Oct-2025 10:58:22\nTransaction Date/Time (system local): 22-Oct-2025 08:58:22\nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..f636610 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011_pk10196.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011_pk10196.json new file mode 100644 index 0000000..4e07f75 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011_pk10196.json @@ -0,0 +1,10 @@ +{ + "pk": 10196, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 randomized into Part 1 at site S10-CZ10011", + "event": "Rand", + "actual_date": "2025-10-22", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1070087Seltorexant 20mg or placeboT38028505-Apr-20261076361Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Oct-2025 10:58:22\nTransaction Date/Time (system local): 22-Oct-2025 08:58:22\nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011_pk10196.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011_pk10196.pdf new file mode 100644 index 0000000..0f15634 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_1_at_site_S10-CZ10011_pk10196.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012.json new file mode 100644 index 0000000..b91e7e4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 10202, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 randomized into Part 1 at site S10-CZ10012", + "event": "Rand", + "actual_date": "2025-10-22", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1070318Seltorexant 20mg or placeboT38028505-Apr-20261140998Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Oct-2025 11:56:50\nTransaction Date/Time (system local): 22-Oct-2025 09:56:50\nTransaction performed by: yooma.kadlec@gmail.com\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..15668b2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012_pk10202.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012_pk10202.json new file mode 100644 index 0000000..b91e7e4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012_pk10202.json @@ -0,0 +1,10 @@ +{ + "pk": 10202, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 randomized into Part 1 at site S10-CZ10012", + "event": "Rand", + "actual_date": "2025-10-22", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1070318Seltorexant 20mg or placeboT38028505-Apr-20261140998Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Oct-2025 11:56:50\nTransaction Date/Time (system local): 22-Oct-2025 09:56:50\nTransaction performed by: yooma.kadlec@gmail.com\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012_pk10202.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012_pk10202.pdf new file mode 100644 index 0000000..363bb39 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-22_Janssen_42847922MDD3003_Subject_CZ100120004_randomized_into_Part_1_at_site_S10-CZ10012_pk10202.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10363.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10363.json new file mode 100644 index 0000000..2065c82 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10363.json @@ -0,0 +1,10 @@ +{ + "pk": 10363, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-10-24", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1263293\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 21-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1284662\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 21-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Oct-2025 14:49:04\n\nTransaction Date/Time (system local): 24-Oct-2025 12:49:04 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10363.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10363.pdf new file mode 100644 index 0000000..4a62a48 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-24_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10363.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10530.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10530.json new file mode 100644 index 0000000..a24ba40 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10530.json @@ -0,0 +1,10 @@ +{ + "pk": 10530, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-10-29", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1032775\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 29-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1038889\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 29-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 29-Oct-2025 10:22:00\n\nTransaction Date/Time (system local): 29-Oct-2025 09:22:00 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10530.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10530.pdf new file mode 100644 index 0000000..c59b520 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10530.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12065.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12065.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12065.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12065.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12065.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12065.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12065.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12065.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008_pk10529.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008_pk10529.json new file mode 100644 index 0000000..2a23b52 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008_pk10529.json @@ -0,0 +1,10 @@ +{ + "pk": 10529, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 randomized into Part 1 at site S10-CZ10008", + "event": "Rand", + "actual_date": "2025-10-29", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1032775Seltorexant 20mg or placeboT38028505-Apr-20261038889Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 29-Oct-2025 10:20:55\nTransaction Date/Time (system local): 29-Oct-2025 09:20:55\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008_pk10529.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008_pk10529.pdf new file mode 100644 index 0000000..3bb170b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-29_Janssen_42847922MDD3003_Subject_CZ100080006_randomized_into_Part_1_at_site_S10-CZ10008_pk10529.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk10688.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk10688.json new file mode 100644 index 0000000..cc1c9d8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk10688.json @@ -0,0 +1,10 @@ +{ + "pk": 10688, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2025-10-31", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1222097Seltorexant 20mgT37484802-May-20261267690Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 31-Oct-2025 10:21:22 \nTransaction Date/Time (system local): 31-Oct-2025 09:21:22 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk10688.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk10688.pdf new file mode 100644 index 0000000..6be5f90 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-10-31_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk10688.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10740.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10740.json new file mode 100644 index 0000000..7cbb0ab --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10740.json @@ -0,0 +1,10 @@ +{ + "pk": 10740, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-11-03", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040001 has\nbeen performed for the following medication IDs:\n\nMedication No: 1222097\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 31-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1267690\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 31-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040001 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 03-Nov-2025 08:56:53\n\nTransaction Date/Time (system local): 03-Nov-2025 07:56:53 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10740.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10740.pdf new file mode 100644 index 0000000..4ed6b17 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk10740.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10739.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10739.json new file mode 100644 index 0000000..e924575 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10739.json @@ -0,0 +1,10 @@ +{ + "pk": 10739, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2025-11-03", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040001 has been performed.\nMedication ID: 1284494\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1297594\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 03-Nov-2025 08:56:15 \nTransaction Date/Time (system local): 03-Nov-2025 07:56:15 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10739.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10739.pdf new file mode 100644 index 0000000..6e0be78 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk10739.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005.json new file mode 100644 index 0000000..0b147f9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005.json @@ -0,0 +1,10 @@ +{ + "pk": 10759, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100050002 has been screened at site S10-CZ10005", + "event": "Screen", + "actual_date": "2025-11-03", + "subject": "CZ100050002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100050002 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10005 \nInvestigator: Janů, Luboš \n\n \nSubject Details \nSubject: CZ100050002 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 03-Nov-2025 \n\nDate of Screening in IRT: 03-Nov-2025 \nTransaction Date/Time (site local): 03-Nov-2025 11:50:32\nTransaction Date/Time (system local): 03-Nov-2025 10:50:32\n\nTransaction performed by: spinkova@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005.pdf new file mode 100644 index 0000000..3a9ef41 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005_pk10759.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005_pk10759.json new file mode 100644 index 0000000..0b147f9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005_pk10759.json @@ -0,0 +1,10 @@ +{ + "pk": 10759, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100050002 has been screened at site S10-CZ10005", + "event": "Screen", + "actual_date": "2025-11-03", + "subject": "CZ100050002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100050002 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10005 \nInvestigator: Janů, Luboš \n\n \nSubject Details \nSubject: CZ100050002 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 03-Nov-2025 \n\nDate of Screening in IRT: 03-Nov-2025 \nTransaction Date/Time (site local): 03-Nov-2025 11:50:32\nTransaction Date/Time (system local): 03-Nov-2025 10:50:32\n\nTransaction performed by: spinkova@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005_pk10759.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005_pk10759.pdf new file mode 100644 index 0000000..4c69b75 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screened_at_site_S10-CZ10005_pk10759.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011_pk10748.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011_pk10748.json new file mode 100644 index 0000000..2388b27 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011_pk10748.json @@ -0,0 +1,10 @@ +{ + "pk": 10748, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110005 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2025-11-03", + "subject": "CZ100110005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110005 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110005 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 03-Nov-2025 \n\nDate of Screening in IRT: 03-Nov-2025 \nTransaction Date/Time (site local): 03-Nov-2025 09:39:17\nTransaction Date/Time (system local): 03-Nov-2025 08:39:17\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011_pk10748.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011_pk10748.pdf new file mode 100644 index 0000000..179ba76 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-03_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screened_at_site_S10-CZ10011_pk10748.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10834.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10834.json new file mode 100644 index 0000000..c3ff974 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10834.json @@ -0,0 +1,10 @@ +{ + "pk": 10834, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-11-04", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1247490\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 04-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1268140\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 04-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 04-Nov-2025 12:15:05\n\nTransaction Date/Time (system local): 04-Nov-2025 11:15:05 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10834.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10834.pdf new file mode 100644 index 0000000..fe0d3f4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk10834.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk10833.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk10833.json new file mode 100644 index 0000000..2bb673d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk10833.json @@ -0,0 +1,10 @@ +{ + "pk": 10833, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10008", + "event": "OL_Ind_V1_5", + "actual_date": "2025-11-04", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080002 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1247490\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1268140\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080002 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 04-Nov-2025 12:13:44 \n\r\n Transaction Date/Time (system local): 04-Nov-2025 11:13:44 \n\r\n Transaction performed by: m.deif@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk10833.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk10833.pdf new file mode 100644 index 0000000..d3e30df Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk10833.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011_pk10827.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011_pk10827.json new file mode 100644 index 0000000..2de5d68 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011_pk10827.json @@ -0,0 +1,10 @@ +{ + "pk": 10827, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2025-11-04", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 04-Nov-2025 \n\nDate of Screening in IRT: 04-Nov-2025 \nTransaction Date/Time (site local): 04-Nov-2025 09:21:32\nTransaction Date/Time (system local): 04-Nov-2025 08:21:32\n\nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011_pk10827.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011_pk10827.pdf new file mode 100644 index 0000000..3a57948 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-04_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_screened_at_site_S10-CZ10011_pk10827.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json new file mode 100644 index 0000000..b16f73c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 10989, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10011", + "event": "DB_P1_V6", + "actual_date": "2025-11-06", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1012454Seltorexant 20mg or placeboT38028505-Apr-20261035161Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 06-Nov-2025 11:26:25 \nTransaction Date/Time (system local): 06-Nov-2025 10:26:25 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..fd2c0ae Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk10989.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk10989.json new file mode 100644 index 0000000..b16f73c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk10989.json @@ -0,0 +1,10 @@ +{ + "pk": 10989, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10011", + "event": "DB_P1_V6", + "actual_date": "2025-11-06", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1012454Seltorexant 20mg or placeboT38028505-Apr-20261035161Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 06-Nov-2025 11:26:25 \nTransaction Date/Time (system local): 06-Nov-2025 10:26:25 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk10989.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk10989.pdf new file mode 100644 index 0000000..0730c90 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk10989.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012_pk10992.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012_pk10992.json new file mode 100644 index 0000000..012e098 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012_pk10992.json @@ -0,0 +1,10 @@ +{ + "pk": 10992, + "title": "Screenfail", + "label": "Janssen 42847922MDD3003 Subject CZ100120003 has been screen failed at site S10-CZ10012", + "event": "uv_screen_fail", + "actual_date": "2025-11-06", + "subject": "CZ100120003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120003 \nIRT Subject Status: Screen Failed \n\nScreenfail Date: 06-Nov-2025\nTransaction Date/Time (site local): 06-Nov-2025 13:03:37\nTransaction Date/Time (system local): 06-Nov-2025 12:03:37\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012_pk10992.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012_pk10992.pdf new file mode 100644 index 0000000..e52678a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120003_has_been_screen_failed_at_site_S10-CZ10012_pk10992.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.json new file mode 100644 index 0000000..8dc00fa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 10990, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10012", + "event": "DB_P1_V6", + "actual_date": "2025-11-06", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1049726Seltorexant 20mg or placeboT38028505-Apr-20261058566Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 06-Nov-2025 11:57:30 \nTransaction Date/Time (system local): 06-Nov-2025 10:57:30 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..7820230 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk10990.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk10990.json new file mode 100644 index 0000000..8dc00fa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk10990.json @@ -0,0 +1,10 @@ +{ + "pk": 10990, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10012", + "event": "DB_P1_V6", + "actual_date": "2025-11-06", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1049726Seltorexant 20mg or placeboT38028505-Apr-20261058566Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 06-Nov-2025 11:57:30 \nTransaction Date/Time (system local): 06-Nov-2025 10:57:30 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk10990.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk10990.pdf new file mode 100644 index 0000000..92efffc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk10990.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004.json new file mode 100644 index 0000000..b97d644 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 11062, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 randomized into Part 1 at site S10-CZ10004", + "event": "Rand", + "actual_date": "2025-11-07", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1015615Seltorexant 20mg or placeboT38028505-Apr-20261184135Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Nov-2025 11:10:48\nTransaction Date/Time (system local): 07-Nov-2025 10:10:48\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..67d7e09 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004_pk11062.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004_pk11062.json new file mode 100644 index 0000000..b97d644 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004_pk11062.json @@ -0,0 +1,10 @@ +{ + "pk": 11062, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 randomized into Part 1 at site S10-CZ10004", + "event": "Rand", + "actual_date": "2025-11-07", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1015615Seltorexant 20mg or placeboT38028505-Apr-20261184135Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Nov-2025 11:10:48\nTransaction Date/Time (system local): 07-Nov-2025 10:10:48\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004_pk11062.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004_pk11062.pdf new file mode 100644 index 0000000..33008bf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_1_at_site_S10-CZ10004_pk11062.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004.json new file mode 100644 index 0000000..d5813f5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 11054, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2025-11-07", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 07-Nov-2025 \n\nDate of Screening in IRT: 07-Nov-2025 \nTransaction Date/Time (site local): 07-Nov-2025 07:46:59\nTransaction Date/Time (system local): 07-Nov-2025 06:46:59\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..0bc0bff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004_pk11054.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004_pk11054.json new file mode 100644 index 0000000..d5813f5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004_pk11054.json @@ -0,0 +1,10 @@ +{ + "pk": 11054, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2025-11-07", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 07-Nov-2025 \n\nDate of Screening in IRT: 07-Nov-2025 \nTransaction Date/Time (site local): 07-Nov-2025 07:46:59\nTransaction Date/Time (system local): 07-Nov-2025 06:46:59\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004_pk11054.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004_pk11054.pdf new file mode 100644 index 0000000..8b94188 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_screened_at_site_S10-CZ10004_pk11054.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..78eedd1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 11180, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-11-11", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1047871\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 11-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1121977\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 11-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 11-Nov-2025 11:11:48\n\nTransaction Date/Time (system local): 11-Nov-2025 10:11:48 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..1b2afe8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11180.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11180.json new file mode 100644 index 0000000..78eedd1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11180.json @@ -0,0 +1,10 @@ +{ + "pk": 11180, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-11-11", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1047871\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 11-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1121977\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 11-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 11-Nov-2025 11:11:48\n\nTransaction Date/Time (system local): 11-Nov-2025 10:11:48 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11180.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11180.pdf new file mode 100644 index 0000000..2e973fc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11180.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12802.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12802.json new file mode 100644 index 0000000..800acce --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12802.json @@ -0,0 +1,10 @@ +{ + "pk": 12802, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-11-11", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1241048\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 09-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1214253\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 09-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 09-Dec-2025 11:46:14\n\nTransaction Date/Time (system local): 09-Dec-2025 10:46:14 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12802.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12802.pdf new file mode 100644 index 0000000..06347a6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12802.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk11179.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk11179.json new file mode 100644 index 0000000..5d22355 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk11179.json @@ -0,0 +1,10 @@ +{ + "pk": 11179, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10008", + "event": "DB_P1_V6", + "actual_date": "2025-11-11", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1047871Seltorexant 20mg or placeboT38028505-Apr-20261121977Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 11-Nov-2025 11:10:51 \nTransaction Date/Time (system local): 11-Nov-2025 10:10:51 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk11179.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk11179.pdf new file mode 100644 index 0000000..70ef47f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-11_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk11179.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk11267.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk11267.json new file mode 100644 index 0000000..e3c5a15 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk11267.json @@ -0,0 +1,10 @@ +{ + "pk": 11267, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 Rolled Over from Part 1 into Part 2 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2025-11-12", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080005 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 12-Nov-2025 11:17:50\nTransaction Date/Time (system local): 12-Nov-2025 10:17:50\n\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk11267.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk11267.pdf new file mode 100644 index 0000000..d09e61c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk11267.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk11268.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk11268.json new file mode 100644 index 0000000..da4f744 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk11268.json @@ -0,0 +1,10 @@ +{ + "pk": 11268, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2025-11-12", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080005 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1039446Seltorexant 20mg or placeboT38028505-Apr-20261051859Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 12-Nov-2025 11:17:50 \nTransaction Date/Time (system local): 12-Nov-2025 10:17:50 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk11268.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk11268.pdf new file mode 100644 index 0000000..f68816d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-12_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk11268.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk11404.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk11404.json new file mode 100644 index 0000000..d1127cb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk11404.json @@ -0,0 +1,10 @@ +{ + "pk": 11404, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10004", + "event": "OL_Ind_V1_5", + "actual_date": "2025-11-14", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040001 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1204029\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1205609\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1219478\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1243159\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040001 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 14-Nov-2025 08:49:41 \n\r\n Transaction Date/Time (system local): 14-Nov-2025 07:49:41 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk11404.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk11404.pdf new file mode 100644 index 0000000..d125fc1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk11404.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011_pk11410.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011_pk11410.json new file mode 100644 index 0000000..cc24045 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011_pk11410.json @@ -0,0 +1,10 @@ +{ + "pk": 11410, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2025-11-14", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110007 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 14-Nov-2025 \n\nDate of Screening in IRT: 14-Nov-2025 \nTransaction Date/Time (site local): 14-Nov-2025 10:17:16\nTransaction Date/Time (system local): 14-Nov-2025 09:17:16\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011_pk11410.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011_pk11410.pdf new file mode 100644 index 0000000..67c1afd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_screened_at_site_S10-CZ10011_pk11410.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11628.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11628.json new file mode 100644 index 0000000..96892f1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11628.json @@ -0,0 +1,10 @@ +{ + "pk": 11628, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-11-18", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1244960\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 18-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1245867\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 18-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1247058\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 18-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1291625\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 18-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 18-Nov-2025 12:51:23\n\nTransaction Date/Time (system local): 18-Nov-2025 11:51:23 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11628.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11628.pdf new file mode 100644 index 0000000..f01a917 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk11628.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk11627.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk11627.json new file mode 100644 index 0000000..6485b76 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk11627.json @@ -0,0 +1,10 @@ +{ + "pk": 11627, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10008", + "event": "OL_Ind_V1_6", + "actual_date": "2025-11-18", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080002 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1244960\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1245867\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1247058\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1291625\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080002 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 18-Nov-2025 12:49:42 \n\r\n Transaction Date/Time (system local): 18-Nov-2025 11:49:42 \n\r\n Transaction performed by: v.smidkova@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk11627.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk11627.pdf new file mode 100644 index 0000000..0c2e4bf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk11627.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk11620.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk11620.json new file mode 100644 index 0000000..ee169db --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk11620.json @@ -0,0 +1,10 @@ +{ + "pk": 11620, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10008", + "event": "OL_Ind_V1_1", + "actual_date": "2025-11-18", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1223095Seltorexant 20mgT37484802-May-20261241228Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 18-Nov-2025 11:20:14 \nTransaction Date/Time (system local): 18-Nov-2025 10:20:14 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk11620.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk11620.pdf new file mode 100644 index 0000000..9f42e86 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-18_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk11620.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005.json new file mode 100644 index 0000000..8428f03 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005.json @@ -0,0 +1,10 @@ +{ + "pk": 11728, + "title": "Screenfail", + "label": "Janssen 42847922MDD3003 Subject CZ100050002 has been screen failed at site S10-CZ10005", + "event": "uv_screen_fail", + "actual_date": "2025-11-19", + "subject": "CZ100050002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSite Details \nLocation: CZE \nSite: S10-CZ10005 \nInvestigator: Janů, Luboš \n\n \nSubject Details \nSubject: CZ100050002 \nIRT Subject Status: Screen Failed \n\nScreenfail Date: 19-Nov-2025\nTransaction Date/Time (site local): 19-Nov-2025 14:07:42\nTransaction Date/Time (system local): 19-Nov-2025 13:07:42\nTransaction performed by: spinkova@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005.pdf new file mode 100644 index 0000000..c37ee88 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005_pk11728.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005_pk11728.json new file mode 100644 index 0000000..8428f03 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005_pk11728.json @@ -0,0 +1,10 @@ +{ + "pk": 11728, + "title": "Screenfail", + "label": "Janssen 42847922MDD3003 Subject CZ100050002 has been screen failed at site S10-CZ10005", + "event": "uv_screen_fail", + "actual_date": "2025-11-19", + "subject": "CZ100050002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSite Details \nLocation: CZE \nSite: S10-CZ10005 \nInvestigator: Janů, Luboš \n\n \nSubject Details \nSubject: CZ100050002 \nIRT Subject Status: Screen Failed \n\nScreenfail Date: 19-Nov-2025\nTransaction Date/Time (site local): 19-Nov-2025 14:07:42\nTransaction Date/Time (system local): 19-Nov-2025 13:07:42\nTransaction performed by: spinkova@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005_pk11728.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005_pk11728.pdf new file mode 100644 index 0000000..a711203 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-19_Janssen_42847922MDD3003_Subject_CZ100050002_has_been_screen_failed_at_site_S10-CZ10005_pk11728.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011_pk11865.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011_pk11865.json new file mode 100644 index 0000000..e15e330 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011_pk11865.json @@ -0,0 +1,10 @@ +{ + "pk": 11865, + "title": "Screenfail", + "label": "Janssen 42847922MDD3003 Subject CZ100110005 has been screen failed at site S10-CZ10011", + "event": "uv_screen_fail", + "actual_date": "2025-11-20", + "subject": "CZ100110005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110005 \nIRT Subject Status: Screen Failed \n\nScreenfail Date: 20-Nov-2025\nTransaction Date/Time (site local): 20-Nov-2025 20:50:49\nTransaction Date/Time (system local): 20-Nov-2025 19:50:49\nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011_pk11865.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011_pk11865.pdf new file mode 100644 index 0000000..d5a6538 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100110005_has_been_screen_failed_at_site_S10-CZ10011_pk11865.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.json new file mode 100644 index 0000000..4ffd52a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 11817, + "title": "No_Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 Completed Part 1 will not rollover into Part 2 at site S10-CZ10012", + "event": "DB_P1_V7", + "actual_date": "2025-11-20", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has completed part 1 and will not roll over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 20-Nov-2025 14:32:26\nTransaction Date/Time (system local): 20-Nov-2025 13:32:26\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..fa7ba51 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk11817.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk11817.json new file mode 100644 index 0000000..4ffd52a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk11817.json @@ -0,0 +1,10 @@ +{ + "pk": 11817, + "title": "No_Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 Completed Part 1 will not rollover into Part 2 at site S10-CZ10012", + "event": "DB_P1_V7", + "actual_date": "2025-11-20", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has completed part 1 and will not roll over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 20-Nov-2025 14:32:26\nTransaction Date/Time (system local): 20-Nov-2025 13:32:26\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk11817.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk11817.pdf new file mode 100644 index 0000000..48c0866 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk11817.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.json new file mode 100644 index 0000000..accd9d5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 11818, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10012", + "event": "DB_P1_V7", + "actual_date": "2025-11-20", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1057623Seltorexant 20mg or placeboT38028505-Apr-20261099516Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 20-Nov-2025 14:32:25 \nTransaction Date/Time (system local): 20-Nov-2025 13:32:25 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..3966db7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk11818.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk11818.json new file mode 100644 index 0000000..accd9d5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk11818.json @@ -0,0 +1,10 @@ +{ + "pk": 11818, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10012", + "event": "DB_P1_V7", + "actual_date": "2025-11-20", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1057623Seltorexant 20mg or placeboT38028505-Apr-20261099516Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 20-Nov-2025 14:32:25 \nTransaction Date/Time (system local): 20-Nov-2025 13:32:25 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk11818.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk11818.pdf new file mode 100644 index 0000000..415e8ad Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-20_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk11818.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json new file mode 100644 index 0000000..30ead61 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 11882, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10004", + "event": "DB_P1_V6", + "actual_date": "2025-11-21", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1038010Seltorexant 20mg or placeboT38028505-Apr-20261127814Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 21-Nov-2025 11:04:31 \nTransaction Date/Time (system local): 21-Nov-2025 10:04:31 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..7d0d85a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk11882.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk11882.json new file mode 100644 index 0000000..30ead61 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk11882.json @@ -0,0 +1,10 @@ +{ + "pk": 11882, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10004", + "event": "DB_P1_V6", + "actual_date": "2025-11-21", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1038010Seltorexant 20mg or placeboT38028505-Apr-20261127814Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 21-Nov-2025 11:04:31 \nTransaction Date/Time (system local): 21-Nov-2025 10:04:31 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk11882.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk11882.pdf new file mode 100644 index 0000000..f3b69e2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk11882.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json new file mode 100644 index 0000000..d1a8eac --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 11879, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 Rolled Over from Part 1 into Part 2 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2025-11-21", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 21-Nov-2025 10:06:19\nTransaction Date/Time (system local): 21-Nov-2025 09:06:19\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..16e15bd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk11879.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk11879.json new file mode 100644 index 0000000..d1a8eac --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk11879.json @@ -0,0 +1,10 @@ +{ + "pk": 11879, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 Rolled Over from Part 1 into Part 2 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2025-11-21", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 21-Nov-2025 10:06:19\nTransaction Date/Time (system local): 21-Nov-2025 09:06:19\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk11879.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk11879.pdf new file mode 100644 index 0000000..43047a4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk11879.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json new file mode 100644 index 0000000..2568feb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 11880, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2025-11-21", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1102725Seltorexant 20mg or placeboT38028505-Apr-20261107412Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 21-Nov-2025 10:06:19 \nTransaction Date/Time (system local): 21-Nov-2025 09:06:19 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..8c0cbc9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk11880.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk11880.json new file mode 100644 index 0000000..2568feb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk11880.json @@ -0,0 +1,10 @@ +{ + "pk": 11880, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2025-11-21", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1102725Seltorexant 20mg or placeboT38028505-Apr-20261107412Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 21-Nov-2025 10:06:19 \nTransaction Date/Time (system local): 21-Nov-2025 09:06:19 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk11880.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk11880.pdf new file mode 100644 index 0000000..8d0eb3b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-21_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk11880.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..8a1cf0b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 11938, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-11-24", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1038010\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1127814\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1015615\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1184135\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Nov-2025 09:18:58\n\nTransaction Date/Time (system local): 24-Nov-2025 08:18:58 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..ddb6f9e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk11938.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk11938.json new file mode 100644 index 0000000..8a1cf0b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk11938.json @@ -0,0 +1,10 @@ +{ + "pk": 11938, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-11-24", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1038010\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1127814\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1015615\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1184135\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Nov-2025 09:18:58\n\nTransaction Date/Time (system local): 24-Nov-2025 08:18:58 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk11938.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk11938.pdf new file mode 100644 index 0000000..2f3059f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk11938.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12714.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12714.json new file mode 100644 index 0000000..7244e12 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12714.json @@ -0,0 +1,10 @@ +{ + "pk": 12714, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-11-24", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1096997\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1114731\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1038010\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1127814\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 08-Dec-2025 09:07:23\n\nTransaction Date/Time (system local): 08-Dec-2025 08:07:23 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12714.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12714.pdf new file mode 100644 index 0000000..375ec30 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12714.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..0a2db80 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 11939, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2025-11-24", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1015615\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1184135\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Nov-2025 09:19:41 \nTransaction Date/Time (system local): 24-Nov-2025 08:19:41 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..86964bb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk11939.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk11939.json new file mode 100644 index 0000000..0a2db80 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk11939.json @@ -0,0 +1,10 @@ +{ + "pk": 11939, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2025-11-24", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1015615\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1184135\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Nov-2025 09:19:41 \nTransaction Date/Time (system local): 24-Nov-2025 08:19:41 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk11939.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk11939.pdf new file mode 100644 index 0000000..cd1726c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk11939.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk12715.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk12715.json new file mode 100644 index 0000000..459992d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk12715.json @@ -0,0 +1,10 @@ +{ + "pk": 12715, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2025-11-24", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1127814\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1038010\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 08-Dec-2025 09:08:07 \nTransaction Date/Time (system local): 08-Dec-2025 08:08:07 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk12715.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk12715.pdf new file mode 100644 index 0000000..67b2d54 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk12715.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..f5c2086 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 11961, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2025-11-24", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1102725\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1107412\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1012454\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1035161\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1070087\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1076361\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Nov-2025 14:58:07\n\nTransaction Date/Time (system local): 24-Nov-2025 13:58:07 \nTransaction performed by: studie@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..2888b38 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk11961.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk11961.json new file mode 100644 index 0000000..f5c2086 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk11961.json @@ -0,0 +1,10 @@ +{ + "pk": 11961, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2025-11-24", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1102725\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1107412\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1012454\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1035161\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1070087\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1076361\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Nov-2025 14:58:07\n\nTransaction Date/Time (system local): 24-Nov-2025 13:58:07 \nTransaction performed by: studie@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk11961.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk11961.pdf new file mode 100644 index 0000000..f225f6f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk11961.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..3ebb4f0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 11966, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2025-11-24", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1076361\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1070087\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1035161\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1012454\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Nov-2025 15:19:22 \nTransaction Date/Time (system local): 24-Nov-2025 14:19:22 \nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..4329c25 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk11966.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk11966.json new file mode 100644 index 0000000..3ebb4f0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk11966.json @@ -0,0 +1,10 @@ +{ + "pk": 11966, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2025-11-24", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1076361\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1070087\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1035161\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1012454\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Nov-2025 15:19:22 \nTransaction Date/Time (system local): 24-Nov-2025 14:19:22 \nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk11966.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk11966.pdf new file mode 100644 index 0000000..47b956c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-24_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk11966.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12039.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12039.json new file mode 100644 index 0000000..527808b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12039.json @@ -0,0 +1,10 @@ +{ + "pk": 12039, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-11-25", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080002 has been performed.\nMedication ID: 1019782\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1020699\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-Nov-2025 08:40:30 \nTransaction Date/Time (system local): 25-Nov-2025 07:40:30 \nTransaction performed by: r.gregar@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12039.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12039.pdf new file mode 100644 index 0000000..aa0ece9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12039.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12040.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12040.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12040.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12040.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12040.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12040.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12040.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12040.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12041.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12041.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12041.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12041.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12041.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12041.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12041.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12041.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12042.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12042.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12042.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12042.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12042.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12042.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12042.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12042.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12043.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12043.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12043.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12043.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12043.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12043.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12043.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12043.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12044.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12044.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12044.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12044.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12044.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12044.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12044.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk12044.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12045.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12045.json new file mode 100644 index 0000000..2f2b91f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12045.json @@ -0,0 +1,10 @@ +{ + "pk": 12045, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080004 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-11-25", + "subject": "CZ100080004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080004 has been performed.\nMedication ID: 1076269\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1094935\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080004 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nTransaction Date/Time (site local): 25-Nov-2025 08:47:43 \nTransaction Date/Time (system local): 25-Nov-2025 07:47:43 \nTransaction performed by: r.gregar@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12045.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12045.pdf new file mode 100644 index 0000000..bd24128 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12045.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12046.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12046.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12046.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12046.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12046.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12046.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12046.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080004_has_returned_a_medication_at_site_S10-CZ10008_pk12046.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12048.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12048.json new file mode 100644 index 0000000..9b268fd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12048.json @@ -0,0 +1,10 @@ +{ + "pk": 12048, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-11-25", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080005 has been performed.\nMedication ID: 1148249\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1123910\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-Nov-2025 08:51:11 \nTransaction Date/Time (system local): 25-Nov-2025 07:51:11 \nTransaction performed by: r.gregar@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12048.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12048.pdf new file mode 100644 index 0000000..0bc6b72 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12048.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12050.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12050.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12050.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12050.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12050.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12050.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12050.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12050.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12052.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12052.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12052.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12052.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12052.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12052.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12052.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12052.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json new file mode 100644 index 0000000..2b440d2 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 12063, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 Rolled Over from Part 1 into Part 2 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2025-11-25", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 25-Nov-2025 09:40:02\nTransaction Date/Time (system local): 25-Nov-2025 08:40:02\n\nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..c66eace Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk12063.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk12063.json new file mode 100644 index 0000000..2b440d2 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk12063.json @@ -0,0 +1,10 @@ +{ + "pk": 12063, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 Rolled Over from Part 1 into Part 2 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2025-11-25", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 25-Nov-2025 09:40:02\nTransaction Date/Time (system local): 25-Nov-2025 08:40:02\n\nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk12063.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk12063.pdf new file mode 100644 index 0000000..db430f2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk12063.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json new file mode 100644 index 0000000..bc77f92 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 12064, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2025-11-25", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1097147Seltorexant 20mg or placeboT38028505-Apr-20261115018Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 25-Nov-2025 09:40:01 \nTransaction Date/Time (system local): 25-Nov-2025 08:40:01 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..0d7e589 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk12064.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk12064.json new file mode 100644 index 0000000..bc77f92 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk12064.json @@ -0,0 +1,10 @@ +{ + "pk": 12064, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2025-11-25", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1097147Seltorexant 20mg or placeboT38028505-Apr-20261115018Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 25-Nov-2025 09:40:01 \nTransaction Date/Time (system local): 25-Nov-2025 08:40:01 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk12064.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk12064.pdf new file mode 100644 index 0000000..aa12dcc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk12064.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..6dd0ad7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 12056, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-11-25", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1032775\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1038889\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 25-Nov-2025 09:24:10 \nTransaction Date/Time (system local): 25-Nov-2025 08:24:10 \nTransaction performed by: r.gregar@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..6cbe13d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12056.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12056.json new file mode 100644 index 0000000..6dd0ad7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12056.json @@ -0,0 +1,10 @@ +{ + "pk": 12056, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-11-25", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1032775\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1038889\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 25-Nov-2025 09:24:10 \nTransaction Date/Time (system local): 25-Nov-2025 08:24:10 \nTransaction performed by: r.gregar@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12056.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12056.pdf new file mode 100644 index 0000000..37840d0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12056.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12057.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12057.json new file mode 100644 index 0000000..f6dbada --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12057.json @@ -0,0 +1,10 @@ +{ + "pk": 12057, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-11-25", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1047871\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1121977\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 25-Nov-2025 09:25:14 \nTransaction Date/Time (system local): 25-Nov-2025 08:25:14 \nTransaction performed by: r.gregar@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12057.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12057.pdf new file mode 100644 index 0000000..8762ed0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12057.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12799.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12799.json new file mode 100644 index 0000000..fb8042e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12799.json @@ -0,0 +1,10 @@ +{ + "pk": 12799, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-11-25", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1097147\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1115018\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 09-Dec-2025 11:26:16 \nTransaction Date/Time (system local): 09-Dec-2025 10:26:16 \nTransaction performed by: r.gregar@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12799.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12799.pdf new file mode 100644 index 0000000..32f6544 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk12799.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk13731.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk13731.json new file mode 100644 index 0000000..1376c73 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk13731.json @@ -0,0 +1,10 @@ +{ + "pk": 13731, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-11-25", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1214253\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1241048\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 23-Dec-2025 09:37:18 \nTransaction Date/Time (system local): 23-Dec-2025 08:37:18 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk13731.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk13731.pdf new file mode 100644 index 0000000..aaf25a6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk13731.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011_pk12073.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011_pk12073.json new file mode 100644 index 0000000..8c230d9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011_pk12073.json @@ -0,0 +1,10 @@ +{ + "pk": 12073, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 randomized into Part 1 at site S10-CZ10011", + "event": "Rand", + "actual_date": "2025-11-25", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1017917Seltorexant 20mg or placeboT38028505-Apr-20261027330Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 25-Nov-2025 12:13:13\nTransaction Date/Time (system local): 25-Nov-2025 11:13:13\nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011_pk12073.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011_pk12073.pdf new file mode 100644 index 0000000..b3a44b8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-11-25_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_1_at_site_S10-CZ10011_pk12073.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12480.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12480.json new file mode 100644 index 0000000..3a027cf --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12480.json @@ -0,0 +1,10 @@ +{ + "pk": 12480, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-12-03", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1200865\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1228529\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 03-Dec-2025 10:43:06\n\nTransaction Date/Time (system local): 03-Dec-2025 09:43:06 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12480.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12480.pdf new file mode 100644 index 0000000..9956153 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk12480.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk12479.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk12479.json new file mode 100644 index 0000000..af30811 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk12479.json @@ -0,0 +1,10 @@ +{ + "pk": 12479, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10008", + "event": "OL_Ind_V1_4", + "actual_date": "2025-12-03", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1200865Seltorexant 20mgT37484802-May-20261228529Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 03-Dec-2025 10:41:20 \nTransaction Date/Time (system local): 03-Dec-2025 09:41:20 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk12479.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk12479.pdf new file mode 100644 index 0000000..8605338 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk12479.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12474.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12474.json new file mode 100644 index 0000000..2d4bceb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12474.json @@ -0,0 +1,10 @@ +{ + "pk": 12474, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-12-03", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080005 has been performed.\nMedication ID: 1223095\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1241228\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 03-Dec-2025 09:47:11 \nTransaction Date/Time (system local): 03-Dec-2025 08:47:11 \nTransaction performed by: b.sollova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12474.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12474.pdf new file mode 100644 index 0000000..bf3eef8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-03_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk12474.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json new file mode 100644 index 0000000..7f91639 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 12653, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 Rolled Over from Part 1 into Part 2 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2025-12-05", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 05-Dec-2025 11:12:34\nTransaction Date/Time (system local): 05-Dec-2025 10:12:34\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..fec6f1d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk12653.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk12653.json new file mode 100644 index 0000000..7f91639 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk12653.json @@ -0,0 +1,10 @@ +{ + "pk": 12653, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 Rolled Over from Part 1 into Part 2 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2025-12-05", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 05-Dec-2025 11:12:34\nTransaction Date/Time (system local): 05-Dec-2025 10:12:34\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk12653.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk12653.pdf new file mode 100644 index 0000000..6f8ca63 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk12653.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json new file mode 100644 index 0000000..01da339 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 12654, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2025-12-05", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1096997Seltorexant 20mg or placeboT38028505-Apr-20261114731Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 05-Dec-2025 11:12:33 \nTransaction Date/Time (system local): 05-Dec-2025 10:12:33 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..6a74e6a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk12654.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk12654.json new file mode 100644 index 0000000..01da339 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk12654.json @@ -0,0 +1,10 @@ +{ + "pk": 12654, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2025-12-05", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1096997Seltorexant 20mg or placeboT38028505-Apr-20261114731Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 05-Dec-2025 11:12:33 \nTransaction Date/Time (system local): 05-Dec-2025 10:12:33 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk12654.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk12654.pdf new file mode 100644 index 0000000..e30338d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk12654.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004.json new file mode 100644 index 0000000..0b0f513 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 12649, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 randomized into Part 1 at site S10-CZ10004", + "event": "Rand", + "actual_date": "2025-12-05", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1064439Seltorexant 20mg or placeboT38028505-Apr-20261193004Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 05-Dec-2025 09:55:37\nTransaction Date/Time (system local): 05-Dec-2025 08:55:37\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..9c5fb6a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004_pk12649.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004_pk12649.json new file mode 100644 index 0000000..0b0f513 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004_pk12649.json @@ -0,0 +1,10 @@ +{ + "pk": 12649, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 randomized into Part 1 at site S10-CZ10004", + "event": "Rand", + "actual_date": "2025-12-05", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1064439Seltorexant 20mg or placeboT38028505-Apr-20261193004Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 05-Dec-2025 09:55:37\nTransaction Date/Time (system local): 05-Dec-2025 08:55:37\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004_pk12649.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004_pk12649.pdf new file mode 100644 index 0000000..cdd7494 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_1_at_site_S10-CZ10004_pk12649.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..6857981 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 12655, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2025-12-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1231991\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1258292\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Dec-2025 11:13:18\n\nTransaction Date/Time (system local): 05-Dec-2025 10:13:18 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..1fea90d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk12655.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk12655.json new file mode 100644 index 0000000..6857981 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk12655.json @@ -0,0 +1,10 @@ +{ + "pk": 12655, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2025-12-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1231991\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1258292\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Dec-2025 11:13:18\n\nTransaction Date/Time (system local): 05-Dec-2025 10:13:18 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk12655.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk12655.pdf new file mode 100644 index 0000000..78f0df1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk12655.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json new file mode 100644 index 0000000..0ceb3e5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 12648, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10011", + "event": "OL_Ind_V1_1", + "actual_date": "2025-12-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1231991Seltorexant 20mgT37484802-May-20261258292Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Dec-2025 09:17:27 \nTransaction Date/Time (system local): 05-Dec-2025 08:17:27 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..aba2416 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk12648.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk12648.json new file mode 100644 index 0000000..0ceb3e5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk12648.json @@ -0,0 +1,10 @@ +{ + "pk": 12648, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10011", + "event": "OL_Ind_V1_1", + "actual_date": "2025-12-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1231991Seltorexant 20mgT37484802-May-20261258292Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Dec-2025 09:17:27 \nTransaction Date/Time (system local): 05-Dec-2025 08:17:27 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk12648.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk12648.pdf new file mode 100644 index 0000000..963f0aa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk12648.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..d735e24 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 12652, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2025-12-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1102725\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1107412\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Dec-2025 11:12:36 \nTransaction Date/Time (system local): 05-Dec-2025 10:12:36 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..4a99c48 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk12652.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk12652.json new file mode 100644 index 0000000..d735e24 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk12652.json @@ -0,0 +1,10 @@ +{ + "pk": 12652, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2025-12-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1102725\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1107412\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Dec-2025 11:12:36 \nTransaction Date/Time (system local): 05-Dec-2025 10:12:36 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk12652.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk12652.pdf new file mode 100644 index 0000000..5272e93 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk12652.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.json new file mode 100644 index 0000000..d416fd7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 12673, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10012", + "event": "OL_Ind_V1_1", + "actual_date": "2025-12-05", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1264307Seltorexant 20mgT37484802-May-20261280808Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Dec-2025 13:54:24 \nTransaction Date/Time (system local): 05-Dec-2025 12:54:24 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..2797bb6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk12673.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk12673.json new file mode 100644 index 0000000..d416fd7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk12673.json @@ -0,0 +1,10 @@ +{ + "pk": 12673, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10012", + "event": "OL_Ind_V1_1", + "actual_date": "2025-12-05", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1264307Seltorexant 20mgT37484802-May-20261280808Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Dec-2025 13:54:24 \nTransaction Date/Time (system local): 05-Dec-2025 12:54:24 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk12673.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk12673.pdf new file mode 100644 index 0000000..c3c050f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-05_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk12673.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..c4589e9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 12716, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-12-08", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1064439\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1193004\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 08-Dec-2025 09:11:39\n\nTransaction Date/Time (system local): 08-Dec-2025 08:11:39 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..87cd22e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12716.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12716.json new file mode 100644 index 0000000..c4589e9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12716.json @@ -0,0 +1,10 @@ +{ + "pk": 12716, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-12-08", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1064439\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1193004\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 08-Dec-2025 09:11:39\n\nTransaction Date/Time (system local): 08-Dec-2025 08:11:39 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12716.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12716.pdf new file mode 100644 index 0000000..629db45 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk12716.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15539.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15539.json new file mode 100644 index 0000000..1a2df85 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15539.json @@ -0,0 +1,10 @@ +{ + "pk": 15539, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-12-08", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1201788\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1210206\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1000656\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1176230\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1047299\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 19-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1093536\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 19-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 26-Jan-2026 08:02:45\n\nTransaction Date/Time (system local): 26-Jan-2026 07:02:45 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15539.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15539.pdf new file mode 100644 index 0000000..1a446eb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-08_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15539.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json new file mode 100644 index 0000000..044bad4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 12801, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10008", + "event": "OL_Ind_V1_1", + "actual_date": "2025-12-09", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1214253Seltorexant 20mgT37484802-May-20261241048Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 09-Dec-2025 11:45:33 \nTransaction Date/Time (system local): 09-Dec-2025 10:45:33 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..03b9ab5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk12801.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk12801.json new file mode 100644 index 0000000..044bad4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk12801.json @@ -0,0 +1,10 @@ +{ + "pk": 12801, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10008", + "event": "OL_Ind_V1_1", + "actual_date": "2025-12-09", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1214253Seltorexant 20mgT37484802-May-20261241048Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 09-Dec-2025 11:45:33 \nTransaction Date/Time (system local): 09-Dec-2025 10:45:33 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk12801.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk12801.pdf new file mode 100644 index 0000000..7c1792d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-09_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk12801.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008.json new file mode 100644 index 0000000..5ee29db --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 12894, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been screened at site S10-CZ10008", + "event": "Screen", + "actual_date": "2025-12-10", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 09-Dec-2025 \n\nDate of Screening in IRT: 10-Dec-2025 \nTransaction Date/Time (site local): 10-Dec-2025 08:39:10\nTransaction Date/Time (system local): 10-Dec-2025 07:39:10\n\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..e465648 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008_pk12894.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008_pk12894.json new file mode 100644 index 0000000..5ee29db --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008_pk12894.json @@ -0,0 +1,10 @@ +{ + "pk": 12894, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been screened at site S10-CZ10008", + "event": "Screen", + "actual_date": "2025-12-10", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 09-Dec-2025 \n\nDate of Screening in IRT: 10-Dec-2025 \nTransaction Date/Time (site local): 10-Dec-2025 08:39:10\nTransaction Date/Time (system local): 10-Dec-2025 07:39:10\n\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008_pk12894.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008_pk12894.pdf new file mode 100644 index 0000000..78c711a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_screened_at_site_S10-CZ10008_pk12894.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk12914.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk12914.json new file mode 100644 index 0000000..e4b1b99 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk12914.json @@ -0,0 +1,10 @@ +{ + "pk": 12914, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10011", + "event": "DB_P1_V6", + "actual_date": "2025-12-10", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1079822Seltorexant 20mg or placeboT38028505-Apr-20261151515Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 10-Dec-2025 13:24:09 \nTransaction Date/Time (system local): 10-Dec-2025 12:24:09 \nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk12914.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk12914.pdf new file mode 100644 index 0000000..47645dc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-10_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk12914.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13000.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13000.json new file mode 100644 index 0000000..73b8611 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13000.json @@ -0,0 +1,10 @@ +{ + "pk": 13000, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2025-12-11", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1012402\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 11-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1114183\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 11-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 11-Dec-2025 10:40:17\n\nTransaction Date/Time (system local): 11-Dec-2025 09:40:17 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13000.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13000.pdf new file mode 100644 index 0000000..2b3ee7c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13000.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14220.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14220.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14220.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14220.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14220.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14220.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14220.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14220.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011_pk12998.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011_pk12998.json new file mode 100644 index 0000000..c6e624b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011_pk12998.json @@ -0,0 +1,10 @@ +{ + "pk": 12998, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 randomized into Part 1 at site S10-CZ10011", + "event": "Rand", + "actual_date": "2025-12-11", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110007 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1012402Seltorexant 20mg or placeboT38028505-Apr-20261114183Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 11-Dec-2025 09:19:08\nTransaction Date/Time (system local): 11-Dec-2025 08:19:08\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011_pk12998.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011_pk12998.pdf new file mode 100644 index 0000000..0d287ca Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-11_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_1_at_site_S10-CZ10011_pk12998.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk13088.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk13088.json new file mode 100644 index 0000000..3fd1b6f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk13088.json @@ -0,0 +1,10 @@ +{ + "pk": 13088, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10004", + "event": "OL_TS_V2_2", + "actual_date": "2025-12-12", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1203972Seltorexant 20mgT37484802-May-20261290416Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 12-Dec-2025 09:53:32 \nTransaction Date/Time (system local): 12-Dec-2025 08:53:32 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk13088.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk13088.pdf new file mode 100644 index 0000000..10e8638 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk13088.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13157.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13157.json new file mode 100644 index 0000000..ec5e0a1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13157.json @@ -0,0 +1,10 @@ +{ + "pk": 13157, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-12-15", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040001 has\nbeen performed for the following medication IDs:\n\nMedication No: 1243159\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 14-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1219478\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 14-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1205609\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 14-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1204029\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 14-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1290416\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 12-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1203972\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 12-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040001 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 15-Dec-2025 09:27:38\n\nTransaction Date/Time (system local): 15-Dec-2025 08:27:38 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13157.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13157.pdf new file mode 100644 index 0000000..66d89f3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13157.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk13158.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk13158.json new file mode 100644 index 0000000..08bc444 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk13158.json @@ -0,0 +1,10 @@ +{ + "pk": 13158, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2025-12-15", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040001 has been performed.\nMedication ID: 1267690\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1222097\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1243159\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1219478\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1205609\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1204029\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 15-Dec-2025 09:29:19 \nTransaction Date/Time (system local): 15-Dec-2025 08:29:19 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk13158.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk13158.pdf new file mode 100644 index 0000000..ec1977e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-15_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk13158.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13248.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13248.json new file mode 100644 index 0000000..54fd9ce --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13248.json @@ -0,0 +1,10 @@ +{ + "pk": 13248, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-12-16", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1212935\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1231127\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Dec-2025 12:37:17\n\nTransaction Date/Time (system local): 16-Dec-2025 11:37:17 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13248.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13248.pdf new file mode 100644 index 0000000..cbb203d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13248.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk13247.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk13247.json new file mode 100644 index 0000000..7035984 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk13247.json @@ -0,0 +1,10 @@ +{ + "pk": 13247, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10008", + "event": "OL_TS_V2_2", + "actual_date": "2025-12-16", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1212935Seltorexant 20mgT37484802-May-20261231127Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Dec-2025 12:35:02 \nTransaction Date/Time (system local): 16-Dec-2025 11:35:02 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk13247.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk13247.pdf new file mode 100644 index 0000000..9bd8706 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk13247.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk13245.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk13245.json new file mode 100644 index 0000000..b66a83b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk13245.json @@ -0,0 +1,10 @@ +{ + "pk": 13245, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-12-16", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080002 has been performed.\nMedication ID: 1244960\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1245867\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1247058\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1291625\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Dec-2025 11:32:46 \nTransaction Date/Time (system local): 16-Dec-2025 10:32:46 \nTransaction performed by: r.gregar@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk13245.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk13245.pdf new file mode 100644 index 0000000..9c5c781 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-16_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk13245.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13313.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13313.json new file mode 100644 index 0000000..ab6ad27 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13313.json @@ -0,0 +1,10 @@ +{ + "pk": 13313, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-12-17", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1294294\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 17-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1251716\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 17-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 17-Dec-2025 11:31:17\n\nTransaction Date/Time (system local): 17-Dec-2025 10:31:17 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13313.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13313.pdf new file mode 100644 index 0000000..38b59bc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13313.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk13311.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk13311.json new file mode 100644 index 0000000..644392b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk13311.json @@ -0,0 +1,10 @@ +{ + "pk": 13311, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10008", + "event": "OL_Ind_V1_5", + "actual_date": "2025-12-17", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1251716\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1294294\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080005 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 17-Dec-2025 11:30:16 \n\r\n Transaction Date/Time (system local): 17-Dec-2025 10:30:16 \n\r\n Transaction performed by: v.smidkova@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk13311.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk13311.pdf new file mode 100644 index 0000000..f53b9d0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk13311.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk13315.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk13315.json new file mode 100644 index 0000000..8c0c068 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk13315.json @@ -0,0 +1,10 @@ +{ + "pk": 13315, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-12-17", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080005 has been performed.\nMedication ID: 1200865\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1228529\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 17-Dec-2025 11:42:13 \nTransaction Date/Time (system local): 17-Dec-2025 10:42:13 \nTransaction performed by: r.gregar@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk13315.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk13315.pdf new file mode 100644 index 0000000..2c11980 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-17_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk13315.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json new file mode 100644 index 0000000..3ef659f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 13488, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2025-12-19", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1207215Seltorexant 20mgT37484802-May-20261256780Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Dec-2025 10:52:30 \nTransaction Date/Time (system local): 19-Dec-2025 09:52:30 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..5974728 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk13488.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk13488.json new file mode 100644 index 0000000..3ef659f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk13488.json @@ -0,0 +1,10 @@ +{ + "pk": 13488, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2025-12-19", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1207215Seltorexant 20mgT37484802-May-20261256780Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Dec-2025 10:52:30 \nTransaction Date/Time (system local): 19-Dec-2025 09:52:30 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk13488.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk13488.pdf new file mode 100644 index 0000000..cb5dd78 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk13488.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json new file mode 100644 index 0000000..5d6ff3e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 13511, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10004", + "event": "DB_P1_V6", + "actual_date": "2025-12-19", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1047299Seltorexant 20mg or placeboT38028505-Apr-20261093536Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 19-Dec-2025 15:48:10 \nTransaction Date/Time (system local): 19-Dec-2025 14:48:10 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..f1da4a3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk13511.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk13511.json new file mode 100644 index 0000000..5d6ff3e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk13511.json @@ -0,0 +1,10 @@ +{ + "pk": 13511, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10004", + "event": "DB_P1_V6", + "actual_date": "2025-12-19", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1047299Seltorexant 20mg or placeboT38028505-Apr-20261093536Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 19-Dec-2025 15:48:10 \nTransaction Date/Time (system local): 19-Dec-2025 14:48:10 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk13511.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk13511.pdf new file mode 100644 index 0000000..18390f4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk13511.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.json new file mode 100644 index 0000000..4bc22ea --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 13491, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10012", + "event": "OL_Ind_V1_4", + "actual_date": "2025-12-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1211956Seltorexant 20mgT37484802-May-20261274279Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Dec-2025 12:34:56 \nTransaction Date/Time (system local): 19-Dec-2025 11:34:56 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..ebb9ff1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk13491.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk13491.json new file mode 100644 index 0000000..4bc22ea --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk13491.json @@ -0,0 +1,10 @@ +{ + "pk": 13491, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10012", + "event": "OL_Ind_V1_4", + "actual_date": "2025-12-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1211956Seltorexant 20mgT37484802-May-20261274279Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Dec-2025 12:34:56 \nTransaction Date/Time (system local): 19-Dec-2025 11:34:56 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk13491.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk13491.pdf new file mode 100644 index 0000000..a4c7128 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk13491.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..48fb80a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 13595, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-12-22", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1207215\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1256780\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Dec-2025 09:47:00\n\nTransaction Date/Time (system local): 22-Dec-2025 08:47:00 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..0b6436e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13595.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13595.json new file mode 100644 index 0000000..48fb80a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13595.json @@ -0,0 +1,10 @@ +{ + "pk": 13595, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2025-12-22", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1207215\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1256780\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Dec-2025 09:47:00\n\nTransaction Date/Time (system local): 22-Dec-2025 08:47:00 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13595.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13595.pdf new file mode 100644 index 0000000..d98c544 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk13595.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..2ca78eb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 13597, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2025-12-22", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1114731\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1096997\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Dec-2025 09:49:00 \nTransaction Date/Time (system local): 22-Dec-2025 08:49:00 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..afd2480 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk13597.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk13597.json new file mode 100644 index 0000000..2ca78eb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk13597.json @@ -0,0 +1,10 @@ +{ + "pk": 13597, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2025-12-22", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1114731\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1096997\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Dec-2025 09:49:00 \nTransaction Date/Time (system local): 22-Dec-2025 08:49:00 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk13597.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk13597.pdf new file mode 100644 index 0000000..e7d1c79 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk13597.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..9405632 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 13607, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2025-12-22", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1244094\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1280054\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Dec-2025 10:35:03\n\nTransaction Date/Time (system local): 22-Dec-2025 09:35:03 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..0aef9fb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13607.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13607.json new file mode 100644 index 0000000..9405632 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13607.json @@ -0,0 +1,10 @@ +{ + "pk": 13607, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2025-12-22", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1244094\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1280054\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Dec-2025 10:35:03\n\nTransaction Date/Time (system local): 22-Dec-2025 09:35:03 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13607.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13607.pdf new file mode 100644 index 0000000..3a94e7f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13607.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json new file mode 100644 index 0000000..2df20e4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 13585, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10011", + "event": "OL_Ind_V1_4", + "actual_date": "2025-12-22", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1244094Seltorexant 20mgT37484802-May-20261280054Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Dec-2025 08:45:05 \nTransaction Date/Time (system local): 22-Dec-2025 07:45:05 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..3b7d3b8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk13585.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk13585.json new file mode 100644 index 0000000..2df20e4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk13585.json @@ -0,0 +1,10 @@ +{ + "pk": 13585, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10011", + "event": "OL_Ind_V1_4", + "actual_date": "2025-12-22", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1244094Seltorexant 20mgT37484802-May-20261280054Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Dec-2025 08:45:05 \nTransaction Date/Time (system local): 22-Dec-2025 07:45:05 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk13585.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk13585.pdf new file mode 100644 index 0000000..f556e1d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk13585.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..2c5979c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 13606, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2025-12-22", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1231991\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1258292\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Dec-2025 10:34:36 \nTransaction Date/Time (system local): 22-Dec-2025 09:34:36 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..7d7d873 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk13606.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk13606.json new file mode 100644 index 0000000..2c5979c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk13606.json @@ -0,0 +1,10 @@ +{ + "pk": 13606, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2025-12-22", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1231991\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1258292\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Dec-2025 10:34:36 \nTransaction Date/Time (system local): 22-Dec-2025 09:34:36 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk13606.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk13606.pdf new file mode 100644 index 0000000..f904eab Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk13606.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk13625.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk13625.json new file mode 100644 index 0000000..723ba94 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk13625.json @@ -0,0 +1,10 @@ +{ + "pk": 13625, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 Rolled Over from Part 1 into Part 2 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2025-12-22", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Dec-2025 12:51:43\nTransaction Date/Time (system local): 22-Dec-2025 11:51:43\n\nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk13625.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk13625.pdf new file mode 100644 index 0000000..3657cf3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk13625.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk13626.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk13626.json new file mode 100644 index 0000000..b78a464 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk13626.json @@ -0,0 +1,10 @@ +{ + "pk": 13626, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2025-12-22", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1163610Seltorexant 20mg or placeboT38028505-Apr-20261190630Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Dec-2025 12:51:43 \nTransaction Date/Time (system local): 22-Dec-2025 11:51:43 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk13626.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk13626.pdf new file mode 100644 index 0000000..c54d84b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk13626.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13605.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13605.json new file mode 100644 index 0000000..db166b1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13605.json @@ -0,0 +1,10 @@ +{ + "pk": 13605, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2025-12-22", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1016885\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1087214\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Dec-2025 10:29:08\n\nTransaction Date/Time (system local): 22-Dec-2025 09:29:08 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13605.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13605.pdf new file mode 100644 index 0000000..8fe88f6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk13605.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk13593.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk13593.json new file mode 100644 index 0000000..4f622ae --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk13593.json @@ -0,0 +1,10 @@ +{ + "pk": 13593, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10011", + "event": "DB_P1_V6", + "actual_date": "2025-12-22", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110007 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1016885Seltorexant 20mg or placeboT38028505-Apr-20261087214Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Dec-2025 09:42:12 \nTransaction Date/Time (system local): 22-Dec-2025 08:42:12 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk13593.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk13593.pdf new file mode 100644 index 0000000..109e589 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk13593.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk13604.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk13604.json new file mode 100644 index 0000000..a136544 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk13604.json @@ -0,0 +1,10 @@ +{ + "pk": 13604, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2025-12-22", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110007 has been performed.\nMedication ID: 1012402\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1114183\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 6\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 22-Dec-2025 10:28:40 \nTransaction Date/Time (system local): 22-Dec-2025 09:28:40 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk13604.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk13604.pdf new file mode 100644 index 0000000..82372dd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk13604.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk14219.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk14219.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk14219.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk14219.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk14219.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk14219.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk14219.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-22_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk14219.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..c4bb7f2 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 13740, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-12-23", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1226397\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 23-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1254197\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 23-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 23-Dec-2025 10:13:39\n\nTransaction Date/Time (system local): 23-Dec-2025 09:13:39 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..8c74c77 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13740.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13740.json new file mode 100644 index 0000000..c4bb7f2 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13740.json @@ -0,0 +1,10 @@ +{ + "pk": 13740, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-12-23", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1226397\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 23-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1254197\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 23-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 23-Dec-2025 10:13:39\n\nTransaction Date/Time (system local): 23-Dec-2025 09:13:39 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13740.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13740.pdf new file mode 100644 index 0000000..1489e44 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk13740.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json new file mode 100644 index 0000000..ab7b14a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 13739, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10008", + "event": "OL_Ind_V1_4", + "actual_date": "2025-12-23", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1226397Seltorexant 20mgT37484802-May-20261254197Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 23-Dec-2025 10:12:37 \nTransaction Date/Time (system local): 23-Dec-2025 09:12:37 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..85793f5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk13739.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk13739.json new file mode 100644 index 0000000..ab7b14a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk13739.json @@ -0,0 +1,10 @@ +{ + "pk": 13739, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10008", + "event": "OL_Ind_V1_4", + "actual_date": "2025-12-23", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1226397Seltorexant 20mgT37484802-May-20261254197Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 23-Dec-2025 10:12:37 \nTransaction Date/Time (system local): 23-Dec-2025 09:12:37 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk13739.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk13739.pdf new file mode 100644 index 0000000..d80ed13 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-23_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk13739.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk13969.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk13969.json new file mode 100644 index 0000000..ca34efa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk13969.json @@ -0,0 +1,10 @@ +{ + "pk": 13969, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10004", + "event": "OL_TS_V2_3", + "actual_date": "2025-12-29", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1213318Seltorexant 20mgT37484802-May-20261279535Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 29-Dec-2025 14:00:19 \nTransaction Date/Time (system local): 29-Dec-2025 13:00:19 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk13969.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk13969.pdf new file mode 100644 index 0000000..7b25b72 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-29_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk13969.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14059.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14059.json new file mode 100644 index 0000000..cab729e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14059.json @@ -0,0 +1,10 @@ +{ + "pk": 14059, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2025-12-30", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1246473\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1258016\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 30-Dec-2025 11:54:26\n\nTransaction Date/Time (system local): 30-Dec-2025 10:54:26 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14059.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14059.pdf new file mode 100644 index 0000000..0a40610 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14059.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk14058.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk14058.json new file mode 100644 index 0000000..ca7f3f7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk14058.json @@ -0,0 +1,10 @@ +{ + "pk": 14058, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10008", + "event": "OL_TS_V2_3", + "actual_date": "2025-12-30", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1246473Seltorexant 20mgT37484802-May-20261258016Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 30-Dec-2025 11:53:17 \nTransaction Date/Time (system local): 30-Dec-2025 10:53:17 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk14058.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk14058.pdf new file mode 100644 index 0000000..e1adf21 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk14058.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14053.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14053.json new file mode 100644 index 0000000..24ce6c1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14053.json @@ -0,0 +1,10 @@ +{ + "pk": 14053, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-12-30", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080002 has been performed.\nMedication ID: 1212935\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1231127\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 30-Dec-2025 11:29:27 \nTransaction Date/Time (system local): 30-Dec-2025 10:29:27 \nTransaction performed by: b.sollova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14053.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14053.pdf new file mode 100644 index 0000000..7d64559 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14053.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk14040.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk14040.json new file mode 100644 index 0000000..a97ba3a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk14040.json @@ -0,0 +1,10 @@ +{ + "pk": 14040, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10008", + "event": "OL_Ind_V1_6", + "actual_date": "2025-12-30", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1218190\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1287807\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080005 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 30-Dec-2025 10:17:33 \n\r\n Transaction Date/Time (system local): 30-Dec-2025 09:17:33 \n\r\n Transaction performed by: m.deif@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk14040.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk14040.pdf new file mode 100644 index 0000000..ebb20b7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk14040.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14033.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14033.json new file mode 100644 index 0000000..2b01137 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14033.json @@ -0,0 +1,10 @@ +{ + "pk": 14033, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2025-12-30", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080005 has been performed.\nMedication ID: 1251716\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1294294\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 30-Dec-2025 09:04:37 \nTransaction Date/Time (system local): 30-Dec-2025 08:04:37 \nTransaction performed by: r.gregar@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14033.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14033.pdf new file mode 100644 index 0000000..638f686 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2025-12-30_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14033.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.json new file mode 100644 index 0000000..710a9fc --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 14134, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10012", + "event": "OL_Ind_V1_5", + "actual_date": "2026-01-02", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100120004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1203336\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1216990\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1249121\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1261260\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10012 \n\r\n Investigator: Urban, Ales \n\n \n\r\n Subject Details \nSubject: CZ100120004 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 02-Jan-2026 11:28:51 \n\r\n Transaction Date/Time (system local): 02-Jan-2026 10:28:51 \n\r\n Transaction performed by: marcelasedlackova@seznam.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..e76d02d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk14134.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk14134.json new file mode 100644 index 0000000..710a9fc --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk14134.json @@ -0,0 +1,10 @@ +{ + "pk": 14134, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10012", + "event": "OL_Ind_V1_5", + "actual_date": "2026-01-02", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100120004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1203336\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1216990\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1249121\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1261260\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10012 \n\r\n Investigator: Urban, Ales \n\n \n\r\n Subject Details \nSubject: CZ100120004 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 02-Jan-2026 11:28:51 \n\r\n Transaction Date/Time (system local): 02-Jan-2026 10:28:51 \n\r\n Transaction performed by: marcelasedlackova@seznam.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk14134.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk14134.pdf new file mode 100644 index 0000000..8414e20 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk14134.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..0d1e2a6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 14222, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-01-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1204481\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1243052\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Jan-2026 12:46:14\n\nTransaction Date/Time (system local): 05-Jan-2026 11:46:14 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..a65d1b1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14222.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14222.json new file mode 100644 index 0000000..0d1e2a6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14222.json @@ -0,0 +1,10 @@ +{ + "pk": 14222, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-01-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1204481\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1243052\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Jan-2026 12:46:14\n\nTransaction Date/Time (system local): 05-Jan-2026 11:46:14 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14222.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14222.pdf new file mode 100644 index 0000000..b755bb9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk14222.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json new file mode 100644 index 0000000..d1f9300 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 14183, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10011", + "event": "OL_Ind_V1_5", + "actual_date": "2026-01-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1204481\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1243052\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110003 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 05-Jan-2026 09:30:46 \n\r\n Transaction Date/Time (system local): 05-Jan-2026 08:30:46 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..b330db8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk14183.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk14183.json new file mode 100644 index 0000000..d1f9300 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk14183.json @@ -0,0 +1,10 @@ +{ + "pk": 14183, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10011", + "event": "OL_Ind_V1_5", + "actual_date": "2026-01-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1204481\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1243052\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110003 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 05-Jan-2026 09:30:46 \n\r\n Transaction Date/Time (system local): 05-Jan-2026 08:30:46 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk14183.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk14183.pdf new file mode 100644 index 0000000..163e718 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk14183.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..477b7de --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 14221, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-01-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1244094\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1280054\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Jan-2026 12:45:14 \nTransaction Date/Time (system local): 05-Jan-2026 11:45:14 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..8f82d93 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk14221.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk14221.json new file mode 100644 index 0000000..477b7de --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk14221.json @@ -0,0 +1,10 @@ +{ + "pk": 14221, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-01-05", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1244094\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1280054\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-Jan-2026 12:45:14 \nTransaction Date/Time (system local): 05-Jan-2026 11:45:14 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk14221.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk14221.pdf new file mode 100644 index 0000000..36ba96f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk14221.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk14210.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk14210.json new file mode 100644 index 0000000..8a4ca53 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk14210.json @@ -0,0 +1,10 @@ +{ + "pk": 14210, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 Rolled Over from Part 1 into Part 2 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2026-01-05", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110007 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 05-Jan-2026 11:58:47\nTransaction Date/Time (system local): 05-Jan-2026 10:58:47\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk14210.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk14210.pdf new file mode 100644 index 0000000..b94c6f2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk14210.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk14211.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk14211.json new file mode 100644 index 0000000..7779700 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk14211.json @@ -0,0 +1,10 @@ +{ + "pk": 14211, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2026-01-05", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110007 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1061445Seltorexant 20mg or placeboT38028505-Apr-20261142746Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 05-Jan-2026 11:58:46 \nTransaction Date/Time (system local): 05-Jan-2026 10:58:46 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk14211.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk14211.pdf new file mode 100644 index 0000000..5abaff5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk14211.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011.json new file mode 100644 index 0000000..2daca5f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 14196, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2026-01-05", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 05-Jan-2026 \n\nDate of Screening in IRT: 05-Jan-2026 \nTransaction Date/Time (site local): 05-Jan-2026 10:14:00\nTransaction Date/Time (system local): 05-Jan-2026 09:14:00\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..fcdfcdd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011_pk14196.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011_pk14196.json new file mode 100644 index 0000000..2daca5f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011_pk14196.json @@ -0,0 +1,10 @@ +{ + "pk": 14196, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2026-01-05", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 05-Jan-2026 \n\nDate of Screening in IRT: 05-Jan-2026 \nTransaction Date/Time (site local): 05-Jan-2026 10:14:00\nTransaction Date/Time (system local): 05-Jan-2026 09:14:00\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011_pk14196.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011_pk14196.pdf new file mode 100644 index 0000000..09d348c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-05_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_screened_at_site_S10-CZ10011_pk14196.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk14277.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk14277.json new file mode 100644 index 0000000..e4bc6bb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk14277.json @@ -0,0 +1,10 @@ +{ + "pk": 14277, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10011", + "event": "OL_Ind_V1_1", + "actual_date": "2026-01-06", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1241496Seltorexant 20mgT37484802-May-20261257075Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-Jan-2026 10:21:18 \nTransaction Date/Time (system local): 06-Jan-2026 09:21:18 \nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk14277.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk14277.pdf new file mode 100644 index 0000000..1db5c61 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-06_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk14277.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json new file mode 100644 index 0000000..77057f6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 14390, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-01-07", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1205323Seltorexant 20mgT37484802-May-20261293531Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 07-Jan-2026 11:42:06 \nTransaction Date/Time (system local): 07-Jan-2026 10:42:06 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..9b20571 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk14390.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk14390.json new file mode 100644 index 0000000..77057f6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk14390.json @@ -0,0 +1,10 @@ +{ + "pk": 14390, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-01-07", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1205323Seltorexant 20mgT37484802-May-20261293531Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 07-Jan-2026 11:42:06 \nTransaction Date/Time (system local): 07-Jan-2026 10:42:06 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk14390.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk14390.pdf new file mode 100644 index 0000000..4ee20b4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk14390.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json new file mode 100644 index 0000000..b454761 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 14457, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 Rolled Over from Part 1 into Part 2 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-01-07", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Jan-2026 19:19:39\nTransaction Date/Time (system local): 07-Jan-2026 18:19:39\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..1cc10cd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk14457.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk14457.json new file mode 100644 index 0000000..b454761 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk14457.json @@ -0,0 +1,10 @@ +{ + "pk": 14457, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 Rolled Over from Part 1 into Part 2 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-01-07", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Jan-2026 19:19:39\nTransaction Date/Time (system local): 07-Jan-2026 18:19:39\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk14457.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk14457.pdf new file mode 100644 index 0000000..ceb6655 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk14457.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json new file mode 100644 index 0000000..990bba6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 14458, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-01-07", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1000656Seltorexant 20mg or placeboT38028505-Apr-20261176230Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Jan-2026 19:19:38 \nTransaction Date/Time (system local): 07-Jan-2026 18:19:38 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..ffe8e84 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk14458.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk14458.json new file mode 100644 index 0000000..990bba6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk14458.json @@ -0,0 +1,10 @@ +{ + "pk": 14458, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-01-07", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1000656Seltorexant 20mg or placeboT38028505-Apr-20261176230Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Jan-2026 19:19:38 \nTransaction Date/Time (system local): 07-Jan-2026 18:19:38 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk14458.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk14458.pdf new file mode 100644 index 0000000..ce8d4bc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-07_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk14458.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004_pk14579.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004_pk14579.json new file mode 100644 index 0000000..90d8557 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004_pk14579.json @@ -0,0 +1,10 @@ +{ + "pk": 14579, + "title": "Randomized_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 randomized into Part 2 at site S10-CZ10004", + "event": "DB_Main_V3_1", + "actual_date": "2026-01-09", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been randomized into Part 2.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1016532Seltorexant 20mg or placeboT38028505-Apr-20261043501Seltorexant 20mg or placeboT38650424-Jun-20281070812Seltorexant 20mg or placeboT38028505-Apr-20261098750Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 09-Jan-2026 10:17:56\nTransaction Date/Time (system local): 09-Jan-2026 09:17:56\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004_pk14579.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004_pk14579.pdf new file mode 100644 index 0000000..d2de04a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-09_Janssen_42847922MDD3003_Subject_CZ100040001_randomized_into_Part_2_at_site_S10-CZ10004_pk14579.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk14735.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk14735.json new file mode 100644 index 0000000..12294d8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk14735.json @@ -0,0 +1,10 @@ +{ + "pk": 14735, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-01-12", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040001 has been performed.\nMedication ID: 1203972\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1290416\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 12-Jan-2026 20:08:04 \nTransaction Date/Time (system local): 12-Jan-2026 19:08:04 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk14735.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk14735.pdf new file mode 100644 index 0000000..607ff6b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk14735.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..8905889 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 14737, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-01-12", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1207215\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1256780\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 1\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 12-Jan-2026 20:18:34 \nTransaction Date/Time (system local): 12-Jan-2026 19:18:34 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..695298b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk14737.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk14737.json new file mode 100644 index 0000000..8905889 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk14737.json @@ -0,0 +1,10 @@ +{ + "pk": 14737, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-01-12", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1207215\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1256780\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 1\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 12-Jan-2026 20:18:34 \nTransaction Date/Time (system local): 12-Jan-2026 19:18:34 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk14737.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk14737.pdf new file mode 100644 index 0000000..3a11fd2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk14737.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..f0d5336 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 14738, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-01-12", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1064439\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1193004\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 12-Jan-2026 20:21:09 \nTransaction Date/Time (system local): 12-Jan-2026 19:21:09 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..227a74e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk14738.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk14738.json new file mode 100644 index 0000000..f0d5336 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk14738.json @@ -0,0 +1,10 @@ +{ + "pk": 14738, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-01-12", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1064439\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1193004\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 12-Jan-2026 20:21:09 \nTransaction Date/Time (system local): 12-Jan-2026 19:21:09 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk14738.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk14738.pdf new file mode 100644 index 0000000..85c3560 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-12_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk14738.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14772.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14772.json new file mode 100644 index 0000000..7ef6595 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14772.json @@ -0,0 +1,10 @@ +{ + "pk": 14772, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-01-13", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1005098\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1096393\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1009070\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1038016\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 13-Jan-2026 13:23:11\n\nTransaction Date/Time (system local): 13-Jan-2026 12:23:11 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14772.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14772.pdf new file mode 100644 index 0000000..3dbdbfc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14772.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14770.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14770.json new file mode 100644 index 0000000..a7a1ac9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14770.json @@ -0,0 +1,10 @@ +{ + "pk": 14770, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-01-13", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080002 has been performed.\nMedication ID: 1246473\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1258016\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Jan-2026 11:29:42 \nTransaction Date/Time (system local): 13-Jan-2026 10:29:42 \nTransaction performed by: b.sollova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14770.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14770.pdf new file mode 100644 index 0000000..5249a98 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk14770.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008_pk14771.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008_pk14771.json new file mode 100644 index 0000000..95e7739 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008_pk14771.json @@ -0,0 +1,10 @@ +{ + "pk": 14771, + "title": "Randomized_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 randomized into Part 2 at site S10-CZ10008", + "event": "DB_Main_V3_1", + "actual_date": "2026-01-13", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been randomized into Part 2.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1005098Seltorexant 20mg or placeboT38028505-Apr-20261009070Seltorexant 20mg or placeboT38028505-Apr-20261038016Seltorexant 20mg or placeboT38028505-Apr-20261096393Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 13-Jan-2026 13:09:07\nTransaction Date/Time (system local): 13-Jan-2026 12:09:07\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008_pk14771.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008_pk14771.pdf new file mode 100644 index 0000000..07a11d9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080002_randomized_into_Part_2_at_site_S10-CZ10008_pk14771.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..b7537ad --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 14768, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-01-13", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1215148\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1227394\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1274851\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1291065\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Jan-2026 11:11:54\n\nTransaction Date/Time (system local): 13-Jan-2026 10:11:54 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..516bb2c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14768.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14768.json new file mode 100644 index 0000000..b7537ad --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14768.json @@ -0,0 +1,10 @@ +{ + "pk": 14768, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-01-13", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1215148\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1227394\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1274851\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1291065\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Jan-2026 11:11:54\n\nTransaction Date/Time (system local): 13-Jan-2026 10:11:54 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14768.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14768.pdf new file mode 100644 index 0000000..68fc775 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14768.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json new file mode 100644 index 0000000..829a4c1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 14767, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10008", + "event": "OL_Ind_V1_5", + "actual_date": "2026-01-13", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1215148\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1227394\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1274851\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1291065\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080006 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 13-Jan-2026 11:10:44 \n\r\n Transaction Date/Time (system local): 13-Jan-2026 10:10:44 \n\r\n Transaction performed by: m.deif@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..9d7b701 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk14767.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk14767.json new file mode 100644 index 0000000..829a4c1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk14767.json @@ -0,0 +1,10 @@ +{ + "pk": 14767, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10008", + "event": "OL_Ind_V1_5", + "actual_date": "2026-01-13", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1215148\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1227394\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1274851\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1291065\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080006 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 13-Jan-2026 11:10:44 \n\r\n Transaction Date/Time (system local): 13-Jan-2026 10:10:44 \n\r\n Transaction performed by: m.deif@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk14767.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk14767.pdf new file mode 100644 index 0000000..8f960ce Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk14767.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..c68239a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 14763, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-01-13", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1226397\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1254197\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Jan-2026 10:43:26 \nTransaction Date/Time (system local): 13-Jan-2026 09:43:26 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..06baee3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk14763.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk14763.json new file mode 100644 index 0000000..c68239a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk14763.json @@ -0,0 +1,10 @@ +{ + "pk": 14763, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-01-13", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1226397\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1254197\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Jan-2026 10:43:26 \nTransaction Date/Time (system local): 13-Jan-2026 09:43:26 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk14763.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk14763.pdf new file mode 100644 index 0000000..44967f4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-13_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk14763.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14847.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14847.json new file mode 100644 index 0000000..9de816a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14847.json @@ -0,0 +1,10 @@ +{ + "pk": 14847, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-01-14", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1218190\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1287807\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 14-Jan-2026 11:11:28\n\nTransaction Date/Time (system local): 14-Jan-2026 10:11:28 \nTransaction performed by: zdenek.solle@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14847.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14847.pdf new file mode 100644 index 0000000..98ece00 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk14847.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk16946.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk16946.json new file mode 100644 index 0000000..c0d1565 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk16946.json @@ -0,0 +1,10 @@ +{ + "pk": 16946, + "title": "Discontinue", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has been discontinued from IRT managed treatment at site S10-CZ10008", + "event": "uv_discontinue", + "actual_date": "2026-01-14", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Subject CZ100080005 has been Discontinued from IRT Managed Treatment.\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nDiscontinuation date: 14-Jan-2026 \nTransaction Date/Time (site local): 18-Feb-2026 14:33:25\nTransaction Date/Time (system local): 18-Feb-2026 13:33:25\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk16946.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk16946.pdf new file mode 100644 index 0000000..a00ae88 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk16946.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14848.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14848.json new file mode 100644 index 0000000..12d9658 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14848.json @@ -0,0 +1,10 @@ +{ + "pk": 14848, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080005 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-01-14", + "subject": "CZ100080005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080005 has been performed.\nMedication ID: 1218190\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1287807\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 14-Jan-2026 11:13:15 \nTransaction Date/Time (system local): 14-Jan-2026 10:13:15 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14848.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14848.pdf new file mode 100644 index 0000000..4ed7e62 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-14_Janssen_42847922MDD3003_Subject_CZ100080005_has_returned_a_medication_at_site_S10-CZ10008_pk14848.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json new file mode 100644 index 0000000..ef00180 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15018, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10004", + "event": "OL_Ind_V1_5", + "actual_date": "2026-01-16", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1277328\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1278099\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040003 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 16-Jan-2026 11:12:51 \n\r\n Transaction Date/Time (system local): 16-Jan-2026 10:12:51 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..294d506 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk15018.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk15018.json new file mode 100644 index 0000000..ef00180 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk15018.json @@ -0,0 +1,10 @@ +{ + "pk": 15018, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10004", + "event": "OL_Ind_V1_5", + "actual_date": "2026-01-16", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1277328\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1278099\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040003 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 16-Jan-2026 11:12:51 \n\r\n Transaction Date/Time (system local): 16-Jan-2026 10:12:51 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk15018.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk15018.pdf new file mode 100644 index 0000000..075aab6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk15018.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json new file mode 100644 index 0000000..dfb1efd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15008, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-01-16", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1201788Seltorexant 20mgT37484802-May-20261210206Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Jan-2026 09:45:31 \nTransaction Date/Time (system local): 16-Jan-2026 08:45:31 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..0e08934 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk15008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk15008.json new file mode 100644 index 0000000..dfb1efd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk15008.json @@ -0,0 +1,10 @@ +{ + "pk": 15008, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-01-16", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1201788Seltorexant 20mgT37484802-May-20261210206Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Jan-2026 09:45:31 \nTransaction Date/Time (system local): 16-Jan-2026 08:45:31 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk15008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk15008.pdf new file mode 100644 index 0000000..bf5a581 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk15008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..eddc66c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 15061, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-01-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1278005\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1280391\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Jan-2026 15:45:33\n\nTransaction Date/Time (system local): 16-Jan-2026 14:45:33 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..5890b07 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15061.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15061.json new file mode 100644 index 0000000..eddc66c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15061.json @@ -0,0 +1,10 @@ +{ + "pk": 15061, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-01-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1278005\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1280391\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Jan-2026 15:45:33\n\nTransaction Date/Time (system local): 16-Jan-2026 14:45:33 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15061.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15061.pdf new file mode 100644 index 0000000..7e6db45 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15061.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.json new file mode 100644 index 0000000..ab5aed3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 15059, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10011", + "event": "OL_Ind_V1_6", + "actual_date": "2026-01-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1278005\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1280391\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110003 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 16-Jan-2026 15:38:18 \n\r\n Transaction Date/Time (system local): 16-Jan-2026 14:38:18 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..3d8ae7f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk15059.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk15059.json new file mode 100644 index 0000000..ab5aed3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk15059.json @@ -0,0 +1,10 @@ +{ + "pk": 15059, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10011", + "event": "OL_Ind_V1_6", + "actual_date": "2026-01-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1278005\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1280391\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110003 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 16-Jan-2026 15:38:18 \n\r\n Transaction Date/Time (system local): 16-Jan-2026 14:38:18 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk15059.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk15059.pdf new file mode 100644 index 0000000..4176d20 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk15059.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..f686ecf --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 15060, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-01-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1204481\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1243052\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 6\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Jan-2026 15:44:54 \nTransaction Date/Time (system local): 16-Jan-2026 14:44:54 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..ade3276 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15060.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15060.json new file mode 100644 index 0000000..f686ecf --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15060.json @@ -0,0 +1,10 @@ +{ + "pk": 15060, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-01-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1204481\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1243052\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 6\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Jan-2026 15:44:54 \nTransaction Date/Time (system local): 16-Jan-2026 14:44:54 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15060.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15060.pdf new file mode 100644 index 0000000..dccd4bd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15060.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk15005.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk15005.json new file mode 100644 index 0000000..51437e2 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk15005.json @@ -0,0 +1,10 @@ +{ + "pk": 15005, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10011", + "event": "OL_Ind_V1_1", + "actual_date": "2026-01-16", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1219416Seltorexant 20mgT37484802-May-20261277219Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Jan-2026 09:10:05 \nTransaction Date/Time (system local): 16-Jan-2026 08:10:05 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk15005.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk15005.pdf new file mode 100644 index 0000000..6a60418 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk15005.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk15011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk15011.json new file mode 100644 index 0000000..09fadfd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk15011.json @@ -0,0 +1,10 @@ +{ + "pk": 15011, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-01-16", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110007 has been performed.\nMedication ID: 1061445\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 6\n\nMedication ID: 1142746\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Jan-2026 10:25:01 \nTransaction Date/Time (system local): 16-Jan-2026 09:25:01 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk15011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk15011.pdf new file mode 100644 index 0000000..50e3de9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk15011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json new file mode 100644 index 0000000..98c387a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 15164, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1211956\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:45:17\n\nTransaction Date/Time (system local): 19-Jan-2026 14:45:17 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..a8f3ccb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15164.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15164.json new file mode 100644 index 0000000..98c387a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15164.json @@ -0,0 +1,10 @@ +{ + "pk": 15164, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1211956\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:45:17\n\nTransaction Date/Time (system local): 19-Jan-2026 14:45:17 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15164.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15164.pdf new file mode 100644 index 0000000..8f840aa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15164.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15166.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15166.json new file mode 100644 index 0000000..dc94ed5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15166.json @@ -0,0 +1,10 @@ +{ + "pk": 15166, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1070318\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1140998\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Oct-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:49:46\n\nTransaction Date/Time (system local): 19-Jan-2026 14:49:46 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15166.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15166.pdf new file mode 100644 index 0000000..cc3afb7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15166.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15168.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15168.json new file mode 100644 index 0000000..e84e3a1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15168.json @@ -0,0 +1,10 @@ +{ + "pk": 15168, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1049726\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1058566\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:52:44\n\nTransaction Date/Time (system local): 19-Jan-2026 14:52:44 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15168.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15168.pdf new file mode 100644 index 0000000..aaf77af Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15168.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15170.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15170.json new file mode 100644 index 0000000..ad132a6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15170.json @@ -0,0 +1,10 @@ +{ + "pk": 15170, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1057623\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1099516\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:54:38\n\nTransaction Date/Time (system local): 19-Jan-2026 14:54:38 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15170.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15170.pdf new file mode 100644 index 0000000..71d006c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15170.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15172.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15172.json new file mode 100644 index 0000000..3434de9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15172.json @@ -0,0 +1,10 @@ +{ + "pk": 15172, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1280808\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1264307\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:56:12\n\nTransaction Date/Time (system local): 19-Jan-2026 14:56:12 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15172.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15172.pdf new file mode 100644 index 0000000..b70164a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15172.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15180.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15180.json new file mode 100644 index 0000000..270084e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15180.json @@ -0,0 +1,10 @@ +{ + "pk": 15180, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1274279\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 16:50:47\n\nTransaction Date/Time (system local): 19-Jan-2026 15:50:47 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15180.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15180.pdf new file mode 100644 index 0000000..a71c2b3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15180.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15182.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15182.json new file mode 100644 index 0000000..1d5aa57 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15182.json @@ -0,0 +1,10 @@ +{ + "pk": 15182, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1203336\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 02-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1216990\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 02-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1249121\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 02-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1261260\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 02-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 16:52:36\n\nTransaction Date/Time (system local): 19-Jan-2026 15:52:36 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15182.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15182.pdf new file mode 100644 index 0000000..dffc65a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15182.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json new file mode 100644 index 0000000..fb97ac9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 15165, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1211956\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:47:07 \nTransaction Date/Time (system local): 19-Jan-2026 14:47:07 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..eeb7f1b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15165.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15165.json new file mode 100644 index 0000000..fb97ac9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15165.json @@ -0,0 +1,10 @@ +{ + "pk": 15165, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1211956\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:47:07 \nTransaction Date/Time (system local): 19-Jan-2026 14:47:07 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15165.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15165.pdf new file mode 100644 index 0000000..4fcf7b0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15165.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15167.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15167.json new file mode 100644 index 0000000..98c31db --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15167.json @@ -0,0 +1,10 @@ +{ + "pk": 15167, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1070318\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1140998\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:51:28 \nTransaction Date/Time (system local): 19-Jan-2026 14:51:28 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15167.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15167.pdf new file mode 100644 index 0000000..b4b0bc4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15167.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15169.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15169.json new file mode 100644 index 0000000..8495406 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15169.json @@ -0,0 +1,10 @@ +{ + "pk": 15169, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1049726\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1058566\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:53:44 \nTransaction Date/Time (system local): 19-Jan-2026 14:53:44 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15169.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15169.pdf new file mode 100644 index 0000000..1261dd5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15169.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15171.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15171.json new file mode 100644 index 0000000..ce143d6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15171.json @@ -0,0 +1,10 @@ +{ + "pk": 15171, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1057623\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1099516\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:55:30 \nTransaction Date/Time (system local): 19-Jan-2026 14:55:30 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15171.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15171.pdf new file mode 100644 index 0000000..403467d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15171.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15173.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15173.json new file mode 100644 index 0000000..e96792d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15173.json @@ -0,0 +1,10 @@ +{ + "pk": 15173, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1264307\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1280808\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 15:57:28 \nTransaction Date/Time (system local): 19-Jan-2026 14:57:28 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15173.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15173.pdf new file mode 100644 index 0000000..aa23804 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15173.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15181.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15181.json new file mode 100644 index 0000000..b8e68e7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15181.json @@ -0,0 +1,10 @@ +{ + "pk": 15181, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-01-19", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1274279\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-Jan-2026 16:51:40 \nTransaction Date/Time (system local): 19-Jan-2026 15:51:40 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15181.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15181.pdf new file mode 100644 index 0000000..27035b8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-19_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15181.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15215.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15215.json new file mode 100644 index 0000000..bcf8db3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15215.json @@ -0,0 +1,10 @@ +{ + "pk": 15215, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-01-20", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1291073\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 20-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1293256\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 20-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1241496\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 06-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1257075\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 06-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1163610\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1190630\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1079822\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1151515\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1017917\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 25-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1027330\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 25-Nov-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Jan-2026 11:23:31\n\nTransaction Date/Time (system local): 20-Jan-2026 10:23:31 \nTransaction performed by: vysztavel@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15215.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15215.pdf new file mode 100644 index 0000000..dd64d31 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15215.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15214.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15214.json new file mode 100644 index 0000000..33df0b9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15214.json @@ -0,0 +1,10 @@ +{ + "pk": 15214, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10011", + "event": "OL_Ind_V1_4", + "actual_date": "2026-01-20", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1291073Seltorexant 20mgT37484802-May-20261293256Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Jan-2026 10:44:10 \nTransaction Date/Time (system local): 20-Jan-2026 09:44:10 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15214.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15214.pdf new file mode 100644 index 0000000..7b844b1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15214.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk15216.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk15216.json new file mode 100644 index 0000000..6f3440b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk15216.json @@ -0,0 +1,10 @@ +{ + "pk": 15216, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-01-20", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110006 has been performed.\nMedication ID: 1241496\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1257075\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1163610\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1190630\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1079822\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 5\n\nMedication ID: 1151515\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1017917\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1027330\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Jan-2026 11:27:01 \nTransaction Date/Time (system local): 20-Jan-2026 10:27:01 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk15216.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk15216.pdf new file mode 100644 index 0000000..e10da4b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-20_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk15216.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..21fc466 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 15311, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-01-21", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1052016\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1192649\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 21-Jan-2026 12:22:54\n\nTransaction Date/Time (system local): 21-Jan-2026 11:22:54 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..188b10d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk15311.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk15311.json new file mode 100644 index 0000000..21fc466 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk15311.json @@ -0,0 +1,10 @@ +{ + "pk": 15311, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-01-21", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1052016\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1192649\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 21-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 21-Jan-2026 12:22:54\n\nTransaction Date/Time (system local): 21-Jan-2026 11:22:54 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk15311.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk15311.pdf new file mode 100644 index 0000000..2d9ee0b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk15311.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16911.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16911.json new file mode 100644 index 0000000..46a35f0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16911.json @@ -0,0 +1,10 @@ +{ + "pk": 16911, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-01-21", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1078063\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 18-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1009984\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 18-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 18-Feb-2026 10:32:55\n\nTransaction Date/Time (system local): 18-Feb-2026 09:32:55 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16911.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16911.pdf new file mode 100644 index 0000000..38b80d3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16911.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008.json new file mode 100644 index 0000000..3a73c37 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 15309, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 randomized into Part 1 at site S10-CZ10008", + "event": "Rand", + "actual_date": "2026-01-21", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1052016Seltorexant 20mg or placeboT38028505-Apr-20261192649Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 21-Jan-2026 11:39:46\nTransaction Date/Time (system local): 21-Jan-2026 10:39:46\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..0347949 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008_pk15309.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008_pk15309.json new file mode 100644 index 0000000..3a73c37 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008_pk15309.json @@ -0,0 +1,10 @@ +{ + "pk": 15309, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 randomized into Part 1 at site S10-CZ10008", + "event": "Rand", + "actual_date": "2026-01-21", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1052016Seltorexant 20mg or placeboT38028505-Apr-20261192649Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 21-Jan-2026 11:39:46\nTransaction Date/Time (system local): 21-Jan-2026 10:39:46\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008_pk15309.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008_pk15309.pdf new file mode 100644 index 0000000..cc36728 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100080007_randomized_into_Part_1_at_site_S10-CZ10008_pk15309.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011_pk15433.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011_pk15433.json new file mode 100644 index 0000000..2a2ff1a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011_pk15433.json @@ -0,0 +1,10 @@ +{ + "pk": 15433, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110009 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2026-01-21", + "subject": "CZ100110009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110009 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110009 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 21-Jan-2026 \n\nDate of Screening in IRT: 21-Jan-2026 \nTransaction Date/Time (site local): 22-Jan-2026 15:39:04\nTransaction Date/Time (system local): 22-Jan-2026 14:39:04\n\nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011_pk15433.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011_pk15433.pdf new file mode 100644 index 0000000..84e109e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-21_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screened_at_site_S10-CZ10011_pk15433.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..3ffb3fb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15536, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-01-26", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1277328\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1278099\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1205323\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 07-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1293531\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 07-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 26-Jan-2026 07:37:57\n\nTransaction Date/Time (system local): 26-Jan-2026 06:37:57 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..065bbf7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15536.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15536.json new file mode 100644 index 0000000..3ffb3fb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15536.json @@ -0,0 +1,10 @@ +{ + "pk": 15536, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-01-26", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1277328\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1278099\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1205323\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 07-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1293531\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 07-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 26-Jan-2026 07:37:57\n\nTransaction Date/Time (system local): 26-Jan-2026 06:37:57 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15536.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15536.pdf new file mode 100644 index 0000000..52a2469 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15536.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..821e64e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15537, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-01-26", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1205323\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1293531\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 8\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 26-Jan-2026 07:39:20 \nTransaction Date/Time (system local): 26-Jan-2026 06:39:20 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..ff9f9d0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15537.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15537.json new file mode 100644 index 0000000..821e64e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15537.json @@ -0,0 +1,10 @@ +{ + "pk": 15537, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-01-26", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1205323\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1293531\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 8\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 26-Jan-2026 07:39:20 \nTransaction Date/Time (system local): 26-Jan-2026 06:39:20 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15537.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15537.pdf new file mode 100644 index 0000000..3c2257f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15537.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..31c9e4f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15540, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-01-26", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1093536\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 1\n\nMedication ID: 1047299\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 0\n\nMedication ID: 1176230\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 8\n\nMedication ID: 1000656\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 26-Jan-2026 08:04:48 \nTransaction Date/Time (system local): 26-Jan-2026 07:04:48 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..3519012 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15540.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15540.json new file mode 100644 index 0000000..31c9e4f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15540.json @@ -0,0 +1,10 @@ +{ + "pk": 15540, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-01-26", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1093536\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 1\n\nMedication ID: 1047299\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 0\n\nMedication ID: 1176230\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 8\n\nMedication ID: 1000656\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 26-Jan-2026 08:04:48 \nTransaction Date/Time (system local): 26-Jan-2026 07:04:48 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15540.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15540.pdf new file mode 100644 index 0000000..c184a04 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15540.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004.json new file mode 100644 index 0000000..9ebd8d6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15599, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2026-01-27", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 27-Jan-2026 \n\nDate of Screening in IRT: 27-Jan-2026 \nTransaction Date/Time (site local): 27-Jan-2026 08:04:46\nTransaction Date/Time (system local): 27-Jan-2026 07:04:46\n\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..311e7bd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004_pk15599.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004_pk15599.json new file mode 100644 index 0000000..9ebd8d6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004_pk15599.json @@ -0,0 +1,10 @@ +{ + "pk": 15599, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2026-01-27", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 27-Jan-2026 \n\nDate of Screening in IRT: 27-Jan-2026 \nTransaction Date/Time (site local): 27-Jan-2026 08:04:46\nTransaction Date/Time (system local): 27-Jan-2026 07:04:46\n\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004_pk15599.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004_pk15599.pdf new file mode 100644 index 0000000..19cb78d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_screened_at_site_S10-CZ10004_pk15599.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..c2fb920 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 15659, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-01-27", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1026229\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1093223\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Jan-2026 18:06:46\n\nTransaction Date/Time (system local): 27-Jan-2026 17:06:46 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..9ab242c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15659.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15659.json new file mode 100644 index 0000000..c2fb920 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15659.json @@ -0,0 +1,10 @@ +{ + "pk": 15659, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-01-27", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1026229\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1093223\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Jan-2026 18:06:46\n\nTransaction Date/Time (system local): 27-Jan-2026 17:06:46 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15659.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15659.pdf new file mode 100644 index 0000000..773dfd8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15659.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17291.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17291.json new file mode 100644 index 0000000..fb9b85d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17291.json @@ -0,0 +1,10 @@ +{ + "pk": 17291, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-01-27", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1188399\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 24-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1191713\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 24-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Feb-2026 10:59:17\n\nTransaction Date/Time (system local): 24-Feb-2026 09:59:17 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17291.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17291.pdf new file mode 100644 index 0000000..a27eed8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17291.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011.json new file mode 100644 index 0000000..85cd823 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 15602, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 randomized into Part 1 at site S10-CZ10011", + "event": "Rand", + "actual_date": "2026-01-27", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1026229Seltorexant 20mg or placeboT38028505-Apr-20261093223Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Jan-2026 09:45:01\nTransaction Date/Time (system local): 27-Jan-2026 08:45:01\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..f099450 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011_pk15602.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011_pk15602.json new file mode 100644 index 0000000..85cd823 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011_pk15602.json @@ -0,0 +1,10 @@ +{ + "pk": 15602, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 randomized into Part 1 at site S10-CZ10011", + "event": "Rand", + "actual_date": "2026-01-27", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1026229Seltorexant 20mg or placeboT38028505-Apr-20261093223Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Jan-2026 09:45:01\nTransaction Date/Time (system local): 27-Jan-2026 08:45:01\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011_pk15602.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011_pk15602.pdf new file mode 100644 index 0000000..ee73dc0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-27_Janssen_42847922MDD3003_Subject_CZ100110008_randomized_into_Part_1_at_site_S10-CZ10011_pk15602.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012_pk15725.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012_pk15725.json new file mode 100644 index 0000000..bc51a08 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012_pk15725.json @@ -0,0 +1,10 @@ +{ + "pk": 15725, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 has been screened at site S10-CZ10012", + "event": "Screen", + "actual_date": "2026-01-28", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120005 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 28-Jan-2026 \n\nDate of Screening in IRT: 28-Jan-2026 \nTransaction Date/Time (site local): 28-Jan-2026 16:24:04\nTransaction Date/Time (system local): 28-Jan-2026 15:24:04\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012_pk15725.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012_pk15725.pdf new file mode 100644 index 0000000..24101a5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-28_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_screened_at_site_S10-CZ10012_pk15725.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json new file mode 100644 index 0000000..dd0b863 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15807, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-01-29", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1228758Seltorexant 20mgT37484802-May-20261266570Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 29-Jan-2026 16:43:47 \nTransaction Date/Time (system local): 29-Jan-2026 15:43:47 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..cebef54 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk15807.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk15807.json new file mode 100644 index 0000000..dd0b863 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk15807.json @@ -0,0 +1,10 @@ +{ + "pk": 15807, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-01-29", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1228758Seltorexant 20mgT37484802-May-20261266570Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 29-Jan-2026 16:43:47 \nTransaction Date/Time (system local): 29-Jan-2026 15:43:47 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk15807.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk15807.pdf new file mode 100644 index 0000000..72965ed Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-29_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk15807.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json new file mode 100644 index 0000000..17f917e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15875, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10004", + "event": "OL_Ind_V1_6", + "actual_date": "2026-01-30", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1204968\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1220027\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1272599\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1294371\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040003 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 30-Jan-2026 10:28:01 \n\r\n Transaction Date/Time (system local): 30-Jan-2026 09:28:01 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..a271c65 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk15875.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk15875.json new file mode 100644 index 0000000..17f917e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk15875.json @@ -0,0 +1,10 @@ +{ + "pk": 15875, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10004", + "event": "OL_Ind_V1_6", + "actual_date": "2026-01-30", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1204968\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1220027\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1272599\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1294371\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040003 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 30-Jan-2026 10:28:01 \n\r\n Transaction Date/Time (system local): 30-Jan-2026 09:28:01 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk15875.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk15875.pdf new file mode 100644 index 0000000..2d83b4d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk15875.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004.json new file mode 100644 index 0000000..9b9eaad --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15878, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2026-01-30", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 30-Jan-2026 \n\nDate of Screening in IRT: 30-Jan-2026 \nTransaction Date/Time (site local): 30-Jan-2026 10:50:08\nTransaction Date/Time (system local): 30-Jan-2026 09:50:08\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..7d41d68 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004_pk15878.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004_pk15878.json new file mode 100644 index 0000000..9b9eaad --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004_pk15878.json @@ -0,0 +1,10 @@ +{ + "pk": 15878, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2026-01-30", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 30-Jan-2026 \n\nDate of Screening in IRT: 30-Jan-2026 \nTransaction Date/Time (site local): 30-Jan-2026 10:50:08\nTransaction Date/Time (system local): 30-Jan-2026 09:50:08\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004_pk15878.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004_pk15878.pdf new file mode 100644 index 0000000..94e4d7c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_screened_at_site_S10-CZ10004_pk15878.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..06afa5e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 15881, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-01-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1208884\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1231948\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1273101\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1273178\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 30-Jan-2026 11:36:29\n\nTransaction Date/Time (system local): 30-Jan-2026 10:36:29 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..7a06546 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15881.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15881.json new file mode 100644 index 0000000..06afa5e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15881.json @@ -0,0 +1,10 @@ +{ + "pk": 15881, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-01-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1208884\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1231948\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1273101\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1273178\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 30-Jan-2026 11:36:29\n\nTransaction Date/Time (system local): 30-Jan-2026 10:36:29 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15881.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15881.pdf new file mode 100644 index 0000000..b34f280 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk15881.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.json new file mode 100644 index 0000000..e73458c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 15866, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Induction Visit 1.7 at site S10-CZ10011", + "event": "OL_Ind_V1_7", + "actual_date": "2026-01-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.7:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1208884\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1231948\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1273101\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1273178\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110003 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 30-Jan-2026 09:39:20 \n\r\n Transaction Date/Time (system local): 30-Jan-2026 08:39:20 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..e934920 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk15866.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk15866.json new file mode 100644 index 0000000..e73458c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk15866.json @@ -0,0 +1,10 @@ +{ + "pk": 15866, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Induction Visit 1.7 at site S10-CZ10011", + "event": "OL_Ind_V1_7", + "actual_date": "2026-01-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Induction Visit 1.7:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1208884\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1231948\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1273101\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1273178\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110003 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 30-Jan-2026 09:39:20 \n\r\n Transaction Date/Time (system local): 30-Jan-2026 08:39:20 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk15866.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk15866.pdf new file mode 100644 index 0000000..efb2f51 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk15866.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..bb90a7e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 15880, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-01-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1278005\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1280391\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 30-Jan-2026 11:36:01 \nTransaction Date/Time (system local): 30-Jan-2026 10:36:01 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..5f77ab0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15880.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15880.json new file mode 100644 index 0000000..bb90a7e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15880.json @@ -0,0 +1,10 @@ +{ + "pk": 15880, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-01-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1278005\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1280391\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 30-Jan-2026 11:36:01 \nTransaction Date/Time (system local): 30-Jan-2026 10:36:01 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15880.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15880.pdf new file mode 100644 index 0000000..3c68834 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-01-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk15880.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.json new file mode 100644 index 0000000..0f8c7bb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 15945, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10012", + "event": "OL_TS_V2_2", + "actual_date": "2026-02-01", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1220000Seltorexant 20mgT37484802-May-20261244404Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 01-Feb-2026 14:05:40 \nTransaction Date/Time (system local): 01-Feb-2026 13:05:40 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..780c995 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk15945.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk15945.json new file mode 100644 index 0000000..0f8c7bb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk15945.json @@ -0,0 +1,10 @@ +{ + "pk": 15945, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10012", + "event": "OL_TS_V2_2", + "actual_date": "2026-02-01", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1220000Seltorexant 20mgT37484802-May-20261244404Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 01-Feb-2026 14:05:40 \nTransaction Date/Time (system local): 01-Feb-2026 13:05:40 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk15945.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk15945.pdf new file mode 100644 index 0000000..230a939 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk15945.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012.json new file mode 100644 index 0000000..0c6003c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 15944, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been screened at site S10-CZ10012", + "event": "Screen", + "actual_date": "2026-02-01", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 01-Feb-2026 \n\nDate of Screening in IRT: 01-Feb-2026 \nTransaction Date/Time (site local): 01-Feb-2026 12:37:39\nTransaction Date/Time (system local): 01-Feb-2026 11:37:39\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..d82d64b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012_pk15944.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012_pk15944.json new file mode 100644 index 0000000..0c6003c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012_pk15944.json @@ -0,0 +1,10 @@ +{ + "pk": 15944, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been screened at site S10-CZ10012", + "event": "Screen", + "actual_date": "2026-02-01", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 01-Feb-2026 \n\nDate of Screening in IRT: 01-Feb-2026 \nTransaction Date/Time (site local): 01-Feb-2026 12:37:39\nTransaction Date/Time (system local): 01-Feb-2026 11:37:39\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012_pk15944.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012_pk15944.pdf new file mode 100644 index 0000000..e7ce7d9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-01_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_screened_at_site_S10-CZ10012_pk15944.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..4fcff87 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15954, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-02-02", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1204968\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1220027\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1272599\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1294371\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 09:25:26\n\nTransaction Date/Time (system local): 02-Feb-2026 08:25:26 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..a3644c6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15954.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15954.json new file mode 100644 index 0000000..4fcff87 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15954.json @@ -0,0 +1,10 @@ +{ + "pk": 15954, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-02-02", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1204968\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1220027\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1272599\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1294371\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 09:25:26\n\nTransaction Date/Time (system local): 02-Feb-2026 08:25:26 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15954.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15954.pdf new file mode 100644 index 0000000..68fcbfe Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15954.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..e6a0962 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15955, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-02-02", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1277328\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1278099\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 09:26:33 \nTransaction Date/Time (system local): 02-Feb-2026 08:26:33 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..8031b48 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15955.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15955.json new file mode 100644 index 0000000..e6a0962 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15955.json @@ -0,0 +1,10 @@ +{ + "pk": 15955, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-02-02", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1277328\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1278099\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 09:26:33 \nTransaction Date/Time (system local): 02-Feb-2026 08:26:33 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15955.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15955.pdf new file mode 100644 index 0000000..d17a414 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk15955.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..d87bbad --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15957, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-02-02", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1228758\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1266570\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 09:29:07\n\nTransaction Date/Time (system local): 02-Feb-2026 08:29:07 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..7dee84c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15957.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15957.json new file mode 100644 index 0000000..d87bbad --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15957.json @@ -0,0 +1,10 @@ +{ + "pk": 15957, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-02-02", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1228758\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1266570\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 09:29:07\n\nTransaction Date/Time (system local): 02-Feb-2026 08:29:07 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15957.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15957.pdf new file mode 100644 index 0000000..7e5fb1d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk15957.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..81732b3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 15958, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-02-02", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1201788\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1210206\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 09:31:08 \nTransaction Date/Time (system local): 02-Feb-2026 08:31:08 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..e4bfd39 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15958.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15958.json new file mode 100644 index 0000000..81732b3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15958.json @@ -0,0 +1,10 @@ +{ + "pk": 15958, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-02-02", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1201788\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1210206\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 09:31:08 \nTransaction Date/Time (system local): 02-Feb-2026 08:31:08 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15958.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15958.pdf new file mode 100644 index 0000000..02fc447 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk15958.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16020.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16020.json new file mode 100644 index 0000000..6924ab5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16020.json @@ -0,0 +1,10 @@ +{ + "pk": 16020, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-02-02", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1214847\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 02-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1235803\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 02-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 18:28:47\n\nTransaction Date/Time (system local): 02-Feb-2026 17:28:47 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16020.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16020.pdf new file mode 100644 index 0000000..3c89ddf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16020.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15974.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15974.json new file mode 100644 index 0000000..c5bd17f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15974.json @@ -0,0 +1,10 @@ +{ + "pk": 15974, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10011", + "event": "OL_Ind_V1_4", + "actual_date": "2026-02-02", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1214847Seltorexant 20mgT37484802-May-20261235803Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 12:21:38 \nTransaction Date/Time (system local): 02-Feb-2026 11:21:38 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15974.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15974.pdf new file mode 100644 index 0000000..7686c57 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk15974.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16019.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16019.json new file mode 100644 index 0000000..920f7fc --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16019.json @@ -0,0 +1,10 @@ +{ + "pk": 16019, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-02-02", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110007 has been performed.\nMedication ID: 1219416\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1277219\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 18:28:04 \nTransaction Date/Time (system local): 02-Feb-2026 17:28:04 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16019.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16019.pdf new file mode 100644 index 0000000..613d6c6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16019.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json new file mode 100644 index 0000000..a620366 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 15980, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-02-02", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1220000\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 01-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1244404\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 01-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 13:55:50\n\nTransaction Date/Time (system local): 02-Feb-2026 12:55:50 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..232dbbb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15980.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15980.json new file mode 100644 index 0000000..a620366 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15980.json @@ -0,0 +1,10 @@ +{ + "pk": 15980, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-02-02", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1220000\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 01-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1244404\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 01-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 13:55:50\n\nTransaction Date/Time (system local): 02-Feb-2026 12:55:50 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15980.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15980.pdf new file mode 100644 index 0000000..93be7b6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk15980.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json new file mode 100644 index 0000000..038766c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 15981, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-02-02", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1203336\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1216990\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1249121\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1261260\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 1\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 13:57:08 \nTransaction Date/Time (system local): 02-Feb-2026 12:57:08 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..5634d82 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15981.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15981.json new file mode 100644 index 0000000..038766c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15981.json @@ -0,0 +1,10 @@ +{ + "pk": 15981, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-02-02", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1203336\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1216990\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1249121\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1261260\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 1\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Feb-2026 13:57:08 \nTransaction Date/Time (system local): 02-Feb-2026 12:57:08 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15981.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15981.pdf new file mode 100644 index 0000000..0e2f44a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-02_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk15981.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16047.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16047.json new file mode 100644 index 0000000..3e9e365 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16047.json @@ -0,0 +1,10 @@ +{ + "pk": 16047, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10011", + "event": "OL_Ind_V1_5", + "actual_date": "2026-02-03", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1209188\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1235008\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1275774\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1296942\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110006 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Manual\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 03-Feb-2026 11:31:29 \n\r\n Transaction Date/Time (system local): 03-Feb-2026 10:31:29 \n\r\n Transaction performed by: vysztavel@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16047.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16047.pdf new file mode 100644 index 0000000..55d1d19 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16047.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..f8afe29 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 16128, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-02-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1017592\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 04-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1187729\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 04-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 04-Feb-2026 11:48:23\n\nTransaction Date/Time (system local): 04-Feb-2026 10:48:23 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..357d4c3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16128.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16128.json new file mode 100644 index 0000000..f8afe29 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16128.json @@ -0,0 +1,10 @@ +{ + "pk": 16128, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-02-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1017592\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 04-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1187729\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 04-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 04-Feb-2026 11:48:23\n\nTransaction Date/Time (system local): 04-Feb-2026 10:48:23 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16128.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16128.pdf new file mode 100644 index 0000000..483e516 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16128.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17776.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17776.json new file mode 100644 index 0000000..9af067a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17776.json @@ -0,0 +1,10 @@ +{ + "pk": 17776, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-02-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1212767\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 04-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1224656\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 04-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 04-Mar-2026 13:06:59\n\nTransaction Date/Time (system local): 04-Mar-2026 12:06:59 \nTransaction performed by: zdenek.solle@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17776.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17776.pdf new file mode 100644 index 0000000..543ee77 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17776.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json new file mode 100644 index 0000000..eea5e1a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 16127, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10008", + "event": "DB_P1_V6", + "actual_date": "2026-02-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1017592Seltorexant 20mg or placeboT38028505-Apr-20261187729Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 04-Feb-2026 11:47:38 \nTransaction Date/Time (system local): 04-Feb-2026 10:47:38 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..901f547 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk16127.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk16127.json new file mode 100644 index 0000000..eea5e1a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk16127.json @@ -0,0 +1,10 @@ +{ + "pk": 16127, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10008", + "event": "DB_P1_V6", + "actual_date": "2026-02-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1017592Seltorexant 20mg or placeboT38028505-Apr-20261187729Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 04-Feb-2026 11:47:38 \nTransaction Date/Time (system local): 04-Feb-2026 10:47:38 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk16127.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk16127.pdf new file mode 100644 index 0000000..fd6f952 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10008_pk16127.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..f898063 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 16133, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-02-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1052016\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1192649\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 04-Feb-2026 13:21:08 \nTransaction Date/Time (system local): 04-Feb-2026 12:21:08 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..178228c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16133.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16133.json new file mode 100644 index 0000000..f898063 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16133.json @@ -0,0 +1,10 @@ +{ + "pk": 16133, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-02-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1052016\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1192649\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 04-Feb-2026 13:21:08 \nTransaction Date/Time (system local): 04-Feb-2026 12:21:08 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16133.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16133.pdf new file mode 100644 index 0000000..88989c1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16133.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16914.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16914.json new file mode 100644 index 0000000..ae2ab17 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16914.json @@ -0,0 +1,10 @@ +{ + "pk": 16914, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-02-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1017592\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1187729\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 18-Feb-2026 10:44:01 \nTransaction Date/Time (system local): 18-Feb-2026 09:44:01 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16914.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16914.pdf new file mode 100644 index 0000000..173043c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk16914.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk16302.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk16302.json new file mode 100644 index 0000000..d466490 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk16302.json @@ -0,0 +1,10 @@ +{ + "pk": 16302, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Double Blind Maintenance Visit 3.2 at site S10-CZ10004", + "event": "DB_Main_V3_2", + "actual_date": "2026-02-06", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1014121Seltorexant 20mg or placeboT38650424-Jun-20281070709Seltorexant 20mg or placeboT38650424-Jun-20281124280Seltorexant 20mg or placeboT38650424-Jun-20281162222Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 06-Feb-2026 12:31:08 \nTransaction Date/Time (system local): 06-Feb-2026 11:31:08 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk16302.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk16302.pdf new file mode 100644 index 0000000..3f14859 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk16302.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011_pk17514.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011_pk17514.json new file mode 100644 index 0000000..8837a1b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011_pk17514.json @@ -0,0 +1,10 @@ +{ + "pk": 17514, + "title": "Screenfail", + "label": "Janssen 42847922MDD3003 Subject CZ100110009 has been screen failed at site S10-CZ10011", + "event": "uv_screen_fail", + "actual_date": "2026-02-06", + "subject": "CZ100110009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110009 \nIRT Subject Status: Screen Failed \n\nScreenfail Date: 06-Feb-2026\nTransaction Date/Time (site local): 27-Feb-2026 12:40:15\nTransaction Date/Time (system local): 27-Feb-2026 11:40:15\nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011_pk17514.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011_pk17514.pdf new file mode 100644 index 0000000..23994b9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-06_Janssen_42847922MDD3003_Subject_CZ100110009_has_been_screen_failed_at_site_S10-CZ10011_pk17514.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16364.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16364.json new file mode 100644 index 0000000..1ecd2fd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16364.json @@ -0,0 +1,10 @@ +{ + "pk": 16364, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-02-09", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040001 has\nbeen performed for the following medication IDs:\n\nMedication No: 1014121\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1070709\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1124280\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1162222\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1016532\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 09-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1043501\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 09-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1070812\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 09-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1098750\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 09-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1213318\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1279535\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Dec-2025\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 09-Feb-2026 09:14:46\n\nTransaction Date/Time (system local): 09-Feb-2026 08:14:46 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16364.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16364.pdf new file mode 100644 index 0000000..c456b66 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16364.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk16365.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk16365.json new file mode 100644 index 0000000..40657bb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk16365.json @@ -0,0 +1,10 @@ +{ + "pk": 16365, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-02-09", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040001 has been performed.\nMedication ID: 1279535\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1213318\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1098750\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1070812\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1043501\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1016532\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 09-Feb-2026 09:16:06 \nTransaction Date/Time (system local): 09-Feb-2026 08:16:06 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk16365.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk16365.pdf new file mode 100644 index 0000000..a1c7c47 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk16365.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..6e56d73 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 16370, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-02-09", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1204968\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1220027\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1272599\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1294371\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 09-Feb-2026 09:21:12\n\nTransaction Date/Time (system local): 09-Feb-2026 08:21:12 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..9dc937a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16370.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16370.json new file mode 100644 index 0000000..6e56d73 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16370.json @@ -0,0 +1,10 @@ +{ + "pk": 16370, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-02-09", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1204968\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1220027\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1272599\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1294371\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 09-Feb-2026 09:21:12\n\nTransaction Date/Time (system local): 09-Feb-2026 08:21:12 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16370.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16370.pdf new file mode 100644 index 0000000..dd8a9e5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-09_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16370.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16446.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16446.json new file mode 100644 index 0000000..c137316 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16446.json @@ -0,0 +1,10 @@ +{ + "pk": 16446, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-02-10", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1004752\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1021105\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1050201\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1121600\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 10-Feb-2026 12:04:51\n\nTransaction Date/Time (system local): 10-Feb-2026 11:04:51 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16446.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16446.pdf new file mode 100644 index 0000000..28b7794 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16446.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008_pk16445.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008_pk16445.json new file mode 100644 index 0000000..e71e52b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008_pk16445.json @@ -0,0 +1,10 @@ +{ + "pk": 16445, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Double Blind Maintenance Visit 3.2 at site S10-CZ10008", + "event": "DB_Main_V3_2", + "actual_date": "2026-02-10", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1004752Seltorexant 20mg or placeboT38028505-Apr-20261021105Seltorexant 20mg or placeboT38028505-Apr-20261050201Seltorexant 20mg or placeboT38650424-Jun-20281121600Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 10-Feb-2026 12:03:54 \nTransaction Date/Time (system local): 10-Feb-2026 11:03:54 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008_pk16445.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008_pk16445.pdf new file mode 100644 index 0000000..2b28589 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10008_pk16445.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk16443.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk16443.json new file mode 100644 index 0000000..cbdc9fa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk16443.json @@ -0,0 +1,10 @@ +{ + "pk": 16443, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-02-10", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080002 has been performed.\nMedication ID: 1005098\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1009070\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1038016\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1096393\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 10-Feb-2026 11:36:10 \nTransaction Date/Time (system local): 10-Feb-2026 10:36:10 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk16443.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk16443.pdf new file mode 100644 index 0000000..4dfae7e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk16443.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..890eecb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 16436, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-02-10", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1242550\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1264797\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Feb-2026 10:59:20\n\nTransaction Date/Time (system local): 10-Feb-2026 09:59:20 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..685af77 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16436.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16436.json new file mode 100644 index 0000000..890eecb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16436.json @@ -0,0 +1,10 @@ +{ + "pk": 16436, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-02-10", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1242550\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1264797\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Feb-2026 10:59:20\n\nTransaction Date/Time (system local): 10-Feb-2026 09:59:20 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16436.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16436.pdf new file mode 100644 index 0000000..721fa6c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk16436.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.json new file mode 100644 index 0000000..e74014d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 16435, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10008", + "event": "OL_TS_V2_2", + "actual_date": "2026-02-10", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1242550Seltorexant 20mgT37484802-May-20261264797Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Feb-2026 10:58:06 \nTransaction Date/Time (system local): 10-Feb-2026 09:58:06 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..c466da9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk16435.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk16435.json new file mode 100644 index 0000000..e74014d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk16435.json @@ -0,0 +1,10 @@ +{ + "pk": 16435, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10008", + "event": "OL_TS_V2_2", + "actual_date": "2026-02-10", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1242550Seltorexant 20mgT37484802-May-20261264797Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Feb-2026 10:58:06 \nTransaction Date/Time (system local): 10-Feb-2026 09:58:06 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk16435.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk16435.pdf new file mode 100644 index 0000000..192e118 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk16435.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..d79f6df --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 16437, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-02-10", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1215148\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1227394\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1274851\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1291065\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Feb-2026 11:09:56 \nTransaction Date/Time (system local): 10-Feb-2026 10:09:56 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..f7326c6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk16437.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk16437.json new file mode 100644 index 0000000..d79f6df --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk16437.json @@ -0,0 +1,10 @@ +{ + "pk": 16437, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-02-10", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1215148\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1227394\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1274851\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1291065\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Feb-2026 11:09:56 \nTransaction Date/Time (system local): 10-Feb-2026 10:09:56 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk16437.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk16437.pdf new file mode 100644 index 0000000..c8a1f16 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk16437.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16494.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16494.json new file mode 100644 index 0000000..635c64d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16494.json @@ -0,0 +1,10 @@ +{ + "pk": 16494, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-02-10", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1209188\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1235008\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1275774\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1296942\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Feb-2026 20:07:06\n\nTransaction Date/Time (system local): 10-Feb-2026 19:07:06 \nTransaction performed by: vysztavel@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16494.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16494.pdf new file mode 100644 index 0000000..a9eac35 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16494.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16495.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16495.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16495.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16495.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16495.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16495.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16495.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16495.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..e3bfad8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 16472, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-02-10", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1129172\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1189663\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 10-Feb-2026 15:38:14\n\nTransaction Date/Time (system local): 10-Feb-2026 14:38:14 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..3f171bb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16472.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16472.json new file mode 100644 index 0000000..e3bfad8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16472.json @@ -0,0 +1,10 @@ +{ + "pk": 16472, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-02-10", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1129172\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1189663\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 10-Feb-2026 15:38:14\n\nTransaction Date/Time (system local): 10-Feb-2026 14:38:14 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16472.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16472.pdf new file mode 100644 index 0000000..51b05fd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16472.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19010.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19010.json new file mode 100644 index 0000000..362ca45 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19010.json @@ -0,0 +1,10 @@ +{ + "pk": 19010, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-02-10", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1203532\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 10-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1210628\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 10-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Mar-2026 10:18:47\n\nTransaction Date/Time (system local): 24-Mar-2026 09:18:47 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19010.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19010.pdf new file mode 100644 index 0000000..d1f3518 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19010.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json new file mode 100644 index 0000000..24cc8c0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 16434, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10011", + "event": "DB_P1_V6", + "actual_date": "2026-02-10", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1129172Seltorexant 20mg or placeboT38028505-Apr-20261189663Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 10-Feb-2026 09:55:07 \nTransaction Date/Time (system local): 10-Feb-2026 08:55:07 \nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..b57887a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk16434.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk16434.json new file mode 100644 index 0000000..24cc8c0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk16434.json @@ -0,0 +1,10 @@ +{ + "pk": 16434, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10011", + "event": "DB_P1_V6", + "actual_date": "2026-02-10", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1129172Seltorexant 20mg or placeboT38028505-Apr-20261189663Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 10-Feb-2026 09:55:07 \nTransaction Date/Time (system local): 10-Feb-2026 08:55:07 \nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk16434.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk16434.pdf new file mode 100644 index 0000000..737f440 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk16434.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json new file mode 100644 index 0000000..9b481da --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 16730, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10004", + "event": "OL_Ind_V1_5", + "actual_date": "2026-02-13", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1246022\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1255175\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040004 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 13-Feb-2026 09:38:15 \n\r\n Transaction Date/Time (system local): 13-Feb-2026 08:38:15 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..e631696 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk16730.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk16730.json new file mode 100644 index 0000000..9b481da --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk16730.json @@ -0,0 +1,10 @@ +{ + "pk": 16730, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10004", + "event": "OL_Ind_V1_5", + "actual_date": "2026-02-13", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1246022\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1255175\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040004 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 13-Feb-2026 09:38:15 \n\r\n Transaction Date/Time (system local): 13-Feb-2026 08:38:15 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk16730.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk16730.pdf new file mode 100644 index 0000000..beb6681 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk16730.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012.json new file mode 100644 index 0000000..1f14bb0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 16772, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10012", + "event": "OL_TS_V2_3", + "actual_date": "2026-02-15", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1260341Seltorexant 20mgT39247624-Jun-20281296251Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 15-Feb-2026 11:42:53 \nTransaction Date/Time (system local): 15-Feb-2026 10:42:53 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..b5247a6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012_pk16772.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012_pk16772.json new file mode 100644 index 0000000..1f14bb0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012_pk16772.json @@ -0,0 +1,10 @@ +{ + "pk": 16772, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10012", + "event": "OL_TS_V2_3", + "actual_date": "2026-02-15", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120004 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1260341Seltorexant 20mgT39247624-Jun-20281296251Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 15-Feb-2026 11:42:53 \nTransaction Date/Time (system local): 15-Feb-2026 10:42:53 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012_pk16772.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012_pk16772.pdf new file mode 100644 index 0000000..0148cb9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10012_pk16772.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json new file mode 100644 index 0000000..ec8f23a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 16771, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-02-15", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1220000\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1244404\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 15-Feb-2026 11:29:39 \nTransaction Date/Time (system local): 15-Feb-2026 10:29:39 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..bee75b1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk16771.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk16771.json new file mode 100644 index 0000000..ec8f23a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk16771.json @@ -0,0 +1,10 @@ +{ + "pk": 16771, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-02-15", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1220000\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1244404\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 15-Feb-2026 11:29:39 \nTransaction Date/Time (system local): 15-Feb-2026 10:29:39 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk16771.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk16771.pdf new file mode 100644 index 0000000..84a0f7d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk16771.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012_pk16775.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012_pk16775.json new file mode 100644 index 0000000..4f20e7f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012_pk16775.json @@ -0,0 +1,10 @@ +{ + "pk": 16775, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 randomized into Part 1 at site S10-CZ10012", + "event": "Rand", + "actual_date": "2026-02-15", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120005 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1054383Seltorexant 20mg or placeboT38028505-Apr-20261056791Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 15-Feb-2026 15:56:13\nTransaction Date/Time (system local): 15-Feb-2026 14:56:13\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012_pk16775.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012_pk16775.pdf new file mode 100644 index 0000000..8c38f8c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120005_randomized_into_Part_1_at_site_S10-CZ10012_pk16775.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012.json new file mode 100644 index 0000000..cab2d40 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 16774, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 randomized into Part 1 at site S10-CZ10012", + "event": "Rand", + "actual_date": "2026-02-15", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1002732Seltorexant 20mg or placeboT38028505-Apr-20261088979Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 15-Feb-2026 13:19:10\nTransaction Date/Time (system local): 15-Feb-2026 12:19:10\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..304171c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012_pk16774.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012_pk16774.json new file mode 100644 index 0000000..cab2d40 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012_pk16774.json @@ -0,0 +1,10 @@ +{ + "pk": 16774, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 randomized into Part 1 at site S10-CZ10012", + "event": "Rand", + "actual_date": "2026-02-15", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1002732Seltorexant 20mg or placeboT38028505-Apr-20261088979Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 15-Feb-2026 13:19:10\nTransaction Date/Time (system local): 15-Feb-2026 12:19:10\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012_pk16774.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012_pk16774.pdf new file mode 100644 index 0000000..cb33d06 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-15_Janssen_42847922MDD3003_Subject_CZ100120006_randomized_into_Part_1_at_site_S10-CZ10012_pk16774.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..1db167e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 16805, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-02-16", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1246022\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1255175\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1228758\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1266570\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Feb-2026 12:57:58\n\nTransaction Date/Time (system local): 16-Feb-2026 11:57:58 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..737ed47 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16805.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16805.json new file mode 100644 index 0000000..1db167e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16805.json @@ -0,0 +1,10 @@ +{ + "pk": 16805, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-02-16", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1246022\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1255175\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1228758\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1266570\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Feb-2026 12:57:58\n\nTransaction Date/Time (system local): 16-Feb-2026 11:57:58 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16805.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16805.pdf new file mode 100644 index 0000000..482d491 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk16805.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..58026da --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 16806, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-02-16", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1228758\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nMedication ID: 1266570\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Feb-2026 12:59:14 \nTransaction Date/Time (system local): 16-Feb-2026 11:59:14 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..78d8ed9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk16806.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk16806.json new file mode 100644 index 0000000..58026da --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk16806.json @@ -0,0 +1,10 @@ +{ + "pk": 16806, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-02-16", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1228758\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nMedication ID: 1266570\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Feb-2026 12:59:14 \nTransaction Date/Time (system local): 16-Feb-2026 11:59:14 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk16806.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk16806.pdf new file mode 100644 index 0000000..3016533 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk16806.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16802.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16802.json new file mode 100644 index 0000000..9b55619 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16802.json @@ -0,0 +1,10 @@ +{ + "pk": 16802, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-02-16", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1224138\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1281712\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Feb-2026 10:46:35\n\nTransaction Date/Time (system local): 16-Feb-2026 09:46:35 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16802.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16802.pdf new file mode 100644 index 0000000..93a5068 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk16802.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16797.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16797.json new file mode 100644 index 0000000..ccaf1ee --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16797.json @@ -0,0 +1,10 @@ +{ + "pk": 16797, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10011", + "event": "OL_Ind_V1_5", + "actual_date": "2026-02-16", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1224138\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n1281712\r\n Seltorexant 20mg\r\n T374848\r\n 02-May-2026\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110007 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 16-Feb-2026 10:20:46 \n\r\n Transaction Date/Time (system local): 16-Feb-2026 09:20:46 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16797.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16797.pdf new file mode 100644 index 0000000..ddec240 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk16797.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16801.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16801.json new file mode 100644 index 0000000..c29c968 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16801.json @@ -0,0 +1,10 @@ +{ + "pk": 16801, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-02-16", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110007 has been performed.\nMedication ID: 1214847\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1235803\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Feb-2026 10:45:55 \nTransaction Date/Time (system local): 16-Feb-2026 09:45:55 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16801.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16801.pdf new file mode 100644 index 0000000..fbab40e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk16801.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011.json new file mode 100644 index 0000000..8c8963a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 16860, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2026-02-17", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 17-Feb-2026 \n\nDate of Screening in IRT: 17-Feb-2026 \nTransaction Date/Time (site local): 17-Feb-2026 14:49:54\nTransaction Date/Time (system local): 17-Feb-2026 13:49:54\n\nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..b9c0059 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011_pk16860.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011_pk16860.json new file mode 100644 index 0000000..8c8963a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011_pk16860.json @@ -0,0 +1,10 @@ +{ + "pk": 16860, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2026-02-17", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 17-Feb-2026 \n\nDate of Screening in IRT: 17-Feb-2026 \nTransaction Date/Time (site local): 17-Feb-2026 14:49:54\nTransaction Date/Time (system local): 17-Feb-2026 13:49:54\n\nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011_pk16860.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011_pk16860.pdf new file mode 100644 index 0000000..50f8ff1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_screened_at_site_S10-CZ10011_pk16860.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json new file mode 100644 index 0000000..38d7629 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 16854, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-02-17", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1260341\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1296251\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 17-Feb-2026 14:05:05\n\nTransaction Date/Time (system local): 17-Feb-2026 13:05:05 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..650162a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16854.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16854.json new file mode 100644 index 0000000..38d7629 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16854.json @@ -0,0 +1,10 @@ +{ + "pk": 16854, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-02-17", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1260341\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1296251\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 17-Feb-2026 14:05:05\n\nTransaction Date/Time (system local): 17-Feb-2026 13:05:05 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16854.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16854.pdf new file mode 100644 index 0000000..f10e4ce Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16854.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16855.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16855.json new file mode 100644 index 0000000..5434a25 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16855.json @@ -0,0 +1,10 @@ +{ + "pk": 16855, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-02-17", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1054383\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1056791\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 17-Feb-2026 14:05:38\n\nTransaction Date/Time (system local): 17-Feb-2026 13:05:38 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16855.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16855.pdf new file mode 100644 index 0000000..a3b1076 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16855.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20767.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20767.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20767.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20767.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20767.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20767.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20767.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20767.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json new file mode 100644 index 0000000..487d9d6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 16856, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-02-17", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1002732\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1088979\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 17-Feb-2026 14:06:04\n\nTransaction Date/Time (system local): 17-Feb-2026 13:06:04 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..cdf992a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16856.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16856.json new file mode 100644 index 0000000..487d9d6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16856.json @@ -0,0 +1,10 @@ +{ + "pk": 16856, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-02-17", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1002732\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1088979\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 17-Feb-2026 14:06:04\n\nTransaction Date/Time (system local): 17-Feb-2026 13:06:04 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16856.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16856.pdf new file mode 100644 index 0000000..90e3f1a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk16856.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20769.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20769.json new file mode 100644 index 0000000..4aeb52c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20769.json @@ -0,0 +1,10 @@ +{ + "pk": 20769, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-02-17", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1232321\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 08-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1253893\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 08-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 17-Apr-2026 08:26:55\n\nTransaction Date/Time (system local): 17-Apr-2026 06:26:55 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20769.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20769.pdf new file mode 100644 index 0000000..248a395 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-17_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20769.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json new file mode 100644 index 0000000..6a0e52d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 16909, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 Rolled Over from Part 1 into Part 2 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2026-02-18", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 18-Feb-2026 10:31:56\nTransaction Date/Time (system local): 18-Feb-2026 09:31:56\n\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..91aa412 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk16909.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk16909.json new file mode 100644 index 0000000..6a0e52d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk16909.json @@ -0,0 +1,10 @@ +{ + "pk": 16909, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 Rolled Over from Part 1 into Part 2 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2026-02-18", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 18-Feb-2026 10:31:56\nTransaction Date/Time (system local): 18-Feb-2026 09:31:56\n\nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk16909.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk16909.pdf new file mode 100644 index 0000000..dc7d90b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10008_pk16909.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json new file mode 100644 index 0000000..c492500 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 16910, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2026-02-18", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1009984Seltorexant 20mg or placeboT38650424-Jun-20281078063Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 18-Feb-2026 10:31:56 \nTransaction Date/Time (system local): 18-Feb-2026 09:31:56 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..85c9f06 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk16910.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk16910.json new file mode 100644 index 0000000..c492500 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk16910.json @@ -0,0 +1,10 @@ +{ + "pk": 16910, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10008", + "event": "DB_P1_V7", + "actual_date": "2026-02-18", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1009984Seltorexant 20mg or placeboT38650424-Jun-20281078063Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 18-Feb-2026 10:31:56 \nTransaction Date/Time (system local): 18-Feb-2026 09:31:56 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk16910.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk16910.pdf new file mode 100644 index 0000000..6182130 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10008_pk16910.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004.json new file mode 100644 index 0000000..97c5c5f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 17122, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 randomized into Part 1 at site S10-CZ10004", + "event": "Rand", + "actual_date": "2026-02-20", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1071660Seltorexant 20mg or placeboT38650424-Jun-20281092728Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 20-Feb-2026 12:10:44\nTransaction Date/Time (system local): 20-Feb-2026 11:10:44\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..e0e81e2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004_pk17122.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004_pk17122.json new file mode 100644 index 0000000..97c5c5f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004_pk17122.json @@ -0,0 +1,10 @@ +{ + "pk": 17122, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 randomized into Part 1 at site S10-CZ10004", + "event": "Rand", + "actual_date": "2026-02-20", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1071660Seltorexant 20mg or placeboT38650424-Jun-20281092728Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 20-Feb-2026 12:10:44\nTransaction Date/Time (system local): 20-Feb-2026 11:10:44\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004_pk17122.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004_pk17122.pdf new file mode 100644 index 0000000..71582e4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-20_Janssen_42847922MDD3003_Subject_CZ100040005_randomized_into_Part_1_at_site_S10-CZ10004_pk17122.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..0923254 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 17290, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-02-24", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1205281\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1298089\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Feb-2026 10:49:06\n\nTransaction Date/Time (system local): 24-Feb-2026 09:49:06 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..afce0d1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17290.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17290.json new file mode 100644 index 0000000..0923254 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17290.json @@ -0,0 +1,10 @@ +{ + "pk": 17290, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-02-24", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1205281\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1298089\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Feb-2026 10:49:06\n\nTransaction Date/Time (system local): 24-Feb-2026 09:49:06 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17290.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17290.pdf new file mode 100644 index 0000000..f0eec2d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk17290.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.json new file mode 100644 index 0000000..3eb522f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 17289, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10008", + "event": "OL_TS_V2_3", + "actual_date": "2026-02-24", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1205281Seltorexant 20mgT37484802-May-20261298089Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Feb-2026 10:48:19 \nTransaction Date/Time (system local): 24-Feb-2026 09:48:19 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..333ece3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk17289.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk17289.json new file mode 100644 index 0000000..3eb522f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk17289.json @@ -0,0 +1,10 @@ +{ + "pk": 17289, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10008", + "event": "OL_TS_V2_3", + "actual_date": "2026-02-24", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080006 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1205281Seltorexant 20mgT37484802-May-20261298089Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Feb-2026 10:48:19 \nTransaction Date/Time (system local): 24-Feb-2026 09:48:19 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk17289.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk17289.pdf new file mode 100644 index 0000000..f78cd4b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10008_pk17289.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..6518bf9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 17280, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-02-24", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1242550\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1264797\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Feb-2026 09:06:08 \nTransaction Date/Time (system local): 24-Feb-2026 08:06:08 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..22d728c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk17280.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk17280.json new file mode 100644 index 0000000..6518bf9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk17280.json @@ -0,0 +1,10 @@ +{ + "pk": 17280, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-02-24", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1242550\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1264797\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Feb-2026 09:06:08 \nTransaction Date/Time (system local): 24-Feb-2026 08:06:08 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk17280.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk17280.pdf new file mode 100644 index 0000000..4a81462 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk17280.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json new file mode 100644 index 0000000..3d751ec --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 17281, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 Rolled Over from Part 1 into Part 2 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2026-02-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Feb-2026 09:18:31\nTransaction Date/Time (system local): 24-Feb-2026 08:18:31\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..9424f83 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk17281.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk17281.json new file mode 100644 index 0000000..3d751ec --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk17281.json @@ -0,0 +1,10 @@ +{ + "pk": 17281, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 Rolled Over from Part 1 into Part 2 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2026-02-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Feb-2026 09:18:31\nTransaction Date/Time (system local): 24-Feb-2026 08:18:31\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk17281.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk17281.pdf new file mode 100644 index 0000000..c7b752e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk17281.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json new file mode 100644 index 0000000..0b8fbcd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 17282, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2026-02-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1188399Seltorexant 20mg or placeboT38028505-Apr-20261191713Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Feb-2026 09:18:31 \nTransaction Date/Time (system local): 24-Feb-2026 08:18:31 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..52c4acf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk17282.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk17282.json new file mode 100644 index 0000000..0b8fbcd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk17282.json @@ -0,0 +1,10 @@ +{ + "pk": 17282, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2026-02-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1188399Seltorexant 20mg or placeboT38028505-Apr-20261191713Seltorexant 20mg or placeboT38028505-Apr-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Feb-2026 09:18:31 \nTransaction Date/Time (system local): 24-Feb-2026 08:18:31 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk17282.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk17282.pdf new file mode 100644 index 0000000..ed7b6a9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk17282.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..0a064aa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 17286, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-02-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1129172\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1189663\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1026229\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1093223\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Feb-2026 10:31:11 \nTransaction Date/Time (system local): 24-Feb-2026 09:31:11 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..f86fae2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk17286.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk17286.json new file mode 100644 index 0000000..0a064aa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk17286.json @@ -0,0 +1,10 @@ +{ + "pk": 17286, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-02-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1129172\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1189663\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1026229\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1093223\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Feb-2026 10:31:11 \nTransaction Date/Time (system local): 24-Feb-2026 09:31:11 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk17286.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk17286.pdf new file mode 100644 index 0000000..5c43d23 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk17286.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json new file mode 100644 index 0000000..469dbb5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 17467, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10004", + "event": "OL_Ind_V1_6", + "actual_date": "2026-02-26", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1200310\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1296945\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040004 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 26-Feb-2026 17:21:29 \n\r\n Transaction Date/Time (system local): 26-Feb-2026 16:21:29 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..701ea75 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk17467.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk17467.json new file mode 100644 index 0000000..469dbb5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk17467.json @@ -0,0 +1,10 @@ +{ + "pk": 17467, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10004", + "event": "OL_Ind_V1_6", + "actual_date": "2026-02-26", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1200310\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1296945\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040004 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 26-Feb-2026 17:21:29 \n\r\n Transaction Date/Time (system local): 26-Feb-2026 16:21:29 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk17467.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk17467.pdf new file mode 100644 index 0000000..bd86cdd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-26_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk17467.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.json new file mode 100644 index 0000000..608fb7b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 17505, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10004", + "event": "OL_TS_V2_2", + "actual_date": "2026-02-27", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1208363Seltorexant 20mgT39247624-Jun-20281218108Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Feb-2026 11:00:50 \nTransaction Date/Time (system local): 27-Feb-2026 10:00:50 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..7c954c7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk17505.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk17505.json new file mode 100644 index 0000000..608fb7b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk17505.json @@ -0,0 +1,10 @@ +{ + "pk": 17505, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10004", + "event": "OL_TS_V2_2", + "actual_date": "2026-02-27", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1208363Seltorexant 20mgT39247624-Jun-20281218108Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Feb-2026 11:00:50 \nTransaction Date/Time (system local): 27-Feb-2026 10:00:50 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk17505.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk17505.pdf new file mode 100644 index 0000000..72396c7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk17505.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004.json new file mode 100644 index 0000000..3f03f78 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 17519, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 randomized into Part 1 at site S10-CZ10004", + "event": "Rand", + "actual_date": "2026-02-27", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1037248Seltorexant 20mg or placeboT38650424-Jun-20281114050Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Feb-2026 13:29:52\nTransaction Date/Time (system local): 27-Feb-2026 12:29:52\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..40363f2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004_pk17519.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004_pk17519.json new file mode 100644 index 0000000..3f03f78 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004_pk17519.json @@ -0,0 +1,10 @@ +{ + "pk": 17519, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 randomized into Part 1 at site S10-CZ10004", + "event": "Rand", + "actual_date": "2026-02-27", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1037248Seltorexant 20mg or placeboT38650424-Jun-20281114050Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Feb-2026 13:29:52\nTransaction Date/Time (system local): 27-Feb-2026 12:29:52\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004_pk17519.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004_pk17519.pdf new file mode 100644 index 0000000..a70992e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100040006_randomized_into_Part_1_at_site_S10-CZ10004_pk17519.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..2297108 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 17532, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-02-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1217399\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1265438\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Feb-2026 16:24:11\n\nTransaction Date/Time (system local): 27-Feb-2026 15:24:11 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..8345db0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17532.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17532.json new file mode 100644 index 0000000..2297108 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17532.json @@ -0,0 +1,10 @@ +{ + "pk": 17532, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-02-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1217399\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1265438\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Feb-2026 16:24:11\n\nTransaction Date/Time (system local): 27-Feb-2026 15:24:11 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17532.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17532.pdf new file mode 100644 index 0000000..6d7bcd6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17532.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.json new file mode 100644 index 0000000..0c9a79b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 17529, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10011", + "event": "OL_TS_V2_2", + "actual_date": "2026-02-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1217399Seltorexant 20mgT37484802-May-20261265438Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Feb-2026 16:07:43 \nTransaction Date/Time (system local): 27-Feb-2026 15:07:43 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..4015cf1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17529.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17529.json new file mode 100644 index 0000000..0c9a79b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17529.json @@ -0,0 +1,10 @@ +{ + "pk": 17529, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10011", + "event": "OL_TS_V2_2", + "actual_date": "2026-02-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1217399Seltorexant 20mgT37484802-May-20261265438Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Feb-2026 16:07:43 \nTransaction Date/Time (system local): 27-Feb-2026 15:07:43 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17529.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17529.pdf new file mode 100644 index 0000000..fa48d2f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17529.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..65ae0cd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 17531, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-02-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1208884\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1231948\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1273101\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1273178\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Feb-2026 16:23:25 \nTransaction Date/Time (system local): 27-Feb-2026 15:23:25 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..a6109be Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk17531.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk17531.json new file mode 100644 index 0000000..65ae0cd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk17531.json @@ -0,0 +1,10 @@ +{ + "pk": 17531, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-02-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1208884\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1231948\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1273101\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1273178\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Feb-2026 16:23:25 \nTransaction Date/Time (system local): 27-Feb-2026 15:23:25 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk17531.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk17531.pdf new file mode 100644 index 0000000..4720c50 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk17531.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17546.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17546.json new file mode 100644 index 0000000..1faa8ad --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17546.json @@ -0,0 +1,10 @@ +{ + "pk": 17546, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10012", + "event": "DB_P1_V6", + "actual_date": "2026-02-27", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120005 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1067396Seltorexant 20mg or placeboT38650424-Jun-20281145277Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Feb-2026 17:44:56 \nTransaction Date/Time (system local): 27-Feb-2026 16:44:56 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17546.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17546.pdf new file mode 100644 index 0000000..889c4d2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17546.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk17547.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk17547.json new file mode 100644 index 0000000..d2bae72 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk17547.json @@ -0,0 +1,10 @@ +{ + "pk": 17547, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-02-27", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120005 has been performed.\nMedication ID: 1054383\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 5\n\nMedication ID: 1056791\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Feb-2026 18:21:41 \nTransaction Date/Time (system local): 27-Feb-2026 17:21:41 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk17547.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk17547.pdf new file mode 100644 index 0000000..b33f398 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk17547.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk19358.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk19358.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk19358.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk19358.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk19358.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk19358.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk19358.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk19358.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.json new file mode 100644 index 0000000..4324078 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 17535, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10012", + "event": "DB_P1_V6", + "actual_date": "2026-02-27", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1092803Seltorexant 20mg or placeboT38650424-Jun-20281183428Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Feb-2026 17:05:51 \nTransaction Date/Time (system local): 27-Feb-2026 16:05:51 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..8b312eb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17535.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17535.json new file mode 100644 index 0000000..4324078 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17535.json @@ -0,0 +1,10 @@ +{ + "pk": 17535, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10012", + "event": "DB_P1_V6", + "actual_date": "2026-02-27", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1092803Seltorexant 20mg or placeboT38650424-Jun-20281183428Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Feb-2026 17:05:51 \nTransaction Date/Time (system local): 27-Feb-2026 16:05:51 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17535.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17535.pdf new file mode 100644 index 0000000..39acd5c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10012_pk17535.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json new file mode 100644 index 0000000..45850ab --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 17548, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-02-27", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120006 has been performed.\nMedication ID: 1002732\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1088979\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 5\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Feb-2026 18:22:33 \nTransaction Date/Time (system local): 27-Feb-2026 17:22:33 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..b084655 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk17548.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk17548.json new file mode 100644 index 0000000..45850ab --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk17548.json @@ -0,0 +1,10 @@ +{ + "pk": 17548, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-02-27", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120006 has been performed.\nMedication ID: 1002732\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1088979\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 5\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Feb-2026 18:22:33 \nTransaction Date/Time (system local): 27-Feb-2026 17:22:33 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk17548.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk17548.pdf new file mode 100644 index 0000000..e75e281 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk17548.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21070.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21070.json new file mode 100644 index 0000000..0c40631 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21070.json @@ -0,0 +1,10 @@ +{ + "pk": 21070, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-02-27", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120006 has been performed.\nMedication ID: 1052482\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1067083\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 6\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Apr-2026 13:03:52 \nTransaction Date/Time (system local): 22-Apr-2026 11:03:52 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21070.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21070.pdf new file mode 100644 index 0000000..2bf739c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-02-27_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21070.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..1ff75d0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 17591, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-02", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1208363\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1218108\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1204968\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1220027\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1272599\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1294371\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Mar-2026 08:38:58\n\nTransaction Date/Time (system local): 02-Mar-2026 07:38:58 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..8c28964 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17591.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17591.json new file mode 100644 index 0000000..1ff75d0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17591.json @@ -0,0 +1,10 @@ +{ + "pk": 17591, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-02", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1208363\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1218108\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1204968\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1220027\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1272599\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1294371\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 30-Jan-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Mar-2026 08:38:58\n\nTransaction Date/Time (system local): 02-Mar-2026 07:38:58 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17591.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17591.pdf new file mode 100644 index 0000000..8b2a583 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17591.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..e5e2015 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 17592, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-02", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1204968\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1220027\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1272599\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1294371\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Mar-2026 08:43:56 \nTransaction Date/Time (system local): 02-Mar-2026 07:43:56 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..aa937c5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk17592.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk17592.json new file mode 100644 index 0000000..e5e2015 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk17592.json @@ -0,0 +1,10 @@ +{ + "pk": 17592, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-02", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1204968\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1220027\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1272599\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1294371\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Mar-2026 08:43:56 \nTransaction Date/Time (system local): 02-Mar-2026 07:43:56 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk17592.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk17592.pdf new file mode 100644 index 0000000..8f3b841 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk17592.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..5ef6083 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 17593, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-02", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1200310\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 26-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1296945\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 26-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Mar-2026 08:55:10\n\nTransaction Date/Time (system local): 02-Mar-2026 07:55:10 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..8e717c2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17593.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17593.json new file mode 100644 index 0000000..5ef6083 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17593.json @@ -0,0 +1,10 @@ +{ + "pk": 17593, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-02", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1200310\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 26-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1296945\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 26-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Mar-2026 08:55:10\n\nTransaction Date/Time (system local): 02-Mar-2026 07:55:10 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17593.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17593.pdf new file mode 100644 index 0000000..ef3878a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17593.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..9fb8936 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 17596, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-02", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1071660\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1092728\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 02-Mar-2026 09:40:00\n\nTransaction Date/Time (system local): 02-Mar-2026 08:40:00 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..d9720ff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17596.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17596.json new file mode 100644 index 0000000..9fb8936 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17596.json @@ -0,0 +1,10 @@ +{ + "pk": 17596, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-02", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1071660\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1092728\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 02-Mar-2026 09:40:00\n\nTransaction Date/Time (system local): 02-Mar-2026 08:40:00 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17596.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17596.pdf new file mode 100644 index 0000000..99eeb54 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17596.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19384.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19384.json new file mode 100644 index 0000000..859411b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19384.json @@ -0,0 +1,10 @@ +{ + "pk": 19384, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-02", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1167615\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1064155\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 30-Mar-2026 10:15:34\n\nTransaction Date/Time (system local): 30-Mar-2026 08:15:34 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19384.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19384.pdf new file mode 100644 index 0000000..ed4064e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19384.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..fe3571a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 17595, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-02", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1037248\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1114050\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 02-Mar-2026 09:29:43\n\nTransaction Date/Time (system local): 02-Mar-2026 08:29:43 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..4c3b676 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17595.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17595.json new file mode 100644 index 0000000..fe3571a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17595.json @@ -0,0 +1,10 @@ +{ + "pk": 17595, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-02", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1037248\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1114050\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 02-Mar-2026 09:29:43\n\nTransaction Date/Time (system local): 02-Mar-2026 08:29:43 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17595.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17595.pdf new file mode 100644 index 0000000..3f70f18 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk17595.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19386.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19386.json new file mode 100644 index 0000000..2917df6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19386.json @@ -0,0 +1,10 @@ +{ + "pk": 19386, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-02", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1190596\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1002510\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 30-Mar-2026 10:17:07\n\nTransaction Date/Time (system local): 30-Mar-2026 08:17:07 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19386.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19386.pdf new file mode 100644 index 0000000..cbe2cdb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19386.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk17607.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk17607.json new file mode 100644 index 0000000..4bdb008 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk17607.json @@ -0,0 +1,10 @@ +{ + "pk": 17607, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10011", + "event": "OL_Ind_V1_6", + "actual_date": "2026-03-02", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1231444\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1265004\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110007 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 02-Mar-2026 11:45:54 \n\r\n Transaction Date/Time (system local): 02-Mar-2026 10:45:54 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk17607.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk17607.pdf new file mode 100644 index 0000000..14861a5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk17607.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk17609.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk17609.json new file mode 100644 index 0000000..21415a8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk17609.json @@ -0,0 +1,10 @@ +{ + "pk": 17609, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-03-02", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110007 has been performed.\nMedication ID: 1224138\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1281712\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 02-Mar-2026 12:08:19 \nTransaction Date/Time (system local): 02-Mar-2026 11:08:19 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk17609.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk17609.pdf new file mode 100644 index 0000000..cf0ced9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-02_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk17609.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17679.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17679.json new file mode 100644 index 0000000..4586e83 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17679.json @@ -0,0 +1,10 @@ +{ + "pk": 17679, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-03-03", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1228400\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1210007\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 03-Mar-2026 11:12:44\n\nTransaction Date/Time (system local): 03-Mar-2026 10:12:44 \nTransaction performed by: vysztavel@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17679.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17679.pdf new file mode 100644 index 0000000..380b8d8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk17679.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17678.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17678.json new file mode 100644 index 0000000..21dd78f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17678.json @@ -0,0 +1,10 @@ +{ + "pk": 17678, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10011", + "event": "OL_TS_V2_2", + "actual_date": "2026-03-03", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1210007Seltorexant 20mgT39247624-Jun-20281228400Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 03-Mar-2026 10:25:07 \nTransaction Date/Time (system local): 03-Mar-2026 09:25:07 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17678.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17678.pdf new file mode 100644 index 0000000..67d60cc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-03_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk17678.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json new file mode 100644 index 0000000..0a5550e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 17775, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10008", + "event": "OL_Ind_V1_1", + "actual_date": "2026-03-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1212767Seltorexant 20mgT37484802-May-20261224656Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 04-Mar-2026 13:02:51 \nTransaction Date/Time (system local): 04-Mar-2026 12:02:51 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..af80423 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk17775.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk17775.json new file mode 100644 index 0000000..0a5550e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk17775.json @@ -0,0 +1,10 @@ +{ + "pk": 17775, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10008", + "event": "OL_Ind_V1_1", + "actual_date": "2026-03-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1212767Seltorexant 20mgT37484802-May-20261224656Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 04-Mar-2026 13:02:51 \nTransaction Date/Time (system local): 04-Mar-2026 12:02:51 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk17775.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk17775.pdf new file mode 100644 index 0000000..42dc711 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10008_pk17775.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..4ff3582 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 17771, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-03-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1009984\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1078063\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 04-Mar-2026 12:29:32 \nTransaction Date/Time (system local): 04-Mar-2026 11:29:32 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..408c657 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk17771.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk17771.json new file mode 100644 index 0000000..4ff3582 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk17771.json @@ -0,0 +1,10 @@ +{ + "pk": 17771, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-03-04", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1009984\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1078063\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 04-Mar-2026 12:29:32 \nTransaction Date/Time (system local): 04-Mar-2026 11:29:32 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk17771.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk17771.pdf new file mode 100644 index 0000000..70643b3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-04_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk17771.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk17949.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk17949.json new file mode 100644 index 0000000..995f2dc --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk17949.json @@ -0,0 +1,10 @@ +{ + "pk": 17949, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Double Blind Maintenance Visit 3.3 at site S10-CZ10004", + "event": "DB_Main_V3_3", + "actual_date": "2026-03-06", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1008669Seltorexant 20mg or placeboT38650424-Jun-20281052502Seltorexant 20mg or placeboT38650424-Jun-20281182154Seltorexant 20mg or placeboT38650424-Jun-20281199540Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 06-Mar-2026 12:13:49 \nTransaction Date/Time (system local): 06-Mar-2026 11:13:49 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk17949.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk17949.pdf new file mode 100644 index 0000000..d0459d7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk17949.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json new file mode 100644 index 0000000..78690a0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 17946, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10004", + "event": "DB_P1_V6", + "actual_date": "2026-03-06", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1046438Seltorexant 20mg or placeboT38650424-Jun-20281157399Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 06-Mar-2026 11:12:10 \nTransaction Date/Time (system local): 06-Mar-2026 10:12:10 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..a18db79 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk17946.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk17946.json new file mode 100644 index 0000000..78690a0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk17946.json @@ -0,0 +1,10 @@ +{ + "pk": 17946, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10004", + "event": "DB_P1_V6", + "actual_date": "2026-03-06", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1046438Seltorexant 20mg or placeboT38650424-Jun-20281157399Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 06-Mar-2026 11:12:10 \nTransaction Date/Time (system local): 06-Mar-2026 10:12:10 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk17946.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk17946.pdf new file mode 100644 index 0000000..e61bcd5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk17946.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004.json new file mode 100644 index 0000000..7e9a15f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 17930, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2026-03-06", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 06-Mar-2026 \n\nDate of Screening in IRT: 06-Mar-2026 \nTransaction Date/Time (site local): 06-Mar-2026 08:36:09\nTransaction Date/Time (system local): 06-Mar-2026 07:36:09\n\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..68f654f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004_pk17930.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004_pk17930.json new file mode 100644 index 0000000..7e9a15f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004_pk17930.json @@ -0,0 +1,10 @@ +{ + "pk": 17930, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2026-03-06", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 06-Mar-2026 \n\nDate of Screening in IRT: 06-Mar-2026 \nTransaction Date/Time (site local): 06-Mar-2026 08:36:09\nTransaction Date/Time (system local): 06-Mar-2026 07:36:09\n\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004_pk17930.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004_pk17930.pdf new file mode 100644 index 0000000..e4d678c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_screened_at_site_S10-CZ10004_pk17930.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011.json new file mode 100644 index 0000000..b29c903 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 17933, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110012 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2026-03-06", + "subject": "CZ100110012", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110012 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110012 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 06-Mar-2026 \n\nDate of Screening in IRT: 06-Mar-2026 \nTransaction Date/Time (site local): 06-Mar-2026 09:19:54\nTransaction Date/Time (system local): 06-Mar-2026 08:19:54\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..0f8645f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011_pk17933.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011_pk17933.json new file mode 100644 index 0000000..b29c903 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011_pk17933.json @@ -0,0 +1,10 @@ +{ + "pk": 17933, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100110012 has been screened at site S10-CZ10011", + "event": "Screen", + "actual_date": "2026-03-06", + "subject": "CZ100110012", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110012 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110012 \nIRT Subject Status: Screened \nCohort: Part 1\nInformed Consent Date at Screening: 06-Mar-2026 \n\nDate of Screening in IRT: 06-Mar-2026 \nTransaction Date/Time (site local): 06-Mar-2026 09:19:54\nTransaction Date/Time (system local): 06-Mar-2026 08:19:54\n\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011_pk17933.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011_pk17933.pdf new file mode 100644 index 0000000..5ead4b8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screened_at_site_S10-CZ10011_pk17933.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json new file mode 100644 index 0000000..44bb04f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 17952, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-03-06", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1260341\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1296251\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-Mar-2026 12:42:33\n\nTransaction Date/Time (system local): 06-Mar-2026 11:42:33 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..b3c4d77 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk17952.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk17952.json new file mode 100644 index 0000000..44bb04f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk17952.json @@ -0,0 +1,10 @@ +{ + "pk": 17952, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-03-06", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1260341\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1296251\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-Mar-2026 12:42:33\n\nTransaction Date/Time (system local): 06-Mar-2026 11:42:33 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk17952.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk17952.pdf new file mode 100644 index 0000000..4249ed3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk17952.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.json new file mode 100644 index 0000000..7fa4110 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 18181, + "title": "Discontinue", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been discontinued from IRT managed treatment at site S10-CZ10012", + "event": "uv_discontinue", + "actual_date": "2026-03-06", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Subject CZ100120004 has been Discontinued from IRT Managed Treatment.\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nDiscontinuation date: 06-Mar-2026 \nTransaction Date/Time (site local): 10-Mar-2026 16:37:07\nTransaction Date/Time (system local): 10-Mar-2026 15:37:07\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..c6007b4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk18181.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk18181.json new file mode 100644 index 0000000..7fa4110 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk18181.json @@ -0,0 +1,10 @@ +{ + "pk": 18181, + "title": "Discontinue", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has been discontinued from IRT managed treatment at site S10-CZ10012", + "event": "uv_discontinue", + "actual_date": "2026-03-06", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Subject CZ100120004 has been Discontinued from IRT Managed Treatment.\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nDiscontinuation date: 06-Mar-2026 \nTransaction Date/Time (site local): 10-Mar-2026 16:37:07\nTransaction Date/Time (system local): 10-Mar-2026 15:37:07\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk18181.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk18181.pdf new file mode 100644 index 0000000..d9c9b16 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk18181.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json new file mode 100644 index 0000000..5cac3b6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 17959, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-03-06", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1260341\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1296251\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-Mar-2026 13:43:10 \nTransaction Date/Time (system local): 06-Mar-2026 12:43:10 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..927aceb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk17959.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk17959.json new file mode 100644 index 0000000..5cac3b6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk17959.json @@ -0,0 +1,10 @@ +{ + "pk": 17959, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-03-06", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1260341\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1296251\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-Mar-2026 13:43:10 \nTransaction Date/Time (system local): 06-Mar-2026 12:43:10 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk17959.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk17959.pdf new file mode 100644 index 0000000..ab8b3f5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-06_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk17959.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18032.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18032.json new file mode 100644 index 0000000..feaba5a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18032.json @@ -0,0 +1,10 @@ +{ + "pk": 18032, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-09", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040001 has\nbeen performed for the following medication IDs:\n\nMedication No: 1008669\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1052502\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1199540\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1182154\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 09-Mar-2026 11:11:53\n\nTransaction Date/Time (system local): 09-Mar-2026 10:11:53 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18032.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18032.pdf new file mode 100644 index 0000000..8561c51 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18032.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk18033.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk18033.json new file mode 100644 index 0000000..d983791 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk18033.json @@ -0,0 +1,10 @@ +{ + "pk": 18033, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-09", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040001 has been performed.\nMedication ID: 1014121\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1070709\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1124280\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1162222\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 09-Mar-2026 11:12:49 \nTransaction Date/Time (system local): 09-Mar-2026 10:12:49 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk18033.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk18033.pdf new file mode 100644 index 0000000..ada5500 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk18033.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..307e600 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18034, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-09", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1246022\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1255175\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 09-Mar-2026 11:28:57 \nTransaction Date/Time (system local): 09-Mar-2026 10:28:57 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..d7611d4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18034.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18034.json new file mode 100644 index 0000000..307e600 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18034.json @@ -0,0 +1,10 @@ +{ + "pk": 18034, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-09", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1246022\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1255175\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 09-Mar-2026 11:28:57 \nTransaction Date/Time (system local): 09-Mar-2026 10:28:57 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18034.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18034.pdf new file mode 100644 index 0000000..4fbf851 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-09_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18034.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18136.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18136.json new file mode 100644 index 0000000..ed35abe --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18136.json @@ -0,0 +1,10 @@ +{ + "pk": 18136, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-03-10", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1067238\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1086247\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1181079\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1181089\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 10-Mar-2026 12:33:55\n\nTransaction Date/Time (system local): 10-Mar-2026 11:33:55 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18136.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18136.pdf new file mode 100644 index 0000000..bdc524c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18136.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008_pk18135.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008_pk18135.json new file mode 100644 index 0000000..1e47670 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008_pk18135.json @@ -0,0 +1,10 @@ +{ + "pk": 18135, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Double Blind Maintenance Visit 3.3 at site S10-CZ10008", + "event": "DB_Main_V3_3", + "actual_date": "2026-03-10", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1067238Seltorexant 20mg or placeboT38650424-Jun-20281086247Seltorexant 20mg or placeboT38650424-Jun-20281181079Seltorexant 20mg or placeboT38650424-Jun-20281181089Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 10-Mar-2026 12:32:23 \nTransaction Date/Time (system local): 10-Mar-2026 11:32:23 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008_pk18135.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008_pk18135.pdf new file mode 100644 index 0000000..98a1b56 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10008_pk18135.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk18138.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk18138.json new file mode 100644 index 0000000..02aeb3b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk18138.json @@ -0,0 +1,10 @@ +{ + "pk": 18138, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-03-10", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080002 has been performed.\nMedication ID: 1004752\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1021105\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1050201\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1121600\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 10-Mar-2026 12:36:15 \nTransaction Date/Time (system local): 10-Mar-2026 11:36:15 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk18138.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk18138.pdf new file mode 100644 index 0000000..e43dad7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk18138.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.json new file mode 100644 index 0000000..f1e5be8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 18208, + "title": "Discontinue", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been discontinued from IRT managed treatment at site S10-CZ10008", + "event": "uv_discontinue", + "actual_date": "2026-03-10", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Subject CZ100080006 has been Discontinued from IRT Managed Treatment.\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nDiscontinuation date: 10-Mar-2026 \nTransaction Date/Time (site local): 11-Mar-2026 07:04:35\nTransaction Date/Time (system local): 11-Mar-2026 06:04:35\nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..9f75a52 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk18208.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk18208.json new file mode 100644 index 0000000..f1e5be8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk18208.json @@ -0,0 +1,10 @@ +{ + "pk": 18208, + "title": "Discontinue", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has been discontinued from IRT managed treatment at site S10-CZ10008", + "event": "uv_discontinue", + "actual_date": "2026-03-10", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Subject CZ100080006 has been Discontinued from IRT Managed Treatment.\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nDiscontinuation date: 10-Mar-2026 \nTransaction Date/Time (site local): 11-Mar-2026 07:04:35\nTransaction Date/Time (system local): 11-Mar-2026 06:04:35\nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk18208.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk18208.pdf new file mode 100644 index 0000000..12a078d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10008_pk18208.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..d523747 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 18134, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-03-10", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1205281\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1298089\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Mar-2026 12:25:31 \nTransaction Date/Time (system local): 10-Mar-2026 11:25:31 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..82dcf67 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk18134.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk18134.json new file mode 100644 index 0000000..d523747 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk18134.json @@ -0,0 +1,10 @@ +{ + "pk": 18134, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080006 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-03-10", + "subject": "CZ100080006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080006 has been performed.\nMedication ID: 1205281\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1298089\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Mar-2026 12:25:31 \nTransaction Date/Time (system local): 10-Mar-2026 11:25:31 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk18134.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk18134.pdf new file mode 100644 index 0000000..e61e3d6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100080006_has_returned_a_medication_at_site_S10-CZ10008_pk18134.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json new file mode 100644 index 0000000..a7585f8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 18125, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10011", + "event": "OL_Ind_V1_1", + "actual_date": "2026-03-10", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1203532Seltorexant 20mgT39247624-Jun-20281210628Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Mar-2026 09:56:32 \nTransaction Date/Time (system local): 10-Mar-2026 08:56:32 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..c5dec90 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk18125.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk18125.json new file mode 100644 index 0000000..a7585f8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk18125.json @@ -0,0 +1,10 @@ +{ + "pk": 18125, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10011", + "event": "OL_Ind_V1_1", + "actual_date": "2026-03-10", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1203532Seltorexant 20mgT39247624-Jun-20281210628Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Mar-2026 09:56:32 \nTransaction Date/Time (system local): 10-Mar-2026 08:56:32 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk18125.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk18125.pdf new file mode 100644 index 0000000..18f3bde Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk18125.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..6debb4e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 18126, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-03-10", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1188399\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1191713\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Mar-2026 09:57:50 \nTransaction Date/Time (system local): 10-Mar-2026 08:57:50 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..7adfe2b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk18126.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk18126.json new file mode 100644 index 0000000..6debb4e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk18126.json @@ -0,0 +1,10 @@ +{ + "pk": 18126, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-03-10", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1188399\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1191713\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Mar-2026 09:57:50 \nTransaction Date/Time (system local): 10-Mar-2026 08:57:50 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk18126.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk18126.pdf new file mode 100644 index 0000000..e28a9a0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk18126.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011.json new file mode 100644 index 0000000..295697c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 18131, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 randomized into Part 1 at site S10-CZ10011", + "event": "Rand", + "actual_date": "2026-03-10", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1065870Seltorexant 20mg or placeboT38650424-Jun-20281161457Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 10-Mar-2026 11:39:02\nTransaction Date/Time (system local): 10-Mar-2026 10:39:02\nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..b4cd8f0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011_pk18131.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011_pk18131.json new file mode 100644 index 0000000..295697c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011_pk18131.json @@ -0,0 +1,10 @@ +{ + "pk": 18131, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 randomized into Part 1 at site S10-CZ10011", + "event": "Rand", + "actual_date": "2026-03-10", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1065870Seltorexant 20mg or placeboT38650424-Jun-20281161457Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 10-Mar-2026 11:39:02\nTransaction Date/Time (system local): 10-Mar-2026 10:39:02\nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011_pk18131.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011_pk18131.pdf new file mode 100644 index 0000000..387f510 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-10_Janssen_42847922MDD3003_Subject_CZ100110010_randomized_into_Part_1_at_site_S10-CZ10011_pk18131.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..9066e4f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18222, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-11", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1046438\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1157399\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 11-Mar-2026 11:16:05\n\nTransaction Date/Time (system local): 11-Mar-2026 10:16:05 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..f6ae106 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18222.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18222.json new file mode 100644 index 0000000..9066e4f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18222.json @@ -0,0 +1,10 @@ +{ + "pk": 18222, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-11", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1046438\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1157399\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 06-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 11-Mar-2026 11:16:05\n\nTransaction Date/Time (system local): 11-Mar-2026 10:16:05 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18222.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18222.pdf new file mode 100644 index 0000000..d7a7aed Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18222.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20358.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20358.json new file mode 100644 index 0000000..8ee9906 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20358.json @@ -0,0 +1,10 @@ +{ + "pk": 20358, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-11", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1258550\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1293525\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Apr-2026 12:25:18\n\nTransaction Date/Time (system local): 13-Apr-2026 10:25:18 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20358.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20358.pdf new file mode 100644 index 0000000..ff106f4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20358.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..2c1ddba --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18224, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-11", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040005 has been performed.\nMedication ID: 1071660\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1092728\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 11-Mar-2026 11:18:45 \nTransaction Date/Time (system local): 11-Mar-2026 10:18:45 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..e452134 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk18224.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk18224.json new file mode 100644 index 0000000..2c1ddba --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk18224.json @@ -0,0 +1,10 @@ +{ + "pk": 18224, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-11", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040005 has been performed.\nMedication ID: 1071660\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1092728\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 11-Mar-2026 11:18:45 \nTransaction Date/Time (system local): 11-Mar-2026 10:18:45 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk18224.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk18224.pdf new file mode 100644 index 0000000..e0469f9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk18224.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk19385.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk19385.json new file mode 100644 index 0000000..fe2ce69 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk19385.json @@ -0,0 +1,10 @@ +{ + "pk": 19385, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-11", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040005 has been performed.\nMedication ID: 1046438\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1157399\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 30-Mar-2026 10:16:29 \nTransaction Date/Time (system local): 30-Mar-2026 08:16:29 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk19385.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk19385.pdf new file mode 100644 index 0000000..8ec1ad9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk19385.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.json new file mode 100644 index 0000000..3b67418 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18393, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10004", + "event": "OL_TS_V2_3", + "actual_date": "2026-03-13", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1201836Seltorexant 20mgT39247624-Jun-20281259778Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Mar-2026 11:09:51 \nTransaction Date/Time (system local): 13-Mar-2026 10:09:51 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..461108a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk18393.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk18393.json new file mode 100644 index 0000000..3b67418 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk18393.json @@ -0,0 +1,10 @@ +{ + "pk": 18393, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10004", + "event": "OL_TS_V2_3", + "actual_date": "2026-03-13", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1201836Seltorexant 20mgT39247624-Jun-20281259778Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Mar-2026 11:09:51 \nTransaction Date/Time (system local): 13-Mar-2026 10:09:51 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk18393.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk18393.pdf new file mode 100644 index 0000000..7969ed0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk18393.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004.json new file mode 100644 index 0000000..8c40d2d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18392, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Induction Visit 1.7 at site S10-CZ10004", + "event": "OL_Ind_V1_7", + "actual_date": "2026-03-13", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.7:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1231227\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1267648\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1269406\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1280113\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040004 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 13-Mar-2026 10:08:34 \n\r\n Transaction Date/Time (system local): 13-Mar-2026 09:08:34 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..60ab593 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004_pk18392.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004_pk18392.json new file mode 100644 index 0000000..8c40d2d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004_pk18392.json @@ -0,0 +1,10 @@ +{ + "pk": 18392, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Induction Visit 1.7 at site S10-CZ10004", + "event": "OL_Ind_V1_7", + "actual_date": "2026-03-13", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Induction Visit 1.7:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1231227\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1267648\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1269406\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1280113\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040004 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 13-Mar-2026 10:08:34 \n\r\n Transaction Date/Time (system local): 13-Mar-2026 09:08:34 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004_pk18392.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004_pk18392.pdf new file mode 100644 index 0000000..1c094a4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10004_pk18392.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json new file mode 100644 index 0000000..7309a94 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18396, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10004", + "event": "DB_P1_V6", + "actual_date": "2026-03-13", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1160915Seltorexant 20mg or placeboT38650424-Jun-20281182010Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 13-Mar-2026 12:08:52 \nTransaction Date/Time (system local): 13-Mar-2026 11:08:52 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..98f993d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk18396.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk18396.json new file mode 100644 index 0000000..7309a94 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk18396.json @@ -0,0 +1,10 @@ +{ + "pk": 18396, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10004", + "event": "DB_P1_V6", + "actual_date": "2026-03-13", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1160915Seltorexant 20mg or placeboT38650424-Jun-20281182010Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 13-Mar-2026 12:08:52 \nTransaction Date/Time (system local): 13-Mar-2026 11:08:52 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk18396.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk18396.pdf new file mode 100644 index 0000000..b1613bb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk18396.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18416.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18416.json new file mode 100644 index 0000000..a143c86 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18416.json @@ -0,0 +1,10 @@ +{ + "pk": 18416, + "title": "No_Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 Completed Part 1 will not rollover into Part 2 at site S10-CZ10012", + "event": "DB_P1_V7", + "actual_date": "2026-03-13", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120005 has completed part 1 and will not roll over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 13-Mar-2026 15:41:48\nTransaction Date/Time (system local): 13-Mar-2026 14:41:48\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18416.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18416.pdf new file mode 100644 index 0000000..c5537b8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18416.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18417.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18417.json new file mode 100644 index 0000000..273a88a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18417.json @@ -0,0 +1,10 @@ +{ + "pk": 18417, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10012", + "event": "DB_P1_V7", + "actual_date": "2026-03-13", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120005 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1052405Seltorexant 20mg or placeboT38650424-Jun-20281103546Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 13-Mar-2026 15:41:47 \nTransaction Date/Time (system local): 13-Mar-2026 14:41:47 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18417.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18417.pdf new file mode 100644 index 0000000..19bae26 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18417.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.json new file mode 100644 index 0000000..b791ebb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 18409, + "title": "No_Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 Completed Part 1 will not rollover into Part 2 at site S10-CZ10012", + "event": "DB_P1_V7", + "actual_date": "2026-03-13", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has completed part 1 and will not roll over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 13-Mar-2026 15:01:33\nTransaction Date/Time (system local): 13-Mar-2026 14:01:33\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..d8ed352 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18409.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18409.json new file mode 100644 index 0000000..b791ebb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18409.json @@ -0,0 +1,10 @@ +{ + "pk": 18409, + "title": "No_Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 Completed Part 1 will not rollover into Part 2 at site S10-CZ10012", + "event": "DB_P1_V7", + "actual_date": "2026-03-13", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has completed part 1 and will not roll over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 13-Mar-2026 15:01:33\nTransaction Date/Time (system local): 13-Mar-2026 14:01:33\n\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18409.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18409.pdf new file mode 100644 index 0000000..12f377f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_Completed_Part_1_will_not_rollover_into_Part_2_at_site_S10-CZ10012_pk18409.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.json new file mode 100644 index 0000000..6cfd7c8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 18410, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10012", + "event": "DB_P1_V7", + "actual_date": "2026-03-13", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1052482Seltorexant 20mg or placeboT38650424-Jun-20281067083Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 13-Mar-2026 15:01:33 \nTransaction Date/Time (system local): 13-Mar-2026 14:01:33 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..4f7faec Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18410.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18410.json new file mode 100644 index 0000000..6cfd7c8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18410.json @@ -0,0 +1,10 @@ +{ + "pk": 18410, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10012", + "event": "DB_P1_V7", + "actual_date": "2026-03-13", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1052482Seltorexant 20mg or placeboT38650424-Jun-20281067083Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 13-Mar-2026 15:01:33 \nTransaction Date/Time (system local): 13-Mar-2026 14:01:33 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18410.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18410.pdf new file mode 100644 index 0000000..b51af94 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-13_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10012_pk18410.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18454.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18454.json new file mode 100644 index 0000000..59ab7d1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18454.json @@ -0,0 +1,10 @@ +{ + "pk": 18454, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-03-15", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1145277\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1067396\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120005 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 15-Mar-2026 11:47:24\n\nTransaction Date/Time (system local): 15-Mar-2026 10:47:24 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18454.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18454.pdf new file mode 100644 index 0000000..b14464e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18454.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18456.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18456.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18456.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18456.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18456.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18456.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18456.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18456.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20768.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20768.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20768.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20768.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20768.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20768.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20768.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20768.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21110.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21110.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21110.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21110.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21110.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21110.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21110.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21110.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk18455.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk18455.json new file mode 100644 index 0000000..5e60862 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk18455.json @@ -0,0 +1,10 @@ +{ + "pk": 18455, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-03-15", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120005 has been performed.\nMedication ID: 1067396\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1145277\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 15-Mar-2026 11:47:57 \nTransaction Date/Time (system local): 15-Mar-2026 10:47:57 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk18455.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk18455.pdf new file mode 100644 index 0000000..aad44c2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk18455.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21349.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21349.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21349.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21349.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21349.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21349.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21349.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21349.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json new file mode 100644 index 0000000..10187d5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 18451, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-03-15", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1183428\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1092803\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120006 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 15-Mar-2026 11:44:51\n\nTransaction Date/Time (system local): 15-Mar-2026 10:44:51 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..dcd31e4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18451.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18451.json new file mode 100644 index 0000000..10187d5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18451.json @@ -0,0 +1,10 @@ +{ + "pk": 18451, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-03-15", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1183428\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1092803\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120006 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 15-Mar-2026 11:44:51\n\nTransaction Date/Time (system local): 15-Mar-2026 10:44:51 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18451.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18451.pdf new file mode 100644 index 0000000..f87e19f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18451.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18452.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18452.json new file mode 100644 index 0000000..92bb6bc --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18452.json @@ -0,0 +1,10 @@ +{ + "pk": 18452, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-03-15", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1052482\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1067083\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120006 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 15-Mar-2026 11:45:21\n\nTransaction Date/Time (system local): 15-Mar-2026 10:45:21 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18452.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18452.pdf new file mode 100644 index 0000000..60ef8fc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk18452.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20770.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20770.json new file mode 100644 index 0000000..bd0b516 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20770.json @@ -0,0 +1,10 @@ +{ + "pk": 20770, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-03-15", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1242553\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 25-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1238923\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 25-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 17-Apr-2026 08:27:53\n\nTransaction Date/Time (system local): 17-Apr-2026 06:27:53 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20770.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20770.pdf new file mode 100644 index 0000000..93cb23a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk20770.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21082.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21082.json new file mode 100644 index 0000000..722d47f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21082.json @@ -0,0 +1,10 @@ +{ + "pk": 21082, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-03-15", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1223242\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1232243\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1270209\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1285455\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Apr-2026 14:57:58\n\nTransaction Date/Time (system local): 22-Apr-2026 12:57:58 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21082.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21082.pdf new file mode 100644 index 0000000..228d738 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21082.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json new file mode 100644 index 0000000..768c69c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 18453, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-03-15", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120006 has been performed.\nMedication ID: 1092803\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1183428\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 5\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 15-Mar-2026 11:46:43 \nTransaction Date/Time (system local): 15-Mar-2026 10:46:43 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..5a71349 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk18453.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk18453.json new file mode 100644 index 0000000..768c69c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk18453.json @@ -0,0 +1,10 @@ +{ + "pk": 18453, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-03-15", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120006 has been performed.\nMedication ID: 1092803\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1183428\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 5\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Completed Part 1 from IRT Managed Treatment \n\nTransaction Date/Time (site local): 15-Mar-2026 11:46:43 \nTransaction Date/Time (system local): 15-Mar-2026 10:46:43 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk18453.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk18453.pdf new file mode 100644 index 0000000..0d948c5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk18453.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21107.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21107.json new file mode 100644 index 0000000..e2340f9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21107.json @@ -0,0 +1,10 @@ +{ + "pk": 21107, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-03-15", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120006 has been performed.\nMedication ID: 1232321\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1253893\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Apr-2026 16:13:37 \nTransaction Date/Time (system local): 22-Apr-2026 14:13:37 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21107.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21107.pdf new file mode 100644 index 0000000..c0140b9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-15_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21107.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..36416d3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18459, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-16", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1201836\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1259778\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 08:39:05\n\nTransaction Date/Time (system local): 16-Mar-2026 07:39:05 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..006347c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18459.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18459.json new file mode 100644 index 0000000..36416d3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18459.json @@ -0,0 +1,10 @@ +{ + "pk": 18459, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-16", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1201836\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1259778\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 08:39:05\n\nTransaction Date/Time (system local): 16-Mar-2026 07:39:05 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18459.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18459.pdf new file mode 100644 index 0000000..6af6eed Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18459.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..e1ebee8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18460, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-16", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1208363\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1218108\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 08:40:21 \nTransaction Date/Time (system local): 16-Mar-2026 07:40:21 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..6335052 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk18460.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk18460.json new file mode 100644 index 0000000..e1ebee8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk18460.json @@ -0,0 +1,10 @@ +{ + "pk": 18460, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-16", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1208363\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1218108\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 08:40:21 \nTransaction Date/Time (system local): 16-Mar-2026 07:40:21 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk18460.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk18460.pdf new file mode 100644 index 0000000..118e134 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk18460.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..4ae3555 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18463, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-16", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1231227\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1267648\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1269406\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1280113\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 08:42:58\n\nTransaction Date/Time (system local): 16-Mar-2026 07:42:58 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..f540f03 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18463.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18463.json new file mode 100644 index 0000000..4ae3555 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18463.json @@ -0,0 +1,10 @@ +{ + "pk": 18463, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-16", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1231227\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1267648\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1269406\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1280113\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 08:42:58\n\nTransaction Date/Time (system local): 16-Mar-2026 07:42:58 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18463.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18463.pdf new file mode 100644 index 0000000..9f4b124 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18463.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..3f6f1ae --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18464, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-16", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1200310\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nMedication ID: 1296945\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 08:43:56 \nTransaction Date/Time (system local): 16-Mar-2026 07:43:56 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..e53e13a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18464.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18464.json new file mode 100644 index 0000000..3f6f1ae --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18464.json @@ -0,0 +1,10 @@ +{ + "pk": 18464, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-16", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1200310\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nMedication ID: 1296945\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 08:43:56 \nTransaction Date/Time (system local): 16-Mar-2026 07:43:56 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18464.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18464.pdf new file mode 100644 index 0000000..19a58e4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk18464.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..f06d9a9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18461, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-16", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1160915\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1182010\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 16-Mar-2026 08:41:06\n\nTransaction Date/Time (system local): 16-Mar-2026 07:41:06 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..571ffd9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18461.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18461.json new file mode 100644 index 0000000..f06d9a9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18461.json @@ -0,0 +1,10 @@ +{ + "pk": 18461, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-16", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1160915\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1182010\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 16-Mar-2026 08:41:06\n\nTransaction Date/Time (system local): 16-Mar-2026 07:41:06 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18461.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18461.pdf new file mode 100644 index 0000000..3a4561e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk18461.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20360.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20360.json new file mode 100644 index 0000000..bdfa631 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20360.json @@ -0,0 +1,10 @@ +{ + "pk": 20360, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-16", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1289962\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 10-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1218579\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 10-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Apr-2026 12:35:33\n\nTransaction Date/Time (system local): 13-Apr-2026 10:35:33 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20360.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20360.pdf new file mode 100644 index 0000000..bc689d4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20360.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..e6c86b3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18462, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-16", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040006 has been performed.\nMedication ID: 1114050\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1037248\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 16-Mar-2026 08:41:44 \nTransaction Date/Time (system local): 16-Mar-2026 07:41:44 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..ad9f168 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk18462.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk18462.json new file mode 100644 index 0000000..e6c86b3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk18462.json @@ -0,0 +1,10 @@ +{ + "pk": 18462, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-16", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040006 has been performed.\nMedication ID: 1114050\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1037248\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 16-Mar-2026 08:41:44 \nTransaction Date/Time (system local): 16-Mar-2026 07:41:44 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk18462.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk18462.pdf new file mode 100644 index 0000000..6452c77 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk18462.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk19387.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk19387.json new file mode 100644 index 0000000..8a1e2cf --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk19387.json @@ -0,0 +1,10 @@ +{ + "pk": 19387, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-16", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040006 has been performed.\nMedication ID: 1160915\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1182010\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 30-Mar-2026 10:17:46 \nTransaction Date/Time (system local): 30-Mar-2026 08:17:46 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk19387.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk19387.pdf new file mode 100644 index 0000000..a4de933 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk19387.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..787dbda --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 18485, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-03-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1235759\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1280295\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 13:51:22\n\nTransaction Date/Time (system local): 16-Mar-2026 12:51:22 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..99e35f3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18485.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18485.json new file mode 100644 index 0000000..787dbda --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18485.json @@ -0,0 +1,10 @@ +{ + "pk": 18485, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-03-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1235759\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1280295\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 16-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 13:51:22\n\nTransaction Date/Time (system local): 16-Mar-2026 12:51:22 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18485.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18485.pdf new file mode 100644 index 0000000..181e945 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18485.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.json new file mode 100644 index 0000000..8214146 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 18477, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10011", + "event": "OL_TS_V2_3", + "actual_date": "2026-03-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1235759Seltorexant 20mgT39247624-Jun-20281280295Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 12:43:37 \nTransaction Date/Time (system local): 16-Mar-2026 11:43:37 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..4d7194d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18477.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18477.json new file mode 100644 index 0000000..8214146 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18477.json @@ -0,0 +1,10 @@ +{ + "pk": 18477, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10011", + "event": "OL_TS_V2_3", + "actual_date": "2026-03-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1235759Seltorexant 20mgT39247624-Jun-20281280295Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 12:43:37 \nTransaction Date/Time (system local): 16-Mar-2026 11:43:37 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18477.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18477.pdf new file mode 100644 index 0000000..48ab38a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18477.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..7878715 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 18484, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-03-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1217399\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1265438\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 13:50:50 \nTransaction Date/Time (system local): 16-Mar-2026 12:50:50 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..5e4fa0c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk18484.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk18484.json new file mode 100644 index 0000000..7878715 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk18484.json @@ -0,0 +1,10 @@ +{ + "pk": 18484, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-03-16", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1217399\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1265438\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 13:50:50 \nTransaction Date/Time (system local): 16-Mar-2026 12:50:50 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk18484.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk18484.pdf new file mode 100644 index 0000000..90597c8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk18484.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18470.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18470.json new file mode 100644 index 0000000..839e582 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18470.json @@ -0,0 +1,10 @@ +{ + "pk": 18470, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-03-16", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1231444\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 02-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1265004\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 02-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 11:05:08\n\nTransaction Date/Time (system local): 16-Mar-2026 10:05:08 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18470.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18470.pdf new file mode 100644 index 0000000..f0740fb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18470.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18472.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18472.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18472.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18472.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18472.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18472.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18472.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk18472.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk18466.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk18466.json new file mode 100644 index 0000000..5c3285f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk18466.json @@ -0,0 +1,10 @@ +{ + "pk": 18466, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has been assigned medication for visit Open Label Induction Visit 1.7 at site S10-CZ10011", + "event": "OL_Ind_V1_7", + "actual_date": "2026-03-16", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.7:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1205166\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1229581\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1250166\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1261027\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110007 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 16-Mar-2026 10:09:50 \n\r\n Transaction Date/Time (system local): 16-Mar-2026 09:09:50 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk18466.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk18466.pdf new file mode 100644 index 0000000..5396b7f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10011_pk18466.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk18471.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk18471.json new file mode 100644 index 0000000..33a51c9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk18471.json @@ -0,0 +1,10 @@ +{ + "pk": 18471, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-03-16", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110007 has been performed.\nMedication ID: 1231444\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1265004\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 16-Mar-2026 11:06:12 \nTransaction Date/Time (system local): 16-Mar-2026 10:06:12 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk18471.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk18471.pdf new file mode 100644 index 0000000..640cdd0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-16_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk18471.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18531.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18531.json new file mode 100644 index 0000000..c506249 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18531.json @@ -0,0 +1,10 @@ +{ + "pk": 18531, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10011", + "event": "OL_TS_V2_3", + "actual_date": "2026-03-17", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1205393Seltorexant 20mgT39247624-Jun-20281215203Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 17-Mar-2026 10:19:05 \nTransaction Date/Time (system local): 17-Mar-2026 09:19:05 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18531.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18531.pdf new file mode 100644 index 0000000..119feec Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-17_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk18531.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..53f0e70 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 18609, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-03-18", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1200043\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 18-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1226481\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 18-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 18-Mar-2026 10:45:45\n\nTransaction Date/Time (system local): 18-Mar-2026 09:45:45 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..b4fa485 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18609.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18609.json new file mode 100644 index 0000000..53f0e70 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18609.json @@ -0,0 +1,10 @@ +{ + "pk": 18609, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-03-18", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1200043\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 18-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1226481\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 18-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 18-Mar-2026 10:45:45\n\nTransaction Date/Time (system local): 18-Mar-2026 09:45:45 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18609.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18609.pdf new file mode 100644 index 0000000..561b434 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk18609.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json new file mode 100644 index 0000000..d7c3d76 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 18608, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10008", + "event": "OL_Ind_V1_4", + "actual_date": "2026-03-18", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1200043Seltorexant 20mgT37484802-May-20261226481Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 18-Mar-2026 10:43:49 \nTransaction Date/Time (system local): 18-Mar-2026 09:43:49 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..0af14a4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk18608.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk18608.json new file mode 100644 index 0000000..d7c3d76 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk18608.json @@ -0,0 +1,10 @@ +{ + "pk": 18608, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10008", + "event": "OL_Ind_V1_4", + "actual_date": "2026-03-18", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1200043Seltorexant 20mgT37484802-May-20261226481Seltorexant 20mgT37484802-May-2026\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 18-Mar-2026 10:43:49 \nTransaction Date/Time (system local): 18-Mar-2026 09:43:49 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk18608.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk18608.pdf new file mode 100644 index 0000000..83ef27d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10008_pk18608.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..f68c414 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 18613, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-03-18", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1212767\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1224656\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 18-Mar-2026 10:57:00 \nTransaction Date/Time (system local): 18-Mar-2026 09:57:00 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..60397cf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk18613.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk18613.json new file mode 100644 index 0000000..f68c414 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk18613.json @@ -0,0 +1,10 @@ +{ + "pk": 18613, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-03-18", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1212767\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1224656\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 18-Mar-2026 10:57:00 \nTransaction Date/Time (system local): 18-Mar-2026 09:57:00 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk18613.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk18613.pdf new file mode 100644 index 0000000..08e2b63 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-18_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk18613.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json new file mode 100644 index 0000000..fe45e16 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18847, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 Rolled Over from Part 1 into Part 2 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-03-20", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 20-Mar-2026 13:22:45\nTransaction Date/Time (system local): 20-Mar-2026 12:22:45\n\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..36b4801 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk18847.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk18847.json new file mode 100644 index 0000000..fe45e16 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk18847.json @@ -0,0 +1,10 @@ +{ + "pk": 18847, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 Rolled Over from Part 1 into Part 2 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-03-20", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 20-Mar-2026 13:22:45\nTransaction Date/Time (system local): 20-Mar-2026 12:22:45\n\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk18847.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk18847.pdf new file mode 100644 index 0000000..a42f683 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk18847.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json new file mode 100644 index 0000000..44fca6c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 18848, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-03-20", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1064155Seltorexant 20mg or placeboT38650424-Jun-20281167615Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 20-Mar-2026 13:22:45 \nTransaction Date/Time (system local): 20-Mar-2026 12:22:45 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..64022ee Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk18848.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk18848.json new file mode 100644 index 0000000..44fca6c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk18848.json @@ -0,0 +1,10 @@ +{ + "pk": 18848, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-03-20", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1064155Seltorexant 20mg or placeboT38650424-Jun-20281167615Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 20-Mar-2026 13:22:45 \nTransaction Date/Time (system local): 20-Mar-2026 12:22:45 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk18848.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk18848.pdf new file mode 100644 index 0000000..cf6b731 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk18848.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011.json new file mode 100644 index 0000000..f069faa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 18927, + "title": "Screenfail", + "label": "Janssen 42847922MDD3003 Subject CZ100110012 has been screen failed at site S10-CZ10011", + "event": "uv_screen_fail", + "actual_date": "2026-03-20", + "subject": "CZ100110012", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110012 \nIRT Subject Status: Screen Failed \n\nScreenfail Date: 20-Mar-2026\nTransaction Date/Time (site local): 22-Mar-2026 21:16:15\nTransaction Date/Time (system local): 22-Mar-2026 20:16:15\nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..369da0b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011_pk18927.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011_pk18927.json new file mode 100644 index 0000000..f069faa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011_pk18927.json @@ -0,0 +1,10 @@ +{ + "pk": 18927, + "title": "Screenfail", + "label": "Janssen 42847922MDD3003 Subject CZ100110012 has been screen failed at site S10-CZ10011", + "event": "uv_screen_fail", + "actual_date": "2026-03-20", + "subject": "CZ100110012", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110012 \nIRT Subject Status: Screen Failed \n\nScreenfail Date: 20-Mar-2026\nTransaction Date/Time (site local): 22-Mar-2026 21:16:15\nTransaction Date/Time (system local): 22-Mar-2026 20:16:15\nTransaction performed by: studie@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011_pk18927.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011_pk18927.pdf new file mode 100644 index 0000000..adacdb9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-20_Janssen_42847922MDD3003_Subject_CZ100110012_has_been_screen_failed_at_site_S10-CZ10011_pk18927.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..3b4ccda --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19024, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-03-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1229776\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1248963\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Mar-2026 11:12:54\n\nTransaction Date/Time (system local): 24-Mar-2026 10:12:54 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..f6f0bc1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19024.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19024.json new file mode 100644 index 0000000..3b4ccda --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19024.json @@ -0,0 +1,10 @@ +{ + "pk": 19024, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-03-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1229776\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1248963\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Mar-2026 11:12:54\n\nTransaction Date/Time (system local): 24-Mar-2026 10:12:54 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19024.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19024.pdf new file mode 100644 index 0000000..b307d10 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19024.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json new file mode 100644 index 0000000..3c18b79 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19013, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10011", + "event": "OL_Ind_V1_4", + "actual_date": "2026-03-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1229776Seltorexant 20mgT39247624-Jun-20281248963Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Mar-2026 10:29:29 \nTransaction Date/Time (system local): 24-Mar-2026 09:29:29 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..1c829b9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk19013.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk19013.json new file mode 100644 index 0000000..3c18b79 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk19013.json @@ -0,0 +1,10 @@ +{ + "pk": 19013, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10011", + "event": "OL_Ind_V1_4", + "actual_date": "2026-03-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1229776Seltorexant 20mgT39247624-Jun-20281248963Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Mar-2026 10:29:29 \nTransaction Date/Time (system local): 24-Mar-2026 09:29:29 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk19013.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk19013.pdf new file mode 100644 index 0000000..2f7c8e7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk19013.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..f1d1e01 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19011, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-03-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1203532\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1210628\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Mar-2026 10:20:00 \nTransaction Date/Time (system local): 24-Mar-2026 09:20:00 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..e474b90 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19011.json new file mode 100644 index 0000000..f1d1e01 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19011.json @@ -0,0 +1,10 @@ +{ + "pk": 19011, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-03-24", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1203532\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1210628\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Mar-2026 10:20:00 \nTransaction Date/Time (system local): 24-Mar-2026 09:20:00 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19011.pdf new file mode 100644 index 0000000..14a2b86 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json new file mode 100644 index 0000000..033b49f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19036, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10011", + "event": "DB_P1_V6", + "actual_date": "2026-03-24", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1136217Seltorexant 20mg or placeboT38650424-Jun-20281153307Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Mar-2026 12:02:26 \nTransaction Date/Time (system local): 24-Mar-2026 11:02:26 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..4b6c768 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk19036.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk19036.json new file mode 100644 index 0000000..033b49f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk19036.json @@ -0,0 +1,10 @@ +{ + "pk": 19036, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10011", + "event": "DB_P1_V6", + "actual_date": "2026-03-24", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1136217Seltorexant 20mg or placeboT38650424-Jun-20281153307Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Mar-2026 12:02:26 \nTransaction Date/Time (system local): 24-Mar-2026 11:02:26 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk19036.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk19036.pdf new file mode 100644 index 0000000..aaf03fb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-24_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10011_pk19036.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004.json new file mode 100644 index 0000000..e1e71eb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 19108, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 randomized into Part 1 at site S10-CZ10004", + "event": "Rand", + "actual_date": "2026-03-25", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1176581Seltorexant 20mg or placeboT38650424-Jun-20281182748Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 25-Mar-2026 11:47:02\nTransaction Date/Time (system local): 25-Mar-2026 10:47:02\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..0015708 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004_pk19108.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004_pk19108.json new file mode 100644 index 0000000..e1e71eb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004_pk19108.json @@ -0,0 +1,10 @@ +{ + "pk": 19108, + "title": "Randomized_Part_1", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 randomized into Part 1 at site S10-CZ10004", + "event": "Rand", + "actual_date": "2026-03-25", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been randomized into Part 1.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1176581Seltorexant 20mg or placeboT38650424-Jun-20281182748Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 25-Mar-2026 11:47:02\nTransaction Date/Time (system local): 25-Mar-2026 10:47:02\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004_pk19108.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004_pk19108.pdf new file mode 100644 index 0000000..f7a4293 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100040008_randomized_into_Part_1_at_site_S10-CZ10004_pk19108.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19140.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19140.json new file mode 100644 index 0000000..0eae365 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19140.json @@ -0,0 +1,10 @@ +{ + "pk": 19140, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10012", + "event": "OL_Ind_V1_1", + "actual_date": "2026-03-25", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1237013Seltorexant 20mgT39247624-Jun-20281241196Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-Mar-2026 16:32:29 \nTransaction Date/Time (system local): 25-Mar-2026 15:32:29 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19140.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19140.pdf new file mode 100644 index 0000000..c192af6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19140.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.json new file mode 100644 index 0000000..3933576 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 19128, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10012", + "event": "OL_Ind_V1_1", + "actual_date": "2026-03-25", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1238923Seltorexant 20mgT39247624-Jun-20281242553Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-Mar-2026 15:09:00 \nTransaction Date/Time (system local): 25-Mar-2026 14:09:00 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..aa4f8d7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19128.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19128.json new file mode 100644 index 0000000..3933576 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19128.json @@ -0,0 +1,10 @@ +{ + "pk": 19128, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10012", + "event": "OL_Ind_V1_1", + "actual_date": "2026-03-25", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1238923Seltorexant 20mgT39247624-Jun-20281242553Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-Mar-2026 15:09:00 \nTransaction Date/Time (system local): 25-Mar-2026 14:09:00 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19128.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19128.pdf new file mode 100644 index 0000000..8c8494d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-25_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10012_pk19128.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004.json new file mode 100644 index 0000000..7a0202e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 19300, + "title": "Randomized_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 randomized into Part 2 at site S10-CZ10004", + "event": "DB_Main_V3_1", + "actual_date": "2026-03-27", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been randomized into Part 2.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1023754Seltorexant 20mg or placeboT38650424-Jun-20281035556Seltorexant 20mg or placeboT38650424-Jun-20281097739Seltorexant 20mg or placeboT38650424-Jun-20281113685Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-Mar-2026 10:57:13\nTransaction Date/Time (system local): 27-Mar-2026 09:57:13\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..1be397d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004_pk19300.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004_pk19300.json new file mode 100644 index 0000000..7a0202e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004_pk19300.json @@ -0,0 +1,10 @@ +{ + "pk": 19300, + "title": "Randomized_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 randomized into Part 2 at site S10-CZ10004", + "event": "DB_Main_V3_1", + "actual_date": "2026-03-27", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been randomized into Part 2.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1023754Seltorexant 20mg or placeboT38650424-Jun-20281035556Seltorexant 20mg or placeboT38650424-Jun-20281097739Seltorexant 20mg or placeboT38650424-Jun-20281113685Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-Mar-2026 10:57:13\nTransaction Date/Time (system local): 27-Mar-2026 09:57:13\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004_pk19300.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004_pk19300.pdf new file mode 100644 index 0000000..b2a4409 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040003_randomized_into_Part_2_at_site_S10-CZ10004_pk19300.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json new file mode 100644 index 0000000..34a597c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 19301, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 Rolled Over from Part 1 into Part 2 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-03-27", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Mar-2026 12:08:55\nTransaction Date/Time (system local): 27-Mar-2026 11:08:55\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..32bd822 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk19301.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk19301.json new file mode 100644 index 0000000..34a597c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk19301.json @@ -0,0 +1,10 @@ +{ + "pk": 19301, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 Rolled Over from Part 1 into Part 2 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-03-27", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Mar-2026 12:08:55\nTransaction Date/Time (system local): 27-Mar-2026 11:08:55\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk19301.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk19301.pdf new file mode 100644 index 0000000..2d9e75f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk19301.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json new file mode 100644 index 0000000..033cf84 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 19302, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-03-27", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1002510Seltorexant 20mg or placeboT38650424-Jun-20281190596Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Mar-2026 12:08:55 \nTransaction Date/Time (system local): 27-Mar-2026 11:08:55 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..785439b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk19302.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk19302.json new file mode 100644 index 0000000..033cf84 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk19302.json @@ -0,0 +1,10 @@ +{ + "pk": 19302, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-03-27", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1002510Seltorexant 20mg or placeboT38650424-Jun-20281190596Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Mar-2026 12:08:55 \nTransaction Date/Time (system local): 27-Mar-2026 11:08:55 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk19302.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk19302.pdf new file mode 100644 index 0000000..afcc9a2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk19302.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..930bdbd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 19382, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-30", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1113685\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1097739\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1035556\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1023754\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 30-Mar-2026 10:14:11\n\nTransaction Date/Time (system local): 30-Mar-2026 08:14:11 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..c9bc214 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19382.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19382.json new file mode 100644 index 0000000..930bdbd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19382.json @@ -0,0 +1,10 @@ +{ + "pk": 19382, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-03-30", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1113685\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1097739\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1035556\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1023754\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 30-Mar-2026 10:14:11\n\nTransaction Date/Time (system local): 30-Mar-2026 08:14:11 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19382.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19382.pdf new file mode 100644 index 0000000..23a7f75 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk19382.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..cb9a68e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 19383, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-30", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1201836\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1259778\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 30-Mar-2026 10:14:52 \nTransaction Date/Time (system local): 30-Mar-2026 08:14:52 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..8d129c2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk19383.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk19383.json new file mode 100644 index 0000000..cb9a68e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk19383.json @@ -0,0 +1,10 @@ +{ + "pk": 19383, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-03-30", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1201836\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1259778\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 30-Mar-2026 10:14:52 \nTransaction Date/Time (system local): 30-Mar-2026 08:14:52 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk19383.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk19383.pdf new file mode 100644 index 0000000..8cfb8af Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk19383.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..bc09c3c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19392, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-03-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1083166\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 30-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1095649\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 30-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1133206\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 30-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1152372\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 30-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 30-Mar-2026 11:28:12\n\nTransaction Date/Time (system local): 30-Mar-2026 09:28:12 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..02fab8a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19392.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19392.json new file mode 100644 index 0000000..bc09c3c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19392.json @@ -0,0 +1,10 @@ +{ + "pk": 19392, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-03-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1083166\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 30-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1095649\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 30-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1133206\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 30-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1152372\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 30-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 30-Mar-2026 11:28:12\n\nTransaction Date/Time (system local): 30-Mar-2026 09:28:12 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19392.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19392.pdf new file mode 100644 index 0000000..0dff03d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19392.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..dd525df --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19391, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-03-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1235759\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1280295\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 30-Mar-2026 11:27:38 \nTransaction Date/Time (system local): 30-Mar-2026 09:27:38 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..bd149fc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk19391.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk19391.json new file mode 100644 index 0000000..dd525df --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk19391.json @@ -0,0 +1,10 @@ +{ + "pk": 19391, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-03-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1235759\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1280295\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 30-Mar-2026 11:27:38 \nTransaction Date/Time (system local): 30-Mar-2026 09:27:38 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk19391.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk19391.pdf new file mode 100644 index 0000000..403ece2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk19391.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011.json new file mode 100644 index 0000000..d5da601 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19388, + "title": "Randomized_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 randomized into Part 2 at site S10-CZ10011", + "event": "DB_Main_V3_1", + "actual_date": "2026-03-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been randomized into Part 2.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1083166Seltorexant 20mg or placeboT38650424-Jun-20281095649Seltorexant 20mg or placeboT38650424-Jun-20281133206Seltorexant 20mg or placeboT38650424-Jun-20281152372Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 30-Mar-2026 10:46:13\nTransaction Date/Time (system local): 30-Mar-2026 08:46:13\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..a5213a5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011_pk19388.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011_pk19388.json new file mode 100644 index 0000000..d5da601 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011_pk19388.json @@ -0,0 +1,10 @@ +{ + "pk": 19388, + "title": "Randomized_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 randomized into Part 2 at site S10-CZ10011", + "event": "DB_Main_V3_1", + "actual_date": "2026-03-30", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been randomized into Part 2.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1083166Seltorexant 20mg or placeboT38650424-Jun-20281095649Seltorexant 20mg or placeboT38650424-Jun-20281133206Seltorexant 20mg or placeboT38650424-Jun-20281152372Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 30-Mar-2026 10:46:13\nTransaction Date/Time (system local): 30-Mar-2026 08:46:13\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011_pk19388.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011_pk19388.pdf new file mode 100644 index 0000000..f51360f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-30_Janssen_42847922MDD3003_Subject_CZ100110003_randomized_into_Part_2_at_site_S10-CZ10011_pk19388.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011_pk19481.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011_pk19481.json new file mode 100644 index 0000000..06fa72b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011_pk19481.json @@ -0,0 +1,10 @@ +{ + "pk": 19481, + "title": "Randomized_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 randomized into Part 2 at site S10-CZ10011", + "event": "DB_Main_V3_1", + "actual_date": "2026-03-31", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been randomized into Part 2.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1105798Seltorexant 20mg or placeboT38650424-Jun-20281151419Seltorexant 20mg or placeboT38650424-Jun-20281181446Seltorexant 20mg or placeboT38650424-Jun-20281187419Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 31-Mar-2026 11:47:30\nTransaction Date/Time (system local): 31-Mar-2026 09:47:30\nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011_pk19481.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011_pk19481.pdf new file mode 100644 index 0000000..c63b78a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-03-31_Janssen_42847922MDD3003_Subject_CZ100110006_randomized_into_Part_2_at_site_S10-CZ10011_pk19481.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..764bd6f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 19574, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-04-01", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1261024\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 01-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1230179\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 01-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 01-Apr-2026 11:15:15\n\nTransaction Date/Time (system local): 01-Apr-2026 09:15:15 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..aff1e68 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19574.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19574.json new file mode 100644 index 0000000..764bd6f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19574.json @@ -0,0 +1,10 @@ +{ + "pk": 19574, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-04-01", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1261024\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 01-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1230179\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 01-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 01-Apr-2026 11:15:15\n\nTransaction Date/Time (system local): 01-Apr-2026 09:15:15 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19574.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19574.pdf new file mode 100644 index 0000000..30385d1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19574.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json new file mode 100644 index 0000000..2e061a6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 19573, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10008", + "event": "OL_Ind_V1_5", + "actual_date": "2026-04-01", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1230179\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1261024\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080007 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 01-Apr-2026 11:13:41 \n\r\n Transaction Date/Time (system local): 01-Apr-2026 09:13:41 \n\r\n Transaction performed by: v.smidkova@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..2bd8167 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk19573.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk19573.json new file mode 100644 index 0000000..2e061a6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk19573.json @@ -0,0 +1,10 @@ +{ + "pk": 19573, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10008", + "event": "OL_Ind_V1_5", + "actual_date": "2026-04-01", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1230179\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1261024\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080007 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 01-Apr-2026 11:13:41 \n\r\n Transaction Date/Time (system local): 01-Apr-2026 09:13:41 \n\r\n Transaction performed by: v.smidkova@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk19573.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk19573.pdf new file mode 100644 index 0000000..c76be35 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10008_pk19573.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..7e2d45a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 19584, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-04-01", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1200043\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1226481\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 01-Apr-2026 12:20:05 \nTransaction Date/Time (system local): 01-Apr-2026 10:20:05 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..fc4cecd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk19584.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk19584.json new file mode 100644 index 0000000..7e2d45a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk19584.json @@ -0,0 +1,10 @@ +{ + "pk": 19584, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-04-01", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1200043\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1226481\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 01-Apr-2026 12:20:05 \nTransaction Date/Time (system local): 01-Apr-2026 10:20:05 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk19584.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk19584.pdf new file mode 100644 index 0000000..9d57289 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-01_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk19584.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004_pk19920.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004_pk19920.json new file mode 100644 index 0000000..690eb47 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004_pk19920.json @@ -0,0 +1,10 @@ +{ + "pk": 19920, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Double Blind Maintenance Visit 3.4 at site S10-CZ10004", + "event": "DB_Main_V3_4", + "actual_date": "2026-04-07", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1013204Seltorexant 20mg or placeboT38650424-Jun-20281034161Seltorexant 20mg or placeboT38650424-Jun-20281130765Seltorexant 20mg or placeboT38650424-Jun-20281139849Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 07-Apr-2026 09:48:25 \nTransaction Date/Time (system local): 07-Apr-2026 07:48:25 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004_pk19920.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004_pk19920.pdf new file mode 100644 index 0000000..5d40868 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10004_pk19920.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json new file mode 100644 index 0000000..f3b948b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 19947, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-04-07", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1258550Seltorexant 20mgT39247624-Jun-20281293525Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 07-Apr-2026 12:00:38 \nTransaction Date/Time (system local): 07-Apr-2026 10:00:38 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..db7d981 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk19947.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk19947.json new file mode 100644 index 0000000..f3b948b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk19947.json @@ -0,0 +1,10 @@ +{ + "pk": 19947, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-04-07", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1258550Seltorexant 20mgT39247624-Jun-20281293525Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 07-Apr-2026 12:00:38 \nTransaction Date/Time (system local): 07-Apr-2026 10:00:38 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk19947.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk19947.pdf new file mode 100644 index 0000000..3223fd5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk19947.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19950.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19950.json new file mode 100644 index 0000000..14227b8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19950.json @@ -0,0 +1,10 @@ +{ + "pk": 19950, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-04-07", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1011219\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1159117\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1188311\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1194723\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 07-Apr-2026 12:11:27\n\nTransaction Date/Time (system local): 07-Apr-2026 10:11:27 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19950.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19950.pdf new file mode 100644 index 0000000..3b07b2e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk19950.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008_pk19948.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008_pk19948.json new file mode 100644 index 0000000..4e61361 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008_pk19948.json @@ -0,0 +1,10 @@ +{ + "pk": 19948, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Double Blind Maintenance Visit 3.4 at site S10-CZ10008", + "event": "DB_Main_V3_4", + "actual_date": "2026-04-07", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1011219Seltorexant 20mg or placeboT38650424-Jun-20281159117Seltorexant 20mg or placeboT38650424-Jun-20281188311Seltorexant 20mg or placeboT38650424-Jun-20281194723Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 07-Apr-2026 12:08:56 \nTransaction Date/Time (system local): 07-Apr-2026 10:08:56 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008_pk19948.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008_pk19948.pdf new file mode 100644 index 0000000..379f9dd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.4_at_site_S10-CZ10008_pk19948.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk19952.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk19952.json new file mode 100644 index 0000000..b57a72d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk19952.json @@ -0,0 +1,10 @@ +{ + "pk": 19952, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-04-07", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080002 has been performed.\nMedication ID: 1067238\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1086247\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1181079\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1181089\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 07-Apr-2026 12:25:40 \nTransaction Date/Time (system local): 07-Apr-2026 10:25:40 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk19952.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk19952.pdf new file mode 100644 index 0000000..7855bd7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk19952.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20027.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20027.json new file mode 100644 index 0000000..9c60693 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20027.json @@ -0,0 +1,10 @@ +{ + "pk": 20027, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-07", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1210007\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1228400\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1235008\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1209188\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 03-Feb-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110006 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 07-Apr-2026 19:51:05\n\nTransaction Date/Time (system local): 07-Apr-2026 17:51:05 \nTransaction performed by: vysztavel@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20027.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20027.pdf new file mode 100644 index 0000000..3a68902 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20027.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20028.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20028.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20028.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20028.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20028.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20028.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20028.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20028.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..cd9840f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19928, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-07", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1261748\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 07-Apr-2026 10:20:43\n\nTransaction Date/Time (system local): 07-Apr-2026 08:20:43 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..939bd02 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19928.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19928.json new file mode 100644 index 0000000..cd9840f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19928.json @@ -0,0 +1,10 @@ +{ + "pk": 19928, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-07", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1261748\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 07-Apr-2026 10:20:43\n\nTransaction Date/Time (system local): 07-Apr-2026 08:20:43 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19928.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19928.pdf new file mode 100644 index 0000000..a29b6fa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19928.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19929.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19929.json new file mode 100644 index 0000000..4d772aa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19929.json @@ -0,0 +1,10 @@ +{ + "pk": 19929, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-07", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1291325\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 07-Apr-2026 10:21:09\n\nTransaction Date/Time (system local): 07-Apr-2026 08:21:09 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19929.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19929.pdf new file mode 100644 index 0000000..2dcf695 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk19929.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json new file mode 100644 index 0000000..1571236 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19925, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10011", + "event": "OL_Ind_V1_5", + "actual_date": "2026-04-07", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1261748\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1291325\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110008 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 07-Apr-2026 10:02:07 \n\r\n Transaction Date/Time (system local): 07-Apr-2026 08:02:07 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..9771e83 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk19925.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk19925.json new file mode 100644 index 0000000..1571236 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk19925.json @@ -0,0 +1,10 @@ +{ + "pk": 19925, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10011", + "event": "OL_Ind_V1_5", + "actual_date": "2026-04-07", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1261748\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1291325\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110008 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 07-Apr-2026 10:02:07 \n\r\n Transaction Date/Time (system local): 07-Apr-2026 08:02:07 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk19925.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk19925.pdf new file mode 100644 index 0000000..0ab69ad Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk19925.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..bdaaab7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19927, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-07", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1229776\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1248963\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 07-Apr-2026 10:20:14 \nTransaction Date/Time (system local): 07-Apr-2026 08:20:14 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..bc54fc7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19927.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19927.json new file mode 100644 index 0000000..bdaaab7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19927.json @@ -0,0 +1,10 @@ +{ + "pk": 19927, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-07", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1229776\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1248963\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 07-Apr-2026 10:20:14 \nTransaction Date/Time (system local): 07-Apr-2026 08:20:14 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19927.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19927.pdf new file mode 100644 index 0000000..de20232 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk19927.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json new file mode 100644 index 0000000..d075f3d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19937, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 Rolled Over from Part 1 into Part 2 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2026-04-07", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Apr-2026 11:25:38\nTransaction Date/Time (system local): 07-Apr-2026 09:25:38\n\nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..d521ee3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk19937.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk19937.json new file mode 100644 index 0000000..d075f3d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk19937.json @@ -0,0 +1,10 @@ +{ + "pk": 19937, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 Rolled Over from Part 1 into Part 2 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2026-04-07", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Apr-2026 11:25:38\nTransaction Date/Time (system local): 07-Apr-2026 09:25:38\n\nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk19937.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk19937.pdf new file mode 100644 index 0000000..f17b7fe Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10011_pk19937.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..8c90441 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 20029, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-07", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110010 has\nbeen performed for the following medication IDs:\n\nMedication No: 1027822\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1030395\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1136217\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 24-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1153307\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 24-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1065870\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1161457\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Apr-2026 19:53:10\n\nTransaction Date/Time (system local): 07-Apr-2026 17:53:10 \nTransaction performed by: vysztavel@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..d67185e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20029.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20029.json new file mode 100644 index 0000000..8c90441 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20029.json @@ -0,0 +1,10 @@ +{ + "pk": 20029, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-07", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110010 has\nbeen performed for the following medication IDs:\n\nMedication No: 1027822\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1030395\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1136217\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 24-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1153307\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 24-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1065870\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1161457\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Apr-2026 19:53:10\n\nTransaction Date/Time (system local): 07-Apr-2026 17:53:10 \nTransaction performed by: vysztavel@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20029.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20029.pdf new file mode 100644 index 0000000..a4e672f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20029.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json new file mode 100644 index 0000000..34079ff --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 19938, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2026-04-07", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1027822Seltorexant 20mg or placeboT38650424-Jun-20281030395Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Apr-2026 11:25:37 \nTransaction Date/Time (system local): 07-Apr-2026 09:25:37 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..05fc820 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk19938.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk19938.json new file mode 100644 index 0000000..34079ff --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk19938.json @@ -0,0 +1,10 @@ +{ + "pk": 19938, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10011", + "event": "DB_P1_V7", + "actual_date": "2026-04-07", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1027822Seltorexant 20mg or placeboT38650424-Jun-20281030395Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 07-Apr-2026 11:25:37 \nTransaction Date/Time (system local): 07-Apr-2026 09:25:37 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk19938.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk19938.pdf new file mode 100644 index 0000000..9b36e47 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-07_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10011_pk19938.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.json new file mode 100644 index 0000000..bc214db --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20098, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10004", + "event": "OL_TS_V2_2", + "actual_date": "2026-04-08", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1233859Seltorexant 20mgT39247624-Jun-20281236543Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 08-Apr-2026 17:09:13 \nTransaction Date/Time (system local): 08-Apr-2026 15:09:13 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..c928cc1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk20098.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk20098.json new file mode 100644 index 0000000..bc214db --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk20098.json @@ -0,0 +1,10 @@ +{ + "pk": 20098, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10004", + "event": "OL_TS_V2_2", + "actual_date": "2026-04-08", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1233859Seltorexant 20mgT39247624-Jun-20281236543Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 08-Apr-2026 17:09:13 \nTransaction Date/Time (system local): 08-Apr-2026 15:09:13 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk20098.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk20098.pdf new file mode 100644 index 0000000..2a41f79 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10004_pk20098.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk20139.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk20139.json new file mode 100644 index 0000000..41b4be4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk20139.json @@ -0,0 +1,10 @@ +{ + "pk": 20139, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-08", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110006 has been performed.\nMedication ID: 1210007\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1228400\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1209188\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1235008\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1275774\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1296942\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1291073\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1293256\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 08-Apr-2026 20:58:58 \nTransaction Date/Time (system local): 08-Apr-2026 18:58:58 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk20139.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk20139.pdf new file mode 100644 index 0000000..0d6c9e6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk20139.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..888ec63 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 20142, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-08", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110010 has been performed.\nMedication ID: 1136217\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1153307\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1065870\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1161457\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 08-Apr-2026 21:05:48 \nTransaction Date/Time (system local): 08-Apr-2026 19:05:48 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..cc1f954 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20142.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20142.json new file mode 100644 index 0000000..888ec63 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20142.json @@ -0,0 +1,10 @@ +{ + "pk": 20142, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-08", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110010 has been performed.\nMedication ID: 1136217\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1153307\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1065870\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1161457\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 08-Apr-2026 21:05:48 \nTransaction Date/Time (system local): 08-Apr-2026 19:05:48 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20142.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20142.pdf new file mode 100644 index 0000000..1f992c5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20142.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20079.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20079.json new file mode 100644 index 0000000..ec1d0f0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20079.json @@ -0,0 +1,10 @@ +{ + "pk": 20079, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10012", + "event": "OL_Ind_V1_4", + "actual_date": "2026-04-08", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1213449Seltorexant 20mgT39247624-Jun-20281222242Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 08-Apr-2026 15:25:43 \nTransaction Date/Time (system local): 08-Apr-2026 13:25:43 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20079.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20079.pdf new file mode 100644 index 0000000..09dfd7a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20079.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.json new file mode 100644 index 0000000..eb54075 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 20071, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10012", + "event": "OL_Ind_V1_4", + "actual_date": "2026-04-08", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1232321Seltorexant 20mgT39247624-Jun-20281253893Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 08-Apr-2026 14:32:53 \nTransaction Date/Time (system local): 08-Apr-2026 12:32:53 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..72b6795 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20071.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20071.json new file mode 100644 index 0000000..eb54075 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20071.json @@ -0,0 +1,10 @@ +{ + "pk": 20071, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10012", + "event": "OL_Ind_V1_4", + "actual_date": "2026-04-08", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1232321Seltorexant 20mgT39247624-Jun-20281253893Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 08-Apr-2026 14:32:53 \nTransaction Date/Time (system local): 08-Apr-2026 12:32:53 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20071.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20071.pdf new file mode 100644 index 0000000..d3242d1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-08_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10012_pk20071.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json new file mode 100644 index 0000000..169f058 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20255, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-04-10", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1218579Seltorexant 20mgT39247624-Jun-20281289962Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Apr-2026 13:14:36 \nTransaction Date/Time (system local): 10-Apr-2026 11:14:36 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..7900c44 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk20255.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk20255.json new file mode 100644 index 0000000..169f058 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk20255.json @@ -0,0 +1,10 @@ +{ + "pk": 20255, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-04-10", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1218579Seltorexant 20mgT39247624-Jun-20281289962Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 10-Apr-2026 13:14:36 \nTransaction Date/Time (system local): 10-Apr-2026 11:14:36 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk20255.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk20255.pdf new file mode 100644 index 0000000..29050ba Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk20255.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json new file mode 100644 index 0000000..dba00b5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20250, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10004", + "event": "DB_P1_V6", + "actual_date": "2026-04-10", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1054863Seltorexant 20mg or placeboT38650424-Jun-20281167347Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 10-Apr-2026 10:17:44 \nTransaction Date/Time (system local): 10-Apr-2026 08:17:44 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..ece26cd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk20250.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk20250.json new file mode 100644 index 0000000..dba00b5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk20250.json @@ -0,0 +1,10 @@ +{ + "pk": 20250, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has been assigned medication for visit Double Blind Part 1 Visit 6 at site S10-CZ10004", + "event": "DB_P1_V6", + "actual_date": "2026-04-10", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1054863Seltorexant 20mg or placeboT38650424-Jun-20281167347Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 10-Apr-2026 10:17:44 \nTransaction Date/Time (system local): 10-Apr-2026 08:17:44 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk20250.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk20250.pdf new file mode 100644 index 0000000..3f58143 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_6_at_site_S10-CZ10004_pk20250.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004.json new file mode 100644 index 0000000..51c1757 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20246, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2026-04-10", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040009 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040009 \nIRT Subject Status: Screened \nCohort: Part 2\nInformed Consent Date at Screening: 10-Apr-2026 \n\nDate of Screening in IRT: 10-Apr-2026 \nTransaction Date/Time (site local): 10-Apr-2026 07:30:36\nTransaction Date/Time (system local): 10-Apr-2026 05:30:36\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..a3c94cd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004_pk20246.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004_pk20246.json new file mode 100644 index 0000000..51c1757 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004_pk20246.json @@ -0,0 +1,10 @@ +{ + "pk": 20246, + "title": "Screening", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 has been screened at site S10-CZ10004", + "event": "Screen", + "actual_date": "2026-04-10", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040009 has been screened.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040009 \nIRT Subject Status: Screened \nCohort: Part 2\nInformed Consent Date at Screening: 10-Apr-2026 \n\nDate of Screening in IRT: 10-Apr-2026 \nTransaction Date/Time (site local): 10-Apr-2026 07:30:36\nTransaction Date/Time (system local): 10-Apr-2026 05:30:36\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004_pk20246.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004_pk20246.pdf new file mode 100644 index 0000000..03a54ee Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-10_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_screened_at_site_S10-CZ10004_pk20246.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20366.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20366.json new file mode 100644 index 0000000..7aa1b9f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20366.json @@ -0,0 +1,10 @@ +{ + "pk": 20366, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-13", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040001 has\nbeen performed for the following medication IDs:\n\nMedication No: 1139849\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1130765\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1034161\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1013204\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 07-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 13-Apr-2026 13:18:35\n\nTransaction Date/Time (system local): 13-Apr-2026 11:18:35 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20366.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20366.pdf new file mode 100644 index 0000000..e5f2407 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20366.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk20367.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk20367.json new file mode 100644 index 0000000..ef361e6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk20367.json @@ -0,0 +1,10 @@ +{ + "pk": 20367, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-13", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040001 has been performed.\nMedication ID: 1008669\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1052502\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1182154\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1199540\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 0\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 13-Apr-2026 13:20:47 \nTransaction Date/Time (system local): 13-Apr-2026 11:20:47 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk20367.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk20367.pdf new file mode 100644 index 0000000..3ae9675 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk20367.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..49f8406 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20353, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-13", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1233859\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 08-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1236543\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 08-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Apr-2026 12:15:53\n\nTransaction Date/Time (system local): 13-Apr-2026 10:15:53 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..4ac3fa2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20353.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20353.json new file mode 100644 index 0000000..49f8406 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20353.json @@ -0,0 +1,10 @@ +{ + "pk": 20353, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-13", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1233859\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 08-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1236543\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 08-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Apr-2026 12:15:53\n\nTransaction Date/Time (system local): 13-Apr-2026 10:15:53 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20353.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20353.pdf new file mode 100644 index 0000000..5620984 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20353.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..61c5d44 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20354, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-13", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1231227\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1267648\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1269406\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1280113\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 5\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Apr-2026 12:16:38 \nTransaction Date/Time (system local): 13-Apr-2026 10:16:38 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..a9ec09b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk20354.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk20354.json new file mode 100644 index 0000000..61c5d44 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk20354.json @@ -0,0 +1,10 @@ +{ + "pk": 20354, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-13", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1231227\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1267648\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1269406\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1280113\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 5\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Apr-2026 12:16:38 \nTransaction Date/Time (system local): 13-Apr-2026 10:16:38 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk20354.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk20354.pdf new file mode 100644 index 0000000..57eea60 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk20354.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..13b099f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20359, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-13", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040005 has been performed.\nMedication ID: 1064155\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 0\n\nMedication ID: 1167615\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Apr-2026 12:26:26 \nTransaction Date/Time (system local): 13-Apr-2026 10:26:26 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..4756879 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20359.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20359.json new file mode 100644 index 0000000..13b099f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20359.json @@ -0,0 +1,10 @@ +{ + "pk": 20359, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-13", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040005 has been performed.\nMedication ID: 1064155\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 0\n\nMedication ID: 1167615\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Apr-2026 12:26:26 \nTransaction Date/Time (system local): 13-Apr-2026 10:26:26 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20359.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20359.pdf new file mode 100644 index 0000000..fc76cd4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20359.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..4394906 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20361, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-13", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040006 has been performed.\nMedication ID: 1002510\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1190596\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Apr-2026 12:36:11 \nTransaction Date/Time (system local): 13-Apr-2026 10:36:11 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..184608e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk20361.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk20361.json new file mode 100644 index 0000000..4394906 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk20361.json @@ -0,0 +1,10 @@ +{ + "pk": 20361, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-13", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040006 has been performed.\nMedication ID: 1002510\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1190596\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 13-Apr-2026 12:36:11 \nTransaction Date/Time (system local): 13-Apr-2026 10:36:11 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk20361.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk20361.pdf new file mode 100644 index 0000000..8c740c0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk20361.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..2b33919 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20364, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-13", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1054863\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1167347\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1176581\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 25-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1182748\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 25-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 13-Apr-2026 13:05:13\n\nTransaction Date/Time (system local): 13-Apr-2026 11:05:13 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..f396b6f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20364.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20364.json new file mode 100644 index 0000000..2b33919 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20364.json @@ -0,0 +1,10 @@ +{ + "pk": 20364, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-13", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1054863\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1167347\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 10-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1176581\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 25-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1182748\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 25-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 13-Apr-2026 13:05:13\n\nTransaction Date/Time (system local): 13-Apr-2026 11:05:13 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20364.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20364.pdf new file mode 100644 index 0000000..697d81d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20364.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21375.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21375.json new file mode 100644 index 0000000..a6164cb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21375.json @@ -0,0 +1,10 @@ +{ + "pk": 21375, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-13", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1175938\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 24-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1048491\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 24-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Apr-2026 09:54:57\n\nTransaction Date/Time (system local): 27-Apr-2026 07:54:57 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21375.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21375.pdf new file mode 100644 index 0000000..fbf9aa6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21375.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..8191555 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20365, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-13", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040008 has been performed.\nMedication ID: 1176581\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1182748\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 1\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 13-Apr-2026 13:06:26 \nTransaction Date/Time (system local): 13-Apr-2026 11:06:26 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..605aa67 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk20365.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk20365.json new file mode 100644 index 0000000..8191555 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk20365.json @@ -0,0 +1,10 @@ +{ + "pk": 20365, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-13", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040008 has been performed.\nMedication ID: 1176581\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1182748\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 1\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 13-Apr-2026 13:06:26 \nTransaction Date/Time (system local): 13-Apr-2026 11:06:26 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk20365.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk20365.pdf new file mode 100644 index 0000000..29240e6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk20365.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk21376.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk21376.json new file mode 100644 index 0000000..0eb7516 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk21376.json @@ -0,0 +1,10 @@ +{ + "pk": 21376, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-13", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040008 has been performed.\nMedication ID: 1054863\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 0\n\nMedication ID: 1167347\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 6\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 27-Apr-2026 09:56:57 \nTransaction Date/Time (system local): 27-Apr-2026 07:56:57 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk21376.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk21376.pdf new file mode 100644 index 0000000..3e58cb6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-13_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk21376.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20434.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20434.json new file mode 100644 index 0000000..9403809 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20434.json @@ -0,0 +1,10 @@ +{ + "pk": 20434, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-14", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1248593\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 14-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1262749\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 14-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 14-Apr-2026 12:53:12\n\nTransaction Date/Time (system local): 14-Apr-2026 10:53:12 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20434.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20434.pdf new file mode 100644 index 0000000..4972d44 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20434.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk20430.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk20430.json new file mode 100644 index 0000000..9c55ca5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk20430.json @@ -0,0 +1,10 @@ +{ + "pk": 20430, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10011", + "event": "OL_TS_V2_2", + "actual_date": "2026-04-14", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110007 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1248593Seltorexant 20mgT39247624-Jun-20281262749Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 14-Apr-2026 12:38:56 \nTransaction Date/Time (system local): 14-Apr-2026 10:38:56 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk20430.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk20430.pdf new file mode 100644 index 0000000..c7ab0be Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10011_pk20430.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk20433.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk20433.json new file mode 100644 index 0000000..5591c81 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk20433.json @@ -0,0 +1,10 @@ +{ + "pk": 20433, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-14", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110007 has been performed.\nMedication ID: 1205166\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nMedication ID: 1229581\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1250166\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1261027\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 14-Apr-2026 12:52:32 \nTransaction Date/Time (system local): 14-Apr-2026 10:52:32 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk20433.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk20433.pdf new file mode 100644 index 0000000..93a8c60 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-14_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk20433.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..a8bf881 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 20536, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-04-15", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1205827\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1287885\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 15-Apr-2026 10:54:59\n\nTransaction Date/Time (system local): 15-Apr-2026 08:54:59 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..45a1b87 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk20536.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk20536.json new file mode 100644 index 0000000..a8bf881 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk20536.json @@ -0,0 +1,10 @@ +{ + "pk": 20536, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-04-15", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1205827\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1287885\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 15-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 15-Apr-2026 10:54:59\n\nTransaction Date/Time (system local): 15-Apr-2026 08:54:59 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk20536.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk20536.pdf new file mode 100644 index 0000000..7b3e52d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk20536.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.json new file mode 100644 index 0000000..a1cff43 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 20531, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10008", + "event": "OL_Ind_V1_6", + "actual_date": "2026-04-15", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1205827\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1287885\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080007 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 15-Apr-2026 10:49:27 \n\r\n Transaction Date/Time (system local): 15-Apr-2026 08:49:27 \n\r\n Transaction performed by: m.deif@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..2c59d61 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk20531.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk20531.json new file mode 100644 index 0000000..a1cff43 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk20531.json @@ -0,0 +1,10 @@ +{ + "pk": 20531, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10008", + "event": "OL_Ind_V1_6", + "actual_date": "2026-04-15", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1205827\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1287885\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080007 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 15-Apr-2026 10:49:27 \n\r\n Transaction Date/Time (system local): 15-Apr-2026 08:49:27 \n\r\n Transaction performed by: m.deif@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk20531.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk20531.pdf new file mode 100644 index 0000000..0442725 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10008_pk20531.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..5dcb57d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 20538, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-04-15", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1230179\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1261024\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 15-Apr-2026 10:58:54 \nTransaction Date/Time (system local): 15-Apr-2026 08:58:54 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..a82c9dd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk20538.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk20538.json new file mode 100644 index 0000000..5dcb57d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk20538.json @@ -0,0 +1,10 @@ +{ + "pk": 20538, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-04-15", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1230179\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1261024\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 15-Apr-2026 10:58:54 \nTransaction Date/Time (system local): 15-Apr-2026 08:58:54 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk20538.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk20538.pdf new file mode 100644 index 0000000..d7f7cf2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-15_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk20538.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json new file mode 100644 index 0000000..336d968 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20781, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-04-17", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1242855Seltorexant 20mgT39247624-Jun-20281244106Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 17-Apr-2026 11:18:12 \nTransaction Date/Time (system local): 17-Apr-2026 09:18:12 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..1e6d844 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk20781.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk20781.json new file mode 100644 index 0000000..336d968 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk20781.json @@ -0,0 +1,10 @@ +{ + "pk": 20781, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-04-17", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1242855Seltorexant 20mgT39247624-Jun-20281244106Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 17-Apr-2026 11:18:12 \nTransaction Date/Time (system local): 17-Apr-2026 09:18:12 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk20781.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk20781.pdf new file mode 100644 index 0000000..e14e3ff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-17_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk20781.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..99fee59 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20858, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-20", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1244106\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 17-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1242855\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 17-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Apr-2026 09:38:38\n\nTransaction Date/Time (system local): 20-Apr-2026 07:38:38 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..0539e2a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20858.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20858.json new file mode 100644 index 0000000..99fee59 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20858.json @@ -0,0 +1,10 @@ +{ + "pk": 20858, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-20", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1244106\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 17-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1242855\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 17-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Apr-2026 09:38:38\n\nTransaction Date/Time (system local): 20-Apr-2026 07:38:38 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20858.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20858.pdf new file mode 100644 index 0000000..d39a18c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk20858.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..3314cb6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 20859, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-20", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040005 has been performed.\nMedication ID: 1258550\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1293525\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 10\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Apr-2026 09:39:59 \nTransaction Date/Time (system local): 20-Apr-2026 07:39:59 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..30ddf04 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20859.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20859.json new file mode 100644 index 0000000..3314cb6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20859.json @@ -0,0 +1,10 @@ +{ + "pk": 20859, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-20", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040005 has been performed.\nMedication ID: 1258550\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1293525\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 10\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Apr-2026 09:39:59 \nTransaction Date/Time (system local): 20-Apr-2026 07:39:59 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20859.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20859.pdf new file mode 100644 index 0000000..31d38a1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk20859.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..9c54f50 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 20870, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-20", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1230116\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 20-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1247225\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 20-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Apr-2026 10:50:15\n\nTransaction Date/Time (system local): 20-Apr-2026 08:50:15 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..5914f41 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20870.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20870.json new file mode 100644 index 0000000..9c54f50 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20870.json @@ -0,0 +1,10 @@ +{ + "pk": 20870, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-20", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1230116\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 20-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1247225\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 20-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Apr-2026 10:50:15\n\nTransaction Date/Time (system local): 20-Apr-2026 08:50:15 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20870.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20870.pdf new file mode 100644 index 0000000..97d479c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20870.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.json new file mode 100644 index 0000000..601ad86 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 20864, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10011", + "event": "OL_Ind_V1_6", + "actual_date": "2026-04-20", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1230116\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1247225\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110008 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 20-Apr-2026 10:23:40 \n\r\n Transaction Date/Time (system local): 20-Apr-2026 08:23:40 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..2d08bb9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk20864.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk20864.json new file mode 100644 index 0000000..601ad86 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk20864.json @@ -0,0 +1,10 @@ +{ + "pk": 20864, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10011", + "event": "OL_Ind_V1_6", + "actual_date": "2026-04-20", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1230116\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1247225\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110008 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 20-Apr-2026 10:23:40 \n\r\n Transaction Date/Time (system local): 20-Apr-2026 08:23:40 \n\r\n Transaction performed by: truhlarova@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk20864.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk20864.pdf new file mode 100644 index 0000000..d206787 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10011_pk20864.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..91bd13d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 20869, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-20", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1261748\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1291325\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Apr-2026 10:49:38 \nTransaction Date/Time (system local): 20-Apr-2026 08:49:38 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..dd150be Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk20869.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk20869.json new file mode 100644 index 0000000..91bd13d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk20869.json @@ -0,0 +1,10 @@ +{ + "pk": 20869, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-20", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1261748\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1291325\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-Apr-2026 10:49:38 \nTransaction Date/Time (system local): 20-Apr-2026 08:49:38 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk20869.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk20869.pdf new file mode 100644 index 0000000..2b4718d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-20_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk20869.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..56a5886 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 20976, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-21", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110010 has\nbeen performed for the following medication IDs:\n\nMedication No: 1231257\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 21-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1252831\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 21-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 21-Apr-2026 12:58:19\n\nTransaction Date/Time (system local): 21-Apr-2026 10:58:19 \nTransaction performed by: vysztavel@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..66b6496 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20976.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20976.json new file mode 100644 index 0000000..56a5886 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20976.json @@ -0,0 +1,10 @@ +{ + "pk": 20976, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-21", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110010 has\nbeen performed for the following medication IDs:\n\nMedication No: 1231257\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 21-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1252831\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 21-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 21-Apr-2026 12:58:19\n\nTransaction Date/Time (system local): 21-Apr-2026 10:58:19 \nTransaction performed by: vysztavel@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20976.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20976.pdf new file mode 100644 index 0000000..a449b6b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk20976.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json new file mode 100644 index 0000000..6ee76c8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 20974, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10011", + "event": "OL_Ind_V1_1", + "actual_date": "2026-04-21", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1231257Seltorexant 20mgT39247624-Jun-20281252831Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 21-Apr-2026 11:47:34 \nTransaction Date/Time (system local): 21-Apr-2026 09:47:34 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..d954f07 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk20974.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk20974.json new file mode 100644 index 0000000..6ee76c8 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk20974.json @@ -0,0 +1,10 @@ +{ + "pk": 20974, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10011", + "event": "OL_Ind_V1_1", + "actual_date": "2026-04-21", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1231257Seltorexant 20mgT39247624-Jun-20281252831Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 21-Apr-2026 11:47:34 \nTransaction Date/Time (system local): 21-Apr-2026 09:47:34 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk20974.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk20974.pdf new file mode 100644 index 0000000..a5e4363 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10011_pk20974.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..1df366f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 20975, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-21", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110010 has been performed.\nMedication ID: 1027822\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1030395\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 21-Apr-2026 12:57:56 \nTransaction Date/Time (system local): 21-Apr-2026 10:57:56 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..cbd41dd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20975.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20975.json new file mode 100644 index 0000000..1df366f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20975.json @@ -0,0 +1,10 @@ +{ + "pk": 20975, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-21", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110010 has been performed.\nMedication ID: 1027822\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1030395\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 21-Apr-2026 12:57:56 \nTransaction Date/Time (system local): 21-Apr-2026 10:57:56 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20975.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20975.pdf new file mode 100644 index 0000000..83d1c29 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-21_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk20975.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.json new file mode 100644 index 0000000..26e0900 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21065, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Double Blind Maintenance Visit 3.2 at site S10-CZ10004", + "event": "DB_Main_V3_2", + "actual_date": "2026-04-22", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1067879Seltorexant 20mg or placeboT38650424-Jun-20281111522Seltorexant 20mg or placeboT38650424-Jun-20281120873Seltorexant 20mg or placeboT38650424-Jun-20281179895Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 22-Apr-2026 12:11:18 \nTransaction Date/Time (system local): 22-Apr-2026 10:11:18 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..1154f88 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk21065.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk21065.json new file mode 100644 index 0000000..26e0900 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk21065.json @@ -0,0 +1,10 @@ +{ + "pk": 21065, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Double Blind Maintenance Visit 3.2 at site S10-CZ10004", + "event": "DB_Main_V3_2", + "actual_date": "2026-04-22", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1067879Seltorexant 20mg or placeboT38650424-Jun-20281111522Seltorexant 20mg or placeboT38650424-Jun-20281120873Seltorexant 20mg or placeboT38650424-Jun-20281179895Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 22-Apr-2026 12:11:18 \nTransaction Date/Time (system local): 22-Apr-2026 10:11:18 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk21065.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk21065.pdf new file mode 100644 index 0000000..687f0c3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10004_pk21065.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21111.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21111.json new file mode 100644 index 0000000..55035db --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21111.json @@ -0,0 +1,10 @@ +{ + "pk": 21111, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-04-22", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1237013\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 25-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1241196\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 25-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Apr-2026 16:17:38\n\nTransaction Date/Time (system local): 22-Apr-2026 14:17:38 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21111.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21111.pdf new file mode 100644 index 0000000..79ed2c2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21111.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.json new file mode 100644 index 0000000..0db25c1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 21081, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10012", + "event": "OL_Ind_V1_5", + "actual_date": "2026-04-22", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100120006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1223242\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1232243\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1270209\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1285455\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10012 \n\r\n Investigator: Urban, Ales \n\n \n\r\n Subject Details \nSubject: CZ100120006 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 22-Apr-2026 14:56:19 \n\r\n Transaction Date/Time (system local): 22-Apr-2026 12:56:19 \n\r\n Transaction performed by: marcelasedlackova@seznam.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..4eccddf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21081.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21081.json new file mode 100644 index 0000000..0db25c1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21081.json @@ -0,0 +1,10 @@ +{ + "pk": 21081, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10012", + "event": "OL_Ind_V1_5", + "actual_date": "2026-04-22", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100120006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1223242\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1232243\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1270209\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1285455\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10012 \n\r\n Investigator: Urban, Ales \n\n \n\r\n Subject Details \nSubject: CZ100120006 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 22-Apr-2026 14:56:19 \n\r\n Transaction Date/Time (system local): 22-Apr-2026 12:56:19 \n\r\n Transaction performed by: marcelasedlackova@seznam.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21081.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21081.pdf new file mode 100644 index 0000000..530b614 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21081.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json new file mode 100644 index 0000000..64b0746 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 21108, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-04-22", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120006 has been performed.\nMedication ID: 1238923\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1242553\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Apr-2026 16:14:41 \nTransaction Date/Time (system local): 22-Apr-2026 14:14:41 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..525ab0f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21108.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21108.json new file mode 100644 index 0000000..64b0746 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21108.json @@ -0,0 +1,10 @@ +{ + "pk": 21108, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-04-22", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120006 has been performed.\nMedication ID: 1238923\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1242553\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-Apr-2026 16:14:41 \nTransaction Date/Time (system local): 22-Apr-2026 14:14:41 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21108.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21108.pdf new file mode 100644 index 0000000..a837f93 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk21108.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.json new file mode 100644 index 0000000..bc945be --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21223, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10004", + "event": "OL_TS_V2_3", + "actual_date": "2026-04-23", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1260744Seltorexant 20mgT39247624-Jun-20281296382Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 23-Apr-2026 16:34:21 \nTransaction Date/Time (system local): 23-Apr-2026 14:34:21 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..269bbd5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk21223.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk21223.json new file mode 100644 index 0000000..bc945be --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk21223.json @@ -0,0 +1,10 @@ +{ + "pk": 21223, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10004", + "event": "OL_TS_V2_3", + "actual_date": "2026-04-23", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1260744Seltorexant 20mgT39247624-Jun-20281296382Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 23-Apr-2026 16:34:21 \nTransaction Date/Time (system local): 23-Apr-2026 14:34:21 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk21223.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk21223.pdf new file mode 100644 index 0000000..a3a5b21 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100040004_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10004_pk21223.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21231.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21231.json new file mode 100644 index 0000000..676e49a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21231.json @@ -0,0 +1,10 @@ +{ + "pk": 21231, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10012", + "event": "OL_Ind_V1_5", + "actual_date": "2026-04-23", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100120005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1211059\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1251709\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10012 \n\r\n Investigator: Urban, Ales \n\n \n\r\n Subject Details \nSubject: CZ100120005 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 23-Apr-2026 18:07:53 \n\r\n Transaction Date/Time (system local): 23-Apr-2026 16:07:53 \n\r\n Transaction performed by: marcelasedlackova@seznam.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21231.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21231.pdf new file mode 100644 index 0000000..2517898 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-23_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10012_pk21231.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json new file mode 100644 index 0000000..90b0d82 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21277, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-04-24", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1258582Seltorexant 20mgT39247624-Jun-20281295784Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Apr-2026 12:15:27 \nTransaction Date/Time (system local): 24-Apr-2026 10:15:27 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..3697790 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk21277.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk21277.json new file mode 100644 index 0000000..90b0d82 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk21277.json @@ -0,0 +1,10 @@ +{ + "pk": 21277, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-04-24", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1258582Seltorexant 20mgT39247624-Jun-20281295784Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 24-Apr-2026 12:15:27 \nTransaction Date/Time (system local): 24-Apr-2026 10:15:27 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk21277.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk21277.pdf new file mode 100644 index 0000000..4c154a2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk21277.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json new file mode 100644 index 0000000..6b48335 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21264, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 Rolled Over from Part 1 into Part 2 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-04-24", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Apr-2026 09:29:32\nTransaction Date/Time (system local): 24-Apr-2026 07:29:32\n\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..cfb390d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk21264.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk21264.json new file mode 100644 index 0000000..6b48335 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk21264.json @@ -0,0 +1,10 @@ +{ + "pk": 21264, + "title": "Rollover_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 Rolled Over from Part 1 into Part 2 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-04-24", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been rolled over into part 2.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Apr-2026 09:29:32\nTransaction Date/Time (system local): 24-Apr-2026 07:29:32\n\nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk21264.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk21264.pdf new file mode 100644 index 0000000..ef04731 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_Rolled_Over_from_Part_1_into_Part_2_at_site_S10-CZ10004_pk21264.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json new file mode 100644 index 0000000..15a2bfd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21265, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-04-24", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1048491Seltorexant 20mg or placeboT38650424-Jun-20281175938Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Apr-2026 09:29:32 \nTransaction Date/Time (system local): 24-Apr-2026 07:29:32 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..40ff313 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk21265.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk21265.json new file mode 100644 index 0000000..15a2bfd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk21265.json @@ -0,0 +1,10 @@ +{ + "pk": 21265, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has been assigned medication for visit Double Blind Part 1 Visit 7 at site S10-CZ10004", + "event": "DB_P1_V7", + "actual_date": "2026-04-24", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been assigned the following medication(s) for visit Double Blind Part 1 Visit 7:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1048491Seltorexant 20mg or placeboT38650424-Jun-20281175938Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Randomized Part 1 \n\nTransaction Date/Time (site local): 24-Apr-2026 09:29:32 \nTransaction Date/Time (system local): 24-Apr-2026 07:29:32 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk21265.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk21265.pdf new file mode 100644 index 0000000..37169fa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-24_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Double_Blind_Part_1_Visit_7_at_site_S10-CZ10004_pk21265.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21348.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21348.json new file mode 100644 index 0000000..a72d72f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21348.json @@ -0,0 +1,10 @@ +{ + "pk": 21348, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-04-26", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1211059\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 23-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1251709\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 23-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 26-Apr-2026 11:40:50\n\nTransaction Date/Time (system local): 26-Apr-2026 09:40:50 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21348.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21348.pdf new file mode 100644 index 0000000..eca6274 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk21348.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21350.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21350.json new file mode 100644 index 0000000..b86007e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21350.json @@ -0,0 +1,10 @@ +{ + "pk": 21350, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-04-26", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120005 has been performed.\nMedication ID: 1237013\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1241196\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 26-Apr-2026 11:42:58 \nTransaction Date/Time (system local): 26-Apr-2026 09:42:58 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21350.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21350.pdf new file mode 100644 index 0000000..31bbac1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-26_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk21350.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..92bdae4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21367, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-27", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1179895\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1120873\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1111522\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1067879\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-Apr-2026 08:40:55\n\nTransaction Date/Time (system local): 27-Apr-2026 06:40:55 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..a8ecb45 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21367.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21367.json new file mode 100644 index 0000000..92bdae4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21367.json @@ -0,0 +1,10 @@ +{ + "pk": 21367, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-27", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1179895\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1120873\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1111522\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1067879\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 22-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-Apr-2026 08:40:55\n\nTransaction Date/Time (system local): 27-Apr-2026 06:40:55 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21367.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21367.pdf new file mode 100644 index 0000000..42974f3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21367.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..8ae17a6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21368, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-27", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1113685\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 5\n\nMedication ID: 1097739\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1023754\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1035556\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-Apr-2026 08:42:25 \nTransaction Date/Time (system local): 27-Apr-2026 06:42:25 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..e29760b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk21368.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk21368.json new file mode 100644 index 0000000..8ae17a6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk21368.json @@ -0,0 +1,10 @@ +{ + "pk": 21368, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-27", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1113685\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 5\n\nMedication ID: 1097739\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1023754\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1035556\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-Apr-2026 08:42:25 \nTransaction Date/Time (system local): 27-Apr-2026 06:42:25 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk21368.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk21368.pdf new file mode 100644 index 0000000..e566486 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk21368.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..5f937b6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21363, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-27", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1296382\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 23-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1260744\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 23-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Apr-2026 08:36:36\n\nTransaction Date/Time (system local): 27-Apr-2026 06:36:36 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..6c4942c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21363.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21363.json new file mode 100644 index 0000000..5f937b6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21363.json @@ -0,0 +1,10 @@ +{ + "pk": 21363, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-27", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1296382\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 23-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1260744\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 23-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Apr-2026 08:36:36\n\nTransaction Date/Time (system local): 27-Apr-2026 06:36:36 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21363.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21363.pdf new file mode 100644 index 0000000..fce1bc7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21363.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..e51aea9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21364, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-27", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1233859\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nMedication ID: 1236543\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Apr-2026 08:38:32 \nTransaction Date/Time (system local): 27-Apr-2026 06:38:32 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..3c131d0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk21364.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk21364.json new file mode 100644 index 0000000..e51aea9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk21364.json @@ -0,0 +1,10 @@ +{ + "pk": 21364, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-27", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1233859\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nMedication ID: 1236543\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Apr-2026 08:38:32 \nTransaction Date/Time (system local): 27-Apr-2026 06:38:32 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk21364.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk21364.pdf new file mode 100644 index 0000000..b9c4b56 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk21364.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..e2d4450 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21365, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-27", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1258582\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1295784\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Apr-2026 08:39:21\n\nTransaction Date/Time (system local): 27-Apr-2026 06:39:21 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..041c590 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21365.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21365.json new file mode 100644 index 0000000..e2d4450 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21365.json @@ -0,0 +1,10 @@ +{ + "pk": 21365, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-04-27", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1258582\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1295784\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 24-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Apr-2026 08:39:21\n\nTransaction Date/Time (system local): 27-Apr-2026 06:39:21 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21365.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21365.pdf new file mode 100644 index 0000000..4d7bc7d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk21365.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..7e55a12 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21366, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-27", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040006 has been performed.\nMedication ID: 1218579\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1289962\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Apr-2026 08:40:07 \nTransaction Date/Time (system local): 27-Apr-2026 06:40:07 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..c1066fb Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk21366.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk21366.json new file mode 100644 index 0000000..7e55a12 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk21366.json @@ -0,0 +1,10 @@ +{ + "pk": 21366, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-04-27", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040006 has been performed.\nMedication ID: 1218579\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1289962\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Apr-2026 08:40:07 \nTransaction Date/Time (system local): 27-Apr-2026 06:40:07 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk21366.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk21366.pdf new file mode 100644 index 0000000..2515d06 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk21366.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21401.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21401.json new file mode 100644 index 0000000..09007a3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21401.json @@ -0,0 +1,10 @@ +{ + "pk": 21401, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-27", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1226354\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1283009\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Apr-2026 13:01:31\n\nTransaction Date/Time (system local): 27-Apr-2026 11:01:31 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21401.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21401.pdf new file mode 100644 index 0000000..acb14e9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21401.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk21399.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk21399.json new file mode 100644 index 0000000..185aa02 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk21399.json @@ -0,0 +1,10 @@ +{ + "pk": 21399, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.3 at site S10-CZ10011", + "event": "OL_TS_V2_3", + "actual_date": "2026-04-27", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110007 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1226354Seltorexant 20mgT39247624-Jun-20281283009Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Apr-2026 12:16:24 \nTransaction Date/Time (system local): 27-Apr-2026 10:16:24 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk21399.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk21399.pdf new file mode 100644 index 0000000..8a813a8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.3_at_site_S10-CZ10011_pk21399.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk21400.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk21400.json new file mode 100644 index 0000000..f408db0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk21400.json @@ -0,0 +1,10 @@ +{ + "pk": 21400, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-27", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110007 has been performed.\nMedication ID: 1248593\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1262749\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-Apr-2026 13:00:30 \nTransaction Date/Time (system local): 27-Apr-2026 11:00:30 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk21400.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk21400.pdf new file mode 100644 index 0000000..074eaaa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk21400.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json new file mode 100644 index 0000000..917a5aa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 21406, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-04-27", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1058566\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nTransaction Date/Time (site local): 27-Apr-2026 15:11:49 \nTransaction Date/Time (system local): 27-Apr-2026 13:11:49 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..1e61f53 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk21406.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk21406.json new file mode 100644 index 0000000..917a5aa --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk21406.json @@ -0,0 +1,10 @@ +{ + "pk": 21406, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120004 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-04-27", + "subject": "CZ100120004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120004 has been performed.\nMedication ID: 1058566\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120004 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nTransaction Date/Time (site local): 27-Apr-2026 15:11:49 \nTransaction Date/Time (system local): 27-Apr-2026 13:11:49 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk21406.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk21406.pdf new file mode 100644 index 0000000..f9e2ac8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-27_Janssen_42847922MDD3003_Subject_CZ100120004_has_returned_a_medication_at_site_S10-CZ10012_pk21406.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004_pk21483.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004_pk21483.json new file mode 100644 index 0000000..b374303 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004_pk21483.json @@ -0,0 +1,10 @@ +{ + "pk": 21483, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Double Blind Maintenance Visit 3.5 at site S10-CZ10004", + "event": "DB_Main_V3_5", + "actual_date": "2026-04-28", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.5:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1148017Seltorexant 20mg or placeboT38650424-Jun-20281155960Seltorexant 20mg or placeboT38650424-Jun-20281172483Seltorexant 20mg or placeboT38650424-Jun-20281197179Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 28-Apr-2026 11:16:36 \nTransaction Date/Time (system local): 28-Apr-2026 09:16:36 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004_pk21483.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004_pk21483.pdf new file mode 100644 index 0000000..5b2a3ea Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10004_pk21483.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..9586b0b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 21495, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-28", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1010965\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1033601\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1108713\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1162164\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 28-Apr-2026 12:56:33\n\nTransaction Date/Time (system local): 28-Apr-2026 10:56:33 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..d4190ab Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21495.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21495.json new file mode 100644 index 0000000..9586b0b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21495.json @@ -0,0 +1,10 @@ +{ + "pk": 21495, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-28", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1010965\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1033601\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1108713\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1162164\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 28-Apr-2026 12:56:33\n\nTransaction Date/Time (system local): 28-Apr-2026 10:56:33 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21495.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21495.pdf new file mode 100644 index 0000000..eaa7d9a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21495.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.json new file mode 100644 index 0000000..89a88d1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 21463, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Double Blind Maintenance Visit 3.2 at site S10-CZ10011", + "event": "DB_Main_V3_2", + "actual_date": "2026-04-28", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1010965Seltorexant 20mg or placeboT38650424-Jun-20281033601Seltorexant 20mg or placeboT38650424-Jun-20281108713Seltorexant 20mg or placeboT38650424-Jun-20281162164Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 28-Apr-2026 09:12:20 \nTransaction Date/Time (system local): 28-Apr-2026 07:12:20 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..104f1e9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21463.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21463.json new file mode 100644 index 0000000..89a88d1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21463.json @@ -0,0 +1,10 @@ +{ + "pk": 21463, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Double Blind Maintenance Visit 3.2 at site S10-CZ10011", + "event": "DB_Main_V3_2", + "actual_date": "2026-04-28", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1010965Seltorexant 20mg or placeboT38650424-Jun-20281033601Seltorexant 20mg or placeboT38650424-Jun-20281108713Seltorexant 20mg or placeboT38650424-Jun-20281162164Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 28-Apr-2026 09:12:20 \nTransaction Date/Time (system local): 28-Apr-2026 07:12:20 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21463.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21463.pdf new file mode 100644 index 0000000..ce28a9d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21463.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..487e31f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 21494, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-28", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1083166\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1095649\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1133206\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1152372\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 28-Apr-2026 12:55:53 \nTransaction Date/Time (system local): 28-Apr-2026 10:55:53 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..5d4a06a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk21494.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk21494.json new file mode 100644 index 0000000..487e31f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk21494.json @@ -0,0 +1,10 @@ +{ + "pk": 21494, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-28", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1083166\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1095649\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1133206\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1152372\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 28-Apr-2026 12:55:53 \nTransaction Date/Time (system local): 28-Apr-2026 10:55:53 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk21494.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk21494.pdf new file mode 100644 index 0000000..ab8bc9d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk21494.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21484.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21484.json new file mode 100644 index 0000000..15fc220 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21484.json @@ -0,0 +1,10 @@ +{ + "pk": 21484, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-04-28", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1105798\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 31-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1151419\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 31-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1181446\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 31-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1187419\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 31-Mar-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110006 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 28-Apr-2026 11:19:49\n\nTransaction Date/Time (system local): 28-Apr-2026 09:19:49 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21484.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21484.pdf new file mode 100644 index 0000000..c0aead6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21484.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21486.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21486.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21486.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21486.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21486.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21486.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21486.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21486.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21488.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21488.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21488.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21488.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21488.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21488.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21488.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21488.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21471.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21471.json new file mode 100644 index 0000000..9a7d7f5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21471.json @@ -0,0 +1,10 @@ +{ + "pk": 21471, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has been assigned medication for visit Double Blind Maintenance Visit 3.2 at site S10-CZ10011", + "event": "DB_Main_V3_2", + "actual_date": "2026-04-28", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1041432Seltorexant 20mg or placeboT38650424-Jun-20281126309Seltorexant 20mg or placeboT38650424-Jun-20281159985Seltorexant 20mg or placeboT38650424-Jun-20281163542Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 28-Apr-2026 10:08:43 \nTransaction Date/Time (system local): 28-Apr-2026 08:08:43 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21471.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21471.pdf new file mode 100644 index 0000000..feabfa3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.2_at_site_S10-CZ10011_pk21471.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21485.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21485.json new file mode 100644 index 0000000..182d45f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21485.json @@ -0,0 +1,10 @@ +{ + "pk": 21485, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-04-28", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110006 has been performed.\nMedication ID: 1105798\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1151419\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1181446\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1187419\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 28-Apr-2026 11:20:56 \nTransaction Date/Time (system local): 28-Apr-2026 09:20:56 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21485.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21485.pdf new file mode 100644 index 0000000..54a8d08 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21485.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21487.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21487.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21487.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21487.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21487.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21487.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21487.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-28_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk21487.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008.json new file mode 100644 index 0000000..f0fb2c5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 21617, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Induction Visit 1.7 at site S10-CZ10008", + "event": "OL_Ind_V1_7", + "actual_date": "2026-04-29", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.7:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1201310\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1216076\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1262557\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1283604\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080007 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 29-Apr-2026 11:56:02 \n\r\n Transaction Date/Time (system local): 29-Apr-2026 09:56:02 \n\r\n Transaction performed by: v.smidkova@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..ec2e605 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008_pk21617.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008_pk21617.json new file mode 100644 index 0000000..f0fb2c5 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008_pk21617.json @@ -0,0 +1,10 @@ +{ + "pk": 21617, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Induction Visit 1.7 at site S10-CZ10008", + "event": "OL_Ind_V1_7", + "actual_date": "2026-04-29", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Induction Visit 1.7:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1201310\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1216076\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1262557\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1283604\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10008 \n\r\n Investigator: Solle, Zdenek \n\n \n\r\n Subject Details \nSubject: CZ100080007 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 29-Apr-2026 11:56:02 \n\r\n Transaction Date/Time (system local): 29-Apr-2026 09:56:02 \n\r\n Transaction performed by: v.smidkova@clintrial.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008_pk21617.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008_pk21617.pdf new file mode 100644 index 0000000..d075299 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.7_at_site_S10-CZ10008_pk21617.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..b2823ac --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 21619, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-04-29", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1205827\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1287885\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 29-Apr-2026 12:25:22 \nTransaction Date/Time (system local): 29-Apr-2026 10:25:22 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..b8e7006 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk21619.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk21619.json new file mode 100644 index 0000000..b2823ac --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk21619.json @@ -0,0 +1,10 @@ +{ + "pk": 21619, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-04-29", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1205827\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1287885\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 29-Apr-2026 12:25:22 \nTransaction Date/Time (system local): 29-Apr-2026 10:25:22 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk21619.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk21619.pdf new file mode 100644 index 0000000..bee0cd6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-04-29_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk21619.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011.json new file mode 100644 index 0000000..50c41f1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 21872, + "title": "Discontinue", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been discontinued from IRT managed treatment at site S10-CZ10011", + "event": "uv_discontinue", + "actual_date": "2026-05-04", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Subject CZ100110008 has been Discontinued from IRT Managed Treatment.\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nDiscontinuation date: 04-May-2026 \nTransaction Date/Time (site local): 04-May-2026 11:04:46\nTransaction Date/Time (system local): 04-May-2026 09:04:46\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..3e6b554 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011_pk21872.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011_pk21872.json new file mode 100644 index 0000000..50c41f1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011_pk21872.json @@ -0,0 +1,10 @@ +{ + "pk": 21872, + "title": "Discontinue", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has been discontinued from IRT managed treatment at site S10-CZ10011", + "event": "uv_discontinue", + "actual_date": "2026-05-04", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Subject CZ100110008 has been Discontinued from IRT Managed Treatment.\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nDiscontinuation date: 04-May-2026 \nTransaction Date/Time (site local): 04-May-2026 11:04:46\nTransaction Date/Time (system local): 04-May-2026 09:04:46\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011_pk21872.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011_pk21872.pdf new file mode 100644 index 0000000..a5e1a5e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10011_pk21872.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..0d015f1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 21867, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-05-04", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1230116\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1247225\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 04-May-2026 10:31:07 \nTransaction Date/Time (system local): 04-May-2026 08:31:07 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..b61859d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk21867.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk21867.json new file mode 100644 index 0000000..0d015f1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk21867.json @@ -0,0 +1,10 @@ +{ + "pk": 21867, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110008 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-05-04", + "subject": "CZ100110008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110008 has been performed.\nMedication ID: 1230116\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1247225\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 04-May-2026 10:31:07 \nTransaction Date/Time (system local): 04-May-2026 08:31:07 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk21867.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk21867.pdf new file mode 100644 index 0000000..2d0bff2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-04_Janssen_42847922MDD3003_Subject_CZ100110008_has_returned_a_medication_at_site_S10-CZ10011_pk21867.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004.json new file mode 100644 index 0000000..c0d58b7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21933, + "title": "Randomized_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 randomized into Part 2 at site S10-CZ10004", + "event": "DB_Main_V3_1", + "actual_date": "2026-05-05", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been randomized into Part 2.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1021973Seltorexant 20mg or placeboT38650424-Jun-20281024008Seltorexant 20mg or placeboT38650424-Jun-20281079546Seltorexant 20mg or placeboT38650424-Jun-20281086459Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 05-May-2026 08:42:34\nTransaction Date/Time (system local): 05-May-2026 06:42:34\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..374f8ff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004_pk21933.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004_pk21933.json new file mode 100644 index 0000000..c0d58b7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004_pk21933.json @@ -0,0 +1,10 @@ +{ + "pk": 21933, + "title": "Randomized_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 randomized into Part 2 at site S10-CZ10004", + "event": "DB_Main_V3_1", + "actual_date": "2026-05-05", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040004 has been randomized into Part 2.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1021973Seltorexant 20mg or placeboT38650424-Jun-20281024008Seltorexant 20mg or placeboT38650424-Jun-20281079546Seltorexant 20mg or placeboT38650424-Jun-20281086459Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 05-May-2026 08:42:34\nTransaction Date/Time (system local): 05-May-2026 06:42:34\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004_pk21933.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004_pk21933.pdf new file mode 100644 index 0000000..9c6ddff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040004_randomized_into_Part_2_at_site_S10-CZ10004_pk21933.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json new file mode 100644 index 0000000..cb158e9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21961, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10004", + "event": "OL_Ind_V1_5", + "actual_date": "2026-05-05", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1246535\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1264428\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040005 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 05-May-2026 13:27:44 \n\r\n Transaction Date/Time (system local): 05-May-2026 11:27:44 \n\r\n Transaction performed by: erik.herman@seznam.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..3b4505f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21961.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21961.json new file mode 100644 index 0000000..cb158e9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21961.json @@ -0,0 +1,10 @@ +{ + "pk": 21961, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10004", + "event": "OL_Ind_V1_5", + "actual_date": "2026-05-05", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1246535\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1264428\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040005 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 05-May-2026 13:27:44 \n\r\n Transaction Date/Time (system local): 05-May-2026 11:27:44 \n\r\n Transaction performed by: erik.herman@seznam.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21961.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21961.pdf new file mode 100644 index 0000000..7bed757 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21961.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json new file mode 100644 index 0000000..e7a5b60 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21966, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10004", + "event": "OL_Ind_V1_5", + "actual_date": "2026-05-05", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1266581\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1275128\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040006 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 05-May-2026 14:00:42 \n\r\n Transaction Date/Time (system local): 05-May-2026 12:00:42 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..dea7c4c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21966.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21966.json new file mode 100644 index 0000000..e7a5b60 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21966.json @@ -0,0 +1,10 @@ +{ + "pk": 21966, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10004", + "event": "OL_Ind_V1_5", + "actual_date": "2026-05-05", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1266581\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1275128\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040006 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? No\n\n\r\n Transaction Date/Time (site local): 05-May-2026 14:00:42 \n\r\n Transaction Date/Time (system local): 05-May-2026 12:00:42 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21966.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21966.pdf new file mode 100644 index 0000000..8b0abf9 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10004_pk21966.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json new file mode 100644 index 0000000..a89c914 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21945, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-05-05", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1243253Seltorexant 20mgT39247624-Jun-20281274288Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 10:41:28 \nTransaction Date/Time (system local): 05-May-2026 08:41:28 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..e857af0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21945.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21945.json new file mode 100644 index 0000000..a89c914 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21945.json @@ -0,0 +1,10 @@ +{ + "pk": 21945, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-05-05", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1243253Seltorexant 20mgT39247624-Jun-20281274288Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 10:41:28 \nTransaction Date/Time (system local): 05-May-2026 08:41:28 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21945.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21945.pdf new file mode 100644 index 0000000..1256fba Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21945.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004.json new file mode 100644 index 0000000..02793eb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21948, + "title": "Direct_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 Moved from Screening to Part 2 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-05-05", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040009 has been moved directly into part 2 after screening and has been assigned study drug for the first time.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040009 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 11:37:15\nTransaction Date/Time (system local): 05-May-2026 09:37:15\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..7859a06 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004_pk21948.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004_pk21948.json new file mode 100644 index 0000000..02793eb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004_pk21948.json @@ -0,0 +1,10 @@ +{ + "pk": 21948, + "title": "Direct_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 Moved from Screening to Part 2 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-05-05", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040009 has been moved directly into part 2 after screening and has been assigned study drug for the first time.\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040009 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 11:37:15\nTransaction Date/Time (system local): 05-May-2026 09:37:15\n\nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004_pk21948.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004_pk21948.pdf new file mode 100644 index 0000000..fbd005d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_Moved_from_Screening_to_Part_2_at_site_S10-CZ10004_pk21948.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json new file mode 100644 index 0000000..b6c416c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 21949, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-05-05", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040009 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1205974Seltorexant 20mgT39247624-Jun-20281261913Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040009 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 11:37:14 \nTransaction Date/Time (system local): 05-May-2026 09:37:14 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..7e6be2e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21949.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21949.json new file mode 100644 index 0000000..b6c416c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21949.json @@ -0,0 +1,10 @@ +{ + "pk": 21949, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 has been assigned medication for visit Open Label Induction Visit 1.1 at site S10-CZ10004", + "event": "OL_Ind_V1_1", + "actual_date": "2026-05-05", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040009 has been assigned the following medication(s) for visit Open Label Induction Visit 1.1:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1205974Seltorexant 20mgT39247624-Jun-20281261913Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040009 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 11:37:14 \nTransaction Date/Time (system local): 05-May-2026 09:37:14 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21949.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21949.pdf new file mode 100644 index 0000000..7d41714 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.1_at_site_S10-CZ10004_pk21949.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk21951.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk21951.json new file mode 100644 index 0000000..fda238d --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk21951.json @@ -0,0 +1,10 @@ +{ + "pk": 21951, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-05-05", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1075021\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1108887\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1187187\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1193010\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 05-May-2026 11:39:36\n\nTransaction Date/Time (system local): 05-May-2026 09:39:36 \nTransaction performed by: m.deif@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk21951.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk21951.pdf new file mode 100644 index 0000000..4fd3ac6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk21951.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008_pk21950.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008_pk21950.json new file mode 100644 index 0000000..3292327 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008_pk21950.json @@ -0,0 +1,10 @@ +{ + "pk": 21950, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Double Blind Maintenance Visit 3.5 at site S10-CZ10008", + "event": "DB_Main_V3_5", + "actual_date": "2026-05-05", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.5:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1075021Seltorexant 20mg or placeboT38650424-Jun-20281108887Seltorexant 20mg or placeboT38650424-Jun-20281187187Seltorexant 20mg or placeboT38650424-Jun-20281193010Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 05-May-2026 11:38:28 \nTransaction Date/Time (system local): 05-May-2026 09:38:28 \nTransaction performed by: m.deif@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008_pk21950.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008_pk21950.pdf new file mode 100644 index 0000000..103bbbf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.5_at_site_S10-CZ10008_pk21950.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk21956.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk21956.json new file mode 100644 index 0000000..5fc04cc --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk21956.json @@ -0,0 +1,10 @@ +{ + "pk": 21956, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-05-05", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080002 has been performed.\nMedication ID: 1194723\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1188311\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1159117\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1011219\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 05-May-2026 12:25:14 \nTransaction Date/Time (system local): 05-May-2026 10:25:14 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk21956.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk21956.pdf new file mode 100644 index 0000000..5fb67bf Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk21956.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..09d5f29 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 21944, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-05-05", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110010 has\nbeen performed for the following medication IDs:\n\nMedication No: 1243319\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1277695\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 10:35:00\n\nTransaction Date/Time (system local): 05-May-2026 08:35:00 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..6d3cf96 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21944.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21944.json new file mode 100644 index 0000000..09d5f29 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21944.json @@ -0,0 +1,10 @@ +{ + "pk": 21944, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-05-05", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110010 has\nbeen performed for the following medication IDs:\n\nMedication No: 1243319\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1277695\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 10:35:00\n\nTransaction Date/Time (system local): 05-May-2026 08:35:00 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21944.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21944.pdf new file mode 100644 index 0000000..c13bf65 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk21944.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json new file mode 100644 index 0000000..270b304 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 21941, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10011", + "event": "OL_Ind_V1_4", + "actual_date": "2026-05-05", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1243319Seltorexant 20mgT39247624-Jun-20281277695Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 10:08:29 \nTransaction Date/Time (system local): 05-May-2026 08:08:29 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..c9b000f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk21941.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk21941.json new file mode 100644 index 0000000..270b304 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk21941.json @@ -0,0 +1,10 @@ +{ + "pk": 21941, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10011", + "event": "OL_Ind_V1_4", + "actual_date": "2026-05-05", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110010 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1243319Seltorexant 20mgT39247624-Jun-20281277695Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 10:08:29 \nTransaction Date/Time (system local): 05-May-2026 08:08:29 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk21941.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk21941.pdf new file mode 100644 index 0000000..1f29091 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10011_pk21941.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..4273ddb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 21943, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-05-05", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110010 has been performed.\nMedication ID: 1231257\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1252831\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 10:34:24 \nTransaction Date/Time (system local): 05-May-2026 08:34:24 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..585c5a5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk21943.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk21943.json new file mode 100644 index 0000000..4273ddb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk21943.json @@ -0,0 +1,10 @@ +{ + "pk": 21943, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-05-05", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110010 has been performed.\nMedication ID: 1231257\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1252831\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 05-May-2026 10:34:24 \nTransaction Date/Time (system local): 05-May-2026 08:34:24 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk21943.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk21943.pdf new file mode 100644 index 0000000..ab492ad Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-05_Janssen_42847922MDD3003_Subject_CZ100110010_has_returned_a_medication_at_site_S10-CZ10011_pk21943.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22014.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22014.json new file mode 100644 index 0000000..2534332 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22014.json @@ -0,0 +1,10 @@ +{ + "pk": 22014, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-06", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040001 has\nbeen performed for the following medication IDs:\n\nMedication No: 1148017\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1155960\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1172483\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1197179\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 28-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 06-May-2026 07:41:48\n\nTransaction Date/Time (system local): 06-May-2026 05:41:48 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22014.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22014.pdf new file mode 100644 index 0000000..be6690d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22014.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk22015.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk22015.json new file mode 100644 index 0000000..3658532 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk22015.json @@ -0,0 +1,10 @@ +{ + "pk": 22015, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-06", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040001 has been performed.\nMedication ID: 1139849\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 6\n\nMedication ID: 1130765\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1034161\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1013204\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 06-May-2026 07:45:58 \nTransaction Date/Time (system local): 06-May-2026 05:45:58 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk22015.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk22015.pdf new file mode 100644 index 0000000..d7e4e3f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk22015.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..426e1b4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 22018, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-06", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1086459\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1079546\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1024008\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1021973\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 06-May-2026 07:57:43\n\nTransaction Date/Time (system local): 06-May-2026 05:57:43 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..27577b2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22018.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22018.json new file mode 100644 index 0000000..426e1b4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22018.json @@ -0,0 +1,10 @@ +{ + "pk": 22018, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-06", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040004 has\nbeen performed for the following medication IDs:\n\nMedication No: 1086459\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1079546\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1024008\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1021973\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040004 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 06-May-2026 07:57:43\n\nTransaction Date/Time (system local): 06-May-2026 05:57:43 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22018.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22018.pdf new file mode 100644 index 0000000..1700e4b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22018.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..7365d24 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 22019, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-06", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1260744\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nMedication ID: 1296382\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 6\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 06-May-2026 07:58:37 \nTransaction Date/Time (system local): 06-May-2026 05:58:37 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..ff71e12 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk22019.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk22019.json new file mode 100644 index 0000000..7365d24 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk22019.json @@ -0,0 +1,10 @@ +{ + "pk": 22019, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040004 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-06", + "subject": "CZ100040004", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040004 has been performed.\nMedication ID: 1260744\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nMedication ID: 1296382\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 6\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040004 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 06-May-2026 07:58:37 \nTransaction Date/Time (system local): 06-May-2026 05:58:37 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk22019.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk22019.pdf new file mode 100644 index 0000000..d8cab76 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040004_has_returned_a_medication_at_site_S10-CZ10004_pk22019.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..93023e1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 22020, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-06", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1275128\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1266581\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-May-2026 08:14:46\n\nTransaction Date/Time (system local): 06-May-2026 06:14:46 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..faf112b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22020.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22020.json new file mode 100644 index 0000000..93023e1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22020.json @@ -0,0 +1,10 @@ +{ + "pk": 22020, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-06", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1275128\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1266581\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-May-2026 08:14:46\n\nTransaction Date/Time (system local): 06-May-2026 06:14:46 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22020.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22020.pdf new file mode 100644 index 0000000..468481c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22020.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..e5edfe1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 22021, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-06", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040006 has been performed.\nMedication ID: 1258582\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1295784\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 6\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-May-2026 08:15:36 \nTransaction Date/Time (system local): 06-May-2026 06:15:36 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..15834f8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk22021.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk22021.json new file mode 100644 index 0000000..e5edfe1 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk22021.json @@ -0,0 +1,10 @@ +{ + "pk": 22021, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-06", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040006 has been performed.\nMedication ID: 1258582\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1295784\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 6\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-May-2026 08:15:36 \nTransaction Date/Time (system local): 06-May-2026 06:15:36 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk22021.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk22021.pdf new file mode 100644 index 0000000..f3e3406 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk22021.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..d58c9e7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 22034, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-06", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1274288\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1243253\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-May-2026 10:53:07\n\nTransaction Date/Time (system local): 06-May-2026 08:53:07 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..fb98da7 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22034.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22034.json new file mode 100644 index 0000000..d58c9e7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22034.json @@ -0,0 +1,10 @@ +{ + "pk": 22034, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-06", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1274288\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1243253\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-May-2026 10:53:07\n\nTransaction Date/Time (system local): 06-May-2026 08:53:07 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22034.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22034.pdf new file mode 100644 index 0000000..c6c4ea0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22034.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..b985509 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 22035, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-06", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040008 has been performed.\nMedication ID: 1048491\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 0\n\nMedication ID: 1175938\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 9\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-May-2026 10:53:59 \nTransaction Date/Time (system local): 06-May-2026 08:53:59 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..6889872 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk22035.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk22035.json new file mode 100644 index 0000000..b985509 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk22035.json @@ -0,0 +1,10 @@ +{ + "pk": 22035, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-06", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040008 has been performed.\nMedication ID: 1048491\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 0\n\nMedication ID: 1175938\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 9\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 06-May-2026 10:53:59 \nTransaction Date/Time (system local): 06-May-2026 08:53:59 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk22035.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk22035.pdf new file mode 100644 index 0000000..8283e5f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-06_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk22035.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..264d9ec --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 22337, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-11", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1264428\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1246535\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 11-May-2026 09:17:15\n\nTransaction Date/Time (system local): 11-May-2026 07:17:15 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..af67572 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22337.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22337.json new file mode 100644 index 0000000..264d9ec --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22337.json @@ -0,0 +1,10 @@ +{ + "pk": 22337, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-11", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1264428\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1246535\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 11-May-2026 09:17:15\n\nTransaction Date/Time (system local): 11-May-2026 07:17:15 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22337.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22337.pdf new file mode 100644 index 0000000..bb6119c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk22337.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..2446c8f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 22338, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-11", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040005 has been performed.\nMedication ID: 1242855\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1244106\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 11-May-2026 09:18:05 \nTransaction Date/Time (system local): 11-May-2026 07:18:05 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..5748d94 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk22338.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk22338.json new file mode 100644 index 0000000..2446c8f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk22338.json @@ -0,0 +1,10 @@ +{ + "pk": 22338, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-11", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040005 has been performed.\nMedication ID: 1242855\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1244106\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 11-May-2026 09:18:05 \nTransaction Date/Time (system local): 11-May-2026 07:18:05 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk22338.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk22338.pdf new file mode 100644 index 0000000..859b2c3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-11_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk22338.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22516.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22516.json new file mode 100644 index 0000000..d3cfeb9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22516.json @@ -0,0 +1,10 @@ +{ + "pk": 22516, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-05-13", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1053546\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1103948\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1115574\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1183558\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 13-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110007 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 13-May-2026 12:01:21\n\nTransaction Date/Time (system local): 13-May-2026 10:01:21 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22516.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22516.pdf new file mode 100644 index 0000000..02cc09b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22516.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk22515.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk22515.json new file mode 100644 index 0000000..e111c92 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk22515.json @@ -0,0 +1,10 @@ +{ + "pk": 22515, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-05-13", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110007 has been performed.\nMedication ID: 1226354\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1283009\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 1\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 13-May-2026 12:00:49 \nTransaction Date/Time (system local): 13-May-2026 10:00:49 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk22515.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk22515.pdf new file mode 100644 index 0000000..47e2a07 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_has_returned_a_medication_at_site_S10-CZ10011_pk22515.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011_pk22491.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011_pk22491.json new file mode 100644 index 0000000..57b1718 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011_pk22491.json @@ -0,0 +1,10 @@ +{ + "pk": 22491, + "title": "Randomized_Part_2", + "label": "Janssen 42847922MDD3003 Subject CZ100110007 randomized into Part 2 at site S10-CZ10011", + "event": "DB_Main_V3_1", + "actual_date": "2026-05-13", + "subject": "CZ100110007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110007 has been randomized into Part 2.\n \nThe following medication(s) has been assigned to the subject:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1053546Seltorexant 20mg or placeboT38650424-Jun-20281103948Seltorexant 20mg or placeboT38650424-Jun-20281115574Seltorexant 20mg or placeboT38650424-Jun-20281183558Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110007 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 13-May-2026 09:02:46\nTransaction Date/Time (system local): 13-May-2026 07:02:46\nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011_pk22491.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011_pk22491.pdf new file mode 100644 index 0000000..b6c36c3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-13_Janssen_42847922MDD3003_Subject_CZ100110007_randomized_into_Part_2_at_site_S10-CZ10011_pk22491.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk22756.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk22756.json new file mode 100644 index 0000000..dd89bbd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk22756.json @@ -0,0 +1,10 @@ +{ + "pk": 22756, + "title": "Discontinue", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 has been discontinued from IRT managed treatment at site S10-CZ10012", + "event": "uv_discontinue", + "actual_date": "2026-05-15", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Subject CZ100120005 has been Discontinued from IRT Managed Treatment.\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Discontinued from IRT Managed Treatment \n\nDiscontinuation date: 15-May-2026 \nTransaction Date/Time (site local): 17-May-2026 10:16:14\nTransaction Date/Time (system local): 17-May-2026 08:16:14\nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk22756.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk22756.pdf new file mode 100644 index 0000000..04aff2b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-15_Janssen_42847922MDD3003_Subject_CZ100120005_has_been_discontinued_from_IRT_managed_treatment_at_site_S10-CZ10012_pk22756.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk22755.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk22755.json new file mode 100644 index 0000000..58b36cd --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk22755.json @@ -0,0 +1,10 @@ +{ + "pk": 22755, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120005 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-05-17", + "subject": "CZ100120005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120005 has been performed.\nMedication ID: 1211059\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 4\n\nMedication ID: 1251709\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 10\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 17-May-2026 10:15:15 \nTransaction Date/Time (system local): 17-May-2026 08:15:15 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk22755.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk22755.pdf new file mode 100644 index 0000000..d951231 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-17_Janssen_42847922MDD3003_Subject_CZ100120005_has_returned_a_medication_at_site_S10-CZ10012_pk22755.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json new file mode 100644 index 0000000..396defb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 22886, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-05-19", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040009 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1236299Seltorexant 20mgT39247624-Jun-20281260460Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040009 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-May-2026 15:55:01 \nTransaction Date/Time (system local): 19-May-2026 13:55:01 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..4c2757f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk22886.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk22886.json new file mode 100644 index 0000000..396defb --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk22886.json @@ -0,0 +1,10 @@ +{ + "pk": 22886, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-05-19", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040009 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1236299Seltorexant 20mgT39247624-Jun-20281260460Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040009 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-May-2026 15:55:01 \nTransaction Date/Time (system local): 19-May-2026 13:55:01 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk22886.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk22886.pdf new file mode 100644 index 0000000..0c2218d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100040009_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk22886.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..6837d8c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 22879, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-05-19", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110010 has\nbeen performed for the following medication IDs:\n\nMedication No: 1233023\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1216531\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1211087\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1215239\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1243319\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1277695\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-May-2026 11:35:28\n\nTransaction Date/Time (system local): 19-May-2026 09:35:28 \nTransaction performed by: vysztavel@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..3ea1181 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22879.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22879.json new file mode 100644 index 0000000..6837d8c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22879.json @@ -0,0 +1,10 @@ +{ + "pk": 22879, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-05-19", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110010 has\nbeen performed for the following medication IDs:\n\nMedication No: 1233023\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1216531\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1211087\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1215239\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1243319\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1277695\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110010 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 19-May-2026 11:35:28\n\nTransaction Date/Time (system local): 19-May-2026 09:35:28 \nTransaction performed by: vysztavel@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22879.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22879.pdf new file mode 100644 index 0000000..2e9bb3f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk22879.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json new file mode 100644 index 0000000..582a3b3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 22876, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10011", + "event": "OL_Ind_V1_5", + "actual_date": "2026-05-19", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110010 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1211087\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1215239\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1216531\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1233023\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110010 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 19-May-2026 11:28:42 \n\r\n Transaction Date/Time (system local): 19-May-2026 09:28:42 \n\r\n Transaction performed by: vysztavel@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..217fc80 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk22876.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk22876.json new file mode 100644 index 0000000..582a3b3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk22876.json @@ -0,0 +1,10 @@ +{ + "pk": 22876, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100110010 has been assigned medication for visit Open Label Induction Visit 1.5 at site S10-CZ10011", + "event": "OL_Ind_V1_5", + "actual_date": "2026-05-19", + "subject": "CZ100110010", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100110010 has been assigned the following medication(s) for visit Open Label Induction Visit 1.5:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1211087\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1215239\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1216531\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1233023\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10011 \n\r\n Investigator: Lendlova, Marta \n\n \n\r\n Subject Details \nSubject: CZ100110010 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 19-May-2026 11:28:42 \n\r\n Transaction Date/Time (system local): 19-May-2026 09:28:42 \n\r\n Transaction performed by: vysztavel@medipa.org\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk22876.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk22876.pdf new file mode 100644 index 0000000..16060ef Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-19_Janssen_42847922MDD3003_Subject_CZ100110010_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.5_at_site_S10-CZ10011_pk22876.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.json new file mode 100644 index 0000000..8d91df0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 22947, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Double Blind Maintenance Visit 3.3 at site S10-CZ10004", + "event": "DB_Main_V3_3", + "actual_date": "2026-05-20", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1018081Seltorexant 20mg or placeboT38650424-Jun-20281062659Seltorexant 20mg or placeboT38650424-Jun-20281104009Seltorexant 20mg or placeboT38650424-Jun-20281123102Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 20-May-2026 11:54:08 \nTransaction Date/Time (system local): 20-May-2026 09:54:08 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..0d263d2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk22947.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk22947.json new file mode 100644 index 0000000..8d91df0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk22947.json @@ -0,0 +1,10 @@ +{ + "pk": 22947, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has been assigned medication for visit Double Blind Maintenance Visit 3.3 at site S10-CZ10004", + "event": "DB_Main_V3_3", + "actual_date": "2026-05-20", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040003 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1018081Seltorexant 20mg or placeboT38650424-Jun-20281062659Seltorexant 20mg or placeboT38650424-Jun-20281104009Seltorexant 20mg or placeboT38650424-Jun-20281123102Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 20-May-2026 11:54:08 \nTransaction Date/Time (system local): 20-May-2026 09:54:08 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk22947.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk22947.pdf new file mode 100644 index 0000000..acc6fd6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100040003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10004_pk22947.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..8b34327 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 22950, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-05-20", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1201310\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1216076\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1262557\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1283604\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-May-2026 13:15:46\n\nTransaction Date/Time (system local): 20-May-2026 11:15:46 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..2497e99 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk22950.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk22950.json new file mode 100644 index 0000000..8b34327 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk22950.json @@ -0,0 +1,10 @@ +{ + "pk": 22950, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-05-20", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1201310\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1216076\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1262557\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1283604\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 29-Apr-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-May-2026 13:15:46\n\nTransaction Date/Time (system local): 20-May-2026 11:15:46 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk22950.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk22950.pdf new file mode 100644 index 0000000..6523d1b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk22950.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.json new file mode 100644 index 0000000..5e085d9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 22964, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10012", + "event": "OL_TS_V2_2", + "actual_date": "2026-05-20", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1201221Seltorexant 20mgT39247624-Jun-20281212550Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-May-2026 15:03:28 \nTransaction Date/Time (system local): 20-May-2026 13:03:28 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..de3158a Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk22964.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk22964.json new file mode 100644 index 0000000..5e085d9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk22964.json @@ -0,0 +1,10 @@ +{ + "pk": 22964, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10012", + "event": "OL_TS_V2_2", + "actual_date": "2026-05-20", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100120006 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1201221Seltorexant 20mgT39247624-Jun-20281212550Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 20-May-2026 15:03:28 \nTransaction Date/Time (system local): 20-May-2026 13:03:28 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk22964.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk22964.pdf new file mode 100644 index 0000000..d91e63d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-20_Janssen_42847922MDD3003_Subject_CZ100120006_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10012_pk22964.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json new file mode 100644 index 0000000..3b8779b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23154, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10004", + "event": "OL_Ind_V1_6", + "actual_date": "2026-05-22", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1226189\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1252970\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1259537\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1279696\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040005 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 22-May-2026 10:55:06 \n\r\n Transaction Date/Time (system local): 22-May-2026 08:55:06 \n\r\n Transaction performed by: erik.herman@seznam.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..59d0fd5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23154.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23154.json new file mode 100644 index 0000000..3b8779b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23154.json @@ -0,0 +1,10 @@ +{ + "pk": 23154, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10004", + "event": "OL_Ind_V1_6", + "actual_date": "2026-05-22", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040005 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1226189\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1252970\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1259537\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1279696\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040005 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 22-May-2026 10:55:06 \n\r\n Transaction Date/Time (system local): 22-May-2026 08:55:06 \n\r\n Transaction performed by: erik.herman@seznam.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23154.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23154.pdf new file mode 100644 index 0000000..bbe0457 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040005_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23154.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json new file mode 100644 index 0000000..6a3b18e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23161, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10004", + "event": "OL_Ind_V1_6", + "actual_date": "2026-05-22", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1201091\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1229912\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1292116\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1298027\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040006 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 22-May-2026 13:08:16 \n\r\n Transaction Date/Time (system local): 22-May-2026 11:08:16 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..a355247 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23161.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23161.json new file mode 100644 index 0000000..6a3b18e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23161.json @@ -0,0 +1,10 @@ +{ + "pk": 23161, + "title": "Assignment_MADRS", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has been assigned medication for visit Open Label Induction Visit 1.6 at site S10-CZ10004", + "event": "OL_Ind_V1_6", + "actual_date": "2026-05-22", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\r\nhttps://janssen.4gclinical.com\r\n\nSubject CZ100040006 has been assigned the following medication(s) for visit Open Label Induction Visit 1.6:\r\n\n\r\n \r\n \r\n Medication No\r\n Medication Type\r\n Packaged Lot No\r\n Expiration Date\r\n 1201091\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1229912\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1292116\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n1298027\r\n Seltorexant 20mg\r\n T392476\r\n 24-Jun-2028\r\n\r\n\n \nSite Details \n\r\n Location: CZE \n\r\n Site: S10-CZ10004 \n\r\n Investigator: Herman, Erik \n\n \n\r\n Subject Details \nSubject: CZ100040006 \n\r\n IRT Subject Status: Enrolled Open Label \n\n\r\n Source of data: Integrated\n\r\n Has the Subject reached the MADRS response criteria? Yes\n\n\r\n Transaction Date/Time (site local): 22-May-2026 13:08:16 \n\r\n Transaction Date/Time (system local): 22-May-2026 11:08:16 \n\r\n Transaction performed by: gnovotna@email.cz\n \n\r\n If you have questions about this notification, please contact 4G Clinical Support at \n\r\n https://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23161.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23161.pdf new file mode 100644 index 0000000..3a60a11 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040006_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.6_at_site_S10-CZ10004_pk23161.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json new file mode 100644 index 0000000..7c89f80 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23147, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-05-22", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1226391Seltorexant 20mgT39247624-Jun-20281250994Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-May-2026 09:46:34 \nTransaction Date/Time (system local): 22-May-2026 07:46:34 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..f341878 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk23147.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk23147.json new file mode 100644 index 0000000..7c89f80 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk23147.json @@ -0,0 +1,10 @@ +{ + "pk": 23147, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has been assigned medication for visit Open Label Induction Visit 1.4 at site S10-CZ10004", + "event": "OL_Ind_V1_4", + "actual_date": "2026-05-22", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040008 has been assigned the following medication(s) for visit Open Label Induction Visit 1.4:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1226391Seltorexant 20mgT39247624-Jun-20281250994Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-May-2026 09:46:34 \nTransaction Date/Time (system local): 22-May-2026 07:46:34 \nTransaction performed by: erik.herman@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk23147.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk23147.pdf new file mode 100644 index 0000000..eda00dd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100040008_has_been_assigned_medication_for_visit_Open_Label_Induction_Visit_1.4_at_site_S10-CZ10004_pk23147.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json new file mode 100644 index 0000000..61de751 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 23188, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-05-22", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1201221\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1212550\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-May-2026 18:35:22\n\nTransaction Date/Time (system local): 22-May-2026 16:35:22 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..896be2b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk23188.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk23188.json new file mode 100644 index 0000000..61de751 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk23188.json @@ -0,0 +1,10 @@ +{ + "pk": 23188, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 dispensing confirmation has occurred at site S10-CZ10012", + "event": "uv_disp_conf", + "actual_date": "2026-05-22", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100120006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1201221\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1212550\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10012 \nInvestigator: Urban, Ales \n\nSubject Details \nSubject:\nCZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-May-2026 18:35:22\n\nTransaction Date/Time (system local): 22-May-2026 16:35:22 \nTransaction performed by: marcelasedlackova@seznam.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk23188.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk23188.pdf new file mode 100644 index 0000000..1a49f88 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_dispensing_confirmation_has_occurred_at_site_S10-CZ10012_pk23188.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json new file mode 100644 index 0000000..3f499d4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.json @@ -0,0 +1,10 @@ +{ + "pk": 23189, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-05-22", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120006 has been performed.\nMedication ID: 1223242\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1232243\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nMedication ID: 1270209\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1285455\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-May-2026 18:36:29 \nTransaction Date/Time (system local): 22-May-2026 16:36:29 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf new file mode 100644 index 0000000..d3c2190 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk23189.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk23189.json new file mode 100644 index 0000000..3f499d4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk23189.json @@ -0,0 +1,10 @@ +{ + "pk": 23189, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100120006 has returned a medication at site S10-CZ10012", + "event": "uv_return", + "actual_date": "2026-05-22", + "subject": "CZ100120006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100120006 has been performed.\nMedication ID: 1223242\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1232243\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 2\n\nMedication ID: 1270209\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1285455\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 4\n\nSite Details \nLocation: CZE \nSite: S10-CZ10012 \nInvestigator: Urban, Ales \n\n \nSubject Details \nSubject: CZ100120006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 22-May-2026 18:36:29 \nTransaction Date/Time (system local): 22-May-2026 16:36:29 \nTransaction performed by: marcelasedlackova@seznam.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk23189.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk23189.pdf new file mode 100644 index 0000000..afa25d8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-22_Janssen_42847922MDD3003_Subject_CZ100120006_has_returned_a_medication_at_site_S10-CZ10012_pk23189.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..7f4eff0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23218, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-25", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1123102\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1104009\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1062659\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1018081\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 25-May-2026 09:17:59\n\nTransaction Date/Time (system local): 25-May-2026 07:17:59 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..726255d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23218.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23218.json new file mode 100644 index 0000000..7f4eff0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23218.json @@ -0,0 +1,10 @@ +{ + "pk": 23218, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-25", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1123102\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1104009\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1062659\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1018081\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 20-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 25-May-2026 09:17:59\n\nTransaction Date/Time (system local): 25-May-2026 07:17:59 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23218.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23218.pdf new file mode 100644 index 0000000..bb2f731 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23218.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..6b9e7c6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23219, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-25", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1179895\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 5\n\nMedication ID: 1120873\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1111522\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1067879\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 1\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 25-May-2026 09:22:23 \nTransaction Date/Time (system local): 25-May-2026 07:22:23 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..888cc59 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk23219.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk23219.json new file mode 100644 index 0000000..6b9e7c6 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk23219.json @@ -0,0 +1,10 @@ +{ + "pk": 23219, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040003 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-25", + "subject": "CZ100040003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040003 has been performed.\nMedication ID: 1179895\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 5\n\nMedication ID: 1120873\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1111522\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1067879\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 1\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 25-May-2026 09:22:23 \nTransaction Date/Time (system local): 25-May-2026 07:22:23 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk23219.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk23219.pdf new file mode 100644 index 0000000..050b8a8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040003_has_returned_a_medication_at_site_S10-CZ10004_pk23219.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..0e5d34f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23228, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-25", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1226189\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1252970\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1259537\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1279696\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 12:52:54\n\nTransaction Date/Time (system local): 25-May-2026 10:52:54 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..aaf7d53 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23228.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23228.json new file mode 100644 index 0000000..0e5d34f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23228.json @@ -0,0 +1,10 @@ +{ + "pk": 23228, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-25", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040005 has\nbeen performed for the following medication IDs:\n\nMedication No: 1226189\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1252970\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1259537\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1279696\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 12:52:54\n\nTransaction Date/Time (system local): 25-May-2026 10:52:54 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23228.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23228.pdf new file mode 100644 index 0000000..29b5f14 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23228.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..1b43846 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23229, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-25", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040005 has been performed.\nMedication ID: 1246535\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1264428\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 12:53:39 \nTransaction Date/Time (system local): 25-May-2026 10:53:39 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..afd68aa Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk23229.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk23229.json new file mode 100644 index 0000000..1b43846 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk23229.json @@ -0,0 +1,10 @@ +{ + "pk": 23229, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040005 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-25", + "subject": "CZ100040005", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040005 has been performed.\nMedication ID: 1246535\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1264428\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040005 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 12:53:39 \nTransaction Date/Time (system local): 25-May-2026 10:53:39 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk23229.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk23229.pdf new file mode 100644 index 0000000..2f3e833 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040005_has_returned_a_medication_at_site_S10-CZ10004_pk23229.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..b670da0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23214, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-25", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1298027\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1292116\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1229912\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1201091\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 08:53:17\n\nTransaction Date/Time (system local): 25-May-2026 06:53:17 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..30dd883 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23214.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23214.json new file mode 100644 index 0000000..b670da0 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23214.json @@ -0,0 +1,10 @@ +{ + "pk": 23214, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-25", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1298027\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1292116\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1229912\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1201091\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 08:53:17\n\nTransaction Date/Time (system local): 25-May-2026 06:53:17 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23214.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23214.pdf new file mode 100644 index 0000000..66dcaff Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23214.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..c9ebde3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23215, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-25", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040006 has been performed.\nMedication ID: 1266581\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1275128\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 08:54:38 \nTransaction Date/Time (system local): 25-May-2026 06:54:38 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..bdb0865 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk23215.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk23215.json new file mode 100644 index 0000000..c9ebde3 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk23215.json @@ -0,0 +1,10 @@ +{ + "pk": 23215, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040006 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-25", + "subject": "CZ100040006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040006 has been performed.\nMedication ID: 1266581\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1275128\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040006 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 08:54:38 \nTransaction Date/Time (system local): 25-May-2026 06:54:38 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk23215.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk23215.pdf new file mode 100644 index 0000000..bc0629e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040006_has_returned_a_medication_at_site_S10-CZ10004_pk23215.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..b2478b7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23223, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-25", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1250994\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1226391\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 10:28:56\n\nTransaction Date/Time (system local): 25-May-2026 08:28:56 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..aeb6dd6 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23223.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23223.json new file mode 100644 index 0000000..b2478b7 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23223.json @@ -0,0 +1,10 @@ +{ + "pk": 23223, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-25", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040008 has\nbeen performed for the following medication IDs:\n\nMedication No: 1250994\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1226391\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 22-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 10:28:56\n\nTransaction Date/Time (system local): 25-May-2026 08:28:56 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23223.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23223.pdf new file mode 100644 index 0000000..f8cc4e5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23223.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..c5a00db --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23224, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-25", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040008 has been performed.\nMedication ID: 1243253\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1274288\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 10:29:53 \nTransaction Date/Time (system local): 25-May-2026 08:29:53 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..89698d8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk23224.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk23224.json new file mode 100644 index 0000000..c5a00db --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk23224.json @@ -0,0 +1,10 @@ +{ + "pk": 23224, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040008 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-25", + "subject": "CZ100040008", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040008 has been performed.\nMedication ID: 1243253\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 0\n\nMedication ID: 1274288\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040008 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 10:29:53 \nTransaction Date/Time (system local): 25-May-2026 08:29:53 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk23224.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk23224.pdf new file mode 100644 index 0000000..e7b4157 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040008_has_returned_a_medication_at_site_S10-CZ10004_pk23224.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json new file mode 100644 index 0000000..a944909 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23220, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-25", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040009 has\nbeen performed for the following medication IDs:\n\nMedication No: 1236299\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1260460\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1205974\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1261913\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040009 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 09:28:38\n\nTransaction Date/Time (system local): 25-May-2026 07:28:38 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..8111ab4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23220.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23220.json new file mode 100644 index 0000000..a944909 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23220.json @@ -0,0 +1,10 @@ +{ + "pk": 23220, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-05-25", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040009 has\nbeen performed for the following medication IDs:\n\nMedication No: 1236299\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1260460\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 19-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1205974\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1261913\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 05-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040009 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 09:28:38\n\nTransaction Date/Time (system local): 25-May-2026 07:28:38 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23220.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23220.pdf new file mode 100644 index 0000000..a80dda4 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23220.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004.json new file mode 100644 index 0000000..d8752d4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004.json @@ -0,0 +1,10 @@ +{ + "pk": 23221, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-25", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040009 has been performed.\nMedication ID: 1205974\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1261913\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040009 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 09:29:23 \nTransaction Date/Time (system local): 25-May-2026 07:29:23 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004.pdf new file mode 100644 index 0000000..e944351 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004_pk23221.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004_pk23221.json new file mode 100644 index 0000000..d8752d4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004_pk23221.json @@ -0,0 +1,10 @@ +{ + "pk": 23221, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040009 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-05-25", + "subject": "CZ100040009", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040009 has been performed.\nMedication ID: 1205974\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1261913\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040009 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 25-May-2026 09:29:23 \nTransaction Date/Time (system local): 25-May-2026 07:29:23 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004_pk23221.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004_pk23221.pdf new file mode 100644 index 0000000..923fd1b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-25_Janssen_42847922MDD3003_Subject_CZ100040009_has_returned_a_medication_at_site_S10-CZ10004_pk23221.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23279.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23279.json new file mode 100644 index 0000000..a1d8a7b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23279.json @@ -0,0 +1,10 @@ +{ + "pk": 23279, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-05-26", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110006 has\nbeen performed for the following medication IDs:\n\nMedication No: 1028124\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 26-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1062559\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 26-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1126062\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 26-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1146132\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 26-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110006 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 26-May-2026 16:52:01\n\nTransaction Date/Time (system local): 26-May-2026 14:52:01 \nTransaction performed by: vysztavel@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23279.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23279.pdf new file mode 100644 index 0000000..79bd712 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23279.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23248.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23248.json new file mode 100644 index 0000000..398983e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23248.json @@ -0,0 +1,10 @@ +{ + "pk": 23248, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has been assigned medication for visit Double Blind Maintenance Visit 3.3 at site S10-CZ10011", + "event": "DB_Main_V3_3", + "actual_date": "2026-05-26", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110006 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1028124Seltorexant 20mg or placeboT38650424-Jun-20281062559Seltorexant 20mg or placeboT38650424-Jun-20281126062Seltorexant 20mg or placeboT38650424-Jun-20281146132Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 26-May-2026 11:47:04 \nTransaction Date/Time (system local): 26-May-2026 09:47:04 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23248.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23248.pdf new file mode 100644 index 0000000..b7c77b3 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23248.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk23278.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk23278.json new file mode 100644 index 0000000..4746d1f --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk23278.json @@ -0,0 +1,10 @@ +{ + "pk": 23278, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110006 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-05-26", + "subject": "CZ100110006", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110006 has been performed.\nMedication ID: 1041432\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1126309\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1159985\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1163542\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110006 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 26-May-2026 16:51:38 \nTransaction Date/Time (system local): 26-May-2026 14:51:38 \nTransaction performed by: vysztavel@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk23278.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk23278.pdf new file mode 100644 index 0000000..2c8b52d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-26_Janssen_42847922MDD3003_Subject_CZ100110006_has_returned_a_medication_at_site_S10-CZ10011_pk23278.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004_pk23328.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004_pk23328.json new file mode 100644 index 0000000..eaf464e --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004_pk23328.json @@ -0,0 +1,10 @@ +{ + "pk": 23328, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has been assigned medication for visit Double Blind Maintenance Visit 3.6 at site S10-CZ10004", + "event": "DB_Main_V3_6", + "actual_date": "2026-05-27", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100040001 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1022543Seltorexant 20mg or placeboT38650424-Jun-20281031390Seltorexant 20mg or placeboT38650424-Jun-20281056641Seltorexant 20mg or placeboT38650424-Jun-20281067297Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-May-2026 11:32:49 \nTransaction Date/Time (system local): 27-May-2026 09:32:49 \nTransaction performed by: gnovotna@email.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004_pk23328.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004_pk23328.pdf new file mode 100644 index 0000000..672ce1e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100040001_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10004_pk23328.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json new file mode 100644 index 0000000..ee1f273 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 23322, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-05-27", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1216536\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1228512\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-May-2026 10:29:09\n\nTransaction Date/Time (system local): 27-May-2026 08:29:09 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..c072f8d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23322.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23322.json new file mode 100644 index 0000000..ee1f273 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23322.json @@ -0,0 +1,10 @@ +{ + "pk": 23322, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-05-27", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080007 has\nbeen performed for the following medication IDs:\n\nMedication No: 1216536\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1228512\n\nProduct Label Type: Seltorexant 20mg\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-May-2026 10:29:09\n\nTransaction Date/Time (system local): 27-May-2026 08:29:09 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23322.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23322.pdf new file mode 100644 index 0000000..e35c6af Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23322.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.json new file mode 100644 index 0000000..e5d6fb9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 23321, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10008", + "event": "OL_TS_V2_2", + "actual_date": "2026-05-27", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1216536Seltorexant 20mgT39247624-Jun-20281228512Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-May-2026 10:28:07 \nTransaction Date/Time (system local): 27-May-2026 08:28:07 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..946249e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk23321.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk23321.json new file mode 100644 index 0000000..e5d6fb9 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk23321.json @@ -0,0 +1,10 @@ +{ + "pk": 23321, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has been assigned medication for visit Open Label Treatment Stabilization Visit 2.2 at site S10-CZ10008", + "event": "OL_TS_V2_2", + "actual_date": "2026-05-27", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080007 has been assigned the following medication(s) for visit Open Label Treatment Stabilization Visit 2.2:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1216536Seltorexant 20mgT39247624-Jun-20281228512Seltorexant 20mgT39247624-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-May-2026 10:28:07 \nTransaction Date/Time (system local): 27-May-2026 08:28:07 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk23321.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk23321.pdf new file mode 100644 index 0000000..492482b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_been_assigned_medication_for_visit_Open_Label_Treatment_Stabilization_Visit_2.2_at_site_S10-CZ10008_pk23321.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json new file mode 100644 index 0000000..cd17827 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.json @@ -0,0 +1,10 @@ +{ + "pk": 23320, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-05-27", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1201310\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1216076\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1262557\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1283604\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-May-2026 10:25:24 \nTransaction Date/Time (system local): 27-May-2026 08:25:24 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf new file mode 100644 index 0000000..1b3e491 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk23320.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk23320.json new file mode 100644 index 0000000..cd17827 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk23320.json @@ -0,0 +1,10 @@ +{ + "pk": 23320, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080007 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-05-27", + "subject": "CZ100080007", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080007 has been performed.\nMedication ID: 1201310\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1216076\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1262557\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nMedication ID: 1283604\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080007 \nIRT Subject Status: Enrolled Open Label \n\nTransaction Date/Time (site local): 27-May-2026 10:25:24 \nTransaction Date/Time (system local): 27-May-2026 08:25:24 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk23320.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk23320.pdf new file mode 100644 index 0000000..ef6dc3c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100080007_has_returned_a_medication_at_site_S10-CZ10008_pk23320.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json new file mode 100644 index 0000000..7a307d2 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 23369, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-05-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1042247\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1141921\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1082696\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1184850\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-May-2026 17:18:02\n\nTransaction Date/Time (system local): 27-May-2026 15:18:02 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..ba25693 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23369.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23369.json new file mode 100644 index 0000000..7a307d2 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23369.json @@ -0,0 +1,10 @@ +{ + "pk": 23369, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 dispensing confirmation has occurred at site S10-CZ10011", + "event": "uv_disp_conf", + "actual_date": "2026-05-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100110003 has\nbeen performed for the following medication IDs:\n\nMedication No: 1042247\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1141921\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1082696\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1184850\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10011 \nInvestigator: Lendlova, Marta \n\nSubject Details \nSubject:\nCZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-May-2026 17:18:02\n\nTransaction Date/Time (system local): 27-May-2026 15:18:02 \nTransaction performed by: truhlarova@medipa.org\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23369.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23369.pdf new file mode 100644 index 0000000..faf78dd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_dispensing_confirmation_has_occurred_at_site_S10-CZ10011_pk23369.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.json new file mode 100644 index 0000000..3e8299c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 23338, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Double Blind Maintenance Visit 3.3 at site S10-CZ10011", + "event": "DB_Main_V3_3", + "actual_date": "2026-05-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1042247Seltorexant 20mg or placeboT38650424-Jun-20281082696Seltorexant 20mg or placeboT38650424-Jun-20281141921Seltorexant 20mg or placeboT38650424-Jun-20281184850Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-May-2026 14:20:43 \nTransaction Date/Time (system local): 27-May-2026 12:20:43 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..a164302 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23338.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23338.json new file mode 100644 index 0000000..3e8299c --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23338.json @@ -0,0 +1,10 @@ +{ + "pk": 23338, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has been assigned medication for visit Double Blind Maintenance Visit 3.3 at site S10-CZ10011", + "event": "DB_Main_V3_3", + "actual_date": "2026-05-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100110003 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.3:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1042247Seltorexant 20mg or placeboT38650424-Jun-20281082696Seltorexant 20mg or placeboT38650424-Jun-20281141921Seltorexant 20mg or placeboT38650424-Jun-20281184850Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-May-2026 14:20:43 \nTransaction Date/Time (system local): 27-May-2026 12:20:43 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23338.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23338.pdf new file mode 100644 index 0000000..19df05c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.3_at_site_S10-CZ10011_pk23338.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json new file mode 100644 index 0000000..290143b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.json @@ -0,0 +1,10 @@ +{ + "pk": 23367, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-05-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1162164\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1108713\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1033601\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1010965\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-May-2026 16:58:23 \nTransaction Date/Time (system local): 27-May-2026 14:58:23 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf new file mode 100644 index 0000000..90488de Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk23367.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk23367.json new file mode 100644 index 0000000..290143b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk23367.json @@ -0,0 +1,10 @@ +{ + "pk": 23367, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100110003 has returned a medication at site S10-CZ10011", + "event": "uv_return", + "actual_date": "2026-05-27", + "subject": "CZ100110003", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100110003 has been performed.\nMedication ID: 1162164\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1108713\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 2\n\nMedication ID: 1033601\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1010965\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10011 \nInvestigator: Lendlova, Marta \n\n \nSubject Details \nSubject: CZ100110003 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 27-May-2026 16:58:23 \nTransaction Date/Time (system local): 27-May-2026 14:58:23 \nTransaction performed by: truhlarova@medipa.org\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk23367.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk23367.pdf new file mode 100644 index 0000000..81dcf1d Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-05-27_Janssen_42847922MDD3003_Subject_CZ100110003_has_returned_a_medication_at_site_S10-CZ10011_pk23367.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23654.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23654.json new file mode 100644 index 0000000..a0f2add --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23654.json @@ -0,0 +1,10 @@ +{ + "pk": 23654, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 dispensing confirmation has occurred at site S10-CZ10004", + "event": "uv_disp_conf", + "actual_date": "2026-06-01", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100040001 has\nbeen performed for the following medication IDs:\n\nMedication No: 1022543\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1031390\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1056641\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1067297\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 27-May-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10004 \nInvestigator: Herman, Erik \n\nSubject Details \nSubject:\nCZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 01-Jun-2026 11:42:01\n\nTransaction Date/Time (system local): 01-Jun-2026 09:42:01 \nTransaction performed by: veronika@brezinova.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23654.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23654.pdf new file mode 100644 index 0000000..5a8ee3b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_dispensing_confirmation_has_occurred_at_site_S10-CZ10004_pk23654.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk23655.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk23655.json new file mode 100644 index 0000000..5857836 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk23655.json @@ -0,0 +1,10 @@ +{ + "pk": 23655, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100040001 has returned a medication at site S10-CZ10004", + "event": "uv_return", + "actual_date": "2026-06-01", + "subject": "CZ100040001", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100040001 has been performed.\nMedication ID: 1197179\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 5\n\nMedication ID: 1172483\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1155960\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1148017\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 0\n\nSite Details \nLocation: CZE \nSite: S10-CZ10004 \nInvestigator: Herman, Erik \n\n \nSubject Details \nSubject: CZ100040001 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 01-Jun-2026 11:43:38 \nTransaction Date/Time (system local): 01-Jun-2026 09:43:38 \nTransaction performed by: veronika@brezinova.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk23655.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk23655.pdf new file mode 100644 index 0000000..77a2f3f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-01_Janssen_42847922MDD3003_Subject_CZ100040001_has_returned_a_medication_at_site_S10-CZ10004_pk23655.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23735.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23735.json new file mode 100644 index 0000000..79150d4 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23735.json @@ -0,0 +1,10 @@ +{ + "pk": 23735, + "title": "Dispensation", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 dispensing confirmation has occurred at site S10-CZ10008", + "event": "uv_disp_conf", + "actual_date": "2026-06-02", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\n Confirmation of dispensing medication(s) for Subject CZ100080002 has\nbeen performed for the following medication IDs:\n\nMedication No: 1012228\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 02-Jun-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1043353\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 02-Jun-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1088153\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 02-Jun-2026\nNote (only collected if Not Dispensed):\n \n\nMedication No: 1135941\n\nProduct Label Type: Seltorexant 20mg or placebo\nMedication status:\n Dispensed\nDispensation date: 02-Jun-2026\nNote (only collected if Not Dispensed):\n \n\nSite Details \nLocation: CZE \nSite:\nS10-CZ10008 \nInvestigator: Solle, Zdenek \n\nSubject Details \nSubject:\nCZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 02-Jun-2026 12:13:40\n\nTransaction Date/Time (system local): 02-Jun-2026 10:13:40 \nTransaction performed by: v.smidkova@clintrial.cz\n\nIf you have\nquestions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23735.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23735.pdf new file mode 100644 index 0000000..3d02068 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_dispensing_confirmation_has_occurred_at_site_S10-CZ10008_pk23735.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008_pk23734.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008_pk23734.json new file mode 100644 index 0000000..df1dd1b --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008_pk23734.json @@ -0,0 +1,10 @@ +{ + "pk": 23734, + "title": "Assignment", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has been assigned medication for visit Double Blind Maintenance Visit 3.6 at site S10-CZ10008", + "event": "DB_Main_V3_6", + "actual_date": "2026-06-02", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\nSubject CZ100080002 has been assigned the following medication(s) for visit Double Blind Maintenance Visit 3.6:\n\nMedication NoMedication TypePackaged Lot NoExpiration Date1012228Seltorexant 20mg or placeboT38650424-Jun-20281043353Seltorexant 20mg or placeboT38650424-Jun-20281088153Seltorexant 20mg or placeboT38650424-Jun-20281135941Seltorexant 20mg or placeboT38650424-Jun-2028\n\n \nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 02-Jun-2026 12:12:17 \nTransaction Date/Time (system local): 02-Jun-2026 10:12:17 \nTransaction performed by: v.smidkova@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008_pk23734.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008_pk23734.pdf new file mode 100644 index 0000000..c14ab4e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_been_assigned_medication_for_visit_Double_Blind_Maintenance_Visit_3.6_at_site_S10-CZ10008_pk23734.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk23733.json b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk23733.json new file mode 100644 index 0000000..7d5d874 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk23733.json @@ -0,0 +1,10 @@ +{ + "pk": 23733, + "title": "Medication_Return", + "label": "Janssen 42847922MDD3003 Subject CZ100080002 has returned a medication at site S10-CZ10008", + "event": "uv_return", + "actual_date": "2026-06-02", + "subject": "CZ100080002", + "study": "42847922MDD3003", + "text": "42847922MDD3003\nJanssen Pharmaceuticalshttps://janssen.4gclinical.com\n\n Action to return medication(s) for Subject CZ100080002 has been performed.\nMedication ID: 1075021\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1108887\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1187187\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nMedication ID: 1193010\nMedication status: Returned by Subject\nProduct Label Type: Seltorexant 20mg or placebo\nReturned: 3\n\nSite Details \nLocation: CZE \nSite: S10-CZ10008 \nInvestigator: Solle, Zdenek \n\n \nSubject Details \nSubject: CZ100080002 \nIRT Subject Status: Randomized Part 2 \n\nTransaction Date/Time (site local): 02-Jun-2026 11:44:10 \nTransaction Date/Time (system local): 02-Jun-2026 09:44:10 \nTransaction performed by: zdenek.solle@clintrial.cz\n \nIf you have questions about this notification, please contact 4G Clinical Support at \nhttps://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk23733.pdf b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk23733.pdf new file mode 100644 index 0000000..55a08c5 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/42847922MDD3003/Zpracovano/2026-06-02_Janssen_42847922MDD3003_Subject_CZ100080002_has_returned_a_medication_at_site_S10-CZ10008_pk23733.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012001 Subject Detail.xlsx new file mode 100644 index 0000000..9dc99c0 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012002 Subject Detail.xlsx new file mode 100644 index 0000000..b5a5ed8 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012003 Subject Detail.xlsx new file mode 100644 index 0000000..e2c53c2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012004 Subject Detail.xlsx new file mode 100644 index 0000000..e8b4110 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100012004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100032001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100032001 Subject Detail.xlsx new file mode 100644 index 0000000..7cbc836 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100032001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100062001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100062001 Subject Detail.xlsx new file mode 100644 index 0000000..3701167 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100062001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100062002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100062002 Subject Detail.xlsx new file mode 100644 index 0000000..0a78c94 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100062002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100092001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100092001 Subject Detail.xlsx new file mode 100644 index 0000000..901f48e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100092001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100092002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100092002 Subject Detail.xlsx new file mode 100644 index 0000000..d1e67ce Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100092002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100122001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100122001 Subject Detail.xlsx new file mode 100644 index 0000000..398b4fd Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100122001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100132001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100132001 Subject Detail.xlsx new file mode 100644 index 0000000..0c25794 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100132001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100132002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100132002 Subject Detail.xlsx new file mode 100644 index 0000000..9e12707 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100132002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100132003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100132003 Subject Detail.xlsx new file mode 100644 index 0000000..d14929e Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100132003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100162001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100162001 Subject Detail.xlsx new file mode 100644 index 0000000..0f99ffc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100162001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100162002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100162002 Subject Detail.xlsx new file mode 100644 index 0000000..c8bbd51 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100162002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100201001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100201001 Subject Detail.xlsx new file mode 100644 index 0000000..5030ffe Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100201001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100212001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100212001 Subject Detail.xlsx new file mode 100644 index 0000000..49bc2fc Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100212001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222001 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222001 Subject Detail.xlsx new file mode 100644 index 0000000..6a53c87 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222001 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222002 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222002 Subject Detail.xlsx new file mode 100644 index 0000000..6ed72c1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222002 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222003 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222003 Subject Detail.xlsx new file mode 100644 index 0000000..bca269b Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222003 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222004 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222004 Subject Detail.xlsx new file mode 100644 index 0000000..cb0f66f Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222004 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222005 Subject Detail.xlsx b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222005 Subject Detail.xlsx new file mode 100644 index 0000000..119104c Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-03 77242113UCO3001 CZ100222005 Subject Detail.xlsx differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013.json b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013.json rename to IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013.pdf b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013_pk3237.json b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013_pk3237.json new file mode 100644 index 0000000..5066646 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013_pk3237.json @@ -0,0 +1,10 @@ +{ + "pk": 3237, + "title": "Subject_Number_Creation", + "label": "Janssen 77242113UCO3001 Subject CZ100132003 has been created in IRT at site DD5-CZ10013", + "event": "Create", + "actual_date": "2026-05-06", + "subject": "CZ100132003", + "study": "77242113UCO3001", + "text": "77242113UCO3001\n\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\nSubject CZ100132003 has been created in IRT.\n\nSite Details\n\nLocation: CZE\n\nSite: DD5-CZ10013\n\nInvestigator: David Stepek\n\nSubject Details\n\nSubject: CZ100132003\n\nIRT Subject Status: Screened\n\nRescreened Subject: No\n\nCohort: Adult subjects (18 years or older)\n\nInformed Consent Date at Subject Creation: 06-May-2026\n\n ADT-IR: No\n\n 3 or More Advanced Therapies: No\n\n Ustekinumab: No\n\n Only Oral 5-ASA Compounds: No\n\nDate of Subject Creation in IRT: 06-May-2026\n\nTransaction Date/Time (site local): 06-May-2026 10:33:13\n\nTransaction Date/Time (system local): 06-May-2026 08:33:13\n\nTransaction performed by: dstepek@vnbrno.cz\n\nIf you have questions about this notification, please contact 4G Clinical Support at http://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013_pk3237.pdf b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013_pk3237.pdf new file mode 100644 index 0000000..e0dddd1 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-06_Janssen_77242113UCO3001_Subject_CZ100132003_has_been_created_in_IRT_at_site_DD5-CZ10013_pk3237.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003.json b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003.json rename to IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003.pdf b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003_pk3510.json b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003_pk3510.json new file mode 100644 index 0000000..e7d5216 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003_pk3510.json @@ -0,0 +1,10 @@ +{ + "pk": 3510, + "title": "Subject_Number_Creation", + "label": "Janssen 77242113UCO3001 Subject CZ100032001 has been created in IRT at site DD5-CZ10003", + "event": "Create", + "actual_date": "2026-05-13", + "subject": "CZ100032001", + "study": "77242113UCO3001", + "text": "77242113UCO3001\n\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\nSubject CZ100032001 has been created in IRT.\n\nSite Details\n\nLocation: CZE\n\nSite: DD5-CZ10003\n\nInvestigator: Leksa Vaclav\n\nSubject Details\n\nSubject: CZ100032001\n\nIRT Subject Status: Screened\n\nRescreened Subject: No\n\nCohort: Adult subjects (18 years or older)\n\nInformed Consent Date at Subject Creation: 13-May-2026\n\n ADT-IR: No\n\n 3 or More Advanced Therapies: No\n\n Ustekinumab: No\n\n Only Oral 5-ASA Compounds: No\n\nDate of Subject Creation in IRT: 13-May-2026\n\nTransaction Date/Time (site local): 13-May-2026 07:44:11\n\nTransaction Date/Time (system local): 13-May-2026 05:44:11\n\nTransaction performed by: vaclav.leksa@seznam.cz\n\nIf you have questions about this notification, please contact 4G Clinical Support at http://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003_pk3510.pdf b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003_pk3510.pdf new file mode 100644 index 0000000..91cdd33 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-13_Janssen_77242113UCO3001_Subject_CZ100032001_has_been_created_in_IRT_at_site_DD5-CZ10003_pk3510.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016.json b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016.json rename to IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016.pdf b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016_pk4231.json b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016_pk4231.json new file mode 100644 index 0000000..def7326 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016_pk4231.json @@ -0,0 +1,10 @@ +{ + "pk": 4231, + "title": "Subject_Number_Creation", + "label": "Janssen 77242113UCO3001 Subject CZ100162002 has been created in IRT at site DD5-CZ10016", + "event": "Create", + "actual_date": "2026-05-27", + "subject": "CZ100162002", + "study": "77242113UCO3001", + "text": "77242113UCO3001\n\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\nSubject CZ100162002 has been created in IRT.\n\nSite Details\n\nLocation: CZE\n\nSite: DD5-CZ10016\n\nInvestigator: Robert Mudr\n\nSubject Details\n\nSubject: CZ100162002\n\nIRT Subject Status: Screened\n\nRescreened Subject: No\n\nCohort: Adult subjects (18 years or older)\n\nInformed Consent Date at Subject Creation: 27-May-2026\n\n ADT-IR: Yes\n\n 3 or More Advanced Therapies: No\n\n Ustekinumab: No\n\n Only Oral 5-ASA Compounds: No\n\nDate of Subject Creation in IRT: 27-May-2026\n\nTransaction Date/Time (site local): 27-May-2026 11:55:28\n\nTransaction Date/Time (system local): 27-May-2026 09:55:28\n\nTransaction performed by: petr.pekny@nmskb.cz\n\nIf you have questions about this notification, please contact 4G Clinical Support at http://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016_pk4231.pdf b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016_pk4231.pdf new file mode 100644 index 0000000..d0a5798 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-27_Janssen_77242113UCO3001_Subject_CZ100162002_has_been_created_in_IRT_at_site_DD5-CZ10016_pk4231.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001.json b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001.json rename to IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001.pdf b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001_pk4271.json b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001_pk4271.json new file mode 100644 index 0000000..cf7003a --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001_pk4271.json @@ -0,0 +1,10 @@ +{ + "pk": 4271, + "title": "Subject_Number_Creation", + "label": "Janssen 77242113UCO3001 Subject CZ100012004 has been created in IRT at site DD5-CZ10001", + "event": "Create", + "actual_date": "2026-05-28", + "subject": "CZ100012004", + "study": "77242113UCO3001", + "text": "77242113UCO3001\n\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\nSubject CZ100012004 has been created in IRT.\n\nSite Details\n\nLocation: CZE\n\nSite: DD5-CZ10001\n\nInvestigator: Matej Falc\n\nSubject Details\n\nSubject: CZ100012004\n\nIRT Subject Status: Screened\n\nRescreened Subject: No\n\nCohort: Adult subjects (18 years or older)\n\nInformed Consent Date at Subject Creation: 28-May-2026\n\n ADT-IR: No\n\n 3 or More Advanced Therapies: No\n\n Ustekinumab: No\n\n Only Oral 5-ASA Compounds: No\n\nDate of Subject Creation in IRT: 28-May-2026\n\nTransaction Date/Time (site local): 28-May-2026 07:14:21\n\nTransaction Date/Time (system local): 28-May-2026 05:14:21\n\nTransaction performed by: matesfalc@seznam.cz\n\nIf you have questions about this notification, please contact 4G Clinical Support at http://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001_pk4271.pdf b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001_pk4271.pdf new file mode 100644 index 0000000..6c368e2 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-05-28_Janssen_77242113UCO3001_Subject_CZ100012004_has_been_created_in_IRT_at_site_DD5-CZ10001_pk4271.pdf differ diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013.json b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013.json similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013.json rename to IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013.json diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013.pdf b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013.pdf similarity index 100% rename from IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013.pdf rename to IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013.pdf diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013_pk4461.json b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013_pk4461.json new file mode 100644 index 0000000..060e860 --- /dev/null +++ b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013_pk4461.json @@ -0,0 +1,10 @@ +{ + "pk": 4461, + "title": "Randomized", + "label": "Janssen 77242113UCO3001 Subject randomized CZ100132003 at site DD5-CZ10013", + "event": "I0", + "actual_date": "2026-06-02", + "subject": "CZ100132003", + "study": "77242113UCO3001", + "text": "77242113UCO3001\n\nJanssen Pharmaceuticals\nhttps://janssen.4gclinical.com\n\nSubject CZ100132003 has been randomized.\n\n The following medication(s) has been assigned to the subject:\n\n \n \n Medication No\n Medication Type\n Packaged Lot No\n Expiration Date\n \n \n \n 1056513\n Icotrokinra 320mg / placebo\n 4393030\n 19-Jan-2027\n \n \n \n\nSite Details\n\nLocation: CZE\n\nSite: DD5-CZ10013\n\nInvestigator: David Stepek\n\nSubject Details\n\nSubject: CZ100132003\n\nIRT Subject Status: Randomized\n\nCohort: Adult subjects (18 years or older)\n\n ADT-IR: No\n\n 3 or More Advanced Therapies: No\n\n Ustekinumab: No\n\n Only Oral 5-ASA Compounds: No\n \n Isolated Proctitis: No\n\nTransaction Date/Time (site local): 02-Jun-2026 08:19:11\n\nTransaction Date/Time (system local): 02-Jun-2026 06:19:11\n\nTransaction performed by: dstepek@vnbrno.cz\n\nIf you have questions about this notification, please contact 4G Clinical Support at http://support.4gclinical.com" +} \ No newline at end of file diff --git a/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013_pk4461.pdf b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013_pk4461.pdf new file mode 100644 index 0000000..a839d79 Binary files /dev/null and b/IWRS/Patients/IncomingSourceReportsDetails/77242113UCO3001/Zpracovano/2026-06-02_Janssen_77242113UCO3001_Subject_randomized_CZ100132003_at_site_DD5-CZ10013_pk4461.pdf differ diff --git a/IWRS/Patients/import_notifications_to_mongo.py b/IWRS/Patients/import_notifications_to_mongo.py new file mode 100644 index 0000000..3178df7 --- /dev/null +++ b/IWRS/Patients/import_notifications_to_mongo.py @@ -0,0 +1,163 @@ +""" +Import IWRS notifikací (PDF + JSON metadata) přímo do MongoDB. + +Nahrazuje původní 2-krokový flow: + 1) import_to_mysql.py: PDF/JSON → MySQL iwrs_notifications + 2) parse_notifications_to_mongo.py: MySQL → Mongo iwrs_notifications + +Nyní vše v jednom: PDF/JSON → Mongo iwrs_notifications (text parsovaný per typ, +PDF jako BinData). Po úspěšném importu se soubory přesunou do Zpracováno/. + +Idempotentní: _id = pk (IWRS unique identifier). +""" + +import os +import sys +import re +import json +import shutil +import datetime + +from bson.binary import Binary + +sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +from common.mongo_writer import get_db, to_date + +# parsery z původního skriptu +from parse_notifications_to_mongo import ( + parse_kv_lines, parse_medication_table, to_date as parse_to_date, + to_datetime as parse_to_datetime, +) + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +DETAILS_DIR = os.path.join(BASE_DIR, "IncomingSourceReportsDetails") +STUDIES = ["77242113UCO3001", "42847922MDD3003"] + + +def find_pairs(study): + """Vrátí seznam (json_path, pdf_path) — i když pdf neexistuje.""" + out_dir = os.path.join(DETAILS_DIR, study) + if not os.path.isdir(out_dir): + return [] + pairs = [] + import glob + for jp in sorted(glob.glob(os.path.join(out_dir, "*.json"))): + pp = jp.replace(".json", ".pdf") + pairs.append((jp, pp if os.path.exists(pp) else None)) + return pairs + + +def build_document(meta, pdf_bytes): + text = meta.get("text") or "" + kv = parse_kv_lines(text) + meds = parse_medication_table(text) + + dt_site = parse_to_datetime(kv.get("Transaction Date/Time (site local)")) + dt_sys = parse_to_datetime(kv.get("Transaction Date/Time (system local)")) + + date_fields = [ + "Informed Consent Date", + "Informed Consent Date at Screening", + "Informed Consent Date at Subject Creation", + "Date of Subject Creation in IRT", + "Date of Screening in IRT", + "Screenfail Date", + "Discontinuation date", + "Dispensation date", + "Returned Date", + ] + parsed_dates = {} + for f in date_fields: + if f in kv: + d = parse_to_date(kv[f]) + if d: + parsed_dates[f] = d + + pk = meta.get("pk") + actual_date = to_date(meta.get("actual_date")) + + doc = { + "_id": pk, + "pk": pk, + "study": meta.get("study"), + "subject": meta.get("subject"), + "title": meta.get("title"), + "label": meta.get("label"), + "event": meta.get("event"), + "actual_date": actual_date, + "site": kv.get("Site"), + "investigator": kv.get("Investigator"), + "location": kv.get("Location"), + "cohort": kv.get("Cohort"), + "irt_subject_status": kv.get("IRT Subject Status"), + "transaction_site_local": dt_site, + "transaction_system_local": dt_sys, + "transaction_by": kv.get("Transaction performed by"), + "medications": meds, + "fields": {k: v for k, v in kv.items() if k not in { + "Site", "Investigator", "Location", "Cohort", "IRT Subject Status", + "Subject", + "Transaction Date/Time (site local)", + "Transaction Date/Time (system local)", + "Transaction performed by", + }}, + "parsed_dates": parsed_dates, + "raw_text": text, + } + if pdf_bytes is not None: + doc["pdf"] = Binary(pdf_bytes) + return doc + + +def import_study(study): + pairs = find_pairs(study) + if not pairs: + print(f" [{study}] zadne nove notifikace") + return 0 + + db = get_db() + coll = db.iwrs_notifications + done_dir = os.path.join(DETAILS_DIR, study, "Zpracovano") + os.makedirs(done_dir, exist_ok=True) + + imported = 0 + failed = 0 + for json_path, pdf_path in pairs: + try: + with open(json_path, "r", encoding="utf-8") as f: + meta = json.load(f) + pdf_bytes = None + if pdf_path: + with open(pdf_path, "rb") as f: + pdf_bytes = f.read() + + if not meta.get("pk"): + print(f" CHYBI pk: {os.path.basename(json_path)}") + failed += 1 + continue + + doc = build_document(meta, pdf_bytes) + doc["last_imported_at"] = datetime.datetime.now() + coll.replace_one({"_id": doc["_id"]}, doc, upsert=True) + imported += 1 + + # presun zpracovany pair + shutil.move(json_path, os.path.join(done_dir, os.path.basename(json_path))) + if pdf_path: + shutil.move(pdf_path, os.path.join(done_dir, os.path.basename(pdf_path))) + except Exception as e: + print(f" CHYBA {os.path.basename(json_path)}: {e}") + failed += 1 + + print(f" [{study}] importovano={imported} selhalo={failed}") + return imported + + +def main(studies=None): + studies = studies or STUDIES + for s in studies: + import_study(s) + + +if __name__ == "__main__": + main(sys.argv[1:] or None) diff --git a/IWRS/Patients/import_to_mongo.py b/IWRS/Patients/import_to_mongo.py new file mode 100644 index 0000000..4309017 --- /dev/null +++ b/IWRS/Patients/import_to_mongo.py @@ -0,0 +1,229 @@ +""" +Import Patients dat (subject_summary, visits) z XLSX do MongoDB. + +Volá se z IWRS/Patients/run_all.py po stažení reportů. Hlavní kolekce + snapshoty. +""" + +import os +import re +import sys +import glob +import datetime + +import pandas as pd + +sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +from common.mongo_writer import ( + to_str, to_int, to_float, to_date, + ensure_indexes, log_import, bulk_upsert_with_snapshot, +) + + +# ── XLSX parsery ───────────────────────────────────────────────────────────── + +def read_summary_df(path): + raw = pd.read_excel(path, header=None) + header_row = None + for i, row in raw.iterrows(): + if "Subject" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + raise ValueError(f"Hlavickovy radek nenalezen v {path}") + return pd.read_excel(path, header=header_row).dropna(how="all") + + +def parse_detail_visits(path): + df = pd.read_excel(path, sheet_name="patient_detail_report", header=None) + header_row = None + for i, row in df.iterrows(): + if "Visit Type" in [str(v).strip() for v in row]: + header_row = i + break + if header_row is None: + return [] + visits_df = df.iloc[header_row + 1:].copy() + visits_df.columns = range(visits_df.shape[1]) + rows = [] + for _, r in visits_df.iterrows(): + visit_type = to_str(r.get(0)) + if visit_type not in ("Past", "Upcoming"): + continue + rows.append({ + "visit_type": visit_type, + "scheduled_date": to_date(r.get(1)), + "window_days": to_str(r.get(2)), + "actual_date": to_date(r.get(3)), + "irt_transaction_no": to_int(r.get(4)), + "irt_transaction_description": to_str(r.get(5)), + "medication_assignment": to_str(r.get(6)), + "quantity_assigned": to_int(r.get(7)), + "medication_id": to_str(r.get(8)), + }) + return rows + + +# ── transformace summary řádků na Mongo dokumenty ───────────────────────────── + +# Společné sloupce (mají obě studie pod stejným XLSX názvem) +COMMON_FIELDS = { + "subject": "Subject", + "prior_subject_identifier": "Prior Subject Identifier", + "site": "Site", + "investigator": "Investigator", + "location": "Location", + "cohort_per_irt": "Cohort per IRT", + "informed_consent_date": "Informed Consent Date", + "age": "Subject's age collection", + "irt_subject_status": "IRT Subject Status", + "last_irt_transaction": "Last Recorded IRT Transaction", + "last_irt_transaction_date_local": "Last Recorded IRT Transaction Date [Local]", + "last_irt_transaction_date_utc": "Last Recorded IRT Transaction Date (UTC)", + "next_irt_transaction": "Next Expected IRT Transaction", + "next_irt_transaction_date_local": "Next Expected IRT Transaction Date [Local]", +} + +# UCO3001-specifická pole +UCO_FIELDS = { + "adolescent_assent_date": ("Adolescent Assent Date", to_date), + "weight": ("Subject's weight collection", to_float), + "rescreened_subject": ("Rescreened Subject", to_str), + "adt_ir": ("ADT-IR", to_str), + "three_or_more_advanced_therapies": ("3 or More Advanced Therapies", to_str), + "only_oral_5asa_compounds": ("Only Oral 5-ASA Compounds", to_str), + "ustekinumab": ("Ustekinumab", to_str), + "isolated_proctitis": ("Isolated Proctitis", to_str), + "clinical_responder_status_i12_m0": ("Clinical Responder Status at I-12 / M-0", to_str), + "i0_rand_date_local": ("I0_RAND_TIMESTAMP_LOCAL [Local]", to_date), + "most_recent_med_assignment_date": ("Most Recent Medication Assignment Transaction [Local]", to_date), + "days_since_last_med_assignment": ("Days Since Last Medication Assignment Transaction", to_int), + "patient_forecast_status": ("Patient Forecast Status", to_str), + "patient_forecast_status_changed_date":("Patient Forecast Status Changed Date (UTC)", to_date), +} + +# MDD3003-specifická pole +MDD_FIELDS = { + "madrs_criteria_integrated": ("MADRS response criteria integrated or manually entered", to_str), + "madrs_criteria_v15": ("MADRS response criteria v1.5 from RAVE", to_str), + "madrs_criteria_v16": ("MADRS response criteria v1.6 from RAVE", to_str), + "madrs_criteria_v17": ("MADRS response criteria v1.7 from RAVE", to_str), + "stratification_country": ("Stratification Country", to_str), + "age_group": ("Age Group", to_str), + "stable_remitters": ("Stable Remitters vs. Non Stable Remitters", to_str), + "date_screened": ("Date Screened [Local]", to_date), + "date_screen_failed": ("Date Screen Failed [Local]", to_date), + "date_randomized_part1": ("Date Randomized Part 1 [Local]", to_date), + "date_early_withdraw_randomized_part1": ("Date Early Withdraw Randomized Part 1 [Local]", to_date), + "date_open_label_induction": ("Date Open Label Induction [Local]", to_date), + "date_early_withdraw_open_label_induction":("Date Early Withdraw Open Label Induction [Local]", to_date), + "date_randomized_part2": ("Date Randomized Part 2 [Local]", to_date), + "date_early_withdraw_randomized_part2": ("Date Early Withdraw Randomized Part 2 [Local]", to_date), + "date_completed": ("Date Completed [Local]", to_date), + "date_unblinded": ("Date Unblinded [Local]", to_date), +} + + +def row_to_summary_doc(study, r, cols): + doc = {"study": study} + # společná pole + for mongo_key, xlsx_key in COMMON_FIELDS.items(): + if xlsx_key not in cols: + continue + v = r[xlsx_key] + if mongo_key.endswith("_date") or "date_local" in mongo_key or "date_utc" in mongo_key: + doc[mongo_key] = to_date(v) + elif mongo_key == "age": + doc[mongo_key] = to_int(v) + else: + doc[mongo_key] = to_str(v) + + # study-specifická + specific = UCO_FIELDS if study == "77242113UCO3001" else MDD_FIELDS + for mongo_key, (xlsx_key, fn) in specific.items(): + if xlsx_key in cols: + doc[mongo_key] = fn(r[xlsx_key]) + + subject = doc.get("subject") + if not subject: + return None + doc["_id"] = f"{study}:{subject}" + return doc + + +def visit_to_doc(study, subject, v): + """visit row + study/subject → Mongo dokument s deterministickým _id.""" + # _id: study:subject:irt_no nebo scheduled_date (pokud chybí transaction_no, často Upcoming) + key = v["irt_transaction_no"] if v["irt_transaction_no"] is not None else ( + v["scheduled_date"].strftime("%Y%m%d") if v["scheduled_date"] else "noidx" + ) + # další rozlišení (víc řádků na stejný visit = unique by description) + desc_key = (v.get("irt_transaction_description") or "").replace(" ", "_")[:30] + doc = { + "_id": f"{study}:{subject}:{key}:{desc_key}", + "study": study, + "subject": subject, + **v, + } + return doc + + +# ── hlavní importy ─────────────────────────────────────────────────────────── + +def import_subject_summary(study, summary_path): + print(f" [{study}] subject_summary: {os.path.basename(summary_path)}") + df = read_summary_df(summary_path) + cols = df.columns.tolist() + docs = [] + for _, r in df.iterrows(): + d = row_to_summary_doc(study, r, cols) + if d: + docs.append(d) + import_id = log_import(study, os.path.basename(summary_path), "subject_summary", {"subjects": len(docs)}) + n = bulk_upsert_with_snapshot( + "iwrs_subject_summary", "iwrs_subject_summary_snapshots", + docs, import_id, + ) + print(f" import_id={import_id} subjektu={n}") + return import_id + + +def import_visits(study, detail_files): + print(f" [{study}] visits z {len(detail_files)} detail souboru") + docs = [] + for path in detail_files: + m = re.search(r"\d{4}-\d{2}-\d{2} \S+ (\S+) Subject Detail\.xlsx", os.path.basename(path)) + subject = m.group(1) if m else "UNKNOWN" + visits = parse_detail_visits(path) + for v in visits: + docs.append(visit_to_doc(study, subject, v)) + # dedupe podle _id (víc řádků se stejným klíčem → bereme posledni) + by_id = {d["_id"]: d for d in docs} + docs = list(by_id.values()) + + import_id = log_import(study, "detail_reports", "visits", {"visits": len(docs)}) + n = bulk_upsert_with_snapshot( + "iwrs_visits", "iwrs_visits_snapshots", + docs, import_id, + ) + print(f" import_id={import_id} vizit={n}") + return import_id + + +# ── main entry (volá se z run_all.py) ──────────────────────────────────────── + +def run(study, summary_path, details_dir, today): + ensure_indexes() + import_subject_summary(study, summary_path) + detail_files = sorted(glob.glob( + os.path.join(details_dir, study, f"{today} {study} * Subject Detail.xlsx") + )) + import_visits(study, detail_files) + + +if __name__ == "__main__": + # CLI: python import_to_mongo.py + if len(sys.argv) >= 4: + run(sys.argv[1], sys.argv[2], sys.argv[3], + datetime.date.today().strftime("%Y-%m-%d")) + else: + print("Pouziti: python import_to_mongo.py ") diff --git a/IWRS/Patients/parse_notifications_to_mongo.py b/IWRS/Patients/parse_notifications_to_mongo.py new file mode 100644 index 0000000..0f2fc3b --- /dev/null +++ b/IWRS/Patients/parse_notifications_to_mongo.py @@ -0,0 +1,246 @@ +""" +Parsuje texty IWRS notifikací z MySQL (iwrs_notifications) a ukládá strukturovaná +data do MongoDB (databáze 'studie', kolekce 'iwrs'). + +Idempotentní: upsert podle pk (unikátní identifikátor notifikace v IWRS). +""" + +import re +import datetime +import sys + +import mysql.connector +from pymongo import MongoClient, ASCENDING + +import db_config + +MONGO_URI = "mongodb://192.168.1.76:27017" +MONGO_DB = "studie" +MONGO_COLL = "iwrs_notifications" + + +# ── parsery ────────────────────────────────────────────────────────────────── + +def parse_kv_lines(text): + """Vytáhne všechny řádky typu 'Klíč: Hodnota' do dictu. + Když je hodnota za dvojtečkou prázdná, vezme se první neprázdný následující řádek.""" + out = {} + lines = [l.strip() for l in text.splitlines()] + pending_key = None + for line in lines: + # čekáme na hodnotu pro klíč z předchozího řádku + if pending_key is not None: + if not line: + continue + if ":" not in line: + out.setdefault(pending_key, line) + pending_key = None + continue + # další řádek je sám "Klíč: Hodnota" → zahodíme pending a zpracujeme normálně + pending_key = None + + if not line or ":" not in line: + continue + if line.lower().startswith("http"): + continue + key, _, val = line.partition(":") + key = key.strip() + val = val.strip() + if not key or (" " in key and len(key.split()) > 8): + continue + if not val: + pending_key = key + continue + out.setdefault(key, val) + return out + + +DATE_RE = re.compile(r"^\d{2}-[A-Z][a-z]{2}-\d{4}$") +DATETIME_RE = re.compile(r"^(\d{2}-[A-Z][a-z]{2}-\d{4})\s+(\d{2}:\d{2}:\d{2})$") + + +def to_date(s): + if not s: + return None + s = s.strip() + if DATE_RE.match(s): + try: + return datetime.datetime.strptime(s, "%d-%b-%Y") + except ValueError: + return None + return None + + +def to_datetime(s): + if not s: + return None + s = re.sub(r"\s+", " ", s.strip()) + m = DATETIME_RE.match(s) + if m: + try: + return datetime.datetime.strptime(f"{m.group(1)} {m.group(2)}", "%d-%b-%Y %H:%M:%S") + except ValueError: + return None + return None + + +MED_ROW_RE = re.compile( + r"(?P\d{7})\s*[\s\n]*" + r"(?P[A-Za-z][A-Za-z0-9 /+\-]+?)\s*[\s\n]*" + r"(?P[A-Z0-9]{5,10})\s*[\s\n]*" + r"(?P\d{2}-[A-Z][a-z]{2}-\d{4})" +) + + +def parse_medication_table(text): + """Najde záznamy medikace (med_no, med_type, lot, expirace) v textu. + Pracuje s oběma formáty (UCO3001 multiline i MDD3003 concatenated).""" + rows = [] + # zkomprimuj whitespace pro snadnější regex + compact = re.sub(r"\s+", " ", text) + for m in MED_ROW_RE.finditer(compact): + med_type = m.group("type").strip() + # uřízni nadbytečné koncové fragmenty + med_type = re.sub(r"\s+(Packaged|Lot|Expiration|No|Date|Medication).*$", "", med_type).strip() + rows.append({ + "medication_no": m.group("no"), + "medication_type": med_type, + "lot_no": m.group("lot"), + "expiration_date": to_date(m.group("exp")), + }) + # dedupe + seen = set() + unique = [] + for r in rows: + key = (r["medication_no"], r["lot_no"]) + if key in seen: + continue + seen.add(key) + unique.append(r) + return unique + + +# fields, které chceme v dokumentu vyloučit z kv (ošklivé / nepotřebné) +KV_BLACKLIST = { + "If you have questions about this notification, please contact 4G Clinical Support at", +} + + +def build_document(row): + pk, study, subject, title, label, event, actual_date, text = row + + kv = parse_kv_lines(text) + meds = parse_medication_table(text) + + # převod známých datumových/datetime polí + dt_site = to_datetime(kv.get("Transaction Date/Time (site local)")) + dt_sys = to_datetime(kv.get("Transaction Date/Time (system local)")) + + date_fields = [ + "Informed Consent Date", + "Informed Consent Date at Screening", + "Informed Consent Date at Subject Creation", + "Date of Subject Creation in IRT", + "Date of Screening in IRT", + "Screenfail Date", + "Discontinuation date", + "Dispensation date", + "Returned Date", + ] + parsed_dates = {} + for f in date_fields: + if f in kv: + d = to_date(kv[f]) + if d: + parsed_dates[f] = d + + doc = { + "_id": pk, # použij IWRS pk jako _id (idempotence) + "pk": pk, + "study": study, + "subject": subject, + "title": title, + "label": label, + "event": event, + "actual_date": ( + datetime.datetime.combine(actual_date, datetime.time()) + if isinstance(actual_date, datetime.date) and not isinstance(actual_date, datetime.datetime) + else actual_date + ), + "site": kv.get("Site"), + "investigator": kv.get("Investigator"), + "location": kv.get("Location"), + "cohort": kv.get("Cohort"), + "irt_subject_status": kv.get("IRT Subject Status"), + "transaction_site_local": dt_site, + "transaction_system_local": dt_sys, + "transaction_by": kv.get("Transaction performed by"), + "medications": meds, + "fields": {k: v for k, v in kv.items() if k not in { + "Site", "Investigator", "Location", "Cohort", "IRT Subject Status", + "Subject", + "Transaction Date/Time (site local)", + "Transaction Date/Time (system local)", + "Transaction performed by", + }}, + "parsed_dates": parsed_dates, + "raw_text": text, + } + return doc + + +# ── main ───────────────────────────────────────────────────────────────────── + +def main(studies=None): + conn = mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + cur = conn.cursor() + + if studies: + placeholders = ",".join(["%s"] * len(studies)) + cur.execute( + f"SELECT pk, study, subject, title, label, event, actual_date, text " + f"FROM iwrs_notifications WHERE study IN ({placeholders})", + studies, + ) + else: + cur.execute( + "SELECT pk, study, subject, title, label, event, actual_date, text " + "FROM iwrs_notifications" + ) + rows = cur.fetchall() + cur.close() + conn.close() + print(f" Nacteno {len(rows)} notifikaci z MySQL") + + mc = MongoClient(MONGO_URI, serverSelectionTimeoutMS=5000) + coll = mc[MONGO_DB][MONGO_COLL] + + # indexy + coll.create_index([("study", ASCENDING), ("subject", ASCENDING)]) + coll.create_index([("study", ASCENDING), ("title", ASCENDING)]) + coll.create_index([("actual_date", ASCENDING)]) + + upserts = 0 + for row in rows: + doc = build_document(row) + coll.replace_one({"_id": doc["_id"]}, doc, upsert=True) + upserts += 1 + + print(f" Upsert {upserts} dokumentu do {MONGO_DB}.{MONGO_COLL}") + + # stats + print("\n Statistika v Mongo:") + for r in coll.aggregate([ + {"$group": {"_id": {"study": "$study", "title": "$title"}, "count": {"$sum": 1}}}, + {"$sort": {"_id.study": 1, "_id.title": 1}}, + ]): + print(f" {r['_id']['study']} | {r['_id']['title']:30s} | {r['count']}") + + +if __name__ == "__main__": + studies = sys.argv[1:] if len(sys.argv) > 1 else None + main(studies) diff --git a/IWRS/backfill_mysql_to_mongo.py b/IWRS/backfill_mysql_to_mongo.py new file mode 100644 index 0000000..cc52b2e --- /dev/null +++ b/IWRS/backfill_mysql_to_mongo.py @@ -0,0 +1,272 @@ +""" +Jednorázový backfill historických dat z MySQL do MongoDB. + +Pro každou snapshotovanou tabulku: + - všechny řádky všech import_id → snapshot kolekce + - řádky z MAX(import_id) per studie → hlavní kolekce (replace_one upsert) + +Pro idempotentní tabulky (notifications, destruction): + - všechno → hlavní kolekce (replace_one upsert) + +Notifikace jsou už v Mongo z parse_notifications_to_mongo.py — přeskočí se. +""" + +import os +import sys +import datetime + +import mysql.connector +from pymongo import ReplaceOne + +sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) +from common.mongo_writer import get_db, ensure_indexes, MONGO_DB + +sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), "Patients")) +import db_config + + +def conn(): + return mysql.connector.connect( + host=db_config.DB_HOST, port=db_config.DB_PORT, + user=db_config.DB_USER, password=db_config.DB_PASSWORD, + database=db_config.DB_NAME, + ) + + +def dict_rows(cursor): + cols = [d[0] for d in cursor.description] + for row in cursor: + yield dict(zip(cols, row)) + + +def to_mongo_date(v): + if isinstance(v, datetime.datetime): + return v + if isinstance(v, datetime.date): + return datetime.datetime(v.year, v.month, v.day) + return v + + +def normalize(doc): + return {k: to_mongo_date(v) for k, v in doc.items() if v is not None} + + +# ── 1. iwrs_imports → iwrs_imports ─────────────────────────────────────────── + +def backfill_imports(): + print("[iwrs_imports]") + c = conn(); cur = c.cursor() + cur.execute("SELECT import_id, study, imported_at, source_file, report_type FROM iwrs_import") + db = get_db() + ops = [] + for r in dict_rows(cur): + d = normalize(r) + d["_id"] = d["import_id"] + ops.append(ReplaceOne({"_id": d["_id"]}, d, upsert=True)) + if ops: + db.iwrs_imports.bulk_write(ops, ordered=False) + print(f" -> {len(ops)} import logu") + cur.close(); c.close() + + +# ── 2. subject_summary (UCO + MDD sjednoceno) ──────────────────────────────── + +UCO_TABLE = "iwrs_uco3001_subject_summary" +MDD_TABLE = "iwrs_mdd3003_subject_summary" + + +def backfill_subject_summary(): + print("[iwrs_subject_summary]") + db = get_db() + # zjisti import_id → study mapování + c = conn(); cur = c.cursor() + cur.execute("SELECT import_id, study, imported_at FROM iwrs_import") + import_meta = {r[0]: {"study": r[1], "imported_at": r[2]} for r in cur.fetchall()} + cur.close(); c.close() + + total_snap = 0 + total_main = 0 + + for table, study in [(UCO_TABLE, "77242113UCO3001"), (MDD_TABLE, "42847922MDD3003")]: + c = conn(); cur = c.cursor() + cur.execute(f"SELECT * FROM {table}") + all_rows = list(dict_rows(cur)) + cur.close(); c.close() + + # MAX import_id per studie (pro hlavní kolekci) + import_ids = [r["import_id"] for r in all_rows if r.get("import_id") is not None] + if not import_ids: + continue + max_import = max(import_ids) + + # snapshoty: každý řádek → iwrs_subject_summary_snapshots + snap_docs = [] + main_ops = [] + for r in all_rows: + doc = normalize(r) + doc.pop("id", None) # MySQL autoincrement nezachováváme + doc["study"] = study + subject = doc.get("subject") + if not subject: + continue + natural = f"{study}:{subject}" + + snap = dict(doc) + snap["natural_id"] = natural + meta = import_meta.get(doc.get("import_id"), {}) + snap["imported_at"] = meta.get("imported_at") + snap_docs.append(snap) + + if doc["import_id"] == max_import: + main = dict(doc) + main["_id"] = natural + main["last_import_id"] = max_import + main["last_imported_at"] = meta.get("imported_at") + main_ops.append(ReplaceOne({"_id": natural}, main, upsert=True)) + + if snap_docs: + db.iwrs_subject_summary_snapshots.insert_many(snap_docs, ordered=False) + total_snap += len(snap_docs) + if main_ops: + db.iwrs_subject_summary.bulk_write(main_ops, ordered=False) + total_main += len(main_ops) + print(f" {study}: snap={len(snap_docs)} main={len(main_ops)}") + + print(f" TOTAL snap={total_snap} main={total_main}") + + +# ── 3. visits, shipments, items, inventory (per import_id) ─────────────────── + +def backfill_per_import(mysql_table, main_coll, snap_coll, id_fn, + drop_cols=("id",)): + print(f"[{mysql_table} -> {main_coll}/{snap_coll}]") + db = get_db() + c = conn(); cur = c.cursor() + + # import_id metadata + cur.execute("SELECT import_id, imported_at FROM iwrs_import") + import_meta = {r[0]: r[1] for r in cur.fetchall()} + + # MAX import_id per studie + cur.execute(f"SELECT study, MAX(import_id) FROM {mysql_table} GROUP BY study") + max_per_study = {r[0]: r[1] for r in cur.fetchall()} + + cur.execute(f"SELECT * FROM {mysql_table}") + all_rows = list(dict_rows(cur)) + cur.close(); c.close() + + snap_docs = [] + main_ops = [] + seen_main = set() + for r in all_rows: + doc = normalize(r) + for col in drop_cols: + doc.pop(col, None) + natural = id_fn(doc) + if not natural: + continue + imp_at = import_meta.get(doc.get("import_id")) + + snap = dict(doc) + snap["natural_id"] = natural + snap["imported_at"] = imp_at + snap_docs.append(snap) + + study = doc.get("study") + if study and doc.get("import_id") == max_per_study.get(study): + if natural in seen_main: + continue + seen_main.add(natural) + main = dict(doc) + main["_id"] = natural + main["last_import_id"] = doc["import_id"] + main["last_imported_at"] = imp_at + main_ops.append(ReplaceOne({"_id": natural}, main, upsert=True)) + + if snap_docs: + db[snap_coll].insert_many(snap_docs, ordered=False) + if main_ops: + db[main_coll].bulk_write(main_ops, ordered=False) + print(f" snap={len(snap_docs)} main={len(main_ops)}") + + +def visit_id(doc): + s, sub = doc.get("study"), doc.get("subject") + if not s or not sub: + return None + key = doc.get("irt_transaction_no") + if key is None: + sd = doc.get("scheduled_date") + key = sd.strftime("%Y%m%d") if sd else "noidx" + desc = (doc.get("irt_transaction_description") or "").replace(" ", "_")[:30] + return f"{s}:{sub}:{key}:{desc}" + + +def shipment_id_(doc): + return doc.get("shipment_id") + + +def shipment_item_id(doc): + s, m = doc.get("shipment_id"), doc.get("medication_id") + return f"{s}:{m}" if s and m else None + + +def inventory_id(doc): + s, m = doc.get("site"), doc.get("medication_id") + return f"{s}:{m}" if s and m else None + + +# ── 4. destruction (idempotentní, jen do main) ─────────────────────────────── + +def backfill_destruction(): + print("[iwrs_destruction]") + db = get_db() + c = conn(); cur = c.cursor() + cur.execute("SELECT * FROM iwrs_destruction") + rows = list(dict_rows(cur)) + cur.close(); c.close() + ops = [] + seen = set() + for r in rows: + doc = normalize(r) + doc.pop("id", None) + basket, med = doc.get("basket_id"), doc.get("medication_id") + if not basket or not med: + continue + nid = f"{basket}:{med}" + if nid in seen: + continue + seen.add(nid) + doc["_id"] = nid + ops.append(ReplaceOne({"_id": nid}, doc, upsert=True)) + if ops: + db.iwrs_destruction.bulk_write(ops, ordered=False) + print(f" -> {len(ops)} destrukci") + + +# ── main ───────────────────────────────────────────────────────────────────── + +def main(): + print(f"Cilova DB: {MONGO_DB}") + ensure_indexes() + backfill_imports() + backfill_subject_summary() + backfill_per_import("iwrs_subject_visits", "iwrs_visits", "iwrs_visits_snapshots", visit_id) + backfill_per_import("iwrs_shipments", "iwrs_shipments", "iwrs_shipments_snapshots", shipment_id_) + backfill_per_import("iwrs_shipment_items", "iwrs_shipment_items", "iwrs_shipment_items_snapshots", shipment_item_id) + backfill_per_import("iwrs_inventory", "iwrs_inventory", "iwrs_inventory_snapshots", inventory_id) + backfill_destruction() + + # finalni statistika + db = get_db() + print("\nFINALNI STAV V MONGO:") + for coll in ["iwrs_imports","iwrs_subject_summary","iwrs_visits","iwrs_notifications", + "iwrs_shipments","iwrs_shipment_items","iwrs_inventory","iwrs_destruction", + "iwrs_subject_summary_snapshots","iwrs_visits_snapshots", + "iwrs_shipments_snapshots","iwrs_shipment_items_snapshots","iwrs_inventory_snapshots"]: + n = db[coll].count_documents({}) + print(f" {coll:42s} {n}") + + +if __name__ == "__main__": + main() diff --git a/IWRS/common/__init__.py b/IWRS/common/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/IWRS/common/mongo_writer.py b/IWRS/common/mongo_writer.py new file mode 100644 index 0000000..043aca9 --- /dev/null +++ b/IWRS/common/mongo_writer.py @@ -0,0 +1,235 @@ +""" +Sdílený Mongo writer pro IWRS importy. + +Databáze: studie +Hlavní kolekce (upsert = aktuální stav): + iwrs_imports, iwrs_subject_summary, iwrs_visits, iwrs_notifications, + iwrs_shipments, iwrs_shipment_items, iwrs_inventory, iwrs_destruction + +Snapshot kolekce (append-only s import_id): + iwrs_subject_summary_snapshots, iwrs_visits_snapshots, + iwrs_shipments_snapshots, iwrs_shipment_items_snapshots, + iwrs_inventory_snapshots +""" + +import datetime +import numpy as np +import pandas as pd +from pymongo import MongoClient, ASCENDING + +MONGO_URI = "mongodb://192.168.1.76:27017" +MONGO_DB = "studie" + +# ── type converters (sdílené napříč importéry) ────────────────────────────── + +def _py(val): + if isinstance(val, np.generic): + return val.item() + return val + + +def to_str(val): + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + s = str(val).strip() + return None if s.lower() in ("nan", "nat", "none", "") else s + + +def to_int(val): + val = _py(val) + try: + v = float(val) + return None if (v != v) else int(v) + except (TypeError, ValueError): + return None + + +def to_float(val): + val = _py(val) + try: + v = float(val) + return None if (v != v) else float(v) + except (TypeError, ValueError): + return None + + +def to_date(val): + """Vrací datetime (00:00:00) — Mongo nemá samostatný DATE typ.""" + val = _py(val) + if val is None: + return None + if isinstance(val, float) and (val != val): + return None + try: + if pd.isna(val): + return None + except (TypeError, ValueError): + pass + if isinstance(val, pd.Timestamp): + return None if pd.isna(val) else datetime.datetime(val.year, val.month, val.day) + if isinstance(val, datetime.datetime): + return datetime.datetime(val.year, val.month, val.day) + if isinstance(val, datetime.date): + return datetime.datetime(val.year, val.month, val.day) + s = str(val).strip() + if not s or s.lower() in ("nat", "nan", "none", ""): + return None + for fmt in ("%Y-%m-%d", "%d-%b-%Y", "%d-%m-%Y", "%Y-%m-%d %H:%M:%S"): + try: + d = datetime.datetime.strptime(s, fmt) + return datetime.datetime(d.year, d.month, d.day) + except ValueError: + pass + return None + + +# ── connection / indexy ────────────────────────────────────────────────────── + +_client = None + + +def get_db(): + global _client + if _client is None: + _client = MongoClient(MONGO_URI, serverSelectionTimeoutMS=5000) + return _client[MONGO_DB] + + +def ensure_indexes(): + db = get_db() + db.iwrs_subject_summary.create_index([("study", ASCENDING), ("subject", ASCENDING)]) + db.iwrs_subject_summary.create_index([("study", ASCENDING), ("site", ASCENDING)]) + db.iwrs_subject_summary.create_index([("irt_subject_status", ASCENDING)]) + + db.iwrs_visits.create_index([("study", ASCENDING), ("subject", ASCENDING)]) + db.iwrs_visits.create_index([("study", ASCENDING), ("scheduled_date", ASCENDING)]) + + db.iwrs_notifications.create_index([("study", ASCENDING), ("subject", ASCENDING)]) + db.iwrs_notifications.create_index([("study", ASCENDING), ("title", ASCENDING)]) + db.iwrs_notifications.create_index([("actual_date", ASCENDING)]) + + db.iwrs_shipments.create_index([("study", ASCENDING)]) + db.iwrs_shipments.create_index([("status", ASCENDING)]) + db.iwrs_shipments.create_index([("shipped_date", ASCENDING)]) + + db.iwrs_shipment_items.create_index([("shipment_id", ASCENDING)]) + db.iwrs_shipment_items.create_index([("medication_id", ASCENDING)]) + db.iwrs_shipment_items.create_index([("packaged_lot_no", ASCENDING)]) + + db.iwrs_inventory.create_index([("study", ASCENDING), ("site", ASCENDING)]) + db.iwrs_inventory.create_index([("medication_id", ASCENDING)]) + db.iwrs_inventory.create_index([("expiration_date", ASCENDING)]) + + db.iwrs_destruction.create_index([("study", ASCENDING), ("basket_id", ASCENDING)]) + db.iwrs_destruction.create_index([("medication_id", ASCENDING)]) + + # snapshot kolekce mají import_id index + for snap in [ + "iwrs_subject_summary_snapshots", + "iwrs_visits_snapshots", + "iwrs_shipments_snapshots", + "iwrs_shipment_items_snapshots", + "iwrs_inventory_snapshots", + ]: + db[snap].create_index([("import_id", ASCENDING)]) + db[snap].create_index([("study", ASCENDING)]) + + +# ── import log ─────────────────────────────────────────────────────────────── + +def log_import(study, source_file, report_type, counts=None): + """Zapíše záznam o běhu importu. Vrátí import_id (int sekvenční).""" + db = get_db() + # sekvenční import_id (max + 1) + last = db.iwrs_imports.find_one(sort=[("import_id", -1)]) + next_id = (last["import_id"] + 1) if last else 1 + doc = { + "import_id": next_id, + "study": study, + "imported_at": datetime.datetime.now(), + "source_file": source_file, + "report_type": report_type, + "counts": counts or {}, + } + db.iwrs_imports.insert_one(doc) + return next_id + + +# ── upsert + snapshot ──────────────────────────────────────────────────────── + +def upsert_with_snapshot(collection, snapshot_collection, doc, import_id): + """Upsertne dokument do hlavní kolekce + zapíše snapshot. + + `doc` musí mít `_id`. Hlavní dokument dostane last_import_id/last_imported_at, + snapshot kopii s import_id a originálním _id přesunutým do natural_id. + """ + db = get_db() + now = datetime.datetime.now() + main_doc = dict(doc) + main_doc["last_import_id"] = import_id + main_doc["last_imported_at"] = now + db[collection].replace_one({"_id": doc["_id"]}, main_doc, upsert=True) + + snap = dict(doc) + snap["natural_id"] = snap.pop("_id") + snap["import_id"] = import_id + snap["imported_at"] = now + db[snapshot_collection].insert_one(snap) + + +def upsert_only(collection, doc, import_id=None): + """Upsert bez snapshotu (pro immutable kolekce: notifications, destruction).""" + db = get_db() + main_doc = dict(doc) + if import_id is not None: + main_doc["last_import_id"] = import_id + main_doc["last_imported_at"] = datetime.datetime.now() + db[collection].replace_one({"_id": doc["_id"]}, main_doc, upsert=True) + + +def bulk_upsert_with_snapshot(collection, snapshot_collection, docs, import_id): + """Hromadný upsert pro výkon.""" + if not docs: + return 0 + db = get_db() + now = datetime.datetime.now() + from pymongo import ReplaceOne + + main_ops = [] + snap_docs = [] + for doc in docs: + main = dict(doc) + main["last_import_id"] = import_id + main["last_imported_at"] = now + main_ops.append(ReplaceOne({"_id": doc["_id"]}, main, upsert=True)) + + snap = dict(doc) + snap["natural_id"] = snap.pop("_id") + snap["import_id"] = import_id + snap["imported_at"] = now + snap_docs.append(snap) + + db[collection].bulk_write(main_ops, ordered=False) + db[snapshot_collection].insert_many(snap_docs, ordered=False) + return len(docs) + + +def bulk_upsert_only(collection, docs, import_id=None): + if not docs: + return 0 + db = get_db() + now = datetime.datetime.now() + from pymongo import ReplaceOne + + ops = [] + for doc in docs: + main = dict(doc) + if import_id is not None: + main["last_import_id"] = import_id + main["last_imported_at"] = now + ops.append(ReplaceOne({"_id": doc["_id"]}, main, upsert=True)) + db[collection].bulk_write(ops, ordered=False) + return len(docs) diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..2219753 --- /dev/null +++ b/TODO.md @@ -0,0 +1,6 @@ +# TODO + +## Bezpečnost Tower / síť +- [ ] Vyndat heslo roota (7309208104) z `Python-runner/python_runner.md` a skriptů → `.env` / proměnná prostředí +- [ ] MySQL tunely z ordinace převést na SSH klíč, pak na Toweru vypnout `PasswordAuthentication` +- [x] Omezit SSH Toweru (NAT pravidlo 27 na MikroTiku) na IP ordinace přes address-list `ordinace` (78.44.195.114, 185.140.244.138) — 2026-06-02 diff --git a/claude-memory/project_claude_learning.md b/claude-memory/project_claude_learning.md new file mode 100644 index 0000000..60357ea --- /dev/null +++ b/claude-memory/project_claude_learning.md @@ -0,0 +1,29 @@ +--- +name: project-claude-learning +description: "Stav Claude Code learning path z claude-howto repa — úroveň, mezery, doporučené projekty" +metadata: + node_type: memory + type: project + originSessionId: 2ed1a640-5825-4eb5-98bc-748c8b15e08d +--- + +Vladimir prošel `/self-assessment` z [claude-howto](U:/janssen/claude-howto/) repa dne 2026-06-03. + +**Úroveň:** Level 2 — Intermediate (3/8 quick assessment) + +**Zvládnuté:** CLI základy, CLAUDE.md/memory (viz [[setup-memory-sync]]), MCP servery (medevio, medicus-firebird, fotky-buzalkovi) + +**Mezery k doučení (v pořadí priorit):** +1. Custom slash commands & Skills — [claude-howto/01-slash-commands/](U:/janssen/claude-howto/01-slash-commands/), [03-skills/](U:/janssen/claude-howto/03-skills/) +2. Subagenty (`.claude/agents/`) — [04-subagents/](U:/janssen/claude-howto/04-subagents/) +3. Hooks (PreToolUse/PostToolUse) — [06-hooks/](U:/janssen/claude-howto/06-hooks/) +4. Print mode `claude -p` pro CI/CD — [10-cli/](U:/janssen/claude-howto/10-cli/) + +**Navržené praktické projekty propojené s reálnou prací:** +- EDC monitoring skill + subagent (navazuje na [[project-edc-mongo]]) +- Medevio asistent skill přes existující MCP server +- IWRS xlsx validator subagent + hook (navazuje na [[project-covance]]) + +**Why:** User chce postupně rozšiřovat Claude Code dovednosti, ale dnes (2026-06-03) odložil pokračování — vrátí se k tomu později. + +**How to apply:** Až user řekne "pokračujeme v learning path" nebo podobně, navaž od Fáze 1 (Slash Commands → Skills). Nedělej hned všechno — postupuj po fázích, vždy nejprve tutoriál + praktické cvičení napojené na jeho reálnou práci (Covance, EDC, Medevio, IWRS). diff --git a/claude-memory/project_iwrs_mongo.md b/claude-memory/project_iwrs_mongo.md new file mode 100644 index 0000000..afb70db --- /dev/null +++ b/claude-memory/project_iwrs_mongo.md @@ -0,0 +1,43 @@ +--- +name: project-iwrs-mongo +description: IWRS data kompletně v MongoDB studie — 8 hlavních kolekcí + 5 snapshot. MySQL je nyní read-only archiv. Pipeline IWRS/Patients/run_all.py + IWRS/Drugs/run_all.py píše přímo do Mongo. +metadata: + node_type: memory + type: project + originSessionId: 7e135172-3d69-4283-801f-d2450be664a9 +--- + +**Vše IWRS migrováno do MongoDB databáze `studie`. MySQL je nyní read-only archiv.** + +## Hlavní kolekce (upsert = aktuální stav) +- `iwrs_imports` — log běhů importu (sekvenční import_id) +- `iwrs_subject_summary` — `_id = "{study}:{subject}"`, sjednoceno pro obě studie (společná pole + study-specifická vedle) +- `iwrs_visits` — `_id = "{study}:{subject}:{irt_transaction_no|scheduled_date}:{desc}"` +- `iwrs_notifications` — `_id = pk` (IWRS unique), obsahuje text + medications[] + fields{} + PDF jako BinData +- `iwrs_shipments` — `_id = shipment_id` +- `iwrs_shipment_items` — `_id = "{shipment_id}:{medication_id}"` +- `iwrs_inventory` — `_id = "{site}:{medication_id}"` +- `iwrs_destruction` — `_id = "{basket_id}:{medication_id}"` (immutable) + +## Snapshot kolekce (append-only s `import_id`) +`iwrs_subject_summary_snapshots`, `iwrs_visits_snapshots`, `iwrs_shipments_snapshots`, `iwrs_shipment_items_snapshots`, `iwrs_inventory_snapshots`. Notifications + destruction snapshoty nepotřebují (immutable). + +## Struktura kódu +- [IWRS/common/mongo_writer.py](IWRS/common/mongo_writer.py) — sdílené helpers (to_str/to_int/to_date converters, get_db, ensure_indexes, log_import, bulk_upsert_with_snapshot, bulk_upsert_only) +- [IWRS/Patients/import_to_mongo.py](IWRS/Patients/import_to_mongo.py) — subject_summary + visits parser z XLSX +- [IWRS/Patients/import_notifications_to_mongo.py](IWRS/Patients/import_notifications_to_mongo.py) — PDF+JSON z disku rovnou do Mongo (parsuje text per typ, PDF jako BinData, přesun do Zpracováno/) +- [IWRS/Drugs/import_to_mongo.py](IWRS/Drugs/import_to_mongo.py) — shipments + items + inventory + destruction +- [IWRS/backfill_mysql_to_mongo.py](IWRS/backfill_mysql_to_mongo.py) — jednorázový backfill historie z MySQL (už proběhlo) +- [IWRS/Patients/parse_notifications_to_mongo.py](IWRS/Patients/parse_notifications_to_mongo.py) — starší parser MySQL→Mongo (parsery z něj reuse-uje `import_notifications_to_mongo.py`) + +## Pipeline +- `IWRS/Patients/run_all.py`: download (Playwright) → `import_to_mongo.run()` (summary + visits) → `import_notifications_to_mongo.main()` (PDF/JSON → Mongo) +- `IWRS/Drugs/run_all.py`: download (Playwright) → `drugs_mongo.run()` (shipments + items + inventory + destruction) + +**Why:** UCO3001 a MDD3003 mají hodně podobnou ale ne shodnou sadu polí (společných ~16, study-specifických ~14–17). Per-studie MySQL tabulky = schema sprawl při každé nové studii. Schemaless Mongo + sjednocení = přidání nové studie znamená jen nový parser, žádné DDL. Notifikace navíc obsahují lot/expirace/clinical response/audit trail, které XLSX reporty nemají. + +**How to apply:** Pro nové analýzy/dotazy IWRS dat používej Mongo `studie.iwrs_*`. MySQL `studie.iwrs_*` nech být (read-only). Po nějaké době ověření lze MySQL IWRS tabulky dropnout. Související: [[project-edc-mongo]] — stejný Mongo server, stejný snapshot pattern. + +**Známé limity parseru notifikací:** +- `Cohort` chybí u MDD3003 mimo `Screening` (v textu není) +- Když má klíč prázdnou hodnotu, parser vezme následující neprázdný řádek — občas v `fields` skončí název další sekce jako pseudohodnota (jen šum)