Please can anyone send me a snapshot of lsmw using bapi

please can anyone send me a snapshot of lsmw using bapi
pointz wll b rewarded to the person who send a snapshot of the above query in my mail
[email protected]

Hi,
Please check these links for step by step including snapshot.
http://esnips.com/doc/ef04c89f-f3a2-473c-beee-6db5bb3dbb0e/LSMW-with-BAPI
http://www.****************/Tutorials/LSMW/BAPIinLSMW/BL1.htm
Regards,
Ferry Lianto

Similar Messages

  • Can anyone send me link of IDOC gentn using change pointers!

    Hey guys I need to learn IDOC generation using change pointers.Please send me some help notes and link  and sample program on that !

    Hi,
    Change pointers are the mechanism through which you can send data to another SAP system or external system if there is a change happening to specific fields of master data.
    For more information, please check this link.
    http://www.angeli.biz/www5/cookbooks/workflow/workflow_30/docu.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/12/83e03c19758e71e10000000a114084/content.htm
    Regards,

  • Can anyone send me

    Hi all,
    Can anyone send me RD20 and related to that BR30 with your past experience or some business scenarios please. I want to work them on my Prod Instance like real environment. If you fell "in secure" to publish them please remove your client name and company name as well. Or else you can send me to my personal mail ID [email protected]
    Thanks in advance for your time and consideration .

    If the ASA has a current support contract, the TAC call center should be able to associate your CCO userid with it.
    Meanwhile see your e-mail separately.

  • CAn anyone send me documents related to key production support issues

    CAn anyone send me documents related to key production support issues in SD and MM
    thanks &regards
    aman

    Hi Priya,
    Please find the below link to have a very good stuff on Foreign Trade;
    http://help.sap.com/bp_bblibrary/500/html/G09_ForgTrade_EN_IN.htm
    Please Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

  • Can anyone send tutor for performance tuning?

    can anyone send tutor for performance tuning?I like to chk my coding.

    1.      Unused/Dead code
    Avoid leaving unused code in the program. Either comment out or delete the unused situation. Use program --> check --> extended program to check for the variables, which are not used statically. 
    2.      Subroutine Usage
    For good modularization, the decision of whether or not to execute a subroutine should be made before the subroutine is called. For example:  
    This is better:
    IF f1 NE 0.
      PERFORM sub1.
    ENDIF. 
    FORM sub1.
    ENDFORM.  
    Than this:
    PERFORM sub1.
    FORM sub1.
      IF f1 NE 0.
      ENDIF.
    ENDFORM. 
    3.      Usage of IF statements
    When coding IF tests, nest the testing conditions so that the outer conditions are those which are most likely to fail. For logical expressions with AND , place the mostly likely false first and for the OR, place the mostly likely true first. 
    Example - nested IF's:
      IF (least likely to be true).
        IF (less likely to be true).
         IF (most likely to be true).
         ENDIF.
        ENDIF.
       ENDIF. 
    Example - IF...ELSEIF...ENDIF :
      IF (most likely to be true).
      ELSEIF (less likely to be true).
      ELSEIF (least likely to be true).
      ENDIF. 
    Example - AND:
       IF (least likely to be true) AND
          (most likely to be true).
       ENDIF.
    Example - OR:
            IF (most likely to be true) OR
          (least likely to be true). 
    4.      CASE vs. nested Ifs
    When testing fields "equal to" something, one can use either the nested IF or the CASE statement. The CASE is better for two reasons. It is easier to read and after about five nested IFs the performance of the CASE is more efficient. 
    5.      MOVE statements
    When records a and b have the exact same structure, it is more efficient to MOVE a TO b than to  MOVE-CORRESPONDING a TO b.
    MOVE BSEG TO *BSEG.
    is better than
    MOVE-CORRESPONDING BSEG TO *BSEG. 
    6.      SELECT and SELECT SINGLE
    When using the SELECT statement, study the key and always provide as much of the left-most part of the key as possible. If the entire key can be qualified, code a SELECT SINGLE not just a SELECT.   If you are only interested in the first row or there is only one row to be returned, using SELECT SINGLE can increase performance by up to three times. 
    7.      Small internal tables vs. complete internal tables
    In general it is better to minimize the number of fields declared in an internal table.  While it may be convenient to declare an internal table using the LIKE command, in most cases, programs will not use all fields in the SAP standard table.
    For example:
    Instead of this:
    data:  t_mara like mara occurs 0 with header line.
    Use this:
    data: begin of t_mara occurs 0,
            matnr like mara-matnr,
            end of t_mara. 
    8.      Row-level processing and SELECT SINGLE
    Similar to the processing of a SELECT-ENDSELECT loop, when calling multiple SELECT-SINGLE commands on a non-buffered table (check Data Dictionary -> Technical Info), you should do the following to improve performance:
    o       Use the SELECT into <itab> to buffer the necessary rows in an internal table, then
    o       sort the rows by the key fields, then
    o       use a READ TABLE WITH KEY ... BINARY SEARCH in place of the SELECT SINGLE command. Note that this only make sense when the table you are buffering is not too large (this decision must be made on a case by case basis).
    9.      READing single records of internal tables
    When reading a single record in an internal table, the READ TABLE WITH KEY is not a direct READ.  This means that if the data is not sorted according to the key, the system must sequentially read the table.   Therefore, you should:
    o       SORT the table
    o       use READ TABLE WITH KEY BINARY SEARCH for better performance. 
    10.  SORTing internal tables
    When SORTing internal tables, specify the fields to SORTed.
    SORT ITAB BY FLD1 FLD2.
    is more efficient than
    SORT ITAB.  
    11.  Number of entries in an internal table
    To find out how many entries are in an internal table use DESCRIBE.
    DESCRIBE TABLE ITAB LINES CNTLNS.
    is more efficient than
    LOOP AT ITAB.
      CNTLNS = CNTLNS + 1.
    ENDLOOP. 
    12.  Performance diagnosis
    To diagnose performance problems, it is recommended to use the SAP transaction SE30, ABAP/4 Runtime Analysis. The utility allows statistical analysis of transactions and programs. 
    13.  Nested SELECTs versus table views
    Since releASE 4.0, OPEN SQL allows both inner and outer table joins.  A nested SELECT loop may be used to accomplish the same concept.  However, the performance of nested SELECT loops is very poor in comparison to a join.  Hence, to improve performance by a factor of 25x and reduce network load, you should either create a view in the data dictionary then use this view to select data, or code the select using a join. 
    14.  If nested SELECTs must be used
    As mentioned previously, performance can be dramatically improved by using views instead of nested SELECTs, however, if this is not possible, then the following example of using an internal table in a nested SELECT can also improve performance by a factor of 5x:
    Use this:
    form select_good.
      data: t_vbak like vbak occurs 0 with header line.
      data: t_vbap like vbap occurs 0 with header line.
      select * from vbak into table t_vbak up to 200 rows.
      select * from vbap
              for all entries in t_vbak
              where vbeln = t_vbak-vbeln.
      endselect.
    endform.
    Instead of this:
    form select_bad.
    select * from vbak up to 200 rows.
      select * from vbap where vbeln = vbak-vbeln.
      endselect.
    endselect.
    endform.
    Although using "SELECT...FOR ALL ENTRIES IN..." is generally very fast, you should be aware of the three pitfalls of using it:
    Firstly, SAP automatically removes any duplicates from the rest of the retrieved records.  Therefore, if you wish to ensure that no qualifying records are discarded, the field list of the inner SELECT must be designed to ensure the retrieved records will contain no duplicates (normally, this would mean including in the list of retrieved fields all of those fields that comprise that table's primary key).
    Secondly,  if you were able to code "SELECT ... FROM <database table> FOR ALL ENTRIES IN TABLE <itab>" and the internal table <itab> is empty, then all rows from <database table> will be retrieved.
    Thirdly, if the internal table supplying the selection criteria (i.e. internal table <itab> in the example "...FOR ALL ENTRIES IN TABLE <itab> ") contains a large number of entries, performance degradation may occur.
    15.  SELECT * versus SELECTing individual fields
    In general, use a SELECT statement specifying a list of fields instead of a SELECT * to reduce network traffic and improve performance.  For tables with only a few fields the improvements may be minor, but many SAP tables contain more than 50 fields when the program needs only a few.  In the latter case, the performace gains can be substantial.  For example:
    Use:
    select vbeln auart vbtyp from table vbak
      into (vbak-vbeln, vbak-auart, vbak-vbtyp)
      where ...
    Instead of using:
    select * from vbak where ... 
    16.  Avoid unnecessary statements
    There are a few cases where one command is better than two.  For example:
    Use:
    append <tab_wa> to <tab>.
    Instead of:
    <tab> = <tab_wa>.
    append <tab> (modify <tab>).
    And also, use:
    if not <tab>[] is initial.
    Instead of:
    describe table <tab> lines <line_counter>.
    if <line_counter> > 0. 
    17.  Copying or appending internal tables
    Use this:
    <tab2>[] = <tab1>[].  (if <tab2> is empty)
    Instead of this:
    loop at <tab1>.
      append <tab1> to <tab2>.
    endloop.
    However, if <tab2> is not empty and should not be overwritten, then use:
    append lines of <tab1> [from index1] [to index2] to <tab2>.
    P.S : Please reward if you find this useful..

  • Can anyone send me TCS XI  running projects clients ?

    can anyone send me TCS XI running projects clients?
    please send ASAP..

    HI Bipin and Prasad,
    Please note TBIT40 materials are copyright protected by SAP AG. Distruibution of any such material is ILLEGAL.
    If you need the training material, attend a training course in any SAP authorised training centre.
    Regards,
    Jai Shankar

  • Can anyone send me TBIT40files.zip?

    hai,
    I am working with TBIT40 Exercise3. For that i need TBIT40files.zip files for PurchaseOrderCombined.xsd,transforms_zip.zip and for testing scenario.
    can anyone send me to [email protected]
    Thanks.
    prasad

    HI Bipin and Prasad,
    Please note TBIT40 materials are copyright protected by SAP AG. Distruibution of any such material is ILLEGAL.
    If you need the training material, attend a training course in any SAP authorised training centre.
    Regards,
    Jai Shankar

  • Can anyone send me IZ0-042 dumps

    I am preparing myself for Oracle 10g Administration-1. can anyone send me dumps regarding this course

    A mail content...
    Oracle Certification Program Candidate,
    It has come to Oracle’s attention that certain Oracle
    Certification Program exam content has been distributed
    through the Internet via email and various Internet Groups.
    We would like to remind all certification candidates that
    you have agreed to the Oracle Certification Program
    Candidate Agreement prior to beginning any Oracle Certification exam. The Candidate Agreement prohibits the
    redistribution of Oracle Certification Program exam
    content and the disclosure of information contained in
    Oracle Certification exams. If an individual violates the
    terms of the Oracle Certification Candidate Agreement,
    Oracle may remove an individual’s ability to obtain or
    pursue an Oracle Certification Program credential and/or
    confiscate certification credentials which may have been
    previously earned. In addition, legal action may be taken
    against individuals, groups or organizations found distributing or maintaining Oracle Certification Program copyrighted exam content, materials or intellectual property.
    You may review the entire Oracle Certification Program
    Candidate Agreement online at
    http://www.oracle.com/global/us/education/certification/canagreemt.html. Please pay particular attention to sections 3.3, 9.1, 9.2 and 9.3 which pertain specifically
    to the distribution, confidentiality and ownership of Oracle Certification exam content.
    The agreement terms and conditions serve to protect the integrity of Oracle Certification Program credentials.
    The Oracle Certification Program team would like to
    remind you that by distributing exam content and
    assisting individuals with their exams you may be hurting
    the value of the credential that you worked so hard to
    earn.
    Help Oracle maintain the value of its certifications by
    protecting Oracle’s intellectual property and by stopping the unauthorized distribution of exam content.
    Please notify the Oracle Certification Program at
    [email protected] with any knowledge of websites, Internet Groups, organizations or individuals who are distributing exam content illegally.
    Regards,
    Oracle Certification Program
    jeneesh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • CAN ANYONE SEND ME PROGRAMS ON BSP APPLICATION

    HI,
              I AM NEW TO BSP APPLICATION, SO CAN ANYONE SEND ME SOME GOOD & INTERACTIVE PROGRAMS ON BSP APPLICATION.
             THANKS IN ADVANCED.

    Hi Santosh,
    Please follow these links ...
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/c8/101c3a1cf1c54be10000000a114084/frameset.htm">BSP Tutorials</a>
    Follow all the tutorials to get a good hand on BSP...!
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/c8/101c3a1cf1c54be10000000a114084/frameset.htm">First Tutorial</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/c8/101c3a1cf1c54be10000000a114084/frameset.htm">Second Tutorial</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/c8/101c3a1cf1c54be10000000a114084/frameset.htm">Second Tutorial with HTMLB</a>
    and so on...!
    <i>Do reward each useful answer..!</i>
    Thanks,
    Tatvagna.

  • HT1414 I have had to restore my ipad to factory settings and then tried to restore the data from the backup on itunes, but none of my apps have restored - please can anyone help as my daughter is going to go mad if I can't get her games back to where they

    I have had to restore my ipad to factory settings, having made a backup on my pc first. When Ihave tried to restore from my pc I have no apps!! Please can anyone help me get them back with all their data. I don't have wifi at home and I have never been able to sync my pc with my ipad, although it works with my iphone! I copied all of the apps before I restored using itunes, but no idea where they are copied to. Any help would be hugely appreciated to get my daughters games back. Thank you in advance )

    Hi Skydiver119
    Thank you so much for taking the time to reply to my problem.
    Yes the purchases were made though my apple id.
    I have looked at a few other questions on this topic and I have read that the app data is stored in the backup file but the apps themselves need to be synced back onto the ipad. Someome has mentioned right clicking on sync my ipad but I don't know where to find that to right click on!! Lol.
    Again, I really appreciate your time and if by any chance you know where I can 'right click' I would really appreciate you letting me know as I can't get my ipad to sync with my pc at all, although it is being picked up in itunes and it has backed up to itunes okay. GGrrr. Maybe I have something wrong in the settings which is not making them compatible?

  • Please can anyone help me to download some apps for my iphone .. i am simply not able to log in to the itunes store , when i enter my apple id it says that it has not yet been used with the itunes store

    please can anyone help me to download some apps for my iphone .. i am simply not able to log in to the itunes store , when i enter my apple id it says that it has not yet been used with the itunes store

    Ok, you should generally only get this when you are converting your ID to an iTS account for the first time.
    Sign into iTunes with your Apple ID and you should get this.... IRC once you agree or accept it's now an iTS account and you wont get that again.

  • I create an apple id then i want to verify it, i verify it once then  when i log in with my apple id it asked mi again to verify it.everytime i log in it asked me to resend verication and after i resend it i press done. Please can anyone help me ?

    I create an apple id then i want to verify it, i verify it once then  when i log in with my apple id it asked mi again to verify it.everytime i log in it asked me to resend verication and after i resend it i press done. Please can anyone help me ?

    How are you verifying it?  Are you responding to the email that is sent?  If not, do so.
    If so, then try changing your password.

  • Hi. Having trouble viewing a downloaded file from a site. iPad is telling has not got a app to open file ,but have downloaded so many now and none of them are any help. Tried this on my android phone still nothing. Please can anyone help as slowly ma

    HHi having trouble viewing a downloaded file from a site my iPad is telling me I don have a app to open file . And have downloaded loads of apps and still no joy . Have tried this on my android phone to and still nothing. Please can anyone help as slowly going crazy. Thanks tim

    What type of file?  From what site?  What Apps have you downloaded for it?
    Perhaps if you provide details of what you are doing we can provide more precise help.

  • I am unable to open any app on my iphone. While i'm trying to open an app, it just shakes the screen and it does not get open and remains in the  same page. It worked fine until I charged the phone in my laptop. Please can anyone help me to recover it?

    I am not able to open any app on my iphone. While i'm trying to open an app it just shake the screen and it does not open and remains in the same screen. It worked fine until I charged the phone this evening. After that suddenly I'm facing this. Please can anyone help me to recover this issue? pls!

    This is covered in the basics section.
    A restore loses nothing.
    A restore does.  If you are using the iphone as designed, then everything should be on your computer.

  • I keep getting the message itunes has stopped working I can't even open itunes I have tried uninstalling and installing, starting in safe mode but nothing seems to work. Please can anyone help me

    I have recently bought a new laptop with windows 7 and when i have tried to install and open itunes i keep getting the message 'itunes has stopped working' itunes then shuts down before i can do anything to fix it. This happens every time I try to open itunes. I have tried uninstalling itunes and reinstalling it, starting itunes in safe mode. Nothing seems to work. Please can anyone help.

    If and when I finally manage to open it, as soon as I click on a movie to watch, the message "itunes has stopped working" comes up.
    Try the following user tip with that one:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

Maybe you are looking for

  • Can't create a temporary document from an XmlInputStream

    Attempts to create an XmlDocument fail when reading it from an XmlInputStream MainXmlInput.java package com.kitfox.dbtest; import com.sleepycat.db.DatabaseException; import com.sleepycat.db.Environment; import com.sleepycat.db.EnvironmentConfig; impo

  • Cn anybody tell me the date concept in HR payroll

    Hi experts.... Well i m currently wrking in HR payroll module ...nd its all abt infotypes and date concet well if nybody have docs related to date concept cn u plz send me or tell me...suppose if i hv to choose date from  01-08-2009 to 31-08-2009 ...

  • Message Rules Problem

    I have 2 IMAP accounts, one from the university where I work, and another for personal use with lots of storage space. While I have plenty of quota on both accounts, I want to be able to make a backup copy of my University emails as they come in to m

  • Pictures missing from iPhoto 11 9.4.1

    I upgraded to 9.4.1 the other night, and now some of my pictures are missing. It shows a thumbnail very briefly but then turns into a gray box. Should I rebuild the library? I back up to Time Machine. Thanks!

  • Only Front speakers work with Vista and x

    New Windows Vista, installed x-fi extreme gamer and only the front three speakers work on 5. system. Help, i tried and downloaded the update from Creative, no help, still not working, any fixes, i want my 5. like my old XP system allowed....