Integrating Joint Venture staff in the enterprise structure - best ways?

Hi,
how would you integrate a new Joint Venture staff into the existing global structure of the enterpise (Personnel Admin and Talent/Development Management perspective)? What are the best practises? Joint Venture itself would be a separate Company Code ofcourse, but in the Personnel Structure itself, would you use a separate Employee Group / sub group values to determine the above mentioned population?
Thanks for your thoughts.

Hi there,
Do you use the default consolidation rules or you have written your own custom rules?
If it is custom rules then both questions can be easily fixed.
Kind regards,
Thanos

Similar Messages

  • Step by step process in configuring the enterprise structure for MM in IDES

    Can any one give the Step by step process in configuring the enterprise structure for MM in IDES.

    check below link for enterprise structure in MM.
    http://www.docstoc.com/docs/10940744/SAP-MMWM-Configuration-Doc
    If you are new to material management please refer to below thread which will be very useful.
    New to Materials Management / Warehouse Management?

  • What is the proper and best way to destroy a java.util.List or Array for GC

    Hi,
    If I have a java.util.List of objects lets say:
    List<File> files = new ArrayList();The List contains 1000 file objects. When my class finishes, is it enough to do
    files = null;to make GC able to release it from memory?
    Cause it seems like I can't do the following:
    for(int i = 0; i < extracted_files.size(); i++){
                extracted_files.get(i) = null;
    }Or should I use this one:
    files.clear()What is the proper and best way to do this in order to avoid memory leaks? How about normal Arrays like File[]?
    Edited by: TolvanTolvanTolvan on 2009-sep-10 16:58

    TolvanTolvanTolvan wrote:
    Thanks for the info!
    But what if the List is a class variable running in a Web Service for like months without terminating?You mean if the List variable is a member variable of a long-lived object? Then presumably the list needs to live as long as the object does. In the unlikely scenario that the object needs to live on but its list member variable does not, then yes, setting the member to null will be needed to make the list eligible for GC. But I highly doubt this is your situation, and if it is, you probably have a design flaw.
    And if the list is referenced only by a local variable, then, as I already said, when the method ends, the variable goes out of scope, and the List is eligible for GC.
    Now, a slightly different situation is when the List needs to live a long time, and at some point during its life, you're done using some object that it refers to. In that situation, simply remove the element from the list (or set the element to null if it's an array rather than a list), and then if it's not referenced anywhere else, it can be GCed.
    How about Arrays like File[]? Do I need to iterate through the array and null all the objects or is it enough to just null the Array?YOU. DON'T. NEED. TO. HELP. GC. You don't need to set the elements to null, and you most likely don't even need to set the array variable to null.
    Also note that only references can be null, not objects.

  • What is the easiest and best way to install or open flash drive in Sarfari on my Macbook Pro...2010 model using mountain lion

    what is the easiest and best way to install or open flash drive in Sarfari on my 2010 macbook pro using mountain lion?

    There is no really good way to do what you want. Any tracks you purchase via your own iTunes Store account are for your personal use, tied to your iTunes Store account, and can't be given to anyone else. If you don't want to gift the tracks to her and can't access her iTunes Store account, the only option other than creating her a completely new iTunes Store account (which will require a new email address for her) is to buy the CDs those tracks are on.
    Regards.

  • What is the easiest and best way to upgrade Mac OS X 10.5.8 to Lion?

    What is the easiest and best way to upgrade Mac OS X 10.5.8 to Lion?

    Make sure your Mac meets Lion's requirements >  Apple - OS X Lion - Technical specifications
    Since you are running v10.5.8, you need to upgrade to Snow Leopard which installs the Mac App Store which you need in order to download and install Lion.
    Mac OS X 10.6 Snow Leopard - Apple Store (U.S.)
    If you don't have a high speed internet connection, you may want to purchase Lion on Lion USB Thumb Drive - Apple Store (U.S.)
    If you run PowerPC apps read here before installing Lion >  Lion upgrade questions and answers:  Apple Support Communities

  • Event Structures​-best way to implement this UI?

    I am trying to write a VI to control & read data from 4 different "channels" (each measuring a DUT) at once.  I have written all the VI's for initializing instruments, communicating with the devices (VISA, GPIB), setting bias, reading data, etc...that has all completed. I just need to write the overall program with the user interface to allow the user to control these 4 channels & display the measured data.....as it turns out, this is the tricky part! My head is spinning from trying to figure out how to handle all the possible events.
    Basically for each channel, I want the user to be able to
    -enable/disable it  for measurement (e.g. if  there is no device loaded in Ch.3, we don't want to measure Ch.3..maybe disable/grey everything)
    -set bias conditions (only if channel enabled). Allow user to change bias "in real-time" by increment/decrementing (e.g. incrementing from 5.00 V to 5.01 V, for example).
    -turn biasing on/off (again, only if channel is enabled)
    Also,  I want each channel to display its measured data (e.g current, temperature reading)..every second or so. No graphs or anything fancy (for now! ), just numeric indicator. 
    Honestly, this all sounds so simple but I'm having trouble figuring out the best way to implement this, due to the fact that 1) there are multiple channels needing to be monitored for events  2) large number of user events that could occur (seems like at least 4 per channel - enabling/disabling, turning bias on/off, incrementing/decrementing bias values, etc ), Also the if a channel IS enabled, i want to be continously reading/displaying the data.  What is the best way to handle this? Should i have 4 separate while loops, each with an event structure to handle events for that particular channel..or will that give me grief somewhre? 
    Also, I have another nagging question. Pretty much all the examples I see re: Event Structures and booleans involve latched booleans, eg. buttons that are just pressed once and pop back up...e.g. buttons you press to tell it to complete a task (e.g. "Acquire Data" or "Stop") , and once it's pressed it's over and reset.  In my case, some of the booleans would not be latched...e.g. the "Enable Ch.2" button would be 'TRUE" as long as i want Ch. 2 to be read....does that make sense? Then, say hours later,  if i did want to disable that channel,  i would change it to "FALSE" and while that would be an "value change", the new value would not be "TRUE"..does that make sense? So  not sure if that would be dealt with the same way in an Event Structure. 
    Hope this all makes sense and many thanks in advance for any help!!!

    You're halfway there. I'd say the best solution is a producer/consumer structure, the event structure is used to generate queued commands to the consumer loop.
    All data is handled in the consumer loop, where you among other things have an array of clusters of channel/instrument settings. (I usually have several cluster, one for test data, one for instrument settings, one for general settings and so on)
    The event structure can have a 1 sec timeout, in which you queue up a Measure command.
    In the consumer, in the measure state you loop through your instruments and if enabled you measure them and update their indicators.
    The general (smart) way to setup the queue is with a cluster containing 2 elements, a typedef'd Command and a variant.
    This way you can send data with the command in any form which is then interpreted in the consumer.
    If, e.g. you press the Enable button on a channel, you can enqueue Enable and the channel number.
    /Y
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • The Excel-Mania - Best Ways of Implementing Excel-Like ADF

    Hello people, good afternoon!
    I would like to share with you a doubt i have implementing complex, matrix-like forms in ADF. More often than i'd like to hear, users ask for input forms that closely resemble Microsoft Excel, where the dimensions are layered both vertically and horizontally, and the intersection between them must contain an input or output component, allowing themselves to rapidly input the data they need or to create a web version of Oracle Reports' Matrix Report. Some cases are:
    1) The user wishes to associate the employees (located in table EMPLOYEES) to the projects (located in table PROJECTS) in a screen that lays out the employees as columns and the projects as rows in a table. The intersection between them must contain a checkbox, which will insert a third record when selected, on a table called EMP_PROJ, which associates the employees to the projects.
    2) The user wishes to input a timecard in a time control system. This system must have a screen that shows the days in the week as columns, and the projects the employee is working on as rows. On the intersection, we must provide an input text where he will enter the hours he worked on that specific project on that day.
    3) The user wishes to see a screen that shows the Open Auctions they have in a Purchasing system as rows in a table, crossed with the suppliers that have bidded on these (as the columns). The intersection must contain the price each supplier bidded on each Auction.
    As you can see, i run across this requirement A LOT =). And, as much as i have polished my "Web-Like-Applications-Are-Not-Like-This" and "You-Are-Not-Working-With-Excel" speeches, our beloved users never learn ;)
    Nevertheless, i have been looking for a consistent way to implement this behavior, and i have found some options along the way. I would like to know your impressions on this matter, and if you have any "Best-Practices" that you imagine for this case.
    CASE 1: Creating a Dynamic, On-The-Fly View Object by using ADF BC APIs and using af:table component to do the trick on the page
    PROS: Less work in the View layer, Preservation of the Table CSS Layout (very nice blue header and light brown cells)
    CONS: A LOT of work on the BC layer, creates an awful lot of View Objects, and generates tons of java code on the Application Modules.
    CASE 2: Creating the model as usual and working with repeating layouts on ADF Faces (for example, enclosing an af:cellFormat on an af:forEach to repeat each column)
    PROS: Simplifies the BC layer, making it much cleaner and maintainable.
    CONS: Loses a lot of the declarative wonders of ADF Faces and also the CSS Layouts, since we are using cellFormat, rowLayout and tableLayout instead of table tag we have to manually apply the styles to the columns and rows.
    Of course, both implementations take an awful lot of time. Any other implementation styles are quite welcome (ADF Wizards, step in!)
    Anyone wants to discuss better ways of doing it?
    Best Regards,
    Thiago Souza

    Well, you could do the following:
    1) Create a stored procedure that assembles the data into a rowset with rows and fields like the format you want.
    2) Create stored procedures that handle insert, update, and delete.
    3) Create an entity object definition with all transient attributes. Make the attributes match the elements of one row.
    4) Override doDML() in the entity object class to call your procedures (the doc explains how to do this). You might also need to do a bit of research and figure out if you need to override some other method so you can report rows with transient attribute changes only as needing posting. (getPostState(), maybe?)
    5) Create a view object definition with entity-derived attributes based on your EO attributes.
    6) Override the appropriate methods to call your data assembly procedure rather than execute a query (this is also in the doc).
    Still kind of kludgy, but it keeps your business components pretty clean, especially if you use framework classes to do most of the work for you. (I have a partial example of how to do that here.) Of course, it keeps your business components clean by moving the real work to the DB, but some people find that more maintainable that a kazillion business components.
    Hope this helps,
    Avrom

  • Trying to restore my macbook, and im not the administrator what best way to do.?

    im not the administrator of this macbook how can i restore to a factory settings.?

    To the best of my knowledge Administartor Privilages are needed to Perform what you ask...

  • In a small media lab we have approximately 10 iPads on order. We'd like to purchase iMovie for all of the iPads. Best way to do this?

    Do we need to specifically create 10 separate iTunes user Apple IDs?
    Can we use 1 ID and share the app for multiple users/ iPads?
    Or do we use 1 ID and buy the app separately on all 10 iPads?
    I want to do this correctly and as recommended.  Thank you!

    If you're an educational institution and are in the US, Apple's Volume Purchase Plan would be your best option. See:
    http://www.apple.com/education/volume-purchase-program/
    Regards.

  • Clarification of the logical structure of sap system & enterprise structure

    Dear Sap Gurus,
    Kindly help me to clarify the following words.I am grateful for answers.Answers will be rewarded with points.Simple & brief explanatios are highly appreciate.Thank you.
    1.FI Enterprise Structure
    my answers:Collection of organization units is called fi enterprise structure.
    2.Organization Units
    a.An element in the logical structure of sap system is called organization unit.
    3.The Logical Structure Of Sap System=?
    Best Regards
    priya desai

    Hi Priya,
    The Enterprise Structure represents the structure of a company according to personnel administrative, time management and payroll perspectives. The company structure describes elements of the company and there dependencies.
    The 'Organizational Units' in SAP, are the elements or structures representing the business functions, and are used in reporting. for example, Client (across the various modules), Company Code (FI), Controlling area (CO), Plant (logistics), sales organization (SD), Purchasing organization (MM), Employee Group (HR) etc.
    Thanks
    Para

  • Changement in the assignment of Enterprise Structure.

    Please Help me...
    Is possible to change the attribution make in the Enterprise Structure?
    Example:
    I have two Company Code with the respective Plant and Storage.
    I'd like delete the assignnment of a Plant from a Company Code and create again a new assignment of this Plant to another Company Code.
    Is it possible?
    Is it correct ?'
    Are there substantial
    Thank you
    Help me!!!!!!!

    Hi,
    Yes... I do believe.... it is not advicable to delete an assignment from a live system.
    It may have adverse effect. If not a live system, you can delete a plant from a company code provided all the other organisational assignment to the plants are reversed. Example: Plant to Purchasing Org, Plant to Divion, Plant to Sales org/distibution channel... etc.
    Prase
    Message was edited by:
            Prase

  • Business Area in Enterprise Structure

    Can someone please explain the purpose of Business Area/Business Unit in the Enterprise Structure? I'm wondering, functionally, how it is different from personnel area and personnel subarea, as we use the PA and PSA to distinguish  between departments and business units, respectively. Are there integration differences, or is there not a significant difference?
    Thanks for any replies and help.
    -Nick

    Hey Nick,
    If you bring up the help on Business Area within the IMG, you get the following:
    Define Business Area
    Use
    In this section you create business areas. A business area is an
    organizational unit within accounting that represents a separate area of
    operations or responsibilities in a business
    organization.
    When defining a business area, you enter a four-character alphanumeric key
    and the name of the business area.
    In a client, you can set up
    several business areas to which the system can assign the postings made in all
    company codes defined in
    this client. To ensure consistency in document entry, you should give business
    areas the same name in all company codes.
    You make all other specifications for your business areas in the Financial
    Accounting Implementation Guide.
    So as this and Theo also indicated above, this is relevant for FI.
    Hope this helps!

  • Mapping of enterprise structure

    Dear Experts,
                 Right now i am doing implementation project in aluminium metal plant.Now we are in the 2nd phase of the project.So i have to map the enterprise structure of the plant.
               There are main 5 departments in the plant GAP,BAKE OVEN,RODDING,POTROOM,CASTING.Here all the departments finished products are interrelated,like GAP finished goods will go to BAKE OVEN. BAKE OVEN finished goods will go to RODDING.RODDING finihed goods will move to POTROOM.POTROOM molten metal will move to CASTHOUSE,and finally metal from CASTHOUSE will go to customers.
             So here how can i map this scenario, like i have to create 5 plants for 5 departments or 5 sections?
    Regards,
    Prashantha

    Greetings Prashantha,
    You need to approach this from a functional perspective. Define what is the Plant in SAP. A Plant is a location, which has an address, a language, time zone etc. and for this Plant the maintenance is planned as a whole on some level. Many configurations in PM are done on Plant level. Also, note that the Material Master data is maintained on Plant level.
    So taking this all into account, consider whether those elements are different for the 5 Departments you mention? I would venture a guess "no". Your departments will have distinct Functional Location hierarchy branches, distinct Planner Groups, their own Work Centres, perhaps their own Storage Locations, but I assume they will have the same processes, the same Company Code, the same high-level Maintenance Planning Plant, the same Order Types. So it is probably reasonable to use Plant Sections, Planner Groups etc. to differentiate below the Plant level.
    But of course, this is dependent on your business and how it is organised.

  • Configuration of enterprise structure from Logistic Perspective

    Hi expert,
    I have to configure the enterprise structure from Logistic perspective for a roll out project.
    So please explain me step by steps configuration for this.
    I will be very grateful.
    Regards,
    Vivek

    HI
    Please find the details below.
    Client:
    Client is an environment where we are working. A client is an organisation term it is an independent unit in the system, each unit consist of own environment and there fore its has own master data or transaction data assigned ,user master records and chart of accounts.
    Master data:
    The data, which is the basis for all the SD processing.
    Type of Master Data:
    1.Organizational data: this is the structure of the company where by each business is represented by a hierarchical element.
    2. Customer master data: the data where all data regarding customer and material are stored.
    3. Documents: the business transaction is stored in the documents.
    4. Global Settings: it is one in which we define country keys and currencies.
    Company code:
    Legal entity and an independent accounting unit at company code level, where we create balance sheet and profit and loss accounts.
    Sales organization:
    An organizational unit that sells and distributes products, negotiates terms of sale, and is responsible for these transactions.
    Distribution channel:
    Channel through which materials or services reach customers. Typical distribution channels include wholesale, retail and direct sales. You can assign a distribution channel to one or more sales organizations.
    Division:
    Product groups can be defined for a wide-ranging spectrum of products. For every division you can make customer-specific agreements on, for example, partial deliveries, pricing and terms of payment. Within a division you can carry out statistical analyses or set up separate marketing.
    Sales area:
    Combination of Sales organisation, Distribution Channel, and division.
    Sales Office.
    Geographical aspects of the organization in business development and sales are defined using the term sales office. A sales office can be considered as a subsidiary.
    Sales offices are assigned to sales areas. If you enter a sales order for a sales office within a certain sales area, the sales office must be assigned to that area.
    Sales Group.
    The staff of a sales office may be subdivided into sales groups. For example, sales groups can be defined for individual divisions.
    Salespersons.
    Individual personnel master records are used to manage data about salespersons. You can assign a sales person to a sales group in the personnel master record.
    Plant:
    A plant is a place where either material are produced or goods and services provided.
    Storage location:
    Where we store the material.
    Shipping point:
    It is a physical location where we load the goods in order to deliver.
    Loading point:
    It is a point where we load and unload the material by means of equipments.
    Business Area.
    A unit in an enterprise, grouping product and market combinations as homogeneously as possible for the purpose of developing unified business policy.
    Financial Accounting (FI).
    A business area is an organizational unit within financial accounting which represents a separate area of operations or responsibilities within an organization.
    The system posts costs and revenue according to the business area.
    The business area can be Assigned to the:
    sales area (if the accounts are to be posted according to sales)
    plant/division (if the accounts are to be posted according to products)
    Financial accounting transactions can be allocated to a specific business area.
    Credit control area.
    Organizational unit in an organization that specifies and checks credit limits for customers. A credit control area can include one or more company codes. It is not possible to assign a company code to more than one credit control areas.
    SD
    1. Define Sales Organization --Ex 1000
    IMG -> Enterprise Structure -> Definition -> Sales and Distribution -> Define, copy, delete, check Sales organization
    2. Define Distribution Channel -- Ex 10
    IMG -> Enterprise Structure -> Definition -> Sales and Distribution -> Define, copy, delete, check distribution channel
    3. Define Division--Ex 20
    IMG -> Enterprise Structure -> Definition -> Logistics - General -> Define, copy, delete, check division
    4.Assigning Sales Organization to Company Code
    For example 1000<-->1000(Company code)
    IMG -> Enterprise Structure -> Assignment -> Sales and Distribution -> Assign Sales Organziation to Company Code
    5. Assigning Distribution Channel to Sales Organization
    For example 10<-->1000
    IMG -> Enterprise Structure -> Assignment -> Sales and Distribution > Assign distribution channel to sales organization
    6. Assigning Division to Sales Organization
    For example 20 <-->1000
    IMG -> Enterprise Structure -> Assignment -> Sales and Distribution -> Assign division to sales organization
    7. Set up Sales Area
    For example 1000 --10 --20
    IMG ->Enterprise Structure -> Assignment -> Sales and Distribution -> Set up sales area
    8. Assigning Sales Organization- Distribution Channel- Plant
    For example 1000 -- 10 -- 1000(Plant)
    IMG -> Enterprise Structure -> Assignment -> Sales and Distribution -> Assign sales organization - distribution channel - plant
    9. Define Shipping Points
    For example 1200
    IMG -> Enterprise Structure -> Definition -> Logistics Execution -> Define, copy, delete, check shipping point
    10 Assigning Shipping Point to Plant
    For example 1200 --- 1000
    IMG -> Enterprise Structure -> Assignment -> Logistics Execution -> Assign shipping point to plant.
    MM
    Go to SPRO > Enterprise Structure > Definition > Logistics - General > Here Define, copy, delete, check plant > Copy, delete, check plant
    Then go to Define Plant > Here change the Plant Name and Address.
    SPRO > Enterprise Structure > Definition > Materials Management > Maintain storage location > Here input your new plant and press enter, create new by "New Entries" option.
    SPRO > Enterprise Structure > Definition > Materials Management > Maintain purchasing organization > Here define new Purchasing organization.
    SPRO > Enterprise Structure > Assignment > Logistics - General > Assign plant to company code > here assign plant to co. code
    SPRO > Enterprise Structure > Assignment > Materials Management > Assign purchasing organization to plant
    Thanks & Regards,
    Kiran

  • What is SAP sd enterprise structure

    what is SAPD enterprise structure and what is intercompany process.Does in intercompany sales process  sales org from two different company codes are used or company codes should be teh same?

    Enterprise Structure is the Organizational chart in the form of different Organizational units, belonging to different modules in SAP. For eg: Company, Company Code, Controlling Area belonging to FI-CO Module, Sales organization, Distribution Channel, Sales office, Sales Group, etc, belobing to SD module, Purchasing organization, purchasing group, etc belonging to MM module & so on ......  These are then integrated through relevant assignment.
    SD Enterprise Structure Configuration:
    1. Maintaining Sales Organization
    Sales Organization is an organizational unit responsible for the sale of certain products or services.
    IMG -> Enterprise Structure -> Definition -> Sales and Distribution -> Define, copy, delete, check Sales organization
    2. Assigning Sales Organization to Company Code
    This assignment ensures all the sales made through this Sales Organization are accounted for in the assigned Company Code (Company Code is created by FI Consultant).
    IMG -> Enterprise Structure -> Assignment -> Sales and Distribution -> Assign Sales Organziation to Company Code
    3. Maintaining Distribution Channel
    Distribution Channel is the way, in which Products or Services reach Customers.
    IMG -> Enterprise Structure -> Definition -> Sales and Distribution -> Define, copy, delete, check distribution channel
    4. Assigning Distribution Channel to Sales Organization
    This assignment ensures, a Sales Organization can supply Materials to Customers through this Distribution Channel.
    IMG -> Enterprise Structure -> Assignment -> Sales and Distribution > Assign distribution channel to sales organization
    5. Maintaining Division
    Division is a way of grouping materials, products, or services.
    IMG -> Enterprise Structure -> Definition -> Logistics - General -> Define, copy, delete, check division
    6. Assigning Division to Sales Organization
    IMG -> Enterprise Structure -> Assignment -> Sales and Distribution -> Assign division to sales organization
    7. Setting up Sales Area
    All the sales are made from a particular sales Area. For creating a Sales Order Sales Area is compulsory.
    IMG ->Enterprise Structure -> Assignment -> Sales and Distribution -> Set up sales area
    8. Assigning Sales Organization- Distribution Channel- Plant
    Plant is created ny MM Consultant.
    IMG -> Enterprise Structure -> Assignment -> Sales and Distribution -> Assign sales organization - distribution channel - plant
    9. Define Shipping Points
    Shipping Point is the Organizational element, which is responsible for shipping the Materials to the Customers.
    IMG -> Enterprise Structure -> Definition -> Logistics Execution -> Define, copy, delete, check shipping point
    10 Assigning Shipping Point to Plant
    This assignment ensures that goods from different Plant can be dispatched from different Shipping Points.
    IMG -> Enterprise Structure -> Assignment -> Logistics Execution -> Assign shipping point to plant
    Link: http://help.sap.com/
    Path: SAP Best Practices --> Baseline Packages --> Based on SAP ECC 5.00 --> Select Country: for eg, Localized for India --> Technical Information --> Building Blocks --> Select Country for eg, India -->
    <b>J02 - Organizational Structure</b>
    Inter Company Sales is a Sales process between 2 different Company Code, belonging to same group Company.
    Regards,
    Rajesh Banka
    Reward points if helpful.

