Naming convention document for SAP BI 7.0

Hi,
Am looking for  Naming convention document for SAP BI 7.0 . I need for all the objects in BI 7.0.
Thanks in advance,
Satya

hi Pavan
I am not able to access that link
Access to this place or content is restricted. If you think this is a mistake, please contact your administrator or the person who directed you here.
please help me  to see that document...
Regards
Arun

Similar Messages

  • Naming Convention document for MDM

    Hi,
    I am looking for naming convention document for MDM . If anyone have then please do share with me .
    Thanks,
    Rohit
    [email protected]

    Rohit,
    if you are speaking about programming, the naming convention depends from the language that you are using, e.g. for Java:
    http://java.sun.com/docs/codeconv/html/CodeConventions.doc8.html
    for abap:
    http://help.sap.com/saphelp_nw04/helpdata/en/92/c2b084bc1d11d2958700a0c94260a5/content.htm
    for rdbms:
    http://www.ss64.com/orasyntax/naming.html
    etc. etc.
    Regards,
    Vito

  • Naming convention document...

    Hi,
    Can someone please send me a naming convention document for <b>Custom ABAP devlopment</b> and also for <b>Enterprise portals</b> on [email protected]
    Thanks.
    Regards,
    Rajesh.

    Hi Rajesh,
    It usually differs from company to company and client to client. If the client has no specific document then the company that implements will follow their own naming standards.
    check if these are of any help to you..
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/documents/a1-8-4/sap%20xi%202.0%20%20customer%20developments
    https://websmp101.sap-ag.de/~sapdownload/011000358700004455192006E/NameConventions.pdf

  • What are the naming convention rules for BAPI and types

    what are the naming convention rules for BAPI
    points will be rewarded,
    thank you,
    Jagrut BharatKumar Shukla

    Hi,
    plz go through the following links....
    Business application Prograaming Interface is nothing but the Method of a Business object.
    BAPI-step by step
    http://www.sapgenie.com/abap/bapi/example.htm
    list of all bapis
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    for BAPI's
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    http://www.planetsap.com/Bapi_main_page.htm
    http://www.topxml.com/sap/sap_idoc_xml.asp
    http://www.sapdevelopment.co.uk/
    http://www.sapdevelopment.co.uk/java/jco/bapi_jco.pdf
    Also refer to the following links..
    www.sappoint.com/abap/bapiintro.pdf
    www.sap-img.com/bapi.htm
    www.sap-img.com/abap/bapi-conventions.htm
    www.planetsap.com/Bapi_main_page.htm
    www.sapgenie.com/abap/bapi/index.htm
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    u can check the below the material also
    what is BAPI?
    BAPI stands for Business API(Application Program Interface).
    I have answered this question before..
    A BAPI is remotely enabled function module ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access. Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    The following standardized BAPIs are provided:
    Reading instances of SAP business objects
    GetList ( ) With the BAPI GetList you can select a range of object key values, for example, company codes and material numbers.
    The BAPI GetList() is a class method.
    GetDetail() With the BAPI GetDetail() the details of an instance of a business object type are retrieved and returned to the calling program. The instance is identified via its key. The BAPI GetDetail() is an instance method. BAPIs that can create, change or delete instances of a business object type
    The following BAPIs of the same object type have to be programmed so that they can be called several times within one transaction. For example, if, after sales order 1 has been created, a second sales order 2 is created in the same transaction, the second BAPI call must not affect the consistency of the sales order 2. After completing the transaction with a COMMIT WORK, both the orders are saved consistently in the database.
    Create( ) and CreateFromData! ( )
    The BAPIs Create() and CreateFromData() create an instance of an SAP business object type, for example, a purchase order. These BAPIs are class methods.
    Change( )
    The BAPI Change() changes an existing instance of an SAP business object type, for example, a purchase order. The BAPI Change () is an instance method.
    Delete( ) and Undelete( ) The BAPI Delete() deletes an instance of an SAP business object type from the database or sets a deletion flag.
    The BAPI Undelete() removes a deletion flag. These BAPIs are instance methods.
    Cancel ( ) Unlike the BAPI Delete(), the BAPI Cancel() cancels an instance of a business object type. The instance to be cancelled remains in the database and an additional instance is created and this is the one that is actually canceled. The Cancel() BAPI is an instance method.
    Add<subobject> ( ) and Remove<subobject> ( ) The BAPI Add<subobject> adds a subobject to an existing object inst! ance and the BAPI and Remove<subobject> removes a subobject from an object instance. These BAPIs are instance methods.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/7e/5e114a4a1611d1894c0000e829fbbd/frameset.htm
    http://www.sapgenie.com/abap/bapi/example.htm
    http://help.sap.com/saphelp_46c/helpdata/en/9b/417f07ee2211d1ad14080009b0fb56/frameset.htm
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sapgenie.com/abap/bapi/example.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    BAPI
    http://help.sap.com/saphelp_46c/helpdata/en/9b/417f07ee2211d1ad14080009b0fb56/frameset.htm
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sapgenie.com/abap/bapi/example.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    List of all BAPIs
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://www.geocities.com/mpioud/Abap_programs.html
    http://www.sapdevelopment.co.uk/reporting/reportinghome.htm
    ***do reward if usefull
    vijay

  • Installation document for SAP NetWeaver 7.01 ABAP Trial Version on XP

    Hi Experts
    Please give me link of installation document  for SAP NetWeaver 7.01 ABAP Trial Version on XP or Tell me Steps for installation.
    thanks
    Best Regards
    Jitender

    If instructions contained in download doesn't help you you just have to search on SDN and web for miniSAP installation blogs:
    /people/sap.user72/blog/2004/12/08/mini-me-of-was-620-the-saga-continues
    http://sapport.blogspot.com/search/label/miniSAP
    /people/sugree.phatanapherom/blog/2005/08/17/a-visual-installation-guide-on-sneak-preview-sap-netweaver-04-abap-edition
    /people/manfred.lutz/blog/2008/02/21/web-dynpro-abap-exercises-from-teched-2007

  • Design Document for SAP Workflow

    Hi I am looking for a design document for SAP Workflow. A template for design  document for the SAP workflow will also be fine

    Hi,
      Have a look at these good links-
    Workflows
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://www.sapgenie.com/workflow/index.htm
    https://sapneth9.wdf.sap.corp/workflow
    http://help.sap.com/saphelp_webas620/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    /people/ginger.gatling/blog/2005/12/01/link-workflow-business-objects-to-your-collaboration-tasks
    http://help.sap.com/saphelp_nw04/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw33/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw31/helpdata/en/8d/25f94b454311d189430000e829fbbd/content.htm
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://www.sapgenie.com/workflow/index.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    Mark useful answers.
    Regards,
    Tanuja.

  • Urgently required Good Installation Document for SAP Solution Manager 4.0

    Hello Experts,
    Iam implementing /installing SAP Solution Manager 4.0 in our scenario in a day/two. My query is tat do we need to install it APAP + JAVA based only or can we install it ABAP based only?
    Secondly i needed good self prepared document for SAP Solution Manager 4.0 installation which gives me step wise step procedure in detail.Plz dont give service marketplace link as i hv already seen and checked installion guide over it ,act. i wanted self prepared doc which is of more use. The useful answers shall be surely awarded points. Requested to revert at earliest as i need this guide in a day itself.
    My Email Id is [email protected] .
    Regards,
    Saumya

    Hey Somya,
    Can u plz send me the configuration guide of change request management that Rakesh had sent to you..
    My Email-id is [email protected]
    Plz its urgent, let me know if u want me to open a new thread so that i can reward you with points..
    Tnx in advance.

  • Business Process documents for SAP ESHM-Product Compliance

    Hello All
    Can anybody please the share the links or documents for standard SAP Business Process documents for SAP ESHM-Product Compliance.
    What I am looking  is for Compliance of Product, IMDS, CDO, Material Data Exchange in the automotive supply-chain, generation of RRR reports.
    Well I would be using this for self learning purpose.
    Thanks & Regards
    Satish

    Dear Satis
    because of historic reason in history of SAP there might be the risk to misinterpret your question.  This would be my first answer:
    1.) check this document first: SAP EHS Management for Beginners
    2.) check may be:SAP Product and REACH Compliance - SAP Library
    Some "topics" are dealed with this SAP solution
    3e.) years ago a product if TechniData was available called "Compliance for products". Regarding many of the functions therein: these are now mainly available in the above mentioned solution or in the new solution as shown here:
    Component Extension 5.0 for SAP EHS Management – SAP Help Portal Page
    Take first a survey in the doucments and links given and then coe back with furthere questions etc.
    C.B.
    PS: you need to drill down in any of the documents etc. as mentioned above to get the "details"to most of your questions

  • Step by step complete configuration document for SAP PM module

    Can any body send me step by step complete configuration document for SAP PM module. If possible screen shots also. I will be highly obliged.
    Indranil Chatterjee
    Thanks in Advance.

    Indranil,
    It is not permitted for forum members to send documents to one another.
    It is also expected that members will first perform their own research before asking for help.  Did you search through SAP Help?
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/b2/4df35d51b811d192fb0000e829fbc6/frameset.htm
    Best practices? 
    http://help.sap.com/bp_bl604/BL_IN/html/Content_Library_BL_EN_IN.htm
    Best Regards,
    DB49

  • What are the naming conventions used for aggregates created from Query?

    What are the naming conventions used for aggregates created from Query?

    Hi Reddy,
    As you know aggregates are baby cubes right.
    Aggregate names by default system has given as 6 digit number like 100831 but write the description by yourself.
    Here you have to remember fact table is created with the name
    like for ex: /BIC/F100831.
    while creating aggregates you can observe all options carefully till complete the creation process then after I am sure about
    your can get idea .
    If problem still persists with you let me know the same until
    get out of that.
    else assign points if this is sufficient.
    Thanks,
    Ramki

  • Naming Conventions Document on PCUI

    Hello Friends,
    Can anyone of you, please forward me a document on <b>Naming Conventions in PCUI</b>??
    Your help on this front would be highly appreciated.
    Please respond to [email protected] (my alternate id)as well
    Regards,
    Praveen

    Hi Sameer,
    Could you pls send me the naming conventions in XI.
    Thanks in advance.
    Regards,
    Saravanan.

  • Store documents for SAP installations in Germany

    Hi All,
    One of our clients has a single instance of SAP in Germany. It seems that according to the German VAT law we are NOT allowed to electronically store any documents such as invoices or credit notes on servers outside the European Union.
    I wanted to check if this is true and if anyone has encountered a similar situation for SAP implementations on Germany and how did you deal with this scenario.
    Any feedback/comments will be very helpful.
    <removed_by_moderator>
    Regards,
    Vivek
    Edited by: Julius Bussche on May 29, 2009 11:10 PM

    > 1. How did you handle documnets that are physically stored in some other country but legally should be stored in Germany ?
    You either mirror them, or give them their own instance to work on and mirror it back.
    Another option is to use virtual companies, but in my experience that creates a mess and is not scalable (imagine all countries want this?).
    > 2. Can you please explain about the second point "export controls on encryption software", how is it usefull in this scenario.
    It was a thought. I did not say that it would be effectively usefull. Basically, the authorities want to be able to do a "morning raid" if required and confiscate / copy the disks for investigation. That is why they want the hardware physically within their legislative area...
    You can use encryption, but the keys (probably lots of them...) will be within legislative area as well, probably.
    You will need to contact your DB vendor about that.
    Possibly you can also contact the authorities and ask for an exception.
    Cheers,
    Julius

  • Functional  Specification Documents for SAP Sales and Distribution

    Dear Gurus,
    I am having the problems of Invoice Output..... the default out put generated by the SAP is completely different from the hard copy of the Invoice of the Client. ppl say that I have 2 take the help of ABAPers to define the smart forms for the invoices of different company codes.... i had conversation with the ABAPers.... butthey are  asking the format, wht ever the change we are  looking for..... I am not be able to get the exact format.... how 2 provide this to ABAPers in FS format.
    can any one pls send me ( or provide me the link to download the same from the SDN website) these Functional Specification Documents for Sales and distribution.
    Wishes,
    Abhishek

    Hi there,
    1st try to understand what is a functional specification doc before asking for it.
    Functional specs is a doc in which you include what is the business requirement. If it requires a change to change to existing configs / code, then you will give the progs & the location where you will need to change. If the requirement is a totally new one, then yuo will explain the requirement in detail & possibly give the progs / code if there are any.
    In your case, your client has a specific invoice format which is different from which SAP gives, in such cases, you will need to define a new Invoice output for eg ZINV. Define it as a print output. You will need to define a new print prog for the new output in which you will call smart forms to define the layout & fields.
    Ask your business user to send the invoice copy which he has. Scan it & include it in the functional specs which you prepare. Mention all the fields which you want in the layout. Ask the ABAPer to code the invoice format in the same way. ABAPer is free to define any convinent name as per the guidelines (which he will be aware). You will need to assign that in the form routines of the output.
    As a functional consultant you will need to give the field mappings (from where you get the data) for all the fields which you wish to print in the output. All that should be included in the func specs.
    So there is no standard func specs that you can follow. Each func specs varies on the requirement. So dont ask these kind of questions in SDN forum. If you dont know how to define func specs, ask how to define. Dont ask people to send the sample func specs. Thats against the rules of conduct.
    Regards,
    Sivanand

  • Naming conventions included for linked files?

    Perhaps a simple question but... if a file is only going to serve as a downloadable link (save as) do the standard naming conventions still apply? (lowercase, no spaces)  the files i am working with are dwg, pdf, zmt, jpeg, png...  my assumption is yes but thought i would ask.
    thank you in advance,

    All lowercase is nice, and easier since URLs are case-sensitive. Spaces are always best avoided. Completely. Some systems handle them, but there are no guarantees. Underscores (_) are a good alternative.

  • Naming conventions/hierarchies for products and software components

    Hi,
    Can someone please advise what they have found works well for naming products and software components and recommended hierarchies?
    Following the SAP model it seems to make sense to have a custom product for each SAP product when we are developing custom interfaces for the related system, e.g. ZPRODMYCOMPDEVS_R3, ZMYCOMPDEVS_CRM etc.
    Beneath this level as similar convention could be used for the software component, e.g. ZSWCMYCOMPDEVS_CRM or if it is a modular SAP system like R/3 perhaps a grouping per key application area? (e.g. HR, Finance, Logistics etc)
    I know it's not compulsory to start these with 'Z' but it would help group custom developments.
    Any advice greatly appreciated.
    Alan

    Hi,
    Please refer to this blog...
    /people/michal.krawczyk2/blog/2005/04/09/xi--saps-document-templates
    that is mentioned in the thread
    Name space
    Regards,
    Bhanu

Maybe you are looking for