ChaRM problem

Hi everyone,
I'm having an issue creating a maintenance cycle.
1. I have created the system landscape for the R/3 logical component. It consists of a Dev, Q, and Prod box.
2. I have create a maintenance project
3. In the maintenance project, I have created the IMG for R/3
4. On the change request tab, I click the activate change request check box, and it says "Warning: Problems occurred during synchronization of the system landscape".
5. When I click on the question mark, the information is the following:
Warning: Problems occurred during synchronization of the system landscape
Message no. /TMWFLOW/TRACK_N101
Diagnosis
Errors occurred during synchronization of the system landscape.
Procedure
Call transaction SLG1, and select the main object /TMWFLOW/CMSCV to view the application log. This contains the error logs for errors that occurred during synchronization of the system landscape.
Possible causes of the error are:
No correctly defined maintenance project exists
Missing or incorrect RFC connections to the satellite systems
Missing or incorrect authorizations
Once the error has been resolved, the system landscape has to be synchronized again.
6. When I call transaction SLG1, and select the main object /TMWFLOW/CMSCV it says:
"Project ZCHARM10 was not found in the project administartion table"
7. When I click the question mark for more info, it tells me that my project isn't in /TMWFLOW/Projmap and to perform the steps I performed in step #4 above. Which doesn't fix the problem
8. When I try to go to the object /TMWFLOW/Projmap, it doesn't seem to exist. When was this suppose to created?
regards,
Jason

Hi Jason,
Can you do one cheking
1.In the System landscape setting,chek for the shipment route,whether it shows the proper transport route you have defined in the satellite system?
2.Is your transport route is client specific transport route?
Some times the error we are getting are not directly related to the source of the problem.
Please check for this and revert back.
Thanks and regards,
Avinash.

