ORA-06512, ora-04088 pls help

version database - Oracle Database 10 g Enterprise Edition Release 10.2.0.3.0

Hi I create a trigger.

create or replace TRIGGER INSERT_STOCK_RECORDS
AFTER INSERTION
ON MAKESS. MST_ITEM
FOR EACH LINE
DECLARE
fin_start_date DATE;
fin_end_date DATE;
BEGIN
BEGIN
SELECT dt_current_start_date, dt_current_end_date
IN fin_start_date, fin_end_date
OF finance.fin_account_year
WHERE vc_comp_code =:NEW.vc_comp_code
AND ch_year_closing_flag = 'o';
EXCEPTION
WHEN NO_DATA_FOUND THEN
SELECT dt_current_start_date, dt_current_end_date
IN fin_start_date, fin_end_date
OF finance.fin_account_year
WHERE vc_comp_code =:NEW.vc_comp_code
AND ch_year_closing_flag = 'C ';

WHILE OTHERS THEN
RAISE_APPLICATION_ERROR (-20101, 'Error encountered with your exercise');
END;


(- 1).
INSERT INTO invent.stock_summary
(vc_comp_code, vc_item_code, NU_BALANCE_QTY, NU_QTY_REJECTED,
NU_QTY_REWORKABLE, NU_QTY_DEFECTIVE, NU_QTY_ORDERED, NU_QTY_REQUESTED
NU_QTY_TO_ORD, NU_QTY_AVAILABLE, NU_QTY_REQUIRED, vc_default_comp)
VALUES (: NEW.vc_comp_code,: NEW.vc_item_code, NVL(:NEW.nu_opening_qty,0), 0,)
0, 0, 0, 0.
0, NVL(:NEW.nu_opening_qty,0), 0,: NEW.vc_default_comp);
(- 2).
INSERT INTO production.prod_stock
(vc_comp_code, NU_AREA_CODE, vc_item_code, NU_BALANCE_QTY, NU_QTY_REJECTED,
NU_QTY_REWORKABLE, NU_QTY_DEFECTIVE, NU_QTY_ORDERED, NU_QTY_REQUESTED
NU_QTY_TO_ORD, NU_QTY_AVAILABLE, nu_qty_required, vc_default_comp)
VALUES (: NEW.vc_comp_code, 1: NEW.vc_item_code, 0, 0)
0, 0, 0, 0.
0, 0, 0,:NEW.vc_default_comp);
(- 3).
INSERT INTO invent.stk_lot_summary
(vc_comp_code, vc_item_code, NU_BALANCE_QTY, NU_QTY_REJECTED,
NU_QTY_REWORKABLE, NU_QTY_DEFECTIVE, VC_LOT_NO, VC_BIN_NO, NU_COST, vc_default_comp)
VALUES (: NEW.vc_comp_code,: NEW.vc_item_code, NVL(:NEW.nu_opening_qty,0), 0,)
0, 0,: NEW.vc_lot_no,: NEW.vc_bin_no, NVL (: NEW .nu_eval_rate, 0),: NEW .vc_default_comp);

(- 4).

INSERT INTO invent.mst_month_summary
(vc_comp_code, dt_fin_start_date, dt_fin_end_date, vc_item_code,
nu_year_open_balance, nu_tot_received, vc_default_comp)
VALUES (: NEW.vc_comp_code, fin_start_date, fin_end_date,: NEW.vc_item_code,)
NVL(:New.nu_opening_qty,0), NVL(:NEW.nu_opening_qty,0),
(: NEW.vc_default_comp);

EXCEPTION
WHILE OTHERS THEN
RAISE_APPLICATION_ERROR (-20101, 'Error');
END;

but when I insert in this table, it is in error-

