Standard documents fo XI

Hi All,
Can anybody provide the following documents
1)XI Naming Conventions
2)XI Mapping Specification
3)XI "message choreography"
4)Sample project scenario for mapping development and testing
5)Sample project scenario for adapter configuration
Even I'm having sap user i'm unable to open the documents related these topics.
These documents i found in "XI - SAP's document templates"
weblog but I'm unable to get the information.
Thanks,
venu.

Hi Sravya,
Thank u very much.
Pls find my mail-ids.
[email protected]
[email protected]
Thanks and regards,
venu

Similar Messages

  • How to get back the standard document file on my dock

    I accidentally moved the standard document file off my Dock and it "puffed" away. I found all the documents in the finder and got them to my desktop in one file, but when I tried to put it back on the Dock, it also remained on my desktop. When I threw that one away, and began to work with a document in my file on the Dock, it would not let me save--saying the original file was in the trash. I pulled it out of the trash and it remains on my desktop. Now I'm wondering how can I get that standard document file back on my Dock so that I can work with it properly. Thankfully nothing is lost--it's just not working as easily. Any thoughts?

    Put the original back in your home folder where it should be.
    Then drag it directly to the Dock being very careful not to release the mouse until the other icons move out of the way for it and the placeholder line appears.
    That will create an alias in the Dock and your original will still be in your home folder.

  • Excise document number in standard document flow

    Dear Friends,
    Is it possible to capture the excise invoice no. in the standard document flow so that at any point of time , either from the sales order or the delivery document or the billing document, the excise invoice can be seen in the flow?
    Although the excise document flow can be seen in either J1IIN or J2IF, my customer wants to have the same in standard flow. Please suggest whether any ABAP development needs to be done for the same or it can be achieved through functional customization only.
    Regards
    Raja

    Hi Raja
    This functionality is not available in standard SAP as far as I know.
    Also there  is no append available for VBFA table. 
    U can check with SAP OSS  if they can guide on it.
    Regards
    Mandar

  • Standard document interface is not available

    Hi All,
    I am using the method "get_spreadsheet_interface" from class "i_oi_document_proxy" to get the interface from an 2007 Excel File with multiple worksheets.  I have successfully opened the file using "open_document" but when I execute the "get_spreadsheet_interface" I got the error "Standard Document Interface is not available".  My gui is 710 and the patch level is 21.  I would like to ask is there any additional plugin which I have to install? 
    Thanks.

    Hi Madhu, I got stuck at the get_document_interface...   thanks
    DATA:
    oref_container   TYPE REF TO cl_gui_custom_container,
    iref_control     TYPE REF TO i_oi_container_control,
    iref_document    TYPE REF TO i_oi_document_proxy,
    iref_spreadsheet TYPE REF TO i_oi_spreadsheet,
    iref_error       TYPE REF TO i_oi_error.
    DATA:
    v_document_url TYPE c LENGTH 256,
    i_sheets TYPE soi_sheets_table,
    wa_sheets TYPE soi_sheets,
    i_data        TYPE soi_generic_table,
    wa_data       TYPE soi_generic_item,
    i_ranges      TYPE soi_range_list,
    AVAILABLE     TYPE I.
    PARAMETERS:
    p_file  TYPE  localfile OBLIGATORY,
    p_rows TYPE i DEFAULT 100 OBLIGATORY, "Rows (Maximum 65536)
    p_cols TYPE i DEFAULT 10 OBLIGATORY.    "Columns (Maximum 256)
    INITIALIZATION.
      CALL METHOD c_oi_container_control_creator=>get_container_control
         IMPORTING
           control = iref_control
           error   = iref_error
         retcode =
      IF iref_error->has_failed = 'X'.
        CALL METHOD iref_error->raise_message
          EXPORTING
            type = 'E'.
      ENDIF.
      CREATE OBJECT oref_container
        EXPORTING
         parent                      =
           container_name              = 'CONT'
         style                       =
         lifetime                    = lifetime_default
         repid                       =
         dynnr                       =
         no_autodef_progid_dynnr     =
        EXCEPTIONS
           cntl_error                  = 1
           cntl_system_error           = 2
           create_error                = 3
           lifetime_error              = 4
           lifetime_dynpro_dynpro_link = 5
           OTHERS                      = 6.
      IF sy-subrc <> 0.
        MESSAGE e001(00) WITH 'Error while creating container'.
      ENDIF.
      CALL METHOD iref_control->init_control
        EXPORTING
         dynpro_nr                = SY-DYNNR
         gui_container            = ' '
           inplace_enabled          = 'X'
         inplace_mode             = 0
         inplace_resize_documents = ' '
         inplace_scroll_documents = ' '
         inplace_show_toolbars    = 'X'
         no_flush                 = ' '
         parent_id                = cl_gui_cfw=>dynpro_0
           r3_application_name      = 'EXCEL CONTAINER'
         register_on_close_event  = ' '
         register_on_custom_event = ' '
         rep_id                   = SY-REPID
         shell_style              = 1384185856
           parent                   = oref_container
         name                     =
         autoalign                = 'x'
        IMPORTING
           error                    = iref_error
         retcode                  =
        EXCEPTIONS
           javabeannotsupported     = 1
           OTHERS                   = 2
      IF iref_error->has_failed = 'X'.
        CALL METHOD iref_error->raise_message
          EXPORTING
            type = 'E'.
      ENDIF.
      CALL METHOD iref_control->get_document_proxy
        EXPORTING
        document_format    = 'NATIVE'
          document_type      = soi_doctype_excel_sheet
        no_flush           = ' '
        register_container = ' '
         IMPORTING
           document_proxy     = iref_document
           error              = iref_error
       retcode            =
      IF iref_error->has_failed = 'X'.
        CALL METHOD iref_error->raise_message
          EXPORTING
            type = 'E'.
      ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    To provide F4 help for the file
      PERFORM sub_file_f4.
    START-OF-SELECTION.
      CONCATENATE 'FILE://' p_file INTO v_document_url.
      CALL METHOD iref_document->open_document
        EXPORTING
          document_title   = 'Excel'
          document_url     = v_document_url
        no_flush         = ' '
          open_inplace     = 'X'
        open_readonly    = ' '
        protect_document = ' '
        onsave_macro     = ' '
        startup_macro    = ''
        user_info        =
        IMPORTING
          error            = iref_error
        retcode          =
      IF iref_error->has_failed = 'X'.
        CALL METHOD iref_error->raise_message
          EXPORTING
            type = 'I'.
        LEAVE LIST-PROCESSING.
      ENDIF.
      CALL METHOD iref_document->get_spreadsheet_interface
         EXPORTING
           no_flush        = ' '
        IMPORTING
          error           = iref_error
          sheet_interface = iref_spreadsheet
        retcode         =
      IF iref_error->has_failed = 'X'.
        CALL METHOD iref_error->raise_message
          EXPORTING
            type = 'I'.
        LEAVE LIST-PROCESSING.
      ENDIF.

  • Regarding project development standard document

    Hi,
    Just wanted to know if there is any coding standard document we can use to create MII project , its component.
    If there can you please forward the link.
    Thanks
    Vishal Jadhav

    There are some best practice documents under the Guides and Guidelines section of the MII Wiki : http://wiki.scn.sap.com/wiki/display/xMII/Manufacturing+Integration+and+Intelligence

  • Portal Development standard document

    Hi All,
    Could you please let me know Portal Development standards  document where to maintain coding or IView standard of portal during development phase?
    Thanks,
    PortalUser100

    This is more project specific with client based namespace to be followed -
    You can get additional help on the thumb rule from -
    EP Content :
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/b0/2beb7a371c4649b2ceec901248ef31/frameset.htm
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/45/a303406a953471e10000000a1550b0/frameset.htm
    Web Dynpro :
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/011ccf90-0201-0010-92a7-b319adf89b73

  • Z-document-type vs. standard-document-type

    All,
    I'm facing a philosophical question:
    Since there's no REAL guideline for this I wanted to collect a few opinions and see where this is going.
    Whenever I'm part of an implementation project, there's a lot of discussion going on concerning the approach when it comes to the realization. The question is whether to take the original, i.e. SAP-standard-document-types and customize them according to my customer's requirement or FIRST copy them and THEN customize them.
    Don't want to present my personal opinion, yet, but I would appreciate you to post a few words on this!
    Thx & regards,
    Bobby

    True, true,
    but why not customize the SAP-tested stuff according your customer's requirements?
    The original SAP-setup may be copied from the golden client at any point in time, which is why I don't understand, why people tend to go the extra-step and copy it first (it always gives me the impression, that MORE than just customizing has been done to that type... especially, when it's poorly documented, which happens way too often!).
    Any other opinions on that?
    Regards,
    Bobby

  • Question about what the content should be for a database standards document

    Hi Experts,
    I am working as development DBA in a J2EE project and have a task to create a database standards document. The document should be used as a reference by the developers when they submit requests for database changes - like adding or making changes to the database schemas (adding tables/modifying them etc.). I thought of what would be the right content for this type of standards document and I think that such a document should have the following as database standards:
    1) Naming standards for the database objects.
    This will include all database objects like tables, columns, primary keys, foreign keys, views, triggers, procedures etc.. For example a standard can be defined like: all primary keys should be named as PK_TABLENAME. All indexes should be named as <TABLE_NAME>_IDX01 etc.
    2) Use of Oracle reserved words should be avoided in the schema object names.
    3) The names should be descriptive so as to make their purpose self evident.
    4) Wherever possible, tables should have primary keys.
    5) Wherever possible columns should be defined NOT NULL -as it helps performance (Indexes on NULLABLE columns are not used by the optimizer).
    6) When submitting request for a new table/tables, typical queries against these new tables should also be worked out and based on that indexes that will be needed for the new tables should be defined. In case this is not clear at the time of initial table creation, it should be clarified within 3 weeks (just a reasonable period to be mentioned here).
    Is this fair enough content forthe standards document or does it miss some important aspects? Note that we do not have to cover in this document standards for database creation or RAC installation etc. It is a document of standards to be followed by developers as a reference when submitting database changes. I will be thankful for your review.
    (Oracle version info: We are on Oracle 11.2.0.2 on Solaris 10.)
    Thanks,
    OraserN

    rp0428 wrote:
    >
    5) Wherever possible columns should be defined NOT NULL -as it helps performance (Indexes on NULLABLE columns are not used by the optimizer).
    >
    That isn't true - post a link that supports that statement.
    Heap indexes do not INDEX null values but indexes on NULLABLE columns are most certainly used by the optimizer for use cases where your query is looking for non-null values.
    Columns should be defined NOT NULL when your business requirement is that the column should ALWAYS have a value. You can, of course, adopt some standard default value (e.g. 'U' for unknown) and make an otherwise NULLABLE column NOT NULL so that each row WILL be indexed. That may only be useful if you want to be able to search for rows that have that value and those rows are in the minority.Then I must be wrong....I will modify the standard as:
    5) Whenever the business requirement is such that the column will allways end up having a value , then all such columns should be defined as NOT NULL. Also if a column can be defined to have a default value then this default value should also be specified.
    Hope this is more proper then earlier and thanks a lot for the review!!
    Edited by: orausern on May 13, 2013 9:53 AM

  • BPEL programming standards document

    Does anyone have a programming standards doc they would be willing to share? We're new to BPEL and our IT manager is asking for a programming standards document. The doc would include details on naming conventions of files, variables, procedures, comments, formatting, best practices, etc - all the boring standards stuff that I do not have the experience to write. Thank you.

    Each site will have their own standards.
    Check these links
    http://sapland.com/index.php?option=com_content&task=view&id=68&Itemid=35
    http://www.sap-basis-abap.com/abap/abap-4-development-code-efficiency-guidelines.htm
    if you leave an email address I will mail you a copy of the standards I use if it would be of help

  • SAP Standard  Document to build and ADD-ON

    hi everyone...
    to build an addon we need to follow some sap standards...then only we can send that addon for certification...
    where do i find sap standards document that we need to follow when developing an add-on...
    plz send me the link so that i can download that document

    Thanks for your response Ingo!
    I am using Business Objects XI 3.0 and am connecting to SAP BI 7.x. This is the extreme case which I am seeing. There are some other queries which take 5-10 minutes and a couple which take 1-2 minutes, but even 10 minutes seems long time to create a universe.
    One thing that I noticed in this particular query is that it uses a lot of Navigational Attributes. I'll check with the BI guys for variables with default values and update you about it.
    Thanks,
    Kashif
    Edited by: Kashif Saeed on Sep 19, 2008 2:59 PM

  • Template for SAP Security Standard document

    Hi SAP Gurus,
    I was asked to overhaul our company's SAP Security Standards document. So Im hoping someone can give me a template on what information/data should be in the document?

    Hmm, interesting comments. Is it really a Standard that you're after? Not wishing to ask if you like salt with your eggs but I assume we know the differences between Standard, Policy, Procedure? You'd be surprised with the number of so called Security experts /Consultants that can't articulate this. I have seen big 4 people who are meant to be delivering Policy but actually documenting a Standard, even Procedures
    So are you looking at delivering a Standard per Application? You should also have a Generic App Security Standard.
    Standard - you're looking to no more than 10-20 pages.
    SAP hooks into several other documents so you should be explicitly referencing O/S and Database Standards.
    Authenticating against SAP - that should be covered in Access Control Policy /Standard.
    Encryption ....? Your encryption doc's and so on. 
    SAP sits on an O/S, so if you're an IBM house then you're looking at AIX. SAP would assume this as a pre-req. Database? You've got Oracle and if again you're an IBM house you follow DB2.
    DB2 inherits numerous priv's from the underlying O/S. So if AIX is poorly configured, then DB2 inherits this. Of course there's a bunch of stuff that you can do from SYS* parameters etc.
    I've just put together a bunch of stuff for an Org. The actual SAP piece is actually not that hard. The Procedure is a little more specific e.g. specific Install Accounts /Passwords that need to be changed, how you secure external interfaces.
    Please let me know if you need anything further.
    Cheers, N

  • Industry standard document by sap

    Can anyone point me to any industry standard document for the minimum memory requirement for a machine running XI client

    Ravi,
    Refer the below thread and follow the link provided by Abhy.
    costs / minimum hardware requirements
    raj.

  • Has anyone written a BSP development standards document?.

    I was wondering if anyone had written any devlopement standards and was willing to share them. With so much code involved I guess there must be some standards.
    I've got to put together a standards document for BSP, but I would rather not start from the beginning, given the choice.
    Best regards
    Jas

    Hi Jas,
    have you seen this book:
    [Official ABAP Programming Guidelines  |http://www.sap-press.de/katalog/buecher/titel/gp/titelID-2093]
    It is not about BSP but lots of things in this books can be used.
    Best regrads
    Renald

  • Deactivate the standard document library feature

    Hey,
    I have created a custom document library definition. It works fine.
    Is it possible to deactivate the standard document library when I activate the feature with the custom document library definition?
    Thanks for your help
    Stefan 

    Hi,
    According to your description, my understanding is that you want to deactivate the document library definition when activate the custom document library feature.
    In the
    SPListTemplate class , there is no remove or delete method, so it could not be achieved in FeatureDeactivating event.
    As a workaround, if you want to force user to use the custom document library template, you can hide the OOTB document library template in the add app layout page using Jquery. It is located at the path below:
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS\AddAnApp.aspx
    You can add the Jquery code under the PlaceHolderMain tag to achieve it. The document library template is a first li element under ul element.
    Here is a code snippet for your reference:
    <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
    <script>
    $( document ).ready(function() {
    $( "#scrollDiv ul li" ).first().hide();
    </script>
    Here are some detailed code demo for your reference:
    Jquery find the first li
    Jquery hide funtion
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Acrobat 9 Standard - Document Message Bar not shown in shared review

    A pdf file is "send for shared review" by Acrobat 8 or 9 on a network folder.
    The file is shared review enabled and is storred at the network folder correctly.
    If the file is opened by Acrobat 9 Standard the yellow
    Document Message Bar (DMB)does not show up.
    Opening using Acrobat 8 Standard or Pro works fine and presents the DMB.
    Doing a review without the Document Message Bar is really clumsy, so
    any help is very welcome.
    Tested so far:
    Registry key has no influence:
    ...FormsPrefs\bHideDocumentMessageBar
    Information from kb-entry is applied:
    http://kb2.adobe.com/cps/508/cpsid_50894.html
    Deleted the 3 Reg-Values:
        [HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\9.0\Workflows]
        "bEnableAcrobatHS"=dword:00000000\
        [HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\9.0\Workflows]
        "bEnableWorkflowPart"=dword:00000000
        [HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\9.0\Workflows]
        "bEnableRTCPart"=dword:00000000
    Created this 4 Reg-Values:  
        [HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\9.0\Workflows]
        "bEnableRTCAuth"=dword:00000000     
        [HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\9.0\Workflows]
        "bEnableHSLibrary"=dword:00000000         
        [HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\9.0\Workflows]
        "bEnableShareFile"=dword:00000000          
        [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Adobe\Adobe Acrobat\9.0\FeatureLockDown]
        "bCreateBuzzwordDoc"=dword:00000000
    All Acrobats have actual versions (9.3.2  and  8.2.1)
    Message was edited by: walker81

    The answer:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Adobe\Adobe  Acrobat\9.0\FeatureLockDown\cDocumentStatus]
    "bSuppressMessageBar"=dword:00000000
    Sometimes  IT-dept. customises without telling it and forgetting it immediately.

  • SOA Application development & Security Standards document template

    Hi,
    I need to create documents on SOA Application development standards and SAO Application Security standards.
    Please share document templates if anyone have them.
    Thank you

    Hmm, interesting comments. Is it really a Standard that you're after? Not wishing to ask if you like salt with your eggs but I assume we know the differences between Standard, Policy, Procedure? You'd be surprised with the number of so called Security experts /Consultants that can't articulate this. I have seen big 4 people who are meant to be delivering Policy but actually documenting a Standard, even Procedures
    So are you looking at delivering a Standard per Application? You should also have a Generic App Security Standard.
    Standard - you're looking to no more than 10-20 pages.
    SAP hooks into several other documents so you should be explicitly referencing O/S and Database Standards.
    Authenticating against SAP - that should be covered in Access Control Policy /Standard.
    Encryption ....? Your encryption doc's and so on. 
    SAP sits on an O/S, so if you're an IBM house then you're looking at AIX. SAP would assume this as a pre-req. Database? You've got Oracle and if again you're an IBM house you follow DB2.
    DB2 inherits numerous priv's from the underlying O/S. So if AIX is poorly configured, then DB2 inherits this. Of course there's a bunch of stuff that you can do from SYS* parameters etc.
    I've just put together a bunch of stuff for an Org. The actual SAP piece is actually not that hard. The Procedure is a little more specific e.g. specific Install Accounts /Passwords that need to be changed, how you secure external interfaces.
    Please let me know if you need anything further.
    Cheers, N

Maybe you are looking for

  • Distributed cache

    HI, We have a server (Server 1), on which the status of the Distributed cache was in "Error Starting" state. While applying a service pack due to some issue we were unable to apply the path (Server 1) so we decided to remove the effected server from

  • ADF-Security - OID - Weblogic

    Hello, I want to authenticate users of my adf application against OID. But it doesn't work. The users wich are created in the default authenticator of the weblogic server can be authenticated an everything works fine. The users wich came from the OID

  • Change access connection​s from prompt username/p​assword to use windows logon credential​s

    Hi, Switch our wifi to intergrate it with Active directory. Is there a way to seamlessly switch access connections from prompting username and password to use windows username and password for all our laptops? Thanks

  • Problem in deleting queries..........

    Hi, When I trying to delete the query… I am getting message that these query has been used in the work books…. When I am trying to see these workbooks, I couldn’t find these two in the role. When I checked in transport connection it is showing these

  • Reinstall Printer Setup Utility on OS 10.3.9

    I just upgraded an old iBook with OS 9.2 to 10.3 and then 10.3.9. In the process of adding a printer, which didn't work at first, I moved all the printer files into trash, including the printer setup utility. (I only realized this after I noticed tha