Hi,
 
During autoyast installation of OES on SLES10/SLES11 in the installation.xml file, inst_oes_preconfig client module was getting called before autoconfigure module, which is getting executed correctly on SLES12 as the autoconfigure module exists on SLES12, inst_oes_postconfig client module was getting called before suseconfig module, but on SLES12, there is no suseconfig module, I tired with after autoconfigure module, but inst_oes_preconfig is not getting called.
 
Is there any way to call inst_oes_postconfig module after autoconfigure or after configuring OES modules.
 
Here is the contents of installation.xml file
 
  <workflow>
                <defaults>
                    <archs>all</archs>
                    <enable_back>no</enable_back>
                    <enable_next>no</enable_next>
                </defaults>
                <stage>continue</stage>
                <mode>autoinstallation</mode>
                <insert_modules config:type="list">
                    <insert_module>
                        <before>autoconfigure</before>
                        <modules config:type="list">
                            <module>
                                <label>OES Pre Configuration</label>
                                <name>inst_oes_preconfig</name>
                            </module>
                        </modules>
                    </insert_module>
                    <insert_module>
                        <before>suseconfig</before>
                        <modules config:type="list">
                            <module>
                                <label>OES Post Configuration</label>
                                <name>inst_oes_postconfig</name>
                            </module>
                        </modules>
                    </insert_module>
                </insert_modules>
            </workflow>
Thanks in advance.
 
Regards,
Suresh