INSERT INTO MST_ITEM (VC_DEFAULT_COMP, VC_COMP_CODE, VC_ITEM_CODE, VC_ITEM_DESC, VC_TECH_DESC, NU_BASIC_PRICE,
NU_EVAL_RATE, NU_SCRAP_RATE, NU_WASTE_PER, VC_UNIT, VC_CLASSIFICATION, NU_OPENING_QTY, VC_ITEM_GROUP,
VC_UNIT_CODE, VC_LOT_NO, VC_BIN_NO, DT_MOD_DATE, VC_AUTH_CODE, VC_ABC_CLASS, VC_VED_CLASS)
VALUES ('01 ', ' 01', 'RMPR000025', 'NEW ITEM', 'NEW', 1, 1, 0, 0, "KGS, 'NEWT', 0, '23', '1', '1', '1', SYSDATE,' 01', 'A', 'V')
/


INSERT INTO MST_ITEM (VC_DEFAULT_COMP, VC_COMP_CODE, VC_ITEM_CODE, VC_ITEM_DESC, VC_TECH_DESC, NU_BASI
*
ERROR on line 1:
ORA-20101: encountered error
ORA-06512: at "MAKESS. INSERT_STOCK_RECORDS', line 58
ORA-04088: error during execution of trigger ' MAKESS. ' INSERT_STOCK_RECORDS


pls help me why this problem occurs.

Hello

ERROR on line 1:
ORA-20101: encountered error

What meaningful message...

Please remove each WHEN of OTHER blocks in the exception handlers and let the real error.

Tags: Database

Similar Questions

  • get the error ORA-04088

    Hello

    I created a trigger to trigger the error if a trial off to enter data in a column that is attached to a number sequence.
    This trigger works, but with errors, these errors become after trying to insert values into the table.

    The errors are:

    Insert into test2 values(24,'horse','hyderabad',30); - 30 here is worth attempting to enter the column use
    Error report:
    SQL error: ORA-20101: insertion of the value to enter the not allowed... It will take the auto-numbering
    ORA-06512: at "SCOTT. TRI_UNQID', line 11
    ORA-04088: error during execution of trigger ' SCOTT. TRI_UNQID'


    My trigger is
    create or replace
    trigger tri_unqid
    before insert on test2 
    for each row
    declare
    v_number number(2);
    ins_exp exception;
    begin
    if :new.regid is not null  then
    raise ins_exp;
    else 
    select unqid.nextval into v_number from dual;
    :new.regid:=v_number;
    end if;
    exception
    when ins_exp then
    raise_application_error(-20101,'inserting the regid value not allowed.. it will take auto number');
    end tri_unqid;
    Output:
    It's the execution and throw my exception and other... I am not able to solve...
    and another point is if it is inserted successfully with errors, then it's values are inserted into the table at the front not the end of the records... How is it going...

    can any body explain

    Thank you
    Baba

    Published by: BluShadow on April 11, 2013 10:26
    fixed {noformat}
    {noformat} tags.  The "code" in the tag is enclose in "{" and "}", not "<" and ">"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    It's the execution and throw my exception and other... I am not able to solve...

    This is because there is no problem.

    Check your error message

    
    SQL Error: ORA-20101: inserting the regid value not allowed.. it will take auto number
    ORA-06512: at "SCOTT.TRI_UNQID";, line 11
    ORA-04088: error during execution of trigger 'SCOTT.TRI_UNQID' 
    

    Read from the bottom up. Oracle means

    1. a SCOTT trigger. TRI_UNQID caused an error
    2. the error occurred on line number 11
    3. the error message is ' insertion of the value to enter the not allowed... " It will take auto number.

    Why oracle has to say what trigger or procedure caused the error? Because there might be several trigger or procedure that may generate the same error if a user just need to know what is causing the error. And a line number is always helpful for debugging.

    So everything is good here. There is no problem to solve.

    and another point is if it is inserted successfully with errors, then it's values are inserted into the table at the front not the end of the records... How is it going...

    In a HEAP organized table this is SO forward or back (order of the lines is not relevant). If you want to display the records in an orderly manner use the ORDER BY Clause in the SELECT statement.

    So all is good here as well.

  • ORA-04088: error during execution of trigger ' SYSTEM. SET_CURRENT_SCHEMA_PM'

    Hello
    10 g R2 on Win 2008 Server DBSNMP can not connect:
    sqlplus dbsnmp@MYDB
    
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed Aug 18 07:35:19 2010
    
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    
    Enter password:
    ERROR:
    ORA-04088: error during execution of trigger 'SYSTEM.SET_CURRENT_SCHEMA_PM'
    ORA-01403: no data found
    ORA-06512: at line 5
    But I have:
    SQL> select username from dba_users where username like '%DBSNMP%';
    
    USERNAME
    ------------------------------
    DBSNMP
    
    SQL> grant connect to dbsnmp;
    
    Grant succeeded.
    What could be the problem?
    Thank you.

    First of all investigate what is this trigger as below

    select TEXT from dba_source
    where NAME='SET_CURRENT_SCHEMA_PM' and type='TRIGGER'
    and owner='SYSTEM'
    

    You can also disable this trigger, then try to connect again.

    alter trigger SYSTEM.SET_CURRENT_SCHEMA_PM disable
    
  • ORA-06550: PLS-00394: wrong number of values in the list INTO a mesh FETCH

    Dear friends,
    I ask you a suggestion:

    The following code inserts a table errors (errori_work), the IDS of the records repeat (in the work of the table), but gives me this error:
    ORA-06550: PLS-00394: wrong number of values in the list of a FETCH statement INTO.

    The work of the table has the 78 columns: the problem of the fields used in the slider flew against the 78% ROWTYPE fields?
    I could use a record declared as the cursor (rec_tabwork cu_tabwork % ROWTYPE;), but in the MANUAL I need a field (ID_WORK) is not present in the cursor.

    declare
    CURSOR cu_tabwork IS
    SELECT CD_STRUTTURA, CD_SUB_STRUTTURA, NR_PRATICA, likelihood
    Work
    CD_STRUTTURA, CD_SUB_STRUTTURA, NR_PRATICA, applications GROUP
    HAVING COUNT (rowid) > 1
    UNION ALL
    SELECT CD_STRUTTURA, CD_SUB_STRUTTURA, NR_PRATICA, likelihood
    Work
    CD_STRUTTURA, CD_SUB_STRUTTURA, NR_PRATICA, applications GROUP
    After HAVING COUNT (rowid) > 2.
    rec_tabwork work % ROWTYPE;
    BEGIN
    Open cu_tabwork;
    loop
    extract the cu_tabwork in rec_tabwork;
    If FOUND then % cu_tabwork
    dbms_output.put_line (rec_tabwork. (ASL); -test
    INSERT INTO errori_work
    (cd_errore, note, ID_WORK)
    )
    VALUES ("ACC", "Record ripetuto nella table work", rec_tabwork.ID_WORK)
    );
    end if;
    EXIT WHEN cu_tabwork % NOTFOUND;
    end loop;
    close cu_tabwork;
    end;

    Can you help me?
    Thank you
    Leo

    Hello

    I loaded your data and ran the query. It's coz the NR_RICETTA contains a null value, so your State A.NR_RICETTA = B.NR_RICETTA will fail when it checks for NULL = NULL. Here is your output from the query

    PRAZY@orcl> select count(ID_AMBS) FROM WORK A
      2  WHERE A.ROWID > ANY (SELECT B.ROWID FROM WORK B
      3  WHERE A.CD_PRESIDIO        =B.CD_PRESIDIO
      4  AND A.GGMM_CONTATTO        =B.GGMM_CONTATTO
      5  AND A.NR_RICETTA   =B.NR_RICETTA
      6  AND A.CD_CONT_PRESCR       =B.CD_CONT_PRESCR
      7  AND A.NR_PROG_INT  =B.NR_PROG_INT
      8  AND A.DESTINAZIONE =B.DESTINAZIONE)
      9  /
    
    COUNT(ID_AMBS)
    --------------
                48
    
    Elapsed: 00:00:00.00
    

    Therefore, I have included NVL to A.NR_RICETTA, which will produce true when it finds null checking 0 = 0 and you will get your result. and this is what you are looking for

    PRAZY@orcl> select count(ID_AMBS) FROM WORK A
      2  WHERE A.ROWID > ANY (SELECT B.ROWID FROM WORK B
      3  WHERE A.CD_PRESIDIO        =B.CD_PRESIDIO
      4  AND A.GGMM_CONTATTO        =B.GGMM_CONTATTO
      5  AND NVL(A.NR_RICETTA,0)    =NVL(B.NR_RICETTA,0)
      6  AND A.CD_CONT_PRESCR       =B.CD_CONT_PRESCR
      7  AND A.NR_PROG_INT  =B.NR_PROG_INT
      8  AND A.DESTINAZIONE =B.DESTINAZIONE)
      9  /
    
    COUNT(ID_AMBS)
    --------------
                61
    
    Elapsed: 00:00:00.01
    

    If you want to insert the duplicate ID in a Table of errors, do an insert with the following select statement.

    INSERT INTO errori_work(cd_errore, note, ID_AMBS)
    SELECT 'CAC', 'Record ripetuto nella tabella Work',ID_AMBS FROM WORK A
    WHERE A.ROWID > ANY (SELECT B.ROWID FROM WORK B
    WHERE A.CD_PRESIDIO     =B.CD_PRESIDIO
    AND A.GGMM_CONTATTO     =B.GGMM_CONTATTO
    AND NVL(A.NR_RICETTA,0)     =NVL(B.NR_RICETTA,0)
    AND A.CD_CONT_PRESCR     =B.CD_CONT_PRESCR
    AND A.NR_PROG_INT     =B.NR_PROG_INT
    AND A.DESTINAZIONE     =B.DESTINAZIONE);
    

    Hope that solves your problem.

    See you soon!

  • database from 32 bit to 64 bit on Linux data / ORA-06553: PLS-801: internal error [56319]

    Hello

    I've migrated EBS from 32 bit to 64 bit Linux database. I followed this Metalink note.

    Note - 341880.1 how to convert a database from 32-bit to 64-bit on Linux database?

    After the move, I did the below steps and get the error below... How to solve this problem?

    ===================================================================================

    SQL > startup nomount

    ORACLE instance started.

    Total System Global Area 595591168 bytes

    Bytes of size 2098016 fixed

    415239328 variable size bytes

    163577856 of database buffers bytes

    Redo buffers 14675968 bytes

    SQL > @create_control - file.sql

    Created control file.

    SQL > alter database open resetlogs;

    Database altered.

    SQL > ALTER TABLESPACE TEMP add TEMPFILE ' / d01/prd1/prd1data/tmp1.dbf' SIZE 2000 M REUSE AUTOEXTEND OFF;

    Tablespace altered.

    SQL > @$ORACLE_HOME/olap/admin/olap.sql SYSAUX TEMP

    BEGIN

    *

    ERROR on line 1:

    ORA-06553: PLS-801: internal error [56319]

    DECLARE

    *

    ERROR on line 1:

    ORA-06553: PLS-801: internal error [56319]

    BEGIN

    *

    ERROR on line 1:

    ORA-06553: PLS-801: internal error [56319]

    ===================================================================================

    Thank you.

    Please see the solution in (ORA-06553: PLS-801: internal error [56319], ORA-06544: PL/SQL: internal error, arguments: [56319] [] [], [], [], [], [], [], ORA-00604 when using different bit datafiles that executable Oracle (Doc ID 1436552.1)).

    Thank you

    Hussein

  • ORA-06553: PLS-907: cannot load the library over a DB link unit

    First of all I must say that we have solved this problem, but we still don't know why it happened if we are still looking for answers. The is problem Monday where he wasn't a function package with the following error:

    ORA-06540: PL/SQL: compilation error

    ORA-06553: PLS-907: unable to load library SAP_TABLE1@DBLINK unit

    The function got up a description column in SAP_TABLE2@DBLINK but use the column types in SAP_TABLE1@DBLINK of the specification.  We were able to run the select statement appears in the function without problem, but a call to function failed with the error of SQLPlus.

    The problem has been resolved by recompiling the package that contains the function.

    After talking to the SAP DBA they said that SAP_TABLE1 has been moved from one table to the next space this weekend however, I tested since this scenario by the deletion and re-creation of the table and was not able to reproduce the error.

    Can someone suggest another reason for to get us this error?

    Concerning

    Brummoi

    I just found the answer to this. I can give me points?

    It happened because the DB link was deleted then recreated. There must be some kind of internal pointers to the table through the link that is stored with the specification of function, so why all you have to do it recompile the package.

  • Oracle 11g {ORA-06550, PLS-00905}

    Hi all
    I am new to Oracle and I am trying to execute the procedure, but I get the error ORA-06550, PLS-00905
    Here is the procedure:
    create or replace PROCEDURE add_job
    (p_jobid IN jobs.empno%TYPE,
    p_jobtitle IN jobs.job%TYPE)
    IS
    BEGIN
    INSERT INTO scott.jobs (empno, job) VALUES (p_jobid, p_jobtitle);
    END add_job;
    /
    I type the following command to run the proc:
    Start
    add_job (6000, "ANALYST");
    end;

    Can anyone suggest something to remedy?
    Thanks in advance.

    Edited by: 994323 16/03/2013 15:37

    So mark your ANSWER question and provide your Oracle version 4-digit and use.

     tags next time you post.                                                                                                                                                                                                                                    
    
  • ORA-06553: PLS-306: wrong number or types of arguments errors

    Hi friends,

    When executing the below function I get error like

    I use the program version 2.1 sql Oracle.
    ============================
    ORA-06553: PLS-306: wrong number or types of arguments in the call to 'FUNC_TEST '.
    06553 00000 - "PLS - %s: %s.
    ============================

    CREATE OR REPLACE FUNCTION FUNC_TEST
    RETURN SYS_REFCURSOR
    AS
    PRAGMA AUTONOMOUS_TRANSACTION;
    total_val number (5): = 65;
    REF_TEST SYS_REFCURSOR;
    cursor c1 is
    Select substr(data,1,3). substr(Data,5) new_col text_1 update of data;
    BEGIN
    FOR employee_rec in c1
    LOOP
    text_1 update
    data value = substr (employee_rec.new_col, 1, 4). Chr (total_val) | substr(employee_rec.new_col,5) location being the c1;
    total_val: = total_val + 1;
    If total_val > 90 then
    total_val: = 65;
    end if;
    end loop;
    commit;
    REF_TEST OPEN for SELECT data FROM text_1;
    RETURN REF_TEST;
    END;
    -----------------------
    Table script:

    create table text_1
    (
    given varchar2 (20)
    )

    insert into text_1 values ("IAL030003IND")

    Please suggest.

    Thank you
    Lony

    >
    Yes, I also used a procedure and its fine in the working procedure.

    But according to her does not work... Or how can spend us in parameter to this function so that it can work?
    . . .
    If I am performing the function of the query below and I don't want to pass any parameter

    Select double FUNC_TEST;

    I get the error message like
    {,}
    >
    Your problem is that the function returns a ref cursor - that is a pointer to a result set. You can't put a ref cursor in a cell in the grid.

    The only reason why the procedure is 'work' is probably because you do not use a ref cursor in the version of the procedure.

    Why would you use a function that combines the data of attachment with the return of the data as a Ref Cursor? Once the data are set, there are fixed if you call the function a second time, that your data will be be stripped.

    If you want to return a Ref Cursor then you must use the function in the FROM clause: SELECT * FROM TABLE (myFunc ())

  • ORA-06553: PLS-801: internal error [56319]

    Hello
    I opened my rman backup, not it works. (X 64)

    but when I need to delete a user, I got the error below,



    SQL > drop user ugur;
    Drop user ugur
    *
    ERROR on line 1:
    ORA-00604: an error has occurred at the SQL level 1 recursive
    ORA-06553: PLS-801: internal error [56319]

    someone has an idea, please?

    Selam ugur

    This problem occurs every time if you 64B to the BONE to the 32 p.

    Since the package has been compiled on 64B OS version is necessary is a re - compile the correct version of the operating system. During the db has to go into upgrade mode.
    SQL > shutdown immediate;
    SQL > startup upgrade;
    SQL > @$ ORACLE_HOME/rdbms/admin/utlirp.
    SQL > shutdown immediate;
    SQL > startup;
    SQL > @ $ORACLE_HOME/rdbms/admin/utlrp.

    information on metalink Note: 414043.1, Note: 413484.1

    concerning

    Daniele Besiroglu

  • value of constant column pls help

    COL cnt noprint
    
    COLUMN  cnt NEW_VALUE rowcount
    I use this to a query select as below
    ROWNUM cnt, COUNT (*) OVER () cnt
    but it's the null return lines... This number of lines is not initilized.

    while I'm usng for supplementary registration
    SELECT '* Trailer record *' || '|' || &rowcount
      FROM DUAL
    It is giving error as below

    OF THE DOUBLE
    *
    ERROR on line 2:
    ORA-00936: lack of expression

    Pls help

    S

    but you both take values as
    where 1 = 0

    We are simulating a query that does not return any line: your query should be used instead:

    col cnt noprint
    
    column cnt new_value rowcount
    
    select voucher_id,  .....
            COUNT (*) OVER () cnt
     from  table name
    / 
    
    select '* Trailer record *' || '|' || nvl('&rowcount', 0)  from dual
    / 
    

    By the way: you used two columns in your query, two of them named CNT (and both do basically the same thing)-> you should avoid that.

  • PLS, help me to reset safari on mac Ox: 10.11.5

    PLS, help me to reset safari on mac Ox: 10.11.5

    What do you mean by reset.

  • I earsed my hd and now im trying to reinstall, but an error has occurred during installation, which means that I can't reinstall osx again. PLS HELP!

    I earsed my hd and now im trying to reinstall, but an error has occurred during installation, which means that I can't reinstall osx again. PLS HELP!

    Please tell us how wipe you the drive and how you tried to reinstall OS X. And what was the error, and how he help you trying to reinstall OSX again? You can look at writing an effective communities of Apple support question before you answer because we are not spirit or psychic readers.

  • looking for someone to help me with this problem. "It is no set application to open the document"stream_000b.strings ". "How can I get rid of him. pls help

    I get this message when I turn my macbook pro on "there is no set of application to open the document"stream_000b.strings ". "How can I get rid of him. pls help

    Check preferences system/users and groups to see if this item is in your login items. If so, select it and use the sign less to remove.

    If she is not there, see if you can find the file by using one of these programs. If you go Finder/display/show bar path, it will show you where it is located. You can then remove it.

    EasyFind-replacement of Spotlight

    Find any file

  • My Fire Fox download video in support not detected on you tube. It is always shows only the first video that i was downloaded.pls help

    My Fire Fox download video in support not detected on you tube. It is always shows only the first video that i was downloaded.pls help

    I don't think there is much you can do about it outside the use of workaround to reload the page until this problem is corrected.

    There is this bug on this problem:

    I don't know if other extensions download suffer from this issue, as well, so you can try a little more try the website of the add-on and if possible use a different format like WebM, if they are available.

    Also note that not all videos are downloaded and registered correctly. Some may have a size of 0 bytes and fail to download, so, best is to check in downloads of the toolbar Manager in the drop-down list to make sure that the file size is correct (i.e. neither 0 bytes, but a more likely size).

    YouTube streaming makes changes to the code and the way its web pages work, so extensions can fail at any time.

  • My Ethernet port is not running iMac mid 2011. Pls help me.

    Hi, I have an iMac 21.5 "mid-2011. My Ethernet port is not working. Is this a software problem? Pls help me.

    Try resetting the SMC reset management system (SCM) controller on your Mac - Apple Support

    Try another ethernet cable.

    He still does not? A report with the information more wrote an effective communities of Apple Support question

Maybe you are looking for

  • Override pre-batch reminder

    Hello TS 4.1using the batch process model - pre-batch is a two-step 1. tell the dialogue for the next DUT 2. wait for the dialog box. I need to change the #1 step, but still want to use step exsisting #2 - waiting for sous-suite of dialogue. How to c

  • Conversion of digital cluster problem

    Here's the situation: The wire from the source to the left corresponds to this description: It is a perfectly legitimate group of numeric values. Therefore, detailed help service "for whole Quad", the conversion should not damage the cable. However,

  • FreeCell, Dany Solitare, Mahjong Titans, ect. lack of

    I lost all the games that came equipped on my computer, does anyone have any ideas as to store all the games on my computer? I'm years old may have asked everywhere and can't get an answer to the recovery of my games back... Please HELP GET THE GAMES

  • svchost.exe localsystemnetworkrestricted is reading useless files

    I have windows vista sp2.svchost.exe localsystemnetworkrestricte is reading of unnecessary files such as videos and large files downloaded (not system files). It causes slow hard disk.+ It reads the files from my external hard drive and its drives cr

  • Adobe CC MUI Installation with SCCM?

    Hey ForumWe use MS SCCM to deploy the software to our customers. Since Adobe released the MUI for Adobe CC option we are very interested in the use of this. But from what I read in that will be installed is finally the language set for the installati