Maybe you are looking for

  • What are the best ways to attach my macbook pro to our soundboard

    I need to upgrade the way in which I attach my macbook pro to our soundboard in order to improve quality recording and sound output. Which cables do I need to purchase? I am using a 2007 macbook pro/Snow Leopard OS. Thanks!

  • External display only with lid open?

    I feel like I must be missing something really obvious, so I apologize in advance, but I'm trying to use my external display (23" cinema display) without using the MBP display yet still keeping the lid open (mainly for the isight camera). The first t

  • Function Module for BOM

    Hi All.. I want to know if there is any functional module in SAP which can gives Parent Material detail if I provide the child material number... (reverse to CS03) I tried in SE37 but I am not able to pick the exact one. Thanks & Regards, Srib K

  • Unix command to turn OFF Software Update

    I've browsed through the networksetup -help and the systemsetup -help files and can't find anything that would allow me to send a unix command that would turn automatic software update off? Anyone got any thoughts?

  • Batch Rename Multiple files with different names

    Hi, Is there any way to batch rename multiple files with individual names? I.e IMG_123 changed to  RSP45AS IMG_124 changed to MOL157A IMG_125 changed to AGKH135 IMG_126 changed to MNOLH13 IMG_127 changed to ASFBLUG Etc. Are they any programs or scrip