Solution Manager - Import buffer and duplicate imports in maintenance cycle

Hello,
I am trying to understand how Normal and Urgent Correction work in a maintenance cycles.
I am using SOLMAN 4.0  and I would like to know how the import buffers are managed.
When I have completed a maintenance cycle and all my transport request have been imported in the production system, I want to switch the status of the maintenance cycle back to development in order to complete my previous open normal corrections. I have read in many places that if I act in this way, not only my new corrections but all the old correction will be imported in the quality and production systems because the import buffers do not get empty.
For example, If I decide to have 10 normal corrections but eventually only 9 corrections are imported in quality and production systems, when I switch back to development and I complete the 10th correction, this correction will be imported together with the other 9 corrections or this will be imported alone since the other nine correction have been imported before?
How it works?
I appreciate suggestions.
Thanks
Antonello

Hi Gert-Jan,
We do the same and we don't face this issue.  There is thus a solution.
I never had this case, this might be a parameter in your QAS refresh procedure.
1/ If you empty your production import buffer (meaning you import it all to production) before tacking the production copy you will never have this issue.
2/ If you have some transportd left in the import buffer of production , you have this issue ? I guess this is our case
I will try to reformulate the case.
The refresh of QAS is causing the lost of some customizing that were not yet imported in production but was imported in QAS prior to the refresh of QAS.
When you reimport the "overwritten" transports in QAS after the refresh, this transport is removed from the QAS import buffer and going too the import buffer of production. 
A/The same transport is now twice in the import buffer of production ? we don't have this in our landscape (I even think this was not possible)
B/Or in between this transport has been imported in production and thus you are right it falls in the import buffer of production again with another sequence.
Thank you to confirm your case A or B ?.

