Common divsion

dear all,
i have two distr. channel  10,,20, and two division 01 02 and one sls org 1000
i just want to customize without extending customer(XD01), in common divison and common distr.channel  only so that material created in disrt.channel 10 should be accessible in distri.channel 20 also.
at the same time , customer created in 1000 20 01 (sales area)should be accessible to all possible sls areas(1000 10 02,) (1000 10 01,) (1000 20 01 ), (1000 20 02)
when we create va01 error like sold-to-party /material is not assigned to such.. such.. sales area should not come
in screen vor1  already setting are like below:
1000(sls org) 10 (dch) 10( dch conds) 10 (dch cust /mat)
1000(sls org)20 (dch)   20(dch conds) 20(dch cust/mat)
in screen vor2 already setting are like below:
1000(sls org) 01 (div) 01( div conds) 01 (div cust )
1000(sls org) 02 (div)  02(div conds) 02(div cust)
what is the change in setting for the above scenario .please guide as i was trying a lot couldnot execute the same.
thanks in advance .
shankar

Hi,
Carry out the following changes in VOR1 & VOR2 -
In screen vor1 change settings to :
1000(sls org) 10 (dch) 10( dch conds) 10 (dch cust /mat)
1000(sls org)20 (dch) 10(dch conds) 10(dch cust/mat)
in screen vor2 change settings to:
1000(sls org) 01 (div) 01( div conds) 01 (div cust)
1000(sls org) 01 (div) 02(div conds) 01(div cust)
The above changes should allow you to meet your requirement.
REWARD POINTS IF HELPFUL
Regards
Sai

