Create BAPI ? Make BAPI available for LSMW ?

Hi Experts,
Can any one tell me - How to create BAPI and make it available for the use in LSMW ?
Regards
Sonal

Hi,
Check the below links.
[Stepbystep|http://www.erpgenie.com/abap/bapi/example.htm]
[https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/200dd1cc-589e-2910-98a9-bb2c48b78dfa|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/200dd1cc-589e-2910-98a9-bb2c48b78dfa]
[http://www.****************/Tutorials/BAPI/BAPIMainPage.htm|http://www.****************/Tutorials/BAPI/BAPIMainPage.htm]
Reward if found helpful.
Regards,
Boobalan Suburaj

Similar Messages

  • Is BAPI available for ME32K?

    Hi
    Is BAPI available for ME32K?
    Thanks in advance
    With regards,
    Malli B

    Try with the function module BAPI_AGREEMENT_MAINTAIN.
    Regards,
    Kiran Bobbala

  • Any BAPI available for mass creation/change/delete for dependency net

    Hi guys,
    Any BAPI available for mass creation/change/delete for constraints in dependency net. I mean any uploading option in mass for creation, change and delete.
    Regds
    Regds

    Hi,
    Check if the below FM's meet your need:
    CAMA_CNET_CONSTRAINT_MAINTAIN
    CAMA_CONSTRAINT_NET_MAINTAIN
    CAMA_DEPENDENCY_MAINTAIN
    Regards,
    Vivek

  • I created a book in iPhoto for an upcoming family reunion. Most attending are interested in purchasing a copy. Is there a way for me to make it available for attendees to purchase? What are my options? Thanks!

    I created a book in iPhoto for an upcoming family reunion. Most attending are interested in purchasing a copy. Is there a way for me to make it available for attendees to purchase? What are my options? Thanks!

    There is no way for anyone but you to place the order. You can get a list, collect money and order passing out to purchasers at the reunion. For late orders you can have them shipped to you and reship or use a different shipping address for each order
    LN

  • Does a nonstandard(created by you) become available for general use?

    if you don't have a standard bapi  available for some transaction you require, can you create your own bapi and use it ? is it allowed ? does such a bapi become available for general use from then on like the standard ones? otherwise who else can use it?

    Hi,
    Yes we can use them as standard ones
    regards

  • Convert doc to PDF and make it available for workspace

    Hi,
    is there a way, how to convert a doc file to PDF file and make it available for the workspace (accept - deny scenario)?
    Lets say, that I have a contract that has to be approved by my manager. I convert the doc to PDF file and send it to his to-do queue. He than decides if it is a good agreement or bad one.
    I see couple of tricks in this. First, the converted file needs to have process fields included, so it has to be a form.
    Converted file is a flat PDF. I tried to use DDX to merge flat PDF and form with process fields, however that throwed and error.
    Workaround could be creating an envelope saying, hey, look in the attachments section, there is something you need to review.
    I can create an attachment in the form with DDX code, however only in the DDX UI interface, for some reason, it wont work in the process in LC.
    Also, I have difficulties with routes after user hits the accept, deny buttons in workspace, nothing happens :-(
    Could you please give me some advices, what kind of variables I need, what types they should be and how the process should looklike? I want to invoke it over the WSDL so at least one document has to be passed over it. The envelope can be in the resources section in LC (makes sense, but I do not know how to address it in the DDX and afterwards)
    Thanks in advance,
    H.

    Hi Jasmin,
    I can add the converted document to PDF as a attachment to the XDP form in the workspace.
    I am strugling now with that envelope (the XDP), cant render it to PDF and than workspace enable it. I will have a look around the web because it will be there. One question is can I control permitions on the attachment? I want just read only permitions.
    Thanks Jasmin for your continuous help.
    J

  • Make queries available for other users

    Hello,
    I have created a query in SQVI (quickviewer) and I am trying to make it available for other users.  How can I do that?  Do I need to create an infoset in SQ02?
    Thx,
    Alex

    Hi Alex,
    Though I have not worked using T.code SQVI, I had done the ABAP Query using "SAP Query". The procedure in it is in T.Code SQ03, we create a User Group and assign the users in the same, so that the users can access the Query. Hope this might help you. If you require I can send you the documentation on the same.
    Regards
    Sridhar

  • Is there any BAPI available for sales order creation with reference?

    Hi Experts,
    My requirement is to create sales order with reference for order type.
    Now my billing document number already contains the two items
    one is correct and another is zero quantity.
    I want to create order with reference of billing document but not with zero quantity item.
    Which BAPI I should use and what to pass to ignore zero quantity item?
    Regards,
    RH

    Hi Ronny,
    Try using BAPI_SALESORDER_CREATEFROMDAT2
    Regards,
    Shraddha

  • Any BAPI available for Tcode MSC2N

    Hello,
    Very Good Afternoon,
    I need to change the few vlaues in the t-code MSC2N.
    I need to change the City of Origin and Reg Of orign for few Batch numbers
    in Basic Data1 tab.
    There are around 1000 batch numbers which needs this change
    Is there any BAPI available to go ahead..
    Any suggestions will be appreciated.
    Regards,
    Kittu

    Hi, You can update classification for a batch using the following code.
    But first, you'll need to find out that the batch management is cross-plant or plant dependant.
    If it is cross plant then plant(WERKS) is not part of the key to BAPI_OBJCL_CONCATENATEKEY.
    CLEAR: objectkey, objectkeytable, objectkeytable[],
               allocvaluesnumnew, allocvaluesnumnew[],
               return.
        objectkeytable-key_field = 'MATNR'.
        objectkeytable-value_int = matnr.
        APPEND objectkeytable.
        objectkeytable-key_field = 'CHARG'.
        objectkeytable-value_int = charg.
        APPEND objectkeytable.
    * Only if Batch management is Plant dependant
        objectkeytable-key_field = 'WERKS'.
        objectkeytable-value_int = werks.
        APPEND objectkeytable.
        CALL FUNCTION 'BAPI_OBJCL_CONCATENATEKEY'
          EXPORTING
            objecttable    = objecttable
          IMPORTING
            objectkey_conc = objectkey
          TABLES
            objectkeytable = objectkeytable
            return         = return.
        allocvaluesnumnew-charact = "characteristic name goes here".
        allocvaluesnumnew-value_from ="characteristic value goes here".
        APPEND allocvaluesnumnew.
        allocvaluesnumnew-charact =  "characteristic name goes here".
        allocvaluesnumnew-value_from =  "characteristic value goes here".
        APPEND allocvaluesnumnew.
        CALL FUNCTION 'BAPI_OBJCL_CHANGE'
          EXPORTING
            objectkey                = objectkey
            objecttable              = objecttable
            classnum                 = classnum
            classtype                = classtype
    *   STATUS                   = '1'
    *   STANDARDCLASS            = STANDARDCLASS
    *   CHANGENUMBER             = CHANGENUMBER
    *   KEYDATE                  = SY-DATUM
    *   NO_DEFAULT_VALUES        = ' '
    * IMPORTING
    *   CLASSIF_STATUS           = CLASSIF_STATUS
          TABLES
            allocvaluesnumnew        = allocvaluesnumnew
            allocvaluescharnew       = allocvaluescharnew
            allocvaluescurrnew       = allocvaluescurrnew
            return                   = return
    * Do not forget to commit, otherwise changes would not take effect.
    commit work.
    Regards,
    Hashir Ahmed

  • How can I make addons available for enterprise users by an central service and forbid the installation from any other sources

    in the company I´m working for it´s not possible to install add-ons by the Users . That´s what I´m going to change.
    We use Firefox ESR 17 and Window 7.
    I want to make add-ons available for everybody by integrating an internal central service. That is possible by customizing the "extension.webservice.discoverURL" to the server I´m talking about. The Problem is that nobody should be able to install add-ons from any other source, for example addons.mozilla.org, local media,...
    Do you have an idea, how this problem can be solved?
    Maybe there is a possibility by using the lockPref "xpiinstall.enabled false" in conjunction with a whitelist defining my Server?

    Does any of this or similar blogs by the same author help
    *http://mike.kaply.com/2012/07/03/customizing-firefox-blocking-add-ons/
    Although with many hacks there could be some sort of workaround that advanced users may employ when attempting to circumvent the measures, such as the ability to use Firefox in safe-mode and then install add-ons, or even run a browser from a memory stick.
    You may well get a better answer on some other forum. This mozillazine forum deals with some coding issues, not sure but they may consider your sort of question on topic.
    * http://forums.mozillazine.org/viewforum.php?f=25

  • How to make PDFs available for viewing online only

    Sorry for the odd thread title — it is the only one that makes sense.
    I work for a small non-profit historical group.  We are digitizing to archival standards a collection of newspapers and periodicals and want to make them available to the public.  However we do not want to just put the PDF out there as that offers opportunities for theft.  Some of the already released material has already been lifted from Archives.Org and is now being sold on CDs and the Internet by for-profit nefarious people.
    So..., is there a way to take the PDF and have it so that it will not work unless it is viewed on our website?  In other words, if a person downloads the file to their computer it will not work?  I think it should be possible to include a java script routine somewhere whereby if the file is opened online, it opens.  But if a person downloads it to their computer and tries to open the file and does not see a small script file, it does not open.  OR, is it possible to give each file it's own certificate for online use only?
    A sample PDF can be viewed here.
    Thank you one and all for any replies,
    A. Wayne Webb

    Thank you for the response George and Isakten.
    I found my solution, and better yet it will not break the budget.  CopySafe PDF Protector while perhaps a bit unwieldy for a first-time end user, offers all I needed.  It forces the end user to add an add-on for their browser and we all know that can be difficult at best, but the program takes care of it handily.
    Cordially,
    A. Wayne Webb

  • How to make extension available for all users in a multi user environment

    Hi,
    In a multi-user environment, a user install a dreamweaver extension,but just the user who install the extension can use it.
    Is there a way that administrator install the extension and make this extension available for other users in multi-user environment(e.g. the Windows 7)
    Thanks

    In a multi-user environment, a user install a dreamweaver extension,but just the user who install the extension can use it.
    Is there a way that administrator install the extension and make this extension available for other users in multi-user environment(e.g. the Windows 7)
    Dreamweaver had this capability many releases ago, but it has been dropped, so it's no longer available.
    Regards,
    Randy Edmunds
    Dreamweaver Development
    Adobe Systems, Inc.

  • When I share a file, can I also make it available for downloading?

    I used the Send Link feature on Adobe Creative Cloud to share one of my files, but my friend can't download the file. Is there an option I can set so the file can be downloaded?

    Yes, you can make shared files available for download. You can also allow or disallow comments on the shared file. To set these options, do the following:
    Open the file that you want to share on Creative Cloud.
    Click Share Options on the right side of the window.
    Select the share options that you want: Allow Comments, Allow Downloads, or both.

  • Make methods available for clients

    I have written some methods in the ElementsViewImpl.java and in the ElementsViewRowImpl.java of my BC4j tier. These methods return a Writer object. Now when I want to make these methods available for my clients (via the "client methods" and the "client row methods" in the edit menu of my ElementsView) the methods that returns a Writer object don't appear in the list and because of this I can't use them in my jsp pages. How can I solve this problem???
    Thanx,
    Lieven

    java.io.Writer is not Serializable. Client methods must return a Serializable type.
    Press the help button on the client methods page of the bc4j wizard to see more details.
    Regards
    M.Thal

  • Any bapi available for Create Employee Trip

    hi ,
    please tell me for Create Employee Trip any bapi is available.
    if it is there means please tell me.

    Check this one -
    BAPI_TRIP_CREATE_FROM_DATA
    Regards,
    Amit

Maybe you are looking for

  • Text messages going to the wrong phone.

    My son, wife and I each have an iPhone 4.  My son and I each have aan iPad2. Recently, some text conversations between me and third parties showed up not only on my iPhone but also on my son's iPhone and iPad. I attempted to solve the problem by turn

  • BPS Web Application - How to change function button property dynamically

    We have created BPS web application for sales force, it contains 2 button. 1. To send Workflow notification to Managers 'Request for Approval' - This would be used by sales person 2. Button for Manager to approve the Plan 'Manager Approval' - This wo

  • Same Query returning different result (Different execution plan)

    Hi all, To day i have discovered a strange thing: a query that return a different result when using a different execution plan. The query : SELECT  *   FROM schema.table@database a WHERE     column1 IN ('3')        AND column2 = '101'        AND EXIS

  • How can i manage multi level hierarchy in ADF

    hi, i have three View Object which is based on table. EmployeeHdr- EmployeeVo LeaveApplyHdr- LeaveHdrVo LeaveApplyDet- LeaveDetVo now how can i manage master detail type of hierarchy among these table. a)foreign key relation b/w EmployeeHdr and Leave

  • How to setup exclusion indicator in price?

    who could give me a example about how to use exclusion indicator in price? That is to say how to cause different result according to different indicator value. what are needed to setup step by step?