Disabling of items in a Quick create Section

Hello,
Is it possible to remove the items in the left side panels of the homwpage.
Regards
Subbu

Thank you Bob and one more question is there any process in OCOD for approval process. i mean if my Sales stage is Initial somebody needs to approve and it keep on moving to Closed/Won or Closed loss by the approval of manager. The highest is the Manager level and the lowest is Sales rep, in between lot of people are involved like BDM, AGM and so on. Could you please suggest on this.
Thanks
Subbu

Similar Messages

  • Quick create problems in Portal using CRM business package

    I am using EP 7.0 and CRM BP 5.0. I have implemented the "Sales Representative" role, that I am trying to customize.
    When you create a ‘Task’ & 'Phone Call' in the ‘Quick Create’ section in the left, the ‘save and close’ function doesn’t seem to work.  I get a ‘done with errors on the page’ message.
    Any idea why I am not able to do this? Also, does anyone know which transactions were being created behind the scenes in the CRM system when I click on those links?
    Thanks a lot.
    ~Yasin

    Hello Yasin,
    you should have a look at the iView definition in the Portal which is called when clicking the Quick Create link. There you find the transaction type of the document in the parameters.
    Regards
    Gregor

  • Errors (-50) occured when i was using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in my iTunes application on my computer.

    errors (-50) occured when i was using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in my iTunes application on my computer.
    what is it?

    Quoted from the link I provided you with, in your other post.
    These alerts occur due to timeouts or conflicts trying to write a file during download.
    If you encounter this issue while accessing iTunes Store:
    See iTunes 9: "One Moment Please" or "Error (-50)" message when accessing iTunes Store
    If you encounter this issue while while downloading something from the iTunes Store:
    Delete your iTunes Downloads folder, located in:
    Mac OS X:
  ~/Music/iTunes/iTunes Media/Downloads   Note: "iTunes Media" may appear as "iTunes Music. Also, the tilde (~) refers to your Home directory.
    Windows Vista:
  \Users\username\Music\iTunes\iTunes Media\Downloads\
    Windows 7:
  \Users\username\My Music\iTunes\iTunes Media\Downloads\
    Windows XP:
  \Documents and Settings\username\My Documents\My Music\iTunes\iTunes Media\Downloads\
    After locating your iTunes Downloads folder:
    Quit iTunes.
    Delete the Downloads folder on your computer.
    Open iTunes.
    Choose Store > Check for Available Downloads.
    Enter your account name and password.
    If you encounter this issue while while downloading Digital Copies using Windows:
    Use MSCONFIG (directions for Windows XP and Windows Vista/Windows 7) to disable conflicting software.
    If using MSCONFIG steps resolves the issue, you may want to use the System Configuration Utility to turn on the third-party System Services and Startup Items one at a time (restarting your computer after turning on the item or items) to identify which System Service or Startup Item is causing the conflict.
    You can turn all of them back on by selecting the Normal Startup option under the General tab of the System Configuration Utility window, but please note that this may cause the issue to reoccur.
    If you are able to isolate the issue to a particular third-party software, you may wish to contact them to let them know of the conflict.

  • Can I disable an item in a combo box list?

    Hi,
    I have a combobox that is holdong a string array for the options. Is it possible to disable individual items within the String array?
    Dave.

    Why don't you create a record group and populate that record group into the list item on runtime?
    -Ammad

  • Disable line item display in KE30 Reports

    Hi,
    Has any one tried disabling line item display in a KE30 Report? Which authorization object can be used to disable the access to line items?
    Thanks for your time.
    Regards,
    SAP_CO1

    Hi,
    When you create user-defined authorization objects for reporting, all their fields will be checked when you execute a report, even if they are not used in the report. It is not necessary to have all fields in the report definition, but you will need at least authorization ':' to get the aggregated figures.
    Example:
    Authorization object contains fields WW001, WW002
    Report uses field WW001 as drilldown characteristic, but not WW002.
    To execute the report, the user needs authorization '*' for field WW001 and ':' for WW002.
    If he does not have authorization for WW001 then he can execute KE30 but cannot drilldown to line items
    For more information how authorization checks for user-defined authorization objects work, you can refer to the IMG documentation via CO-PA -> Tools -> Authorization Management ->CO-PA specific Authorization objects -> Define authorization objects for the information system.
    You may use transaction SU24 in order to check the assignment of authorization objects to transaction KE30.
    regards
    Waman

  • Using XMLLIST - Enable/Disable Menu Items

    I am using XMLList for creating menu items.
    I want to enable / disable menu items based on the permissions to the user.
    Below is the code snippet:
    <fx:XMLList  id="newData">
                                  <menuitem id="item1" label="{resourceManager.getString('taskmgmt', 'taskmgmt.label.newProject')}" />
                                  <menuitem id="item2" label="{resourceManager.getString('taskmgmt', 'taskmgmt.label.projectFromTemplate')}" enabled="false"/>
                        </fx:XMLList>
    private function ItemClickHandler(event:MenuEvent):void
         if(PermissionManager.isAddPermitted("WTM_PROJECT_PLANNING")){
                                                           ProjectAssignmentModel.projectAssignmentFlag=false;
                                                           if(event.item.@label == resourceManager.getString('taskmgmt', 'taskmgmt.label.newProject')){
                                                                     clearModel();
                                                                     dispatchEvent(new SwitchViewEvent(SwitchViewEvent.SWITCH_VIEW_EVENT,false));
    protected function newMenuButton_clickHandler(event:MouseEvent):void
                                            if(! PermissionManager.isAddPermitted("WTM_PROJECT_PLANNING")){
                                                      newData.item1.enabled = false;
                                            else
                                                      menuList.dataProvider = newData;
                                                      menuList.show(event.stageX + 5 , event.stageY + 5);
                                                      mode = CREATE;
    Based on the permission, I want to dynamically enable / disable the "New Project" button.
    Can someone provide information how to achieve this ?
    Further update on this, it is giving the following error while running of the application:
    "TypeError: Error #1089: assignment to list with more than one item is not supported"

    Resolved by using the correct Data Provider and iterating through the list

  • Enable disable toolbar items on click on any checkbox,radio button,text box.

    Hi Friends,
    I am create application in eclipse RCP E4 and now i am trying to Enable disable toolbar items on click on any checkbox, radio button, text box .
    Please Help me friends....

    Hello friend my proble is solve and now i am sharing my solution ....
    I am create RCP application and view side any listener click event fire time apply this code
    IEvaluationService evaludationService = (IEvaluationService) PlatformUI.getWorkbench().getActiveWorkbenchWindow().getService(IEvaluationService.class);
    evaludationService.getCurrentState().addVariable("noOfRowsChecked", noOfRowsChecked);
    evaludationService.requestEvaluation("com.jobsleaf.propertytester.canDeleteItem");
    and add plug in extension and create property tester class means listener property tester class side apply this code
    IEvaluationService ws = (IEvaluationService) PlatformUI.getWorkbench().getActiveWorkbenchWindow().getService(IEvaluationService.class);
    Integer integer = (Integer) ws.getCurrentState().getVariable("noOfRowsChecked");
    if (integer != null)
    if (integer.intValue() > 0)
    return true;
    I hope useful above code when use property tester in eclipse RCP

  • To disable the horizontal scrollbar and to create a next button to navigate

    To disable the horizontal scrollbar and to create a next button to navigate through the records. At present I create a JSF page and drag and drop my table view and then using the Tuning property I have limited the number of records to be shown. But I need to add a button and then code it to display the next few records. Can someone kindly suggest a suitable mechanism to get this accomplished.
    Edited by: 888970 on Oct 2, 2011 10:15 PM

    Hi Erp,
    At present these are the entries that I have in my JSPX page.
    I have a Table, Iterator and a Input List of Values. As per the scenario, I want a few rows to appear on the table for which I wanted to disable the horizontal scroll bar and then once I click on the list of values it must prompt me with the remaining page numbers.
    Earlier there are about 150 records in the table. I want to show them as 15 per page.
    For which I have added the Iterator and a LOV component code in my JSPX page.
    <af:iterator id="i1"
    value="#{bindings.NsEventDetailsView1.collectionModel}"
    var="row"
    binding="#{pageFlowScope.testPageBean.myIterator}"/>
    <af:inputListOfValues label="Label 1"
    popupTitle="Search and Result Dialog" id="ilov1"/>
    Then I created the bean class as per the example.
    Below is the bean class:
    import javax.faces.event.ValueChangeEvent;
    import oracle.adf.view.rich.context.AdfFacesContext;
    import org.apache.myfaces.trinidad.component.UIXIterator;
    import org.apache.myfaces.trinidad.event.AttributeChangeEvent;
    public class TestPagebean {
    public TestPagebean() {
    public void i1ov1_valueChangeListener(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    private UIXIterator myiter;
    public void setI1(UIXIterator myiter) {
    this.myiter=myiter;
    public UIXIterator getmyiter() {
    this.myiter=myiter;
    public UIXIterator setmyiter() {
    return myiter;
    UIXIterator valueIterator = getmyiter();
    if (!valueChangeEvent.getNewValue().equals(valueChangeEvent.getOldValue())) {
    int newPage =
    Integer.parseInt(valueChangeEvent.getNewValue().toString());
    int pageStart = (newPage) * valueIterator.getRows();
    valueIterator.setFirst(pageStart);
    AdfFacesContext.getCurrentInstance().addPartialTarget(valueIterator);
    But i am getting errors in the bean class.
    1. Block expecting }
    2. public UIXIterator getmyiter() {
    this.myiter=myiter;
    Return Statement missing
    3. Block expecting {
    4. Type or variable 'valueChangeEvent' not found
    5. Method 'getNewValue' not found
    6. Method 'getOldValue' not found
    7. Method 'toString' not found
    Can you suggest a possible solution?

  • I had my Itunes account disabled due to fraud, if i create a new itunes account how can i switch purchases and apps to the new ID?

    i had my Itunes account disabled due to fraud, if i create a new itunes account how can i switch purchases and apps to the new ID?

    Hi ...
    Just be cause the account was disabled (Apple ID) doesn't mean you can't reset the password and have access to your iTunes purchases.
    Use the iforgot link to reset your password > Apple ID: "This Apple ID has been disabled for security reasons" alert appears
    If you have problems resetting, use the email form here >   Apple - Support - iTunes Store - Contact Us
    edited by:  cs

  • How do I disable one item in a radio buttons control at run time

    I need to disable one item in a radio buttons control. At design time
    this is possible, but how do I do this at run time? Is this possible? I
    cannot find a property per item

    Use the property "Controls[ ]" - this gives you an array with references of each single button in the radio buttons control. These you can access with property nodes too.
    Hope this helps.
    Using LV8.0
    Don't be afraid to rate a good answer...

  • URGENT: Multiple line items in delivery document created for a STO

    Hi Gurus,
    We ar ecreating deliveries using VL10b for a STO. Teh TSO has 40 - 50 line items. But the delivery is created with one line item only an dit creates a delivery for each line item. How cna we allow the inclusion of multiple line items in delivery?
    We are using delivery type NL an ditem categor is NLN.
    Geratly appreciate any help in that.
    Thanks,
    KHAN

    Hi Gianpaolo,
    Thanks for your suggestion I have 5 shedule line itmes for one material and two shedule line for another material and when i changed the material by selecting one line for each sales document no and creates the delivery it is howing three line itmes for the 1st material and line items for the second and quantities equal to the changed quantity in VL02N. and I have value "1" in field "Split per sched.line" in "user role" view of VL10E.
    Kindly help.
    Thanks and Regards
    Tanweer

  • How to hide/disable menu items using Javascript in Acrobat 9 pro or later

    We just wanted to know on how to hide/disable menu items for e.g. 'Open' menu item under 'File' menu in Acrobat 9 or later on Mac using Javascript. It would be useful if you could provide if any other option is in place already.

    Not sure it will work, but you can try using the app.hideMenuItem() method. See reference here.

  • Unable to download previous purchases to my pc when i click on the quick link section on the itunes store home page

    unable to download previous purchases to my pc when i click on the quick link section on the itunes store home page

    What happens when you click the link?
    In what country are you?

  • Error mensage: F5734 Item 1000 should be created, a maximum 999.......

    Hello Friends!!!
    We're using NewGL and Document splliting actived ECC 6.0
    When we're trying to execute the T-code F-51, show error mensage below:
    Error mensage: F5734 Item 1000 should be created, a maximum 999 items are allowed
    We selected in GL account one line item no case it can't exceed more than 999 line items
    The system creates exchange rate difference lines automatically per account combination.
    We want to clear this FI document, but It's impossible.
    Please suggest to solve the problem
    Best Regards, Delfim

    Hello Delfim,
    Usually the system seems to detect that an FI document shall be created with more than 999 line items (= message F5138). Then the system seems to cancel automatic postings (= message F5311).
    Finally, the system concludes that item 1000 should be created and rejects the posting (= message F5734).
    In order to locate the reason for this, can you please check whether the number of line items in the posting would truly exceed 999 in the entry view.
    You have to add the line item for the bank account plus line items to be cleared plus line items for cash discounts plus possibly line items for VAT adjustment of cash discounts.
    If the number of line items in the posting would truly exceed 999 in the entry view, please view the following notes:
    note 166487
    note 25727
    Please check also note 36353 for further information about Summarization.
    I hope it helps to resolve your problem
    Best Regards,
    Vanessa Barth.

  • Error : Item Category could not created.

    Hello SAP Masters,
    While creating a "sales process" in SAP CRM I've got the following error
    "Item Category could not created"
    Now let me tel you what exactly I've done, I have defined a "Sales Process" Type transaction called "Ysal" and by copying the slandered Item Category "Tan" I've created "ZTAN" , and for the Item category group and the Item Category Usage I've created "ZItem Group" and "ZItem usage".
    Now in the Item Category determination I've filled up
    Transaction Type = Ysal
    Item Cat. Group = ZItem Group
    Item Cat Usage = Zitem Usage
    Main Item Cat. = Ztan
    and under Item Category determination
    Item Category = ZTAN
    after this I've created A product Master and a ,material where I've assigned Item Category Group, and the product master.
    Now Please explain why I've got this error, as I've maintained the determination properly so in my view during transaction creation Item Category should be determined automatically.
    One more thing I am confused about "Higher Level Item Category" and "Lower Level Item Category" please explain.
    Thanks and Regards
    Rahul

    Hi,
    Thanks for your reply, as per your guidance left  the "Item Category" field blank, and also the "Main Item Category" as blank and selected my "ZTAN" in Item category.
    After that It worked, and the Item Category perfectly determined.
    But there is error for "ATP"  not checked. Can you please explain. Also please explain what is "Main Item Category".
    As you have said the higher level category is for main product, and lower level category is for dependent product like free product, then if there is scenario where no free product , in that case what should be done?
    Thanks and Regards
    Rahul
    Edited by: Rahul07 on Jan 21, 2011 7:22 PM

Maybe you are looking for

  • What cable to use for this?

    I am trying to hook up my xbox 360 to my Macbook pro, and I am unsure of what cable to use for this. Composite cables.

  • Counting Rows of a Specific Type

    I have the following dataset and I was wondering if someone could help me out with the following problem: <data> <row type="A">item1</row> <row type="B">item1</row> <row type="B">item2</row> <row type="C">item1</row> <row type="C">item2</row> <row ty

  • How to generate n random dates between 2 time periods

    Hi, I'm trying to write a method that generates n random dates between 2 time periods. For example, lets say I want to generate n random dates between Jan 1 2003 and Jan 15 2003. I'm not sure how to go about doing the random date generation. Can some

  • Lightroom vs. elements

    I am interested in understanding  the difference in the ability of Lightroom and Elements to edit photographs; if my only interest is cropping, setting exposure, saturation, clarity, etc, rather than the ability of the software to actually change the

  • What's the role of 'throws' clause in method overriding

    I'm getting error when subclass "Parser" overrides method 'getInt()' which throws Exception but super class version don't. It is compiling without error when vice versa is true i.e., super class version throws exception but sub class version don't th