XI Specification Document

Hi,
Does anyone have a std Functional and/or Technical documentation template for gathering requirements for XI3.0?
My email is [email protected]
Thanks in advance
Danny

Hi Danny !
Check the ASAP XI Implementation Roadmap. You will need a service marketplace user.
Check this thread:
ASAP
There is a zip file for ASAP v3.7 for XI, of about 120mb.
Regards,
Matias.

Similar Messages

  • Getting Bad request error while trying to get a specific document details from c#.

    Hi,
    While trying to retrieve a specific document details using RESTful WS API from C#, it is throwing "The remote server returned an error: (400) Bad Request" exception.
    the request URL i am using for this is like;  "http://<Server>:6405/biprws/raylight/v1/documents/1111"
    But it is working fine, if i change my request URL to get the dataproviders of the same document like; "http://<Server>:6405/biprws/raylight/v1/documents/1111/dataproviders"
    Please let me know if i am missing any thing in first case, getting the details of a specific document, while sending a request to RESTful SDK.
    Thanks,
    Kalyan

    I think you are using “Content-Type” header or an “Accept” header.
    You should be using “Accept: application/xml” for that request
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center
    Canada
    Follow us on Twitter

  • Credit Limit Check - Exclude Specific Documents / Credits from Exposure

    Hi,
    I would like to know if it's possible to exclude specific document types (credits) from the credit exposure calculation used during credit limit checks.
    The ideia is to exclude "DG" credits in customer GL that are related to Trade Deal/Agreements to avoid over-exposure.
    Let me explain:
    Currently, our credit management is configured to "Static" + "Open Items" for all credit groups in the CCA. Therefore, SAP calculates the credit exposure as:
              CE = OPEN ORDERS (S066) + OPEN DELIVERIES (S067) + OPEN BILLING (S067) + OPEN ITEMS (BSID)
    Regarding "Open Items", I understand that SAP calculates the net value between all debits (receivables) and credits (returns, overpayments, etc...) already posted and not cleared in the Customer GL account. This rationale is correct since the credits are due to the customers and should be deducted from their exposure (i.e. "you may not pay them if you don't receive").
    However, in our case, we also pay trade deals contracts (i.e. trade incentives and trade marketing investments) directly to costumers and apart from sales orders or credit memos. The flow is the following: (1) contracts are managed on a satelite system and interfaced to SAP; (2) contracts are created in the costumer GL as a credit (doc. type "DG"); (3) credits are sent to accounts payable for payment via F110.
    Problem is that, contract credits volume is significant and are impacting customers credit exposure and limit check, resulting in greater exposure than allowed. That is, orders are being released while contract credits are open in the customer GL up to the max exposure, but when contracts are paid the exposure goes above the limit. For example:
    Day 1:
              Costumer Credit Limit: 100
              Sales Balance: 30
              Open Itens: 50 (receivables: 70 / contracts: -20)
              Credit Exposure: 80/100
    Day 2:
              Costumer Credit Limit: 100
              Sales Balance: 50
              Open Itens: 50 (receivables: 70 / contracts: -20)
              Credit Exposure: 100/100 (no additional orders are released)
    Day 3:
              Costumer Credit Limit: 100
              Sales Balance: 50
              Open Itens: 70 (receivables: 70 / contracts: 0 - contracts are paid on day 3)
              Credit Exposure: 120/100 (exposure is above customer limit since contracts that were being deducted were paid)
    Any ideas or thoughts? Is something wrong in the explanation above? Should contracts credits be treated through special GL?
    Many thanks!

    Hello Julie,
    the 2nd, System behavior (how do you interact the credit limit check (yes/no question) via DI?)
    Workaround:
    Before you issue the Document, you may do a manual check: BP balance againt Credit Limit, and make deceision.
    Regards
    János

  • How can I view and delete specific documents in iCloud?

    When I save a Pages document on my new iMac (Mountain Lion 10.8.2), the default location is iCloud. I have four related questions...
    1. How do I change the "Save" default location from iCloud to my iMac?
    2. How can I see what documents are stored in my iCloud account?
    3. How do I delete a specific document from iCloud once I have accidentally saved it there?
    4. How secure are the documents saved to iCloud?
    Thanks in advance for your help.

    Welcome to the Apple Community.
    Unfortunately, you can't if you are using iCloud.
    File > Open, from the appropriate application.
    File > Open. Select and delete.
    They are encrypted on the servers, if that's what you are asking. Your account is also password protected.

  • Create a document based on specific document template using JavaScript (ECMA Script/REST API/SP Services)

    Hi,
    I have requirement to create a new document based on specific document template available in document library. Able to set the specific content type but the respective document template not being applied. I am trying with ECMAScript, REST API and SPServices
    but no luck for now. Please help me.
    Thanks,
    JP

    Hello,
    I have already tried your solution, however in that case I get the error - "UncaughtSys.ArgumentNullException: Sys.ArgumentNullException:
    Value cannot be null.Parameter name: context"...
    Also, I tried removing SP.SOD.executeFunc
    from my code, but no success :(
    Kindly suggest !!!
    Vipul Jain

  • Retrieving specific document using explicit index lookup

    The best way to retrieve a specific document seems to be using XmlContainer::getDocument, thus using the default index.
    However, I may not have the document name, but instead an ID I have defined a unique index for.
    Of course, I can use the XQuery interface to retrieve the document, and it's fast.
    It's faster, though, to directly use an index. I can use XmlContainer::lookupIndex in order to do this; it takes an optional parameter "value", and the documentation for 2.3.10 says: "Provides the value to which equality indices must be equal. This parameter is required when returning documents on equality indices, and it is ignored for all other types of indices."
    However, the documentation also says that XmlContainer::lookupIndex is deprecated, "in favor of using XmlManager::createIndexLookup and XmlIndexLookup::execute". That recommended approach does not seem to provide a way to look up a specific value. It seems I have to iterate over the index, which is not what I want. Am I missing something?
    Michael Ludwig

    George,
    thanks a lot - should have found this myself, I guess. Working example following:
    use strict;
    use warnings;
    use Sleepycat::DbXml 'simple';
    my $id = shift or die "usage: $0 <ID>\n";
    my $contfile = $ENV{HOME} . '/dbenv/tv.dbxml';
    my $iuri = ''; my $iname = 'ID';
    my $istrat = 'unique-node-attribute-equality-decimal';
    eval {
        my $mgr = XmlManager->new;
        my $cont = $mgr->openContainer($contfile, Db::DB_RDONLY);
        my $sval = XmlValue->new(XmlValue::DECIMAL, $id);
        my $idx = $mgr->createIndexLookup($cont, $iuri, $iname, $istrat, $sval);
        my $ctx = $mgr->createQueryContext(
            XmlQueryContext::LiveValues,
            XmlQueryContext::Lazy);
        my $res = $idx->execute($ctx);
        while ($res->hasNext) {
            $res->next(my $val);
            print $val;
    my $ex;
    if ($ex = catch XmlException) {
        die join "\n", ref $ex, $ex->what,
            'Exception Code: ' . $ex->getExceptionCode,
            'DbErrno: ' . $ex->getDbErrno;
    elsif ($ex = catch std::exception) { die join "\n", ref $ex, $ex->what }
    elsif ($@)                         { die $@ }For an alternative approach using setLowBound(), apply the following diff:
    12c12,13
    <     my $idx = $mgr->createIndexLookup($cont, $iuri, $iname, $istrat, $sval);
    my $idx = $mgr->createIndexLookup($cont, $iuri, $iname, $istrat);
    $idx->setLowBound( $sval, XmlIndexLookup::EQ );Thanks,
    Michael

  • WebDynpro Development Technical Specification Document

    I am developing some custom screens using WebDynpro for our Project.  I am looking for a template for Technical Specification document for WD development.  I searched in SDN an Service market but could not find any.  I only found a naming convention document.  Can any one who has been developing suggest what should be the table of contents
    Ex:-
    Landscape
    NWDI
    Development Components
    Views
         -- Methods
         -- Actions
    Model Objects
        - RFC
    Any template would be greatly helpful.
    Thanks

    Hi,
    Template -Technical Specification document for WD development, should ideally include following topics and we are using document which has got same sections
    a) Development Component
             Name
             Used Development Components
             Public Parts
             External files used
    b) Web Dynrpo Components
            i) Web Dynpro Component
            ii) Used Components 
            iii) Methods of Component - Each method explained separately
            iv)Message Pool
            v) Views - Each view explained separately with methods written, plugs, events
             vi) Windows
            vii) Component Controller interfaces
            viii) Any models used
             ix) Application
             x) Custom controllers
      c) Dictionaries
      d) Models
      e) Web Dynpro Component Interfaces
    The above part covers 90% what development activity involved, order can be changed to convenience
    Reagrds,
    Ganga
    Edited by: Gangadharayya Virupakshayya Hiremat on May 12, 2009 6:21 AM

  • Functional specification documents..

    HI guys,
    I am new to SAP HCM..
    i was wonderingg as to when is the need to write a Function spec document?
    It would be great if you could give an example..
    Also, what is the difference between Functioal Spec doc  and functioal design document??
    Thanks,

    Functional-specification documents decribes  business requirements and required  changes that are to be applied in Project.
    For Example  If you company want to implement Second saturday as well fouth saturday as off days:  For this you have to clearly mentioned the business requirement , what are the pre requisites required , is there ny development is required etc...
    some time test cases also attached with this
    Please refer these links , which will help you
    http://www.premieresapconsultants.com/wisdom/2010/08/sap-functional-document/
    http://www.sap-img.com/general/what-are-functional-specification-in-sap.htm

  • Functional specification document

    I have a requirement where i need to prepare functional specification document, could any one help me out with any fsd template on the same?
    format required ( any example document will be an added advantage)

    Just google for "sap pi functional document template" and you'll find what you are looking for in the first page itself.
    https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=3&cad=rja&uact=8&ved=0CDIQFjAC&url=http%3A%2F%2Fwww.piarch…

  • BW func and Tech specification documents

    Hi guys
    Can any body help me in the preparation of Functional and technical specification documents of data monitoring processess and all.
    If u have any douments please mail me to
    [email protected]
    Thanks
    Mahendra D

    please send any one now
    i need very urgent
    dont avoid pls
    i am waiting

  • Specification documents o internal and external programs documentation

    I have to make some changes in the specification documents o internal and external programs documentation. I want to know i there are defined some standard conventions about the technica objects name and the requirements documentation.
    We have made some formats, but we have seen change resistance=2 The problem is the amount of information required in these ne formats that we think is important and will help to reduc ambiguity and to avoid backworks but it's going to ad activities to the developers.

    . Ours is bit different to what she sampled but the standardization differ from the team implementing it. You must also come out with the pattern for program "pre" and "post" documentation.
    1. Before the actual coding of the program, you have to specify the estimated number of mandays needed for the analysis, coding and documentation. Don't forget to add n% for the buffer. (In our case, we use 30% buffer). Then update the form by putting on the other column the actual mandays consumed. There should not be cases that estimated < actual mandays. If problem is encountered that may cause delay, inform team lead to adjust the estimated mandays.
    2. Create a form that will specifically states the unit testing made (eg. Test case, test data, how the test is perform, outcome of testing, rating: pass or fail, etc.)
    3. After coding, specific program specification (eg. logic of the program, tables created, function module used, authorization checking, etc). Please be reminded to put result of "program extended syntax check" (tcode: slin) and "run time analysis" (tcode: se30) if applicable.
    4. And initial code review must made also. If proper ABAP coding is incorporated and obliged by the program. If the proper naming convention that you implemented is followed by the program...so on and so forth.
    hope you'll get some ideas out of it.
    cheers,

  • Show custom EditForm from a specific document library view

    Hello,
    I've created a custom EditForm that I would like to show when the user clicks the "<label for="ShouldDisplayEdit">Edit" (link to edit item)</label> icon; however I just want to show this EditForm for a specific view.
    I have a listview webpart (actually an "app") for the library and this specific view set on a page. However, it opens the default edit form instead of the custom one. (StatusEdit.aspx). I don't want to set StatusEdit.aspx as the default, as it
    has fewer fields than the default edit form.
    I am able to hide fields conditionally using SPClientTemplates.TemplateManager.RegisterTemplateOverrides, but it's been a lot of work to try to make it match the requirements I have. I'd really like to have the custom edit form work if it's possible.
    Thank you for your help!
    Best Regards,
    Kevin Worthington

    Hi,
    According to your description, my understanding is that you want to specify the custom EditForm for a specific document library view.
    We can change the link to edit item button url using Jquery to achieve it.
    Here is a code snippet for your reference:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    function changeurl()
    $(' ms-itmHoverEnabled ms-itmhover ms-droppable).find('ms-vb-lastCell ms-cellstyle ms-vb-icon ms-vb-lastCell').attr(‘href’,”http://new url”);
    </script>
    Here are some detailed articles for your reference:
    http://stackoverflow.com/questions/179713/how-to-change-the-href-for-a-hyperlink-using-jquery
    http://stackoverflow.com/questions/8729830/jquery-find-td-of-tr-with-class-and-make-changes-for-a-telerik-mvc-grid
    Thanks
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jerry Guo
    TechNet Community Support

  • Workflow Functional Specification Document

    Hi All
    I am working on a implementation project which includes Workflows. Right now I am in the process of writing the functional specification document for the Workflows. I am a functional consultant and never worked on workflows.
    Can some one provide me what should be included in the functional document , how should the flow be written.
    Is there any sample Workflow template anyone can share.
    There are 4 places that requires workflows according to my understanding as described below in my requirement:
    1. Workflow for corporate users when a notification is created or closed
    2. Workflow email, forward a complaint to
         Finance Manager
         Quality Manager
         Plant Managers
    3. Workflow for forwarding to an approver, reassign task to someone else
    4. Workflow to send remainder emails for open items longer than 30 days
    Please provide your insights and neccesary documentation to start
    Thanks,
    Sai

    HI Prakash,
    Thanks for the detailed response, it helped me a lot.
    for approval to sales director, operations director and quality director an email has to be triggred simultaneously.We have predefined list depending on plant who can take corrective action and who can approve the corresponding task. Further users should have the option to select who should get the email.
    For Approver Determination:
    Case 1:  In your scenario approver is not fixed.The approvers get selected based on plant. Try to get link between plant and all the approvers. The easy approch will be to maintain the approvers SAP ID in Z-Table against all the plant and developer will use RULE to fetch approvers from this Z-Table. The structure of Z-Table will be:
                                      PLANT     LEVEL   OBJID     USERID
    For one plant 3 entry will be maitained here. LEVEL will help to identify the 3 types of approvers i.e. sales director, operations director and quality director. OBJID value will be US (if SAP ID will maintained in USERID), O (if Org. ID will maintained in USERID), S (if Position will maintained in USERID) etc. Benifit of this approch will be when ever you want to change any approver you have to change corresponding entry in this Z-Table no need to do changes in Workflow (As suggested by Ronen).
    I used the same logic, creating a Z-Table for agents who has to approve the corrective action for taks completed. I was curious if there is a standard way to get this functionality in SAP. I am not sure about the responsibility rule that Mike was mentioning. Can you tell me which approach is a better design.
    Case 2: Now I am confused since you said user can choose next level of approver. So please explain in which scenario Approver will come based on plant and in which scenario user will choose it manually. If user have to choose manually then a screen design is require. From approval screen based on user selection you need to pass the Approver in workflow.
    Sorry for not putting things clealy. There are no levels for approval. Each of them are independent i.e. Sales director , Operations Manager and Quality director should get emails for approval after the Plant Manager, QA, Manager, Sales Coordinator take corrective action and the notification is closed only when all 3 of them approve the corrective action.
    The user have to choose manually when the correspondng approver of that plant left the company, long vacation, took a new role etc...
    Mail Notification:  Extended mail notification functionaity is there. The person who will get work item in his/her SAP inbox for approval they will get mail notification in their external mail ID. All the approvers email id should be maintained along with their SAP ID in T-Code SU01. You Just need to provide mail contents in your FS, workflow developer will put same text in in mail body.
    I was thinking about the SO23 distribution list for sending the emails to approvers. Also, how do the emails go to the corresonding approvers of that specific plant unless we explicity specify the email id's associated with that plant. Please clarify.
    Thanks,
    Sandeep

  • Ledger Group vs. Ledger Specific Document Types

    Can anyone tell me the value in having a document type that is purely used for tracking accounting principle specific adjustments (GAAP Adjustments / STAT Adjustments / IFRS Adjustments / etc.)?  If you already have various ledger groups hitting various accounting principles using a standard accounting document why would you need a ledger specific document type and when would it be used in normal business transactions instead of using a ledger group / standard accounting doc type combination?

    HI,
    In my company I set up IFRS-leading ledger, 2 local ledgers for each comp. code.
    Accounting key-user found it easier and more traceable to make ledger specific postings using one special doc.type / number range for each ledger (group). "normal" doc. types can only be used to make posting in all ledgers assigned to each comp. code.
    With this setting they can easy identify ledger group specific postings from postings happened to all ledgers using the same account number.
    But,as you mentioned, its not really necessary to do so.
    BR Christian

  • CAF technical specification document

    Hi Gurus,
    Could you please send CAF specification document, if you have any?. We need to prepare technical specification template for CAF .Can you please provide some direction to create it.
    Thanks,

    If you look at the content under CAF Tutorial Center, you've got plenty Process Layer (CAf GP) and Service Layer (CAF Core) how-to guides that basically tell you how these technologies work.
    But you need to understand them before putting together a technical spec. I expect SAP to provide such template. I've got one but cannot share it like that.
    GP is the translation of a business process model into an executable one. So at the least you need a business process model see my blog https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3995. [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    Then you need to translate it in GP which is about  process, block, action, callable object, roles, parameters, ad-hoc, process flow...
    for each callable object, which type UI or Service, then from here at this unit of work, it's typical tech specs (MVC, input/output/logic...)
    For CAF Core, what are the Entity Services and the Application Services you need to create for GP to use

  • BI Technical Specification document

    Hi,
    Does anyone know of a link or post a BI technical specification document which can be used to specify BI reporting requirements?
    Thanks,
    William

    Hi,
    BI Techincal specs document for creating  Reports contains the following;
    1.Business Logic/Reuirements - .( Purpose,scope and summary)  It specifies features and capabilities of the  reporting design, with any changes to take advantage of the capabilities and limitations of BI.
    2. Assumptions,
    3.Dataflow Daigram:
    4Characteristics and Key Figures available for Report,Time Characteristics.Units, Drilldown details
    5.InfoCube/DSO details.
    6.Transforamtion & DTP, update rules Mapping
    7.Routines Logic, like start,update,end routine etc.
    8. Datasources
    9.Infopackages
    10.Process chains & Data loading process,schedules etc.
    10.Performance  Issues & Limitations
    Regards
    CSM Reddy

Maybe you are looking for

  • Currency translation problem

    Dear All, I am trying to create  the currency translation type and use it in the Bex Designer. But its not converting the values at all. Output required:- Need to convert all INR values to fixed USD currency. Source currency is always INR and target

  • Heading elements do not appear in design view

    Hello, heading (h1, h2 ...) elements do not appear in design view. anybody know how to fix this? btw seems like DW gets worse with each successive version.

  • How to remove VO Extention?

    Hi I would like to know wot can I remove VO extention. In other terms, I made a VO extention and it works fine. After that I want to return to Standard VO. Thanks in advance for your help Hakim

  • TS3999 calendar from iphone 5 won't sync with windows

    When I update my calendar from my phone it is not updating on my pc anymore.  I don't know when it stopped syncing just noticed today.

  • QuickVPN to RV042 frequent disconnects

    I have an RV042 firmware 4.1.1.01-sp with client vpns established. I have one end user that can connect every time with now issues whatsoever. I have other clients that can connect, but are often dropped. The first day they connected for up to 8 hour