CC&B Implementation Document

Hi,
I am looking for an implementation document. Is there any document available on e-delivery site, which would be of help, in case a CC&B greenfield project has to be implemented. For example, what are the steps that need to be taken right from scratch, to start the implementation of a project.
Some of the answers that I am looking for are - What are the initial steps that has to be taken to start, what is the necessary precautions that are relevant , etc.
Thanks
10733299

Look into "Preparing to Implement" topic under Administration section of the Online Help.
You should enroll in "Implementer Training" for CC&B from Oracle University.
CC&B has its own implementation methodology/approach, though is not completely different from other product implementations.

Similar Messages

  • Implementation Document Templates

    Hi All
    Does Oracle provides any standard document template for Partners for different stages of Implementation from Business requirement documents to Gap Analysis to implementation documents.
    Any pointers for those templates
    Thanks

    I think name and link of the forum is changed. Just curious why it has been changedI do not understand why, "Managing Oracle Applications" is called now "LCM: Managing Oracle Applications"!!!

  • Sample Implementation Documents

    Hello everybody.
    Please, do not get frastrated with this post. My appeal is the following. I need to develop a set of implementation documentation for Oracle UCM. Unfortunatelly I do not have any experience in writing documents for software implementation projects. I know, that implementation documentation usually can not be distributed to the third parties, but if you have any useful document samples for Oracle UCM projects, I think this can be useful for many of us.
    As for the UCM I know the sequence of actions of what should be implemented and when, but somehow I am having a hard time in bringing it all together into one document and structuring it correspondingly.
    Thanks!

    [email protected]
    thanks!

  • SAP HR Implementation Documents

    Hi all am Navin a beginner in SAP HR..........am desperately looking for a quick understanding study material's and step by step (Implementation guides)for the modules like
         1. Organizational Management
         2. Personnel administration
         3.Time management and
         4.Payroll
    Help me to shine in this field
    Thanks in advance
    Navin Ranganathan

    Hi Navin -
    There is TONS of this information that exists in posts throughout this site as well as help.sap.com . If you go to help.sap.com, you can do searches on all of the subjects that you have listed below.
    Please do a bit of the "leg work" before posting basic questions such as this. Please use the "forum" to post only until you have done thorough research on the subjects first hand.
    Thanks,
    Nick

  • Error while creating instance of Document

    Hi
    I am creating a java file , in which i m creating an instance of type Document. But it is givign the error "The type Document cannot be instantiated".
    anybody can please help?
    Regadrs,
    Anupreet

    Hi Anupreet,
    If you are trying to use <b>Document doc = new Document()</b> then it is not possible cos Document is an interface. Instead use classes AbstractDocument or DefaultStyledDocument in package javax.swing.text or implement Document interface in your class.
    use code like this
    Document doc.
    doc = new AbstractDocument();
    or
    doc = new DefaultStyledDocument();
    Hope it helps you.
    Regards,
    Narinder Singh

  • Document Splitting issue - Business Transaction

    Hi SDN,
    I would just like to seek advise on our issue for Document Splitting, specifically on the business transaction.
    We understand that you assign this business transaction to document types.
    For our case however, we do have intercompany transactions, wherein we post to an Intercompany AP and Intercompany AR.
    That means we both have AR and AP items in one document.
    My question now is which business transaction should we assign to this Intercompany Document Type?
    I've checked the selections and these are the only business transactions that we can use.
    0000     Unspecified posting
    0100     Transfer posting from P&L to B/S account
    0200     Customer invoice
    0300     Vendor invoice
    0400     Bank account statement
    0500     Advance tax return (regular tax burden)
    0600     Goods Receipt for Purchase Order
    1000     Payments
    1010     Clearing transactions (account maint.)
    1020     Resetting cleared items
    I would like to seek advise from those who has implemented Document Splitting before.
    Thanks!

    Dear,
    I have never tried to consolidate both IC AR and IC AP document type.
    Ideal it should be bifurcated as AP and AR because for One company it will be Sale and other will be Purchase.
    Please bifurcate the same and then do the configuration related to Document Splitting.
    Hope this helps!!
    Br Vivek
    Pls assign points for appropriately.

  • Document Management System for Struts Project

    I am doing a J2EE project in struts, in which i need to implement document management system containing the following features :
    1. File Upload/Download
    2. File Sharing
    3. Giving Permissions to Files, etc
    Instead of building a DMS from the scratch I am looking for a open source DMS solution which I can customize as per my needs and implement in my project. Since my project is based on struts, I am looking for a struts based solution.
    Please tell me if there are any good open souce DMS like these.

    hi jitesh,
    now i am doing the same project which you have done with struts framework. please let me know the solutions for the project.
    please reply to my mail id = [email protected]
    thanks.
    nandha.

  • Implementing DOM Interface with existing Java classes

    I had planned on using some tree-like Java classes as a Document Object Model, which would give me access to all sorts of XML and DOM tools like parsers and XSLT transformers. Initially, I thought all that would be neccessary is to implement all the DOM Interfaces in org.w3c.dom and then I would have a set of classes that conformed to DOM Level 1. It was my understanding that interfaces such as DOMImplementation and Document would interface with various XML tools, allowing creation of a class that implements Document and then Document would have its various factory methods that know how to create the various DOM nodes such as Element, Attr, Text, NamedNodeMap, NodeList, etc.
    The problem I'm seeing now is that the JAXP specification (which is what the latest Xerces and Xalan tools conform to) has something called a DocumentBuilder and DocumentBuilderFactory that appear to be necessary to tell the framework what type of class to instantiate that implements the Document DOM interface. Those appear to have a lot of methods that deal with parsing of XML documents and I didn't really want to write or even subclass any existing Parsers in order to get the functionality of traversing and transforming a set of classes that implement the DOM interface.
    Am I missing something here? Is it possible to plug in any (set of classes for) DOMImplementation and get them to work with the various DOM and XML tools out there?
    Is there an easier way to allow parts of an application access to internal data structures but have the more generic tools or APIs, such as XSL transformers, access that same set of classes as a DOM with the generic DOM interface methods?
    Can someone provide me with some guidance here? I'm in the process of finalizing some design on a system and need to know if this is possible or if I need to alter my design.
    Thanks.

    If I understand you correctly, I think I am working on a similar issue. I am unhappy with the methods given by the DOM for retrieving data from the XML file and for building a file. Our software has a bunch of code that uses these classes and it is extremely ugly. My solution was to create a facade on top of the DOM model. Essentially I have some simple classes that store all the pertinent info (for me) about the XML structure. Essentially that is the element or attribute name, its values and in the case of the element, it's children. This makes it easier for me to build and retreive the data. What I then built was a loader class and a builder class. The loader takes an XML file and parses it in using the DOM classes and builds a structure using my classes and returns the root element. The builder takes a root element and creates a DOM object out of it. This frees me of having to code around the DOM classes all over the place and makes it simple to upgrade our XML code if the DOM changes or a better DOM is released. I am using factories to facilitate this and allow me to have loaders for specific types of XML documents so that I can have a class for each which further simplifies the XML related tasks of other developers on my team.

  • Documents or images are not shown in document viewer properly.

    Hi Friends,
    we are using sap ecc6.0 release 700.we have implemented document viewer functionality to one of our application.we have Adobe in our system.some times documets(pdfs) are shown properly in document viewer.but some times documents are not open in document viewer.in this case if restart the work station PC ,document viewer working properly.so we have to know any ways to correct the bug without restart the workstation PC.
    please suggest any ways to correct it.

    Hi Venkat,
    i am not sure about it, but lets a try ask to your basis consultant for the latest gui .i.e. 7.3 with patch level 8, use the latest GUI and then see , is still you are getting those problems, please revert with your answer.

  • Document Service Task Flow with Sharepoint as content repository

    WebCenter 11g PS3
    Can Microsoft Sharepoint be used with WebCenter Document Service Task flow ?
    I need to implement Document Workflow in WebCenter Spaces, but the content repository is Sharepoint instead of Oracle Content Server.

    Yes you can. I believe there is a sharepoint adapter available for webcenter.
    Maybe following documentation can help:
    http://download.oracle.com/docs/cd/E17904_01/webcenter.1111/e12405/wcadm_documents.htm#BABDFFDC

  • Document splitting: Post AR/AP items to HQ as against plants.

    We are in the process of implementing document splitting. During document posting, by default, receivables and payables will post to plant profit center. But we want to manage receivables and payables at HQ. I think we can achieve this by activating 'No Inheritance of A/c Assignments' check box for say a Vendor (or Customer) Invoice business transaction (using standard transaction variant 0001?) by configuring extended Document Splitting.
    I would like to know how the community members have handled such a requirement.
    Thanks

    Hello
    System updating the profit center from corrsponding expenses revenue items to Vendor custome line item
    as per your requirement it should be other than the expenses /  revenue profit center
    Can you please re check your requirement
    Thanks
    Kameshwar Rao

  • Attaching a document

    hello,
    i have searched few threads before i am posting this question, the questions still remains is how do i attach a doc to the sales order, i got the answer like going to SU01 and activate parameter, my question is there any other way? , anyway it can be configured ? , as i understand SAP took out  ' service for object' for because there were performance issues, can someone explain what issue could arise from this & is there another way to do this ?
    regards
    Edited by: dilip krishnan on Jan 5, 2009 10:30 PM

    Dear Dilip,
    Sorry, But could you Please state your issue with "Service of Objects"?
    Please refer to OSS note 598073 for further details.
    Services for Object (Generic Object Services - GOS) was taken off in 4.7 due to performance reasons; But its working fine with ECC 6.0
    The same is being used in my last implementation.
    It works only in display or change mode (i.e. VA02, VA03). First you need to create your sales order, save it and then you can attach the desired documents.  
    An alternative would be to implement Document Management System (DMS), you can add documents in creation mode.
    Best Regards,
    Amit
    Note: Meanwhile, you may refer to complete thread:
    [Service of Objects|Re: attachement of word doc in sales order]
    For Information Sake: [Generic Object Services in SAP|www.verbellacmg.com/asug_2006_walls_404.ppt]

  • Unable to update rating (rating column) on host document using JavaScript Object Model API inside sharepoint hosted apps

    Hi Everyone,
    We are developing SharePoint hosted apps for Office 365, for that we are going
    to implement document rating functionality inside Sharepoint app. The host web contain document library (“Documents”) and from apps we need to rate each document. The rating functionality working fine with CQWP in team site  using
    JavaScript Object Model API.
    But the same code is not working inside apps and giving error:-
    If we are using app context than error will be:-
    "List does not exist.
    The page you selected contains a list that does not exist.  It may have been deleted by another user."
    And for Host context than error will be:-
    "Unexpected response data from server."
    Please help on this
    Please see below code..
    'use strict';
    var web, list, listItems, hostUrl, videoId, output = "";
    var videoLibrary = "Documents";
    var context, currentContext;
    var lists, listID;
    var list, parentContext;
    var scriptbase;
    (function () {
        // This code runs when the DOM is ready and creates a context object which is 
        // needed to use the SharePoint object model
        $(document).ready(function () {
            hostUrl = decodeURIComponent(getQueryStringParameter("SPHostUrl"));
            context = SP.ClientContext.get_current();      
            SP.SOD.executeFunc('sp.js', 'SP.ClientContext', sharePointReady);
        function sharePointReady() {
            scriptbase = hostUrl + "/_layouts/15/";
            // Load the js files and continue to the successHandler
            $.getScript(scriptbase + "SP.Runtime.js", function () {
                $.getScript(scriptbase + "SP.js", function () {
                    $.getScript(scriptbase + "SP.Core.js", function () {
                        $.getScript(scriptbase + "reputation.js", function () {
                            $.getScript(scriptbase + "sp.requestexecutor.js", execCrossDomainRequest);
        //Query list from hostweb
        function execCrossDomainRequest() {       
            //Load the list from hostweb
            parentContext = new SP.AppContextSite(context, hostUrl);
            web = parentContext.get_web();
            list = web.get_lists().getByTitle(videoLibrary);
            context.load(list, 'Title', 'Id');
            var camlQuery = new SP.CamlQuery();
            camlQuery.set_viewXml('<View><Query><OrderBy><FieldRef Name="Modified" Ascending="FALSE"/></OrderBy></Query><RowLimit>1</RowLimit></View>');
            listItems = list.getItems(camlQuery);        
            context.load(listItems);
            context.executeQueryAsync(onQuerySucceeded, onQueryFailed);
        //Process the image library
        function onQuerySucceeded() {       
            var lstID = list.get_id();
            var ctx = new SP.ClientContext(hostUrl);       
            var ratingValue = 4;
            EnsureScriptFunc('reputation.js', 'Microsoft.Office.Server.ReputationModel.Reputation', function() {      
            Microsoft.Office.Server.ReputationModel.Reputation.setRating(ctx, lstID, 1, ratingValue);       
            ctx.executeQueryAsync(RatingSuccess, RatingFailure);
        function onQueryFailed(sender, args) {
            alert('Failed' + args.get_message());
        function failed(sender, args) {
            alert("failed because:" + args.get_message());
        function RatingSuccess() {
            alert('rating set');
            //displaystar();
        function RatingFailure(sender, args) {
            alert('Rating failed : : ' + args.get_message());
        //Gets the query string paramter
        function getQueryStringParameter(paramToRetrieve) {
            var params;
            params = document.URL.split("?")[1].split("&");
            for (var i = 0; i < params.length; i = i + 1) {
                var singleParam = params[i].split("=");
                if (singleParam[0] == paramToRetrieve) return singleParam[1];
    Thanks & Regards
    Sanjay 
    Thank you in advance! :-)
          

    Hi,
    According to your post, my understanding is that you want to update list column in SharePoint hosted apps using JavaScript Client Object Model.
    Based on the error message, it seems not retrieve the list object in context. I suggest you debug the code step by step using Internet Explorer Developer Tools to
    find the problem.
    Here are some demos about using JavaScript Client Object Model in SharePoint hosted app:
    http://blogs.msdn.com/b/officeapps/archive/2012/09/04/using-the-javascript-object-model-jsom-in-apps-for-sharepoint.aspx
    http://sharepoint.stackexchange.com/questions/55334/how-to-access-list-in-sharepoint-hosted-app
    http://www.dotnetcurry.com/showarticle.aspx?ID=1028
    Best regards
    Zhengyu Guo
    TechNet Community Support

  • Document status values

    Hello!
    I am on solar02 transaction and pulling out IMG objects for configuration. After configuring I am documenting the config in the  by pulling object-document . The default status values for this in "processing status"column are - open, in process, finished and not relevant". How do I add more status values to this drop down menu?
    Thanks.
    Mark

    Hi Mark,
    you need to create 2 status schemes.
    Goto SPRO > SAP Solution Manager Implementation Guide > SAP Solution Manager > Advanced Configuration > Scenario-Specific Settings > Implementation > Document Management > Status for Documents > Define Document Status Schemes
    Do these steps for a blueprint schema and config schema
    1. Click yes to the Cross-Client popup
    2. Click the New Entries button
    3. Name you status Schema
    4. Click Save
    5. Highlight the new schema
    6. Click the status value folder on the left
    7. Click the New Entries button
    8. Add you values in the order you wish, initial status, min, max, ect..
    9. Click save
    Go to SOLAR_PROJECT_ADMIN
    Open your project
    Click the Project Standards tab
    Click the Documentation Types tab
    Click the Project Template button (bottom right)
    Find you documentation types for Blueprint and Configuration in the right hand box
    Go to the last column for those documentation types (you'll need to scroll)
    Select the newly created schema
    Click the save button
    Dont forget to assign point
    Regards
    Kenny

  • HTML SharePoint Document Library setup

    Hi,
    Following the steps from https://msdn.microsoft.com/en-us/library/office/dn592160.aspx to associate a document library with an entity I've managed to implement everything but stuck on the step in which I add the button and then need to select the createOrUploadDocument method.
    But the method does not exist, only the AddEdit, View and other usual methods associated for any entity.
    Everything else was done correctly (relationship with DB (not intrinsic), and the sharepoint entity is indeed a Document Library.
    Any help appriciated.

    You have to add the document collection to the screen first. See:
    Implementing Documents in a SharePoint 2013 Cloud Business App
    (LightSwitch)
    Unleash the Power - Get the LightSwitch 2013 HTML Client / SharePoint 2013 book
    http://LightSwitchHelpWebsite.com

Maybe you are looking for