Can Any body Send Me Sample Repositorys ?

Hi  Can any body send me the Sample Repositorys (.xml files or xds file )
praveen.sapmdm @gmail.com
Edited by: g.praveen kumar on Jun 20, 2008 6:23 PM

Hi ,
U can get  sample repositories at the following link:
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/607beabe-950f-2b10-7687-8256ace1a435
In the pdf links to two sample repository is given.
Hope this may help u .
Rgds
Ankit

Similar Messages

  • Can any body send me the Faq's on ALE/IDoC ?

    Can any body send me the Faq's on ALE/IDoC  ?

    hi,
    check these...
    http://www.onestopsap.com/interview-Question/ale/
    http://sap.ittoolbox.com/groups/career/sap-career/aleidoc-interview-questions-688290
    http://www.erpgenie.com/faq/ale.htm

  • Can any body send me material on Work flow

    Hi gurus,
    Can any body send me material on Work flow.
    Regards.
    Naveen

    Hi,
    Check the following links:
    http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/WORKFLOW_tutorial.html
    http://sapmaterial.com/workflow.html
    http://www.sap-img.com/workflow/sap-workflow.htm
    Regards,
    Bhaskar

  • Can any body send HUM configuration settings

    hi,
    can any body send HUM configuration or documentation apart from standard liabrary, please.
    regards,'
    balajit

    Hi,
    Please check following best practices link. I hope this helps you.
    http://help.sap.com/bp_bblibrary/600/HTML/G74_BB_EN_US.htm
    Regards,
    Abhee

  • Can any body send me some issues about mail sending .

    can any body send me some issues about mail sending .
    thanks alot !
    mail to :<i><b>[email protected]</b></i>

    HI
    GOOD
    GO THROUGH THIS CODE
    REPORT ZTSAPMAIL.
    DATA: X_OBJECT_TYPE LIKE SOOD-OBJTP.
    DATA: BEGIN OF X_OBJECT_HD_CHANGE.
    INCLUDE STRUCTURE SOOD1.
    DATA: END OF X_OBJECT_HD_CHANGE.
    DATA: BEGIN OF X_OBJCONT OCCURS 10.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJCONT.
    DATA: BEGIN OF X_OBJHEAD OCCURS 0.
    INCLUDE STRUCTURE SOLI.
    DATA: END OF X_OBJHEAD.
    DATA: BEGIN OF RAW_HEAD.
    INCLUDE STRUCTURE SORH.
    DATA: END OF RAW_HEAD.
    DATA: BEGIN OF X_RECEIVERS OCCURS 0.
    INCLUDE STRUCTURE SOOS1.
    DATA: END OF X_RECEIVERS.
    PARAMETERS: RECEIVER LIKE X_RECEIVERS-RECNAM. " Name
    *BUILD MESSAGE HEADER
    MOVE 'Sort field goes here' TO X_OBJECT_HD_CHANGE-OBJSRT. " Sort field
    MOVE 'Name of the object goes here' TO X_OBJECT_HD_CHANGE-OBJNAM. " Name
    MOVE 'Document title goes here' TO X_OBJECT_HD_CHANGE-OBJDES. " Title
    MOVE 'F' TO X_OBJECT_HD_CHANGE-OBJSNS. " Functional OBJECT
    MOVE 'E' TO X_OBJECT_HD_CHANGE-OBJLA. " Language
    Object type of the new document
    MOVE 'RAW' TO X_OBJECT_TYPE.
    CLEAR X_OBJCONT.
    MOVE 'Contents of mail' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    CLEAR X_OBJCONT-LINE. APPEND X_OBJCONT.
    MOVE 'More contents' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    MOVE 'Still more contents'
    to x_objcont-line.
    APPEND X_OBJCONT.
    MOVE ' ' TO X_OBJCONT-LINE.
    APPEND X_OBJCONT.
    Specific header (Dependent on the object type, here RAW)
    REFRESH X_OBJHEAD.
    DESCRIBE TABLE X_OBJCONT LINES RAW_HEAD-RAWSIZ.
    MOVE RAW_HEAD TO X_OBJHEAD.
    APPEND X_OBJHEAD.
    *RECEIVERS table
    CLEAR X_RECEIVERS.
    REFRESH X_RECEIVERS.
    MOVE RECEIVER TO X_RECEIVERS-RECNAM. " Name
    MOVE 'B' TO X_RECEIVERS-RECESC. " Receiver type
    MOVE 'X' TO X_RECEIVERS-SNDCP. " Send as a copy
    MOVE 'X' TO X_RECEIVERS-SNDEX. " EXPRESS DOCUMENT
    APPEND X_RECEIVERS.
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    folder_id = 'OUTBOX'
    forwarder = x_forwarder
    object_fl_change = x_object_fl_change
    OBJECT_HD_CHANGE = X_OBJECT_HD_CHANGE
    object_id = x_object_id
    OBJECT_TYPE = X_OBJECT_TYPE
    OUTBOX_FLAG = 'X'
    OWNER = SY-UNAME
    store_flag = x_store_flag
    importing
    object_id_new = x_object_id_new
    sent_to_all = x_sent_to_all "May need to use
    TABLES
    OBJCONT = X_OBJCONT
    OBJHEAD = X_OBJHEAD
    objpara = x_objpara
    objparb = x_objparb
    RECEIVERS = X_RECEIVERS.
    Firstly SAP Mail
    A SAP mail is a mail internal to the SAP system. It is a very good forum to exchange information with other users. Using a SAP mail in ABAP code facilitates exchange of automatic messages at various stages of the business process. It is easy to use and saves many hassles involved in using workflows for exchanging messages.
    The ABAP code to send a sap mail is built around the FM SO_OBJECT_SEND which has the following pattern.
    call function 'SO_OBJECT_SEND'
    exporting
    EXTERN_ADDRESS = ' '
    FOLDER_ID = ' '
    FORWARDER = ' '
    OBJECT_FL_CHANGE = ' '
    OBJECT_HD_CHANGE = ' '
    OBJECT_ID = ' '
    OBJECT_TYPE = ' '
    OUTBOX_FLAG = ' '
    OWNER = ' '
    STORE_FLAG = ' '
    DELETE_FLAG = ' '
    SENDER = ' '
    CHECK_ALREADY_SENT = ' '
    importing
    object_id_new =
    sent_to_all =
    tables
    OBJCONT =
    OBJHEAD =
    OBJPARA =
    OBJPARB =
    receivers =
    PACKING_LIST =
    ATT_CONT =
    ATT_HEAD =
    NOTE_TEXT =
    exceptions
    active_user_not_exist = 1
    communication_failure = 2
    component_not_available = 3
    folder_not_exist = 4
    folder_no_authorization = 5
    forwarder_not_exist = 6
    note_not_exist = 7
    object_not_exist = 8
    object_not_sent = 9
    object_no_authorization = 10
    object_type_not_exist = 11
    operation_no_authorization = 12
    owner_not_exist = 13
    parameter_error = 14
    substitute_not_active = 15
    substitute_not_defined = 16
    system_failure = 17
    too_much_receivers = 18
    user_not_exist = 19
    x_error = 20
    others = 21.
    THANKS
    MRUTYUN

  • Can any body send me oracle wip,bom and manufacturing student guide?

    Hello all,
    can any body share with me oracle WIP,BOM and manufacturing student guide? My mail id is [email protected]
    Thanks a lot
    Roopali agarwal

    Sorry I didn't find anything that is Kanban specific. Trying looking under flow manufacturing and also came up empty in R12. There was a R12 Inventory based class where Kanban resides in the user guide but it didn't look like it is going to be worth your while.
    The user guide is actually pretty straight forward and a whole bunch less inexpensive...

  • Can any body send mock project fico

    Hi,
    Can u pls send me mock project for fico...
    [email protected]
    thanks in advance
    ramesh

    hi
    Refer standard component :
    WDR_TEST_UI_ELEMENTS
    WDR_TEST_EVENTS
    SAP Online help : http://help.sap.com/saphelp_erp2005/helpdata/EN/0f/e8884118aa1709e10000000a155106/frameset.htm

  • Can any body send some paterial on alvs

    hi can anybody send some material on alvs

    Hi,
      Check these............
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    program double click in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    list heading like top-of-page in ABAP lists
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    print page number / total number of pages X/XX in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    set the cell color in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    print a logo/graphics in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    input-enabled fields in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    ALV for reports that are going to be run in background
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    I display an icon in ALV (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    display a checkbox in ALV
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Regards..
    Step

  • Can any body send me the cross component meta data files of any cross compp

    HI,
    I want meta data files of cross component project could u please pass these meta data files as soon as possible.
    Thanks,
    Shabeer Ahmed.

    Hi,
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a137c339-0b01-0010-a688-a87b88706845
    Regards,
    Sundar

  • Can any body send me the coding.!!!

    Write a program that, given seven-digit-number, write to a file every posibble seven-letter word combination corresponding to that number. That are 2187(3 power of 7) such combinations. Avoid phone numbers with the digit 0 and 1.!!
    please some 1 help me.!!
    thank you

    Write a program that, given seven-digit-number, write
    to a file every posibble seven-letter word combination
    corresponding to that number. That are 2187(3 power of
    7) such combinations. Avoid phone numbers with the
    digit 0 and 1.!!
    please some 1 help me.!!
    thank youLife's ain't easy. Gotta learn how to take care of yourself !!!

  • Can any body help me by sending the config settings of delivery scheduling.

    hi,
    sap gurus,
    in my project there is logistics execution module.  here my concern is they are depending on district
    and regions for fixing the frieght and all, so we have to schedule the deliveries to save the damarages
    and warphage to the client.
    can any body send me how the delivery scheduling and transportation scheduling cinfigured and
    if there is any other than this.
    plz let me know and help me on this.
    regards,
    balaji.t

    Hi Balaji..
    Just see weather this is helpful to your requirement...
    Backward scheduling is the calculation of deadline dates: the arrival time at the customer site is calculated as the earliest possible goods receipt time at the customers unloading point on the requested delivery date. All four of the delivery and transportation scheduling lead times are subtracted from the customeru2019s requested delivery date to determine if this date can be met.
    The transit time, loading time, and pick/pack time are subtracted from the customeru2019s requested delivery date to calculate the required material availability date.
    The system calculates backward scheduling as follows:
    Requested delivery date minus transit time = Goods issue date
    Goods issue date minus loading time = Loading date
    Loading date minus transportation lead time = Transportation scheduling date
    Loading date minus pick/pack time = Material availability date
    By default, the system will calculate delivery dates the closest day, taking into consideration the working days of the shipping point and a rounding profile. In this case the system assumes a 24 hour work day and lead times can be entered in days up to 2 decimal points. This is referred to as daily scheduling.
    Precise scheduling calculated down to the day, hour and minute is supported. This allows the scheduling of a delivery within a single day. It is activated by maintaining the working hours for a particular shipping point.
    Backward scheduling is always carried out first. If the material availability date or transportation scheduling date is calculated to be in the past, the system must then use forward scheduling.
    Forward scheduling is also done if no product is available on the material availability date calculated by backward scheduling. The system does an availability check to determine the first possible date when product will be available. This new material availability date forms the starting point for scheduling the remaining activities. The loading time, pick/pack time, transit time, and transportation lead time are added to the new material availability date to calculate the confirmed delivery date.
    Thanks,
    Safeer Rahman

  • Can any body explain about financial accounting (FI) and ...........

    hi,
    sap gurus,
    can any body send config steps from where we have to start in FI CO module.
    id is timmampalliatgmaildotcom
    regards,
    balaji.t
    09990019711.

    hi Balaji,
    You can find very helpful information at the following address
    http://www.sapdb.info/category/finance/
    thanx
    vijay

  • Can any body tell me, how to send/receive the sms from java application

    Hi All,
    Can any body tell me, how to send/receive the sms from java application to mobile phones.
    I have installed the jsms engine and when i try to connect to the mobile device ,the jsms server is giving
    the following error.
    Cannot connect to GSM Device, error : -11

    The best place to ask your question is at the JSMS website, forum or mailing list since this is no error that directly comes from a class belonging to the core Java classes.

  • Can any body give the solutions for frequently asked questions

    can any body help me in the following questions.
    1 .  what is a conversion routine .
    2.  how do you create fonts and colors in the sap scripts.
    3. how do u upload a logo in a smart form .
    4. can u  get both landscape and portrait in same layout , if yes how .
    5. what is the functional module used to upload excel file .
    6. what is the functional module used to get longtext in the report for purchase orders and sales orders
    7. what is the even alternative to initialization where authorizations are declared to run a report.
    8. how the exceptions with in function module rise when they are uncommented.
    9. how do u translate the report to other than system language.
    10. how to debug a sf without putting a stop point.
    11. what is the procedure to handle the data upload using table control in bdc.
    12. what is the procedure to access the standard text into scripts.
    13. what is the procedure to send the smart forms as a mail .
    14. in bdc how can u handle the table controls .
    15. there are 10000 records in a flat file and first record contains error , if I upload to the bdc program , and run in bdc session method what will happen.
    16. how can u attach the transport request for scripts .
    17. tools to transfer requests to quality control or production system.
    thanks in advance.

    Hi,
    Pls check service.sap.com/certification or your local education center at www.sap.com/education
    Eddy
    PS. Reward the useful answers and you will get <a href="http:///people/baris.buyuktanir2/blog/2007/04/04/point-for-points-reward-yourself">one point</a> yourself!

  • Can any body please give me an idea and the Import and Export process?

    Can any body please give me an idea and the Import and Export process? Excise Duty and other duties and so on.
    I will be highly obliged for the help.
    Regards,
    Subhasish

    for importing material,every importer has to file bill of entry in customs.
    first vendor send some documents like certificate of origine , bill of lading, packing list etc to importer.
    on the basis of those documents,importer makes supporting documents like duty calculation sheet, GATE declaration form,CHA declaration form,insurance certificate.
    CHA (custom house agent ) file the bill of entry on behalf of impoter in customs.
    custom verify it.
    after duty payment, CHA can clears the consignment from custom.
    there are two typs of BOE.
    1 Home consumption BOE
    2 Warehousing BOE
    in 1st type of BOE , payment of duty is done at the time of custom clearance
    and in 2nd type of BOE, importer can put material in warehouse without payment of duty. at time of using those material from warehouse,importer has to file out bond warehouse BOE and pay the all duties.

Maybe you are looking for

  • Is there any Method to remove the request from STMS OR SE10 OR SE09

    HELLO ALL ABAP GURUS, Is there any Method to remove or delete the request from STMS OR SE10 OR SE09 ? Thanks, Sumit.

  • Error -1073807346 will get away when i run VI for second time

    This is the weird thing i open the vi for the first time and run it and it will put out the error : Error -1073807346 occurred at VISA Open in Prompt for com port.vi Possible reason(s): VISA:  (Hex 0xBFFF000E) The given session or object reference is

  • Quark repeatedly quits upon launching

    After spending an entire day researching and testing, I'm thinking this is a hardware problem. Up until two days ago, everything worked fine. QuarkXPress now routinely quits about 4 or 5 seconds after launching. The opening graphic appears briefly, t

  • Drill down for notes

    Post Author: jhopewell CA Forum: Xcelsius and Live Office I am trying to figure out if there is a way to enable a drilldown that will allow people to see notes related to an individual item within a chart.  i.e. a bar chart where you could click on a

  • Custom bean in EL

    hi i want to acces custom bean in jsp using expression language: <c:forEach var="emp" items="empList">         <tr>           <td>${emp.getName}</td>         //etc.                 </tr>       </c:forEach>where empList is LinkedList<Employee> (stored