Similar Messages

  • CHARM Problems with the Transportroutes

    Hi All,
    In our ECC Landscape we have two clients for two company organizations:
    Organization SRG:     E33/002     Q33/002     P33/002     /GR_FTS/     (Project KLR_EINF1)
    Organization STXT:     E33/600     Q33/600     P33/600     /GR_STX/     (Project ZSTXTWART)
    [transport routes graphic|http://www.fanshome.ch/toscana/TMS.jpg]
    For the two organizations we made each a project in changemanagement with their own task plan.
    As a example in E33/600, if we create a new operation concern, a new workbench transport request with project u201CZSTXTWARTu201D has to be compiled.
    When we want to save the new operation concern, the newly created transport request is not visible. We assume itu2019s because we already have created a operation concern in client E33/002 and that this operation concern kind of reserves the packet KEG0 for the transport group /GR_FTS/.
    Is there any solution to this problem?
    Thanks
    Regards,
    Roland

    pagination for tables on Pages is not working properly... for 5.5 version... Any solution???

  • Using Charm at cutover to handle deleted objects

    Hello experts,
    System landscape contains of dual landscap meaning one project ladnscape and one maintenance landscape.
    Project: D01>T01>Q01     ( no charm )
    Maint: DEV>QAS>PRD      ( charm is used )
    At project Go Live cutover is done från Project line Q01 to Maint DEV.
    All transports imported in Q01 is added manually to import queue of Maint DEV and imported.
    After that 1 WB request and 1 Cust. request is created via charm and all objects from the
    cutover transports imported are added to those chamr transports. Then charm handles the
    transport process through the maint landscape up to production.
    Problem
    =======
    If cutover transports contains deletion of objects, the transports are imported to DEV maint, object is deleted.
    When including all objects from cutover transports into the two charm transports it will then ofcourse fail during
    releae of the transports on the deleted objects as they no longer exist in DEV maint. This is of course not a specific
    charm problem but a TMS problem. Or not even a problem it is as it should be.
    Question
    ========
    Is there any way of handling this scenario, can charm in any way handle this ?
    Thanks,

    I checked the link you provided and that descibes as you say a dual landscape but i don't think it will solve this problem.
    As i understand you setup the retrofit process one-way and that would be Maint DEV -->  Project DEV.
    That is all fine keeping all changes done in maintenance landscape in synk with project landscape.
    But the cutover process is manual, as also the drawing states, meaning adding project landscape transports
    to Maint DEV system import queue and import them. But if a transport contains objects with the delete flag it will be
    deleted in the Maint DEV system. All fine that far. But when you then inlcude all cutover transports objects into a charm transport it will not check if object still exist in Maint DEV system ( wich it does not anymore ), it will include evertyhing that is part of the cutover transports. Meaning you include objects with delete flag on it. When you release this now in Maint DEV system what it does is to check if object exist in TADIR, it does not. You can fool this release process by manually create an entry in TADIR, release the transport, then delete the entry in TADIR. But if you have cutover transports with many deletions, then this is not the way to go.
    So please explain how the retrofit procedure would help in the scenarion at cutover and delete flag.
    Thanks.

  • EqualsIgnoreCase problem

    Ok here's the deal, new to java and always having problems.
    For the class I'm in I had to create a program that would use equalsIgnoreCase to either terminate or continue the loop. That program worked just fine:
    import java.util.*;
    public class ExamAverager {
        public static void main(String[] args) {
                double sum;
                int numberOfStudents;
                double next;
                String answer;
                Scanner keyboard = new Scanner(System.in);
                do {
                     System.out.println("Enter all scores to be averaged.");
                     System.out.println("Enter a negative number after");
                     System.out.println("you have entered all the scores.");
                     sum = 0;
                     numberOfStudents = 0;
                     next = keyboard.nextDouble();
                     while (next >= 0)
                      sum = sum+next;
                      numberOfStudents++;
                      next = keyboard.nextDouble();
                          if (numberOfStudents > 0)
                               System.out.println("Average score: "+ (sum/numberOfStudents));
                          else
                               System.out.println("No scores to average.");
                          System.out.println("Want to average another exam?");
                          System.out.println("Enter yes or no.");
                          answer = keyboard.next();
                   }while (answer.equalsIgnoreCase("yes"));
    }Then we had to take the program and add to it, now it won't work. The compiler tells me it can't "find symbol variable answer"...can someone tell me the difference? or why it won't work this way? here's the new program code (nowhere near being done as I have awhile to go I don't even know if it will do what it is supposed to, but I can't find out b/c it won't get past the equalsIgnoreCase)
    import java.util.*;
    public class GradeCounter2 {
        public static void main(String[] args) {
             do {
                  double sum, nextNumGrade;
                 int numberOfStudents, countA, countB, countC, countD, countF;
                 String answer;
                 Scanner keyboard = new Scanner(System.in);
                  sum = 0;
                  nextNumGrade = 0;
                  numberOfStudents = 0;
                  countA = 0;
                  countB = 0;
                  countC = 0;
                  countD = 0;
                  countF = 0;
               while (nextNumGrade >= 0)
                        sum = sum+nextNumGrade;
                      numberOfStudents++;
                      if (nextNumGrade >= 90)
                             countA++;
                        else if (nextNumGrade >= 80)
                             countB++;
                        else if (nextNumGrade >= 70)
                             countC++;
                        else if (nextNumGrade >= 60)
                             countD++;
                        else if ((nextNumGrade < 60)&&(nextNumGrade >= 0))
                             countF++;
                        nextNumGrade = keyboard.nextDouble();
            System.out.println("Number of A's = " + (countA));
              System.out.println("Number of B's = " + (countB));
              System.out.println("Number of C's = " + (countC));
              System.out.println("Number of D's = " + (countD));
              System.out.println("Number of F's = " + (countF));
            if (numberOfStudents > 0)
                 System.out.println("The average is " + (sum/numberOfStudents));
              else
                   System.out.println("There were no scores to average.");
                 System.out.println("Want to average another exam?");
            System.out.println("Enter yes or no.");
                answer = keyboard.next();
              }while (answer.equalsIgnoreCase("yes"));
    }Thanks bunches!
    ^_^ Dannii

    nevermind - I got it, I had everything set inside the do loop. ok. now here is my code, all fixed up and works like a charm problem is that i need to have the exit question be "Please enter a score from 0 to 100 or (Negative Number) to quit" so I need to use an int to get out of it, can you use a boolean expression in an equalsIgnoreCase? I thought it had to be a String, so what do I do? use a System.exit(0)?
    import java.util.*;
    public class GradeCounter2 {
        public static void main(String[] args) {
                    double sum, nextNumGrade;
                 int numberOfStudents, countA, countB, countC, countD, countF;
                 String answer;
                 Scanner keyboard = new Scanner(System.in);
                  do {
                  sum = 0;
                  numberOfStudents = 0;
                  countA = 0;
                  countB = 0;
                  countC = 0;
                  countD = 0;
                  countF = 0;
                  System.out.println("Enter numerical grades");
                 System.out.println("in the range of 0 to 100 -");
                 System.out.println("integers, only, please!");
                 System.out.println();
                 System.out.println("Enter  (Negative Number) to terminate data entry.");
                  nextNumGrade = keyboard.nextDouble();
               while (nextNumGrade >= 0)
                        sum = sum+nextNumGrade;
                      numberOfStudents++;
                      if (nextNumGrade >= 90)
                             countA++;
                        else if (nextNumGrade >= 80)
                             countB++;
                        else if (nextNumGrade >= 70)
                             countC++;
                        else if (nextNumGrade >= 60)
                             countD++;
                        else if ((nextNumGrade < 60)&&(nextNumGrade >= 0))
                             countF++;
                        nextNumGrade = keyboard.nextDouble();
            System.out.println("Number of A's = " + (countA));
              System.out.println("Number of B's = " + (countB));
              System.out.println("Number of C's = " + (countC));
              System.out.println("Number of D's = " + (countD));
              System.out.println("Number of F's = " + (countF));
            if (numberOfStudents > 0)
                 System.out.println("The average is " + (sum/numberOfStudents));
              else
                   System.out.println("There were no scores to average.");
                 System.out.println("Want to average another exam?");
            System.out.println("Enter yes or no.");
                answer = keyboard.next();
              }while (answer.equalsIgnoreCase("yes"));
    }

  • MAIL: Can sign, encrypt but not decrpyt

    After Mail was driving me crazy with weird error mesages, I deleted all my certificates and got the replaced by Versisign.
    I imported then and since then I can sign and encrypt mails from both of my accounts like charm.
    problem is: I can't decrypt a message.
    I doublechecked the used certificate with the sender and serialnumber and fingerprint are ok. He deleted all my certificates form his keyring and I send him a signed message again which cause the (correct) certificate to be imported in Keyring. But when he sends me a encrypted message I can't decrypt it.
    Mail is just saying "Can't do" in that yellow bar and informs me that I might haven't got the right certificate in my keyring.
    This is driving me crazy ...
    Anyone with some ideas?

    OK, Keychain Access has three Keychains, two of which appear identical right down to Date Modified for each password) and a third called X509 Anchors.
    Within each of the two apparently identical Keychains is a single POP3 password for my ISP with my email account number in the info box at the top (when I view the other two users's accounts in Mail preferences, their account numbers are the same as this but suffixed by _2 and _3. But, as I say, the only POP password appearing in Keychain Access is mine. Do you mean I should delete it?

  • Time Machine UUID headaches...

    For a while Time Machine worked like a charm: problem happens, pop in Snow Leopard DVD, repair HD, restore from TM, restart, VOILA!  Back to the way things were... but then, and this really got me, Safari updated once again to 5.1.2, my Unity Player plugin I use for Battlestar Galactica Online failed, and I went to restore the Mac again to return to the earlier Safari.... only to find when it finished I had the SLOWEST system out.  Looking into it with Permission Repair, suddenly ALL the ACLs of EVERY file had errors:  for some reason my machine's UUID changed.
    So if Time Machine offers a hassle free way of keeping your files intact to resort to after a major crash, how does the changing UUID factor into it?  I understand this may be a feature designed to discourage restoring your system onto anyone else's system...  but because of this problem, my TM backups are rendered useless because Permission Repair didn't fix nuthin.  Looking into possible fixes yielded some complicated use of scripts to change your UUIDs the way Time Machine likes, but I am the token Mac user: show me a script or command prompt and I run away
    I suppose my question is this:  is there an easy (ie. an app that gives you a user friendly interface) way of returning my system's UUID to what it was when I created my TM backups?  If not, Apple needs to figure a way to incorporate this (it could be a menu command requiring admin account authorization) as once the UUID of the machine changes, the TM backups are useless.

    Discovered the answer myself by doing a little experiment with a blank hard drive: I noted the UUID, then erased the partition without leaving Disk Utility. The UUID appeared to be the same (as I'd discovered before). But when I quit Disk Utility and opened it again, the UUID was different! I then erased the drive, did the same thing again, and duplicated my results.
    To me, that means erasing the partition actually does change the UUID, but Disk Utility doesn't show the new one unless you quit it and reopen it.

  • Please help – i've designed myself into a bit of a corner...

    so i have this site that i'm very happy with – problem
    is, i want to be able to email clients a link to a specific part of
    the site (rather than simply dropping them off at the front door).
    now, i understand that there's a way to do this but i think it's a
    bit over my head... and that i may have needed to have built the
    site with a certain structure from the start.
    a good workaround, i thought, would be to put the swf in
    question in its own html file and link right to that. works like a
    charm. problem is that, when i do that, i lose a feature i like a
    lot – namely, the fact that i use javascript to change the
    color background of the html page to match the particular section.
    SO - i would either like to find a way to link to a
    particular place in my flash movie (preferably a way that doesn't
    involve rebuilding the whole site!) or find a way to use my quick
    and dirty solution and still retain the color change aspect.
    this will all make a lot more sense when you visit the link:
    www.quintandquint.com
    thanks in advance for any direction you might be able to
    provide!

    The links have to be worded with "?" because that is how you
    send variables from a url string into Flash.
    So its your URL, ?, Variable name, Equal sign, variable value
    www.urlurl.com?variable=value
    In you existing FLA you just need some actionscript on the
    first frame to redirect if there is a url variable present. For
    example if you use the variable called url and give it a few value
    here is the check for it:
    var redir = _level0.url; //sets variable redir to url string
    variable called url
    if (redir == "home"){
    gotoandPlay("home");
    }else if (redir == "aboutus"){
    gotoAndPlay("aboutus");
    }else{
    play(); //no variable found
    That is just an example of how to use url variables and
    checking them in flash. If you find a better way of making the user
    jump to a section I'd like to see it for future reference.

  • I was having problems connecting to my internet at home with my 4s.  I tried many of the suggestions.  Nothing worked.  I did not want to sit on the phone with apple etc trying to fix it.  I bought a router extender.  It worked like a charm.

    I just want to let those of you who have problems connecting to home internet.  I had same problem with my 4s iphone and tried many of the suggestions here as well as on the internet.  Then I found something called an internet extender. Bought it and worked like a charm.  It was worth the $60 I paid.  No more hours of trying to figure it out.  I don't know if this will work for anyone else with this problem but if it helps you I'm happy

    I would recommend that you do the following as a minimum:
    Power-down the modem, AirPort Express base station, and computer(s).
    Power-up the modem; wait at least 10-15 minutes to allow it adequate time to initialize.
    Power-up the Express; wait at least 5-10 minutes. Note: The AirPort's status light may continue to flash amber after it has initialized. That is because, there may be some additional configuration items necessary, like setting up wireless security, before the overall setup is completed to get a green status.
    Power-up your computer(s).
    In this basic configuration, the Express will broadcast an unsecured wireless network with a Network Name (SSID) of Apple Network NNNNNN. Network clients, connected to the base station either by wire or wireless, should now be able to access the Internet through the ISP's modem. Once Internet connectivity has been verified, you can use the AirPort Utility to configure the base station for wireless security and any other desired options.
    If the above steps do not solve the problem, start over with step 1 above, but then perform the next steps between steps 1 & 2. above.
    Disconnect the Express from the Internet broadband modem.
    While all of the devices are powered-down, perform a "factory default" reset on the Express. This will get it back to its "out-of-the-box" configuration and make setting it up much easier, especially if you use the "Assist me" process within the AirPort Utility. (ref: Resetting an AirPort Base Station or Time Capsule)
    After the base station resets, go ahead and power it back down.
    Reconnect the Express to the Internet broadband modem. For the 2nd generation Express, be sure to connect the cable to the base station's WAN (circle-of-dots) port.
    Continue with step 2 in the first set of steps.

  • Charm: BP problem with the user

    Hi!
    I have problem with the user for the usage of ChaRM.
    When I try to set the the (urgent) correction in Development i get the following error.
    There is no valid business partner assigned to your user.
    Meanwhile the appropriate BP-entry for the user exists:
    External BP number: <SID> <CLNT> <user name>
    Identification number: <SID> <installation number> <user name>
    Furthermore I have the following error, when I try to approve the change request:
    Partner 141 (Change-Manager) is neither an employee nor an organizational unit
    I would be great to get some help here.
    Thank you
    regards
    Thom

    Hi Thomm,
    1. There is no valid business partner assigned to your user.
       In BP under identification tab,
       ID type    idenification number
      CRM001 <SID> <installation number><CLNT><username>
    2.Partner 141 (Change-Manager) is neither an employee nor an organizational unit
    Assign the BP role as "Employee" for Change Manager
    regards
    Naveen

  • Warning: Problems occurred during synchronization in Charm with virtual sys

    Hi Team
    I have configured charm with virtual system --(Dev>V01>V02>) as client specific STMS , Where V01 is Quality and V02 is production system; When I do consistency check from solar_project_admin tcode for project created, it shows no errors ;
    but when i try to activate the charma and click on "refresh" button , it throws following error
    "Warning: Problems occurred during synchronization" ;I have checked the logs in SLG1 for object "/TMWFLOW/CMSCV" ; but
    there are no errors except warnings for BC Sets , Can you pl guide what might have gone wrong ?
    All the RFC's are working fine and there is no authorization issue in solution manager.
    Thanks
    Swati

    hi,
    for the CTS activation you must do all the below,
    1. SMSY --> landscape creation
    2. RFC Creations
    3. Client Specific TMS configuration
    4. Prj --> CTS activation.
    go through the below doc,
    [https://websmp209.sap-ag.de/sapdownload/011000358700000657692007E/eCTS_ChaRM_SP12.pdf|https://websmp209.sap-ag.de/sapdownload/011000358700000657692007E/eCTS_ChaRM_SP12.pdf]
    jansi

  • ChaRM: Normal Corrrection: Problem in  /TMWFLOW/TS_READ_TRORDER_HDR

    Folks,
    I am implementing ChaRM in SOLMAN and have a problem with Normal Correction that I need help with.  When setting a Normal Correction to 'Development Complete' I get the error below.
    A technical problem occurred when RFC function module /TMWFLOW/TS_READ_TRORDER_HDR was accessed
    Message no. SOCM_ACTION_LOG 025
    Diagnosis
    An exception was triggered when an RFC module was called.
    The module is /TMWFLOW/TS_READ_TRORDER_HDR
    System Response
    The system terminated processing. The transaction contains errors.
    Procedure
    Check RFC connection NONE to the Solution Manager.
    Procedure for System Administration
    To analyze the termination, you can activate the assertions in the socm_rfc checkpoint group.
    Additional Information:
    Exception CX_SOCM_RFC_SYSTEM_FAILURE occurred (program:
    CL_CHM1_INSTANCE==============CP, include:
    CL_CHM1_INSTANCE==============CM00Q, line: 508).
    User SMTM<SID> has no RFC authorization for function group SCTM.
    The user SMTM Change Request Management comes back all green except for yellow warnings for the Service Desk and ChaRM BC sets having different values.
    The RFC destinations in table BCOS_CUST for CHARM_DEST and OSS_MSG are set to NONE.
    To further complicate matters I did find the following message post  which is not answered but the poster referenced their SOLMAN development system.  I had a virtual SOLMAN development system configured which I though may have been complicating matters so I deleted it and subsequently created a new implementation project but I still have the same issue.
    Thanks in advance for your help.
    Regards,
    Ciarán
    Edited by: Ciaran Brennan on Aug 14, 2011 1:40 PM
    Additional Information on BCOS_CUST

    It doesn't have the right authorizations. Did you run a trace? On SolMan and the system where the transports are located?
    It's probably the auth object S_RFCACL andf S_RFC which are needed in both SOLMAN and the satellite systems.
    Development Complete is creating a Transport of Copies, which Urgent does not create, so maybe it's something to do with that, but I think it's probably those two objects.
    Edited by: Jason Hickok on Aug 15, 2011 10:46 PM

  • Lion runs like a charm, I only have two small "problems"...

    Lion runs like a charm, I onl have two small "problems".
    1. I really like the possibility to encrypt the time mashine backup, but I can encrypt every external disk, but not the Time Capsule (there the button is just gray).
    2. When I start my MacPro the DVD tray opens and stays open, till I close it manualy.... any idea how to cahnge that?
    Thanks for your help.

    There's not a way at the current time.
    https://discussions.apple.com/message/15706963#15706963
    Captfred

  • ChaRM: Internal Phase Controller Problem

    Hi Team,
    I am working in Sol Man ChaRM. My scenario is as below:
    We would like to create two maintenance projects one for nomal corrections (SDMJ) & another for SDHF corrections.
    I have successfully created one mainteance project for SDHF corrections (Activated ChaRM check box) in SOLAR_PROJECT_ADMIN.
    I am trying to create one more maintenace project to handle normal corrections (SDMJ) in SOLAR_PROJECT_ADMIN. Both two projects uses same logical components. When i try to activate the check box "Activate ChaRM" in the second project, i am getting below error.
    Internal Phase Controller Problem
    Message no. /TMWFLOW/TASKLIST176
    Diagnosis
    The system was unable to generte the task list due to an internal error in the phase controller.
    For more information, see the application log (choose Messages on Generation).
    Need your valubale input to solve the error.
    Thanks
    Kumar

    Hello Kumar,
    If applicble for your release and SP level you may want to review and implement the following notes:
    #927124, #1011376 and #987927
    They should help you in solving your problem.
    Also please refer to the following link, where you find a summary of
    the steps that should be done to prepare the CHARM scenario:
    "First steps to work with Change Request Management scenario"
    First steps to work with Change Request Management scenario in SAP Solution Manager 7.0
    Further details can be found in the following SDN blogs:
    "Change Request Management scenario: Usual questions"
    http://www.sdn.sap.com/irj/scn/weblogs;?blog=/pub/wlg/15116
    "Change Request Management scenario: Working examples"
    http://www.sdn.sap.com/irj/scn/weblogs;?blog=/pub/wlg/15117
    Regards,
    Paul

  • Problem with Charms Bar, scrolling in IE 11 and with submitting authentication data

    I have very annoying problem: several times per day without any visible reason my charms bar stop showing (its not shows when I move mouse upper right corner but it shows if i click mouse), additionally in IE 11 I can not scroll and in Outlook my authenticationfails
    (username and password are ok). Also in metro view if i start search i can not click on any finding in the bar. 
    I have tried virus scan (nothing), troubleshooting (none), scan trough command prompt (scf i think) (no result) and finally system refresh (problem has occur again). I have also updated all drivers.
    I find out that temporary solution is that i log out and sign in again -  but after few hours problem appears again.
    is there any solution for this?
    I am using Win 8.1 on toshiba laptop.

    Hi,
    Do you have another user account? Does this issue happen in another user account, according to your descriotion, the problem is more likely a slow response issue: slow response to show the charm bar, slow response on the start screen...have you
    checked the cpu usage or memory usage in task manager when the issue happened, any abnormal data? Too much processed running at the same time?
    Since you have already refreshed the system, so are there any common between the new and old system? Maybe a third party program running background can be a culprit.
    Please take these into consideration and post back with the result.
    Regarding to the Outlook issue, it's recommended to post in Outlook forum
    https://social.technet.microsoft.com/Forums/office/en-us/home?forum=outlook
    Yolanda Zhu
    TechNet Community Support

  • Synchronization problems - Activating CHARM on project

    Hi All,
    I am activating CHARM (Change request Management) on a Solution Manager project. Upon CHECK we get SYNCHRONIZATION ERRORS.
    Checking returns the following errors:
    Error in background job for program RSGET_SMSY error message No active job found
    System overview for project XXXXXXXX
           Check system XXX
                      Client-specific transport control (CTC=1): No Import single method: No
    The problem is that we followed the instructions on the IMG for Change Management activation, and that included change in parameter CTC in all systems in STMS AND setting the Transport Strategy to QUEUE Single transports. Upon distributing it, it gets all consistent (CTC=1 and Single transports for ALL systems). After a while, I go back and the target systems are back to 0....
    Still in the CHECKING log:
    Check logical components
           No consolidation system found for XXX-002 (project XXXXXXX)
    This is an interesting one. Our landscape is set up with 2 clients. Client 001 and 002. We have (therefore) 2 DEVs, 2 QAs and 2 PRDs. I don't understand this message.
    Last error in the LOG:
    Check consistency of project XXXXXXXX
            Message from function module /TMWFLOW/CHECK_PRJ_CONS: No export system for XXX-002
    I know it may seem many different errors,but I am convinced they come all from the same original problem, so, of if you know how to correct any of them, please let me know. Fixing one at the time may address the all.
    Thanks
    Leonardo De Araujo

    Hi
    Please referred the Blog
    /people/dolores.correa/blog/2008/07/26/first-steps-to-work-with-change-request-management-scenario
    is the one on how to configure charm.
    hope this helps.
    feel free to revert back.

Maybe you are looking for