Similar Messages

  • Installation Solution Manager error in the step Import Abap

    We are installing Solution Manager but in the step import abap, appear
    the error:
    /usr/sap/SML/SYS/exe/run/R3load: version R7.01/V1.4 [UNICODE]
    Compiled Feb 24 2009 21:54:08
    /usr/sap/SML/SYS/exe/run/R3load -testconnect
    (DB) ERROR: DbSlControl(DBSL_CMD_IMP_FUNS_SET) rc = 20
    (DB) ERROR: DbSlErrorMsg rc = 20
    /usr/sap/SML/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/SML/SYS/exe/run/R3load: END OF LOG: 20091202234420</message>
    I appreciate your help for this problem
    Regards.
    Ricardo Rivas

    Hi,
    Check SAP note 898181.
    Thanks
    Sunny

  • How to reinstall plugin Media Core CFHD AVI importer 32 and MOV importer 32.pm?

    I instralled the After Effects trial program and it was running okay for a few days, then I was hit with a warning to reinstall plugins.  How to reinstall plugin Media Core CFHD AVI importer 32 and MOV importer 32.pm?

    Has anyone figure this out?
    I started getting this after installing GoPro Studio 2.
    Uninstalling it and even deleting the plugins manually didn't work, and neither did reinstalling AE.
    All I could get was stop getting the error message at start-up but the problem is that any .AVI file that I import only plays audio, no video.
    Please, any help appreciated.

  • New Solution Manager 7.0 Problem R3LOAD import Fail: table ARCH_NUM

    While performing the import of LABA Step 18 in installing Solution Manager 7. Mostro the following message:
    u201C/usr/sap/SOL/SYS/exe/run/R3load: END OF LOG: 20080730190555
    /usr/sap/SOL/SYS/exe/run/R3load: START OF LOG: 20080730190557
    /usr/sap/SOL/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/
    R3ldmain.c#14 $ SAP
    /usr/sap/SOL/SYS/exe/run/R3load: version R7.00/V1.4
    Compiled Jan 23 2008 17:39:05
    /usr/sap/SOL/SYS/exe/run/R3load -i ATAB.cmd -dbcodepage 4103 -l ATAB.log -stop_on_error
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (DB) INFO: ATAB created #20080730190558
    failed to read short nametab of table ARCH_NUM                       (rc=2)
    (CNVPOOL) conversion failed for row 0 of table  VARKEY = ââÒâÒâÒâÒâÒâÒâÒâÒâÒâÒâÒ
    âÒâÒâÒâÒâÒâÒâÒâÒâÒâÒâÒâÒ
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: disconnected from DB
    /usr/sap/SOL/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/SOL/SYS/exe/run/R3load: END OF LOG: 20080730190558
    Maybe anyone knowshow to solve it?
    Thank you.

    Hi Gabriel Morleg,
    Seems that you had some problem during the creation of table SAPUSER.
    In order to fix the table, you will need to perform some activities directly on the database. Use SQLPlus. For the next instructions I will assume your system is called ABC and the DBSchema is called SR3.
    from the operating system, start sqlplus:
    sqlplus / as sysdba
    check step 1:
    > select count(1) from dba_users where username='OPS$ABCADM';
    If the above command returns nothing, then:
    > create user "OPS$ABCADM" default tablespace PSAPSR3USR temporary tablespace psaptemp identified externally;          
    > grant connect, resource, sapdba to "OPS$ABCADM";          
    check step 2:
    > select owner from dba_tables where table_name = 'SAPUSER';          
    if the above command returns nothing, then:
    > create table "OPS$ABCADM".SAPUSER (USERID VARCHAR2(256), PASSWD VARCHAR2(256));          
    check step 3:
    >select * from  "OPS$ABCADM".SAPUSER ;     
    if the above command returns nothing, then:
    > insert into  "OPS$ABCADM".SAPUSER  values ('SAPSR3', 'manager');          
    > alter user sapsr3 identified by manager;     
    if the command of step 3 returns content and you want to redefine, then:
    > truncate table "OPS$ABCADM".SAPUSER;     
    > insert into  "OPS$ABCADM".SAPUSER  values ('SAPSR3', 'manager');          
    check step 4:
    > select count(*) from dba_users where username = 'OPS$ORAABC';          
    if the command above returns nothing, then:          
    > create user "OPS$ORAABC" default tablespace PSAPSR3USR temporary tablespace psaptemp identified externally;          
    > grant connect, resource,sapdba to "OPS$ORAABC";          
    check step 5:          
    > select owner from dba_tables where table_name = 'SAPUSER';          
    If the command above returns nothing, then:     
    > create table "OPS$ORAABC".SAPUSER (USERID VARCHAR2(256), PASSWD VARCHAR2(256));          
    check step 6:          
    > select * from  "OPS$ORAABC".SAPUSER ;     
    if the command above returns nothing, then:     
    > insert into  "OPS$ORAABC".SAPUSER  values ('SAPSR3','manager');          
    if the command os step 6 returns content and you want to redefine them:
    > truncate table "OPS$ORAABC".SAPUSER;     
    > insert into  "OPS$ORAABC".SAPUSER  values ('SAPSR3', 'manager');          
    This should be enough to overcome the ORA 1403 error.
    Regards
    Valdecir

  • Solution Manager 4.0 and SLD automatic population

    Our Solution Manager 4.0 installation was failing repeatedly while importing the CIM objects into the SLD. So here is what we did:
    1.During installation we pointed the Solution Manager data supplier to the production SLD. The production SLD is on 640 wheras this is on 700.
    2.After installation we created the Solution Manager (Admin) SLD by creating all necessary roles, groups, users and started importing the CIM and the delta.
    3.We setup the data supplier of the production SLD to populate the  Solution Manager (Admin) SLD. It looks like it is not getting populated and we got the following error in the production SLD:
    #73 01/09/2007 12:39:15.173 [Thread-124] WARNING com.sap.lcr.sagent.BuilderDirector: Warning: SLD target system http://host:50100/sld sld/active not available (incoming data will be ignored).
    Thrown:
    com.sap.lcr.api.cimclient.CIMClientException: Received response is not a CIM Operation Response! Check "http://host:50100/sld" is the correct URL for the SLD CIM Object Manager and that user "user" has access to the SLD via http.
    at com.sap.lcr.api.cimclient.HttpRequestSender.processResponse(HttpRequestSender.java:434)
    at com.sap.lcr.api.cimclient.HttpRequestSender.send(HttpRequestSender.java:581)
    at com.sap.lcr.api.cimclient.CIMOMClient.sendImpl(CIMOMClient.java:195)
    at com.sap.lcr.api.cimclient.CIMOMClient.send(CIMOMClient.java:147)
    at com.sap.lcr.api.cimclient.CIMOMClient.getCIMClass(CIMOMClient.java:538)
    at com.sap.lcr.api.cimclient.CIMClient.getCIMClass(CIMClient.java:1185)
    at com.sap.lcr.api.cimclient.CIMClient.getCIMClass(CIMClient.java:1196)
    at com.sap.lcr.api.cimclient.CIMClient.ping(CIMClient.java:290)
    at com.sap.lcr.sagent.BuilderDirector.performWork(BuilderDirector.java:621)
    at com.sap.lcr.sagent.BuilderDirector.performWork(BuilderDirector.java:545)
    at com.sap.lcr.sagent.BuilderDirector.run(BuilderDirector.java:459)
    But this is the URL we use to go to the Solution Manager SLD!!! and the user is also correct.
    1.I want to setup a way where the Solution Manager (Admin) SLD is populated from the production SLD every so often thru SMSY_SETUP -> Expert Settings -> Write back into SLD.
    2.I want to use this Solution Manager (SLD) as the Admin SLD for NWA.
    3.How do I know that the Object Manager of is up/down in the Solution Manager(SLD) and maybe restart it, while I can see that the SLD server is up.
    3.I Manually setup some of the technical systems in the Solution Manager SLD by logging onto it http://host:port/sld, but I cannot see those in System Landscape in Solution Manager.
    Can somebody please tell me how I can proceed from here.
    A quick response would be appreciated with points.

    Hi, we have server AIX and ORACLE for SAP BI7, we have SP12 in ABAP area and SP9 in J2EE area.
    So i need same SPs in ABAP and JAVA for multiples notes recomending that, and fix the GIS Maps in Web.
    So BASIS sayme SM is not compatible by Hardware, i not understand.
    We only need Solution for download SP13 and packages the Java Stack.
    Some guide for check Harware Requeriments the SM ?
    Exist some new update to ASAP for BI, looking the new versions ?

  • Wily Introscope is not running in Solution Manager 7.1 and tech monitoring

    Hi Experts,
    we are able to log in wily introscope, But metrics(values) are not coming in wily
    we re started the solution manager server, that port is working fine now, Please assist me on this to fix issue find log as attachment.
    2)we configure the technical monitoring in our solution manager system but metrics are not coming for dialog response time in dash board. which extractor i need to check how to troubleshoot,
    thanks in advance for you help
    Best Reg

    Hi Srivastav.
    Actually i am new to solution manager, and we have done basic steps of solution manager like
    system preparation,basic configuration,managed system configuration and technical monitoring,
    in tech monitoring system monitoring,and EUEM and we are planing to perform DVM and RBPD,
    my solution manager system is installed on windows 2008 server, version is 7.1 SP 7,
    currently we facing issue in wily introscope and technical monitoring dash boards metrics are not appearing and please tell me how to close the thread ,
    Best Regards,
    Hanuman

  • Solution Manager 4.0 and Program Implementation

    We are implementing an SAP Program over few years and intend to use SolMan 4.0. Can you please provide advice how to implement our scenario.
    We have an SAP Program that consists of many projects. At the Program level we have a lot of common activities and documentation [e.g. Program Charter, Macro Blueprint (explained below) Change Management, Communication plan...]. Some of the projects have started in parallel, while others will follow, 
    All of the projects will share the information at the Program level.
    What would be the right approach to implement such an SAP Program in SolMan?
    Thank you.
    In Macro Blueprint, we are looking at our business processes and links between them at a high level for several core areas (involving FI/CO, PS, HR, CRM...). After this exercise we will be doing Blueprint phases for individual projects.

    Hi, we have server AIX and ORACLE for SAP BI7, we have SP12 in ABAP area and SP9 in J2EE area.
    So i need same SPs in ABAP and JAVA for multiples notes recomending that, and fix the GIS Maps in Web.
    So BASIS sayme SM is not compatible by Hardware, i not understand.
    We only need Solution for download SP13 and packages the Java Stack.
    Some guide for check Harware Requeriments the SM ?
    Exist some new update to ASAP for BI, looking the new versions ?

  • Aperture not working to get import previews and thus import images

    I cannot seem to get images to appear int eh Import Window's preview pane, and thus cannot import them. I have some 1600 images from a recent shoot in a sub-folder on an external drive (in two locations actually) and Aperture is not hunting them down. I have tried importing files on the desktop as a test and the same problem, no previews and no chance to import. All my OS and Aperture updates are installed and I did a restart to no avail.
    I know that this version of Aperture, along with the user manually select to not import into a New Project (grip for Apple dev if they are reading), that previews take long to load and freeze the Import process on my setup. So, it could be that it is taking forever to get 1600 previews, but viewing them in a finder window shows no problems getting previews.
    Any pointers as to what the problem might be?

    Chris G. wrote:
    I cannot seem to get images to appear in the Import Window's preview pane, and thus cannot import them.
    Any pointers as to what the problem might be?
    I have occasionally had this problem and found either waiting a while or cancelling the Import and then retrying the Import (and being patient) works.
    The workflow I use includes giving a custom master/version name to the appropriate images from the camera, such as "Judy in the Garden", importing those pics of Judy, and then supplying another master/version name, such as "Punch Drunk" for the appropriate images of Punch, importing those, and so on. So it can take many iterations to pull all the images in. Often the imports work as you would expect but then suddenly, nothing appears to happen and cancel and I redo it. My suspicion is Aperture is busy doing some housekeeping or other (or hung) but since a retry or two does the trick, I don't worry about it.

  • How can some CD's import Ok and some import and have no sound?

    I have been importing songs from CD's - some import correctly and play perfectly. Some CD's import, but they are only a few Kbs and there is no sound when they play back. Does anybody know why this is happening? It's driving me up the wall! Help!
      Windows XP  

    hello, this is a support forum for the firefox browser - the issue you've described isn't really related to that though...
    however it sounds as if you've uninstalled the driver for your audio device. in order to fix this, go to the support section of your device's manufacturer and browse for drivers for your hardware model, download the audio drivers available and reinstall them.

  • Solution Manager as CEN and PI 7.1

    Hi,
    We have a PI 7.1 sytem that has a Message-Based Monitoring that is configured LOCALLY via Runtime Workbench -> Alert configuration (explained here : https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e05ad5a6-4b4f-2b10-df94-9b9e0392d306).
    Also we have Solution Manager 4.0 SPS17 and is configured and a Central monitoring system (CEN). Soon, we are going to configure the ALM in the solution manager.
    However, I need to know how the Message-Based Monitoring integrated the ALM mechanism of the CEN system ? did anyone implement it ? moreover, can we configure the Message-Based Monitoring via the solution manager to prevent any configuration being done locally ?
    Please advice,
    Dimitry Haritonov

    You can also setup an Alert Management (ALM) either on Solution Manager or any Netweaver based system.  ALM allows you control alerts more narrowly.  You could have a rule for that specific system where no alerts are sent given a specific time window.
    It's great for setting rules that say - send an email when XX system has an issue during these hours.  Then after work or during the night shift, send an SMS text instead of an email.  ALM is very powerful and can be used by all SAP solutions - ERP, SCM, Solution Manager, Portal - etc etc.  It's basically a rules based system for routing alerts.  Also allows you to do escalations and force people to confirm alerts when they have acknowledged them.
    Hope this gives you another option.

  • Difference between Solution manager 3.2 and 4.0

    Hi
    Can anyone tell me about the solution manager functionalty differences between 3.2 version and 4.0 version
    points will be rewarded
    Dinaker vikas
    Edited by: Dinaker Vikas Kommugury on Mar 26, 2008 12:16 PM

    Hi Dinaker,
    I have attached two helpful link below there you can assist your self .
    http://www.saptechies.org/release-notes-sap-solution-manager-32/
    http://www.saptechies.org/release-notes-sap-solution-manager-40/
    thankssss

  • Solution Manager 4.0 and SAP R3 4.7E - Business Process Repository Question

    When I am in solution manager setting up my business processes (solar01) to select my logical component with the drop-down I do not see my SAP R3 ERP 4.7 system available for selection.  They do exist in my SLD (SMSY) and all the components with the 4.7 system.  Does anyone know why they are not showing up in the drop-down for business process repository selection help?
    Thanks
    Skip Ford

    Hi,
    For how long the installation process has been running. Check the following.
    1. The virtual memory page size that you have assigned.
    2. The hard disk free space.
    3. The Virtual memory should be optimized size, should not be larger than the free space available.
    These are performance optimization settings.
    I guess the installation would take around ten hours, I am not sure.
    But one thing is sure <b>SAP</b> is not that bad to get aborted abruptly.
    Keep Patience while installing. Before that take care that your system satisfies, requirements.
    Hope I was clear. Feel free to get back, incase you face any problem.
    --Thanks and Regards,
    Ragu
    ERP,
    Suzlon Energy Limted, Pune
    Extn: 2638
    +919370675797
    I have no limits for others sky is only a reason

  • FREE SAP Solution Manager Simulations, eBooks and Presentations

    Learning on Demand by SAP ([LoD|https://lod.sdn.sap.com/]) has recently been updated with approximately 100 FREE Simulations and eBooks, some of which relate to SAP Solution Manager. SAP Simulations and eBooks are a convenient way of obtaining SAP training on new topics or updating your existing knowledge on new product releases.
    Examples of the free Solution Manager elearning resources available on LoD include:
    - SAP Solution Manager Use Cases
    - Global Roll-out
    - Sizing SAP Solution Manager
    Click [FREE SAP elearning content|https://cart.lod.sdn.sap.com/pages/FreeContent/lod_free_courses.htm] to review the new elearning content and start Learning Now!

    Hi Shane,
                      Thanx for sharing the information.
    Regards
    Spree

  • Solution manager 7.0 and Non-SAP Sys. for managing whole IT infrastructure

    Hello Gurus,
    ive tried to search the allmighty google and SDN network for an answer how can we use the SolMan 7.0 for external applications (non-SAP).
    What is our concern is that basically the Sol Man is described for using with whole SAP product environment. project management, chagne management, support, updating and etc.
    My idea is:
    Can we use SolMan for describing our whole IT projects and processes?
    What i mean is if for example we have a payroll system which is running in non-SAP environment, can we describe the project for it? track the changes to it? document everything and etc. Its like to use the SolMan for whole IT infrastructure no matter if the application is SAP or non-SAP environment.
    Best regards
    Laurynas Prikockis
    Edited by: Laurynas Prikockis on Aug 18, 2010 6:50 AM

    Hello there,
    SAP Solution Manager contains some functionality to work with non SAP products. For example, in transaction SMSY (system landscape) you can define non SAP products and therefore non SAP systems, although the functionatlity that you get thus is somewhat limited (no automatic refresh, no logon from RFC destination, etc).
    The same applies for the project (SOLAR_PROJECT_ADMIN) part of Solution Manager. It is possible to assign a logical component for a non SAP product to a project, then in the project it is possible to describe the process and document it but it will not be possible to use the more SAP oriented functionality like links to IMG projects, etc.
    Best regards,
    Miguel Ariñ

  • Searching for Apps to help us manage employee hours and all mobile plant maintenance and hours any suggestions

    We are currently looking for a way to get rid of paper in our business. We have machines all over the place as well as staff.
    Does anyone have a app that can manage employee hours and would be able to record plant (machine) hours and jobs?

    If you are using Quick books in your company you can search for apps through their system and there is one that integrates with QB15 that is great but i cant remember the name right this second .

Maybe you are looking for

  • Movie sound plays in background when I connect a Bluetooth Headset.

    My early 2013 Macbook Pro Retina likes to play movies, and or music upon successfully pairing a Bluetooth headset. It's annoying to kill whichever application causes it every time I pair.  Is there a way to prevent this from happening? Thanks!

  • Find Indexes not used

    Hi , Is there any script that i can run to see all the indexes that are not used in the Entire batch Jobs (these batch job has many DML's on large number of tables) but present(in valid state) during the Run. The main idea is to have these indexes an

  • Can't Physically find Airport Card

    Hello- I have tried to check the installation of my airport card to make sure there is a snug connection to the antenna wire. When I open the iMac, I do not see the airport card where it should be! I have downloaded the pdf for installing or repairin

  • Voice Recognition

    i have set up my macbook to respond to pre-programmed commands and to do text to speech but is there any way of doing it so that it writes what you say straight into textedit? can any one help? thanks xheadman

  • Icon on screen

    Hi!My nano and my friends regular ipod have an icon on our screen while music plays in the upper right hand conner that looks like a sideways x with arrows pointing to the right and a line right behind the tips of the arrows... does anyone know what