Similar Messages

  • Customer master extend

    Hi,
    Customer master extend division wise
    I need to extend 1 customer to 3 divisions one time
    T-code - xd01

    Hi Rahul,
    you can consider two solutions for this.
    one going to VD01 / XD01 : add one more division to create sales area data to the customer. Since you have 3 divisions this process needs to be done 3 times.
    In real time we develop LSMW / BDC programs to do mass upload of customer extensions.
    second : You can config common division by taking one of divisions as reference to the remaining two. Maintain the customer for sales area with common divsion.
    In real time you cannot simply do it as you want but take the business into consideration which way they want to go.
    regards
    sadhu kishore

  • How do I use edge commons composition loader to load multiple compositions with a next and back button?

    I am working on an interactive book and have set up each page as a separate composition in edge.
    I am using  the edge commons JS library to load multiple compositions into a main composition.
    You can see how this works here: Edge Commons - Extension Library for Edge Animate and Edge Reflow | EdgeDocks.com
    The way the edge commons tutorial is set up requires a button for each composition i want to load. I am interested in loading multiple compositions with a "next" and "back" button, and a "swipe left, "swipe right" gesture on the content symbol that each composition is loaded into. I also need the swipe features on the content symbol not to interfere with the interactive elements on the loaded composition.
    Please suggest a solution that will work without adding additional scripts beyond edge commons and jquery.

    Sort of. I'm using this code inside an action for a button symbol. But it doesn't work perfectly. Trying to debug it.
    Let me know if you have any luck.
    //Check to see if pageCounter already exists
    if (typeof EC.pageCounter === 'undefined') {
      // it doesn't exist so initialize it to first page
        EC.pageCounter = 2;
    //check if the page is only 1 digit -- patch for single digit
    if (EC.pageCounter < 9) {
       // it is, so we need to pad a 0 on the front.
      EC.pageCounterString = "0" + EC.pageCounter;
      //e.g.  01 ...09,11,12,13....115,222352,,....
    else {
      EC.pageCounterString = EC.pageCounter;
    EC.loadComposition(EC.pageCounterString + "/publish/web/" + EC.pageCounterString + ".html", sym.$("container"));
    EC.pageCounter = EC.pageCounter + 1;
    //TODO for back  -1

  • How to give Common Background color for all JPanels in My Swing application

    Hi All,
    I am developing a swing application using The Swing Application Framework(SAF)(JSR 296). I this application i have multiple JPanel's embedded in a JTabbedPane. In this way i have three JTabbedPane embedded in a JFrame.
    Now is there any way to set a common background color for the all the JPanel's available in the application??
    I have tried using UIManager.put("Panel.background",new Color.PINK);. But it did not work.
    Also let me know if SAF has some inbuilt method or way to do this.
    Your inputs are valuable.
    Thanks in Advance,
    Nishanth.C

    It is not the fault of NetBeans' GUI builder, JPanels are opaque by default, I mean whether you use Netbeans or not.Thank you!
    I stand corrected (which is short for +"I jumped red-eyed on my feet and rushed to create an SSCCE to demonstrate that JPanels are... mmm... oh well, they are opaque by default... ;-[]"+)
    NetBeans's definitely innocent then, and indeed using it would be an advantage (ctrl-click all JPanels in a form and edit the common opaque property to false) over manually coding
    To handle this it would be better idea to make a subclass of JPanel and override isOpaque() to return false. Then use this 'Trasparent Panel' for all the panels where ever transparency is required.I beg to differ. From a design standpoint, I'd find it terrible (in the pejorative sense of the word) to design a subclass to inconsistently override a getter whereas the standard API already exposes the property (both get and set) for what it's meant: specify whether the panel is opaque.
    Leveraging this subclass would mean changing all lines where a would-be-transparent JPanel is currently instantiated, and instantiate the subclass instead.
    If you're editing all such lines anyway, you might as well change the explicit new JPanel() for a call to a factory method createTransparentJPanel(); this latter could, at the programmer's discretion, implement transparency whichever way makes the programmer's life easier (subclass if he pleases, although that makes me shudder, or simply call thePanel.setOpaque(false) before returning the panel). That way the "transparency" code is centralized in a single easy to maintain location.
    I had to read the code for that latter's UI classes to find out the keys to use (+Panel.background+, Label.foreground, etc.), as I happened to not find this info in an authoritative document - I see that you seem to know thoses keys, may I ask you where you got them from?
    One of best utilities I got from this forum, written by camickr makes getting these keys and their values very easy. You can get it from his blog [(->link)|http://tips4java.wordpress.com/2008/10/09/uimanager-defaults/]
    Definitely. I bit a pair of knucles off when discovered it monthes after cumbersomely traversing the BasicL&F code...
    Still, it is a matter-of-fact approach (and this time I don't mean that to sound pejorative), that works if you can test the result for a given JDK version and L&F, but doesn't guarantee that these keys are there to stand - an observation, but not a specification.
    Thanks TBM for highlighting this blog entry, that's the best keys list device I have found so far, but the questions still holds as to what specifies the keys.
    Edited by: jduprez on Feb 15, 2010 10:07 AM

  • What are the commonly encountered issue in Go-Live for GATP implementation?

    Dear All,
    I am currently involved in a GATP implementation project.
    I would like know that -
    1. What are commonly encountered GATP related problems during Go-Live?
        [I have already prepared a list for the same. Some of the root causes are like -
        1. Incorrect strategy group maintained in the material master.
        2. During CIF model creation 'Availability Check' check box not activated.
        3. Availability check and allocation should be activated for the schedule line.
        4. Incorrect rule maintenace for RBA. (RBA04)
        5. Incorrect rule assignment for RBA. (AO11)
        6. Incorrect Check instruction.
        7. Incorrect Check control
        and so on.....]
    2. Is there any check list available in the forum for the same?
    Thanks & Regards
    Piyush Ranpura

    Hi Piyush,
    1) You definitely need to ensure that your OVZJ settings are as expected in the production system after go-live as it can lead to zero confirmations or incorrect confirmations if is is missed.
    2) Coming to Product allocation, hope you know that system cannot read "0" allocation figure and to counter the same, perhaps you may need to build a solution to make it as "-1" so that system understands it better
    3) In the area of ODLs, you will face issues with incorrect data being available in ODLs, this is caused because of some inconsistencies ( I am sure ODLs as a concept is not fully fool proof ). You need to schedule the program /SAPAPO/ODLR in the production system weekly or if the data is less schedule it daily
    4) It may also happen that the logistics team had introduced some new calendars and APO team is unaware of it and you may encounter issues in Scheduling. Try to make sure that the time streams are created correctly and at the same all the relevant route scheduling condition records are correctly maintained w.r.t the data in the source system.
    5) Do a test run on Availability check immediately after system goes-live. this will tell you if there is any problem with the RFC connection, Live cache errors etc.,
    There could be many more apart from this.
    Hope this helps
    Babu Kilari

  • Steps to troubleshoot and get past common problems with Audition

    When you encounter a problem with Audition, the following steps are often useful for getting past the problem and/or determining the cause of the problem:
    1.  Hold down SHIFT while you launch Audition
         This overrides the preference files and launches Audition using the default settings.
    2.  Manually rename or delete the preferences folder
         Step 1 only overrides certain preference files, while others such as Workspace preference files, may be the cause of the problem.  Depending on your OS, locate the "5.0" folder in the location below and rename it or delete it.
         Windows XP: C:\Document and Settings\<username>\Application Data\Adobe\Audition\5.0\
         Windows Vista/7: C:\Users\<username>\AppData\Roaming\Adobe\Audition\5.0\ *
         Mac OS X: ~\Library\Preferences\Adobe\Audition\5.0\ **
              * "AppData" may be a hidden folder.  You can type it into the location bar, or enable "Show Hidden Files" in Windows.
              ** This is your user-level Library folder, not the system-level tree.
    3. Check your Audition Log.txt file
         To enable a log file with CS 5.5, you must create an empty file in your preferences folder called "Audition Log.txt" using notepad, text edit, or any other editor.  After you create this file, launch Audition and if it fails, open and/or share the log file for more specific information about what's happening.
    4. Check the Operating System console or error log
         Both OS X and Windows can track application errors, and if the problem is occurring outside of the application code - a driver conflict, for example - then the OS error report may be more informative than what we can get from the application.
         OS X: launch /Applications/Utilities/Console.app   Clear the view, then launch Audition and note any error messages that appear.
         Windows: launch Control Panel > Administrative Tools > Event Viewer > Windows Logs > Application then launch Audition and note any error messages that appear.
    5. Re-install Audition
         If at this point, nothing has resolved the issue or the error logs are inconclusive, it's a good time to uninstall Audition, reboot, and reinstall Audition.
    6. Obtain the full crash dump and send it to the Adobe team
         So you've walked through all the above steps, you've disconnected any external hardware interfaces to rule out any device or driver conflicts, and you've exhausted the basic troubleshooting steps.  Visit http://forums.adobe.com/thread/900619 and follow the steps for your OS that Charles has documented to best obtain a full crash memory dump for Audition, and send that to [email protected] with a description of the problem and the steps you've taken, and we'll take a look. 

    Firstly yes these are common problems and secondly hopefully they will be fixed with updated software 2.1 which is due for release this coming Firday!

  • How can I integrate metadata and keywords in Lightroom with those in Photoshop, Bridge, and Photoshop Elements? In other words, is there a way to retrieve common metadata templates from all modules? Thanks!

    Keyword and Metadata Integration throughout Adobe Modules

    Thanks! That's helpful.
    What I mean by "common metadata", is a unified, updated, most current metadata, which I could update in each program. That is without overwriting the metadata, but appending new keywords to the metadata I created in the previous program.
    I use Bridge, then Lightroom and finally Photoshop. That's the regular workflow: Bridge for preliminary sorting and and adding some keywords; Lightroom for organizing and picking the best images; finally, Photoshop for processing. I got Photoshop Elements on trial. Doesn't work for my purposes.
    I need to share and update the metadata / keywords when I go from one program into another. Can't retrieve metadata I set up in Bridge into Lightroom. Same happens with Photoshop, where I can't retrieve keywords I add in Lightroom. It's tedious to write up the keywords again.
    Thanks for your efforts!

  • How Common Are "Lock-ups"?

    Hi all. I just inherited a 20G "Click Wheel" iPod. It was my daughter's and it got dropped causing the screen and the HD to break. Since (long boring story about how omitted) she got a brand new one, I had the broken one repaired to use in my work truck. Half way through the first day, the 'pod locked up. I could hear the HD running but it stopped playing and would not respond to the click wheel at all. The screen was on but "frozen". By the time I got home at the end of the day, the battery was dead-o. When I connected it to my Mac it mounted OK and I was able to perform a "full restore" and recharge it. Then I moved my playlists back on to it and it seems to be working fine again. But I am wondering if this is common. I see a lot of posts about 'pods freezing up during file transfers but not about them simply locking up during use. BTW, I am using a Griffin iTrip in my truck.
    Thanx

    There are an estimated 70 million Macs running in the world. 40% of them are running Mavericks**. So that's 28 million computers running Mavericks.
    Even if there were 1000 threads here with problems, that would represent 0.000036% of the user base. Of course, that's no comfort when a genuine OS bug hits you. (And many of the problems posted here are not OS bugs.)
    ** For the record, 21% are Mountain Lion, 19% on Lion, 18% on Snow Leopard.

  • What is difference between GL and PA period common and GL and PA period is

    Hi Experts,
    Can you please help me in understanding the difference between having common PA and GL period and uncommon PA and GL period. I am only aware of common PA and GL period where in implementation option there is one check box which need to check to make sure that you are using common PA and GL period.
    As per my understanding, if u open the GL period in GL module then you can able to copy those GL period in PA module.
    So once you open the GL period in PA module accordingly your PA period will also get open.
    Please confim my understanding is correct or not.
    On the other hand how is uncommon PA and GL period works? I mean in which buisness scenario you will use uncommon PA and GL period?
    Also what is the hierarchy you have to follow in order to open GL and PA period in PA module? Is it something different from common PA and GL period?
    Also In case of uncommoan GL and PA period, if the GL period for month MAY-11 is closed in GL module but present as future in PA module then what will be the impact of the transaction unposted to GL in month of MAY-11?
    Any help on this topic is appreciated.
    Regards
    and Thanks in Advance :-)

    Hi
    Your understanding of the common GL and PA period is correct. That means the period start date and end date are the same in both modules. You open a period in GL and it is open for PA as well. You can close the period in PA, so no new transactions will hit that period in PA. On the same time that period may still be open in GL, in case you need to capture journals from other sources or enter manual journals directly in GL. You should not close a period in GL before closing it in PA, AP, AR, PO etc... You can expect to see that for most PA transactions, the value of the PA period and the GL period are the same.
    Some companies manage projects by weekly periods and not by months. In that case, the PA periods are separate and different from the monthly GL periods. You need to open and close the periods independently in each of the modules. A transaction will get to separate attributes, the PA period value and the GL period value.
    Dina

  • Multiple data sets: a common global dataset and per/report data sets

    Is there a way to have a common dataset included in an actual report data set?
    Case:
    For one project I have about 70 different letters, each letter being a report in Bi Publisher, each one of them having its own dataset(s).
    However all of these letters share a common standardized reference block (e.g. the user, his email address, his phone number, etc), this common reference block comes from a common dataset.
    The layout of the reference block is done by including a sub-llayout (rtf-file).
    The SQL query for getting the dataset of the reference block is always the same, and, for now, is included in each of the 70 reports.
    Ths makes maintenance of this reference block very hard, because each of the 70 reports must be adapted when changes to the reference block/dataset are made.
    Is there a better way to handle this? Can I include a shared dataset that I would define and maintain only once, in each single report definition?

    Hi,
    The use of the subtemplate for the centrally managed layout, is ok.
    However I would like to be able to do the same thing for the datasets in the reports:
    one centrally managed data set (definition) for the common dataset, which is dynamic!, and in our case, a rather complex query
    and
    datasets defined on a per report basis
    It would be nice if we could do a kind of 'include dataset from another report' when defining the datasets for a report.
    Of course, this included dataset is executed within each individual report.
    This possibility would make the maintenance of this one central query easier than when we have to maintain this query in each of the 70 reports over and over again.

  • How do I include common text content in two topics? RH7

    The common content that I need is about 20 lines of text in a
    table, and it appears in the middle of two different topics.
    I cannot use User Defined Variables as the content is more
    than the limit of 255 characters. If I were creating a web site, I
    would use an "Include". But can I do this in RH7? I am trying to
    avoid the need to maintain identical content in two separate
    topics, for future updates. I cannot make it a new topic and use it
    twice - it needs to insert into the middle of a topic.
    Any ideas please?

    Snippets.

  • I have 5 html pages that share a common header, footer, and sidebar. how do i use my nav bar to change the content of the body without duplicating a lot of code?

    i have 5 html pages that share a common header, footer, and sidebar. how do i use my nav bar to change the content of the body without duplicating a lot of code? thank you!

    i inherited the website. It’s for a non-profit and is not very
    sophisticated, and neither am I in webdesign. It currently has multiple
    pages that are identical except for that body section, so whenever i change
    the navigation (in the sidebar) I have to update every html page.  I want
    to have one basic page, and just call in the different body content based
    on the link the user selects from the nav bar. How can i do that using a
    script? i am using Dreamweaver.
    ~ in love and light ~
    Jeannie
    On Sat, Feb 7, 2015 at 4:07 AM, Ben Pleysier <[email protected]>

  • Error phase Install Common system files SAP NW 7.1

    Hello  
    I have a problem  in my  installation of SAP NW 7.1 for PI
    I was installating the  SAP NW but I stopped it  and  deleled this system (SID=TPI), then  I  started again  the installation (SID=PI1) but in the phase Install Common System Files i got this message:
    sapint_dev.log
               CJSlibModule::writeInfo_impl()
    File system node C:/WINDOWS/TEMP exists already. Nothing to do.
    INFO       2010-07-09 17:30:13.765
               CJSlibModule::writeInfo_impl()
    File system node D:/usr/sap exists already. Nothing to do.
    INFO       2010-07-09 17:30:13.765
               CJSlibModule::writeInfo_impl()
    Creating SAP system shares for PI1...
    WARNING[E] 2010-07-09 17:30:13.921 [ianxbservi.hpp:244]
               CServiceHandle::Open(ClusSvc)
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (267), with parameter (ClusSvc).
    WARNING[E] 2010-07-09 17:30:14.109
               CJSlibModule::writeError_impl()
    CJS-30129  Creating node $(DIR_CCMS) with type DIRECTORY failed. Original exception text was: syslib.filesystem.nodeCreationFailed:
    Unable to create node
    pgspi\saploc\ with type DIRECTORY: can't create parent node...
    WARNING[E] 2010-07-09 17:30:14.171
               CJSlibModule::writeError_impl()
    CJS-30129  Creating node $(DIR_CCMS) with type DIRECTORY failed. Original exception text was: syslib.filesystem.nodeCreationFailed:
    Unable to create node
    pgspi\saploc\ with type DIRECTORY: can't create parent node...
    ERROR      2010-07-09 17:30:14.234 [sixxcstepexecute.cpp:984]
    FCO-00011  The step createFirstSystemDirectories with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_System|ind|ind|ind|ind|5|0|createFirstSystemDirectories was executed with status ERROR .
    WARNING    2010-07-09 17:30:14.437 [iaxxejshlp.cpp:150]
    Could not get property IDs of the JavaScript object.
    ERROR      2010-07-09 17:30:14.437 [iaxxejsctl.cpp:492]
    FJS-00010  Could not get value for property .
    INFO       2010-07-09 17:30:45.921 [sixxcstepexecute.cpp:1072]
    An error occured and the user decided to stop.\n Current step "|NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_System|ind|ind|ind|ind|5|0|createFirstSystemDirectories".
    INFO       2010-07-09 17:30:48.640 [synxccuren.cpp:1016]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(const CSyPath & C:/Program Files/sapinst_instdir/NW71/INSTALL/SYSTEM/MSS/STD/AS)
               lib=syslib module=syslib
    Working directory changed to C:/Program Files/sapinst_instdir/NW71/INSTALL/SYSTEM/MSS/STD/AS.
       LOG sapint.log
    INFO 2010-07-09 17:30:13.296
    Execute step createFirstSystemDirectories of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_System|ind|ind|ind|ind|5|0
    INFO 2010-07-09 17:30:13.750
    File system node C:/WINDOWS/TEMP exists already. Nothing to do.
    INFO 2010-07-09 17:30:13.765
    File system node D:/usr/sap exists already. Nothing to do.
    INFO 2010-07-09 17:30:13.765
    Creating SAP system shares for PI1...
    WARNING[E] 2010-07-09 17:30:13.921
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (267), with parameter (ClusSvc).
    WARNING[E] 2010-07-09 17:30:14.109
    CJS-30129  Creating node $(DIR_CCMS) with type DIRECTORY failed. Original exception text was: syslib.filesystem.nodeCreationFailed:
    Unable to create node
    pgspi\saploc\ with type DIRECTORY: can't create parent node...
    WARNING[E] 2010-07-09 17:30:14.171
    CJS-30129  Creating node $(DIR_CCMS) with type DIRECTORY failed. Original exception text was: syslib.filesystem.nodeCreationFailed:
    Unable to create node
    pgspi\saploc\ with type DIRECTORY: can't create parent node...
    ERROR 2010-07-09 17:30:14.234
    FCO-00011  The step createFirstSystemDirectories with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_System|ind|ind|ind|ind|5|0|createFirstSystemDirectories was executed with status ERROR .
    WARNING 2010-07-09 17:30:14.437
    Could not get property IDs of the JavaScript object.
    ERROR 2010-07-09 17:30:14.437
    FJS-00010  Could not get value for property
    I had found information about saploc  however  still I got the same 
    The installation is on Windows 2003 + Sql 2005
    Any suggestion    for this problem
    Thanks
    Danny

    Hello
    I deleted the system  with the wizard on sapinst
    NetWeaver Process Integration 7.1 Software Life-Cycle Options Uninstall Uninstall ‒ SAP systems or
    single instances .
    Danny
    Edited by: Danny Sanchez on Jul 12, 2010 4:17 PM

  • A Common Sense Solution

    From a photographers perspective, I think many complaints about Photoshop CC are coming from people who have previously paid for the full version of Photoshop AND upgrades after that.
    First, the price for Photoshop is doubling for loyal users who upgrade each time, and increasing even more for casual users. Previous upgrades average out to $11 per month for consistent upgraders ($200 upgrade / 18 month product cycle).  A permanent $10 per month would be fair.  So, Adobe would be giving loyal users a DEAL to join the cloud version. And when factoring in people who upgraded infrequently and now join, Adobe would be making MORE money from them than their previous upgrade model!
    The second major issue: no matter how much money you have invested in Photoshop, no payments mean no using the software. How about every $200 in payments would lock upgraders into that current version and the software would not need to phone Adobe and feature updates would not download.  If you want the continued new features, then you can pay more. This would give Adobe more incentive to innovate to keep people subscribing for updates. If you stop payments after $200 and want to come back later to upgrade, you would need to pay for what you missed.
    To summarize, $10 per month for upgraders and after every $200 you lock in the current version.
    Personally, I bought Photoshop in the mid-90s and have paid a lot of money over the years to upgrade every single time.  I would be comfortable with the plan I outlined above.
    For new users, $20 per month and they lock in the current version when they reach $600.  This would be a $100 savings off the boxed version, thus an enticement to join.  After paying $600, they would then be considered an upgrader and their monthly fee would be $10.
    I think this is a common sense solution that would be fair to Adobe and the wide variety of photographers who use Photoshop.

    a very reasonable set of suggestions.   in the U.K. I am sure this would be acceptable given the prices presently charged!  my 18 month upgrade cycle has increased by 240% here due to this model, rising from £350 to £850

  • CUCM 8.6.2 /common Partition on read-only mode

    Hi Guys.
    We have installed a CUCM 8.6.2 on a UCS C210 and everything was looking fine for the last two weeks.
    I´ve noticed that "CDR Repository Manager" and "Cisco CAR DB" was not running, so I´ve accessed the CLI to start the "Cisco CAR DB" service.
    For my surprise, after logging in, I received the following message:
    ============================
    Command Line Interface is starting up, please wait ...
    java.io.FileNotFoundException: /var/log/active/platform/log/cli.bin (Read-only file system)
            at java.io.RandomAccessFile.open(Native Method)
            at java.io.RandomAccessFile.<init>(RandomAccessFile.java:216)
            at com.cisco.iptplatform.fappend.ciscoRollingFileAppender.restoreIndex(ciscoRollingFileAppender.java:100)
            at com.cisco.iptplatform.fappend.ciscoRollingFileAppender.setFile(ciscoRollingFileAppender.java:43)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.apache.log4j.config.PropertySetter.setProperty(PropertySetter.java:196)
            at org.apache.log4j.config.PropertySetter.setProperty(PropertySetter.java:155)
            at org.apache.log4j.xml.DOMConfigurator.setParameter(DOMConfigurator.java:530)
            at org.apache.log4j.xml.DOMConfigurator.parseAppender(DOMConfigurator.java:182)
            at org.apache.log4j.xml.DOMConfigurator.findAppenderByName(DOMConfigurator.java:140)
            at org.apache.log4j.xml.DOMConfigurator.findAppenderByReference(DOMConfigurator.java:153)
            at org.apache.log4j.xml.DOMConfigurator.parseChildrenOfLoggerElement(DOMConfigurator.java:415)
            at org.apache.log4j.xml.DOMConfigurator.parseRoot(DOMConfigurator.java:384)
            at org.apache.log4j.xml.DOMConfigurator.parse(DOMConfigurator.java:783)
            at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:666)
            at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:616)
            at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:584)
            at org.apache.log4j.xml.DOMConfigurator.configure(DOMConfigurator.java:687)
            at sdMain.initialize(sdMain.java:479)
            at sdMain.main(sdMain.java:646)
    java.lang.NullPointerException
            at com.cisco.iptplatform.fappend.ciscoRollingFileAppender.updateIndex(ciscoRollingFileAppender.java:117)
            at com.cisco.iptplatform.fappend.ciscoRollingFileAppender.nextFileName(ciscoRollingFileAppender.java:92)
            at com.cisco.iptplatform.fappend.ciscoRollingFileAppender.append(ciscoRollingFileAppender.java:74)
            at org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:221)
            at org.apache.log4j.helpers.AppenderAttachableImpl.appendLoopOnAppenders(AppenderAttachableImpl.java:57)
            at org.apache.log4j.Category.callAppenders(Category.java:187)
            at org.apache.log4j.Category.forcedLog(Category.java:372)
            at org.apache.log4j.Category.debug(Category.java:241)
            at com.cisco.iptplatform.cli.CliSettings.getInstance(CliSettings.java:112)
            at sdMain.initialize(sdMain.java:491)
            at sdMain.main(sdMain.java:646)
    log4j:ERROR No output stream or file set for the appender named [CLI_LOG].
       Welcome to the Platform Command Line Interface
    VMware Installation:
            1 vCPU: Intel(R) Xeon(R) CPU           E5649  @ 2.53GHz
            Disk 1: 80GB
            4096 Mbytes RAM
        WARNING:
            The /common file system is mounted read only.
            Please use Recovery Disk to check the file system using fsck.
    ============================
    In past months, we´ve noticed this error on MCS7800 servers, nothing about UCS servers.
    Here is the link for the correction on MCS:
    https://supportforums.cisco.com/docs/DOC-12955
    My doubt is how could be possible to have the same error on my CUCM virtual machine, since his Hard Drive is a vDisk?
    Did you already have this same problem?
    Any help would be appreciated.
    Thanks!

    Hi
    You get this type of corruption if the VM is powered off rather than being shut down, or if power is lost to the host for example (or it crashes for whatever reason).
    You just need to run the file check on the recovery CD, but at least you don't have to walk to the server to do it (you can just mount the ISO from vSphere).
    Aaron

Maybe you are looking for

  • How to capture an Image

    Hypothetically... I have an image drawn on a JPanel, say, a line running through a circle. How do I go about capturing this particular image, w/out getting other images that mau be present? Also, is there a way for me to allow the user to selct an im

  • How to save BI report into normal excel sheet in Bex Analyzer

    Hi Experts, version of  Bex Analyzer: Bi addon 7.x support package 7,patch 1 version 7004.4.0.5 excel-2003 when i am trying to save the report into excel in Bex Analyzer as below: file-save as->Microsoft excel work. when I open excel I am getting pop

  • Mavericks/Dual Displays

    After upgrading to Mavericks on my iMac with a 2nd display, my dock moved to my 2nd display and I want it on my primary display.  How do I get it back where it belongs?

  • My AppleTV 3 makes a horrid noise over the speakers when I play movies in Netflix.

    This problem just started and it seems to be only on certain videos. For example: all of the episodes in Season 1 of Dexter work just fine, but as soon as you try to play season 2, it makes this horrible rattling noise like a rattle snake and no othe

  • No meaning to get skype online number

    No meaning to get skype online number, i subscribed for whole year online number, but the online number doesn't work most of the time, I am very upset, disappointed, and my friends are also very upset, angry and worry when they can't find me through