Z program for batch deletion request

Hello I am a consultant mm inexperienced, need to help guide a abap so you can make a program where you can make the Z deletion request batch, in the transaction principle "MSC2N."
Please someone can help me? Bapi there is a standard or something?

Hi Chandrashekhar,
You can do so using RSBDCSUB.
Please refer below link :-
[http://help.sap.com/saphelp_40b/helpdata/pt/fa/09714d543b11d1898e0000e8322d00/content.htm]
Regards
Abhii

Similar Messages

  • Program for Importing Transport Request

    Dear all,
    I am thinking of writing a program to perform the import of transport request into the system after the transport request is added to the buffer.
    The transport request is added to the buffer using FTP.
    Please kindly give me some guidance as to how can I write this program for importing transport request. Thank you.

    Hi Prashant,
    My 2 systems are not linked to each other, one is running SAP 4.7 and the other is running ECC6.0. Can I still use STMS_IMPORT?
    When I use STMS_IMPORT, I hit some errors. It is either "tp finished: A tool used by tp broke down" or "tp finished: A tool used by tp aborted". DO you have any idea what is wrong? Thanks for your help.

  • Does SAP Provide any standard conversion program for Batch Managment activa

    Hi,
    An idea if SAP Provides any standard program to conversion of non batch managed material to batch managed material in a productive SAP Environment and close open documents,
    It would be great help if somebody can reply to these queries.
    Thanks in advance
    Regards
    Bijaya Pradhan

    Hi
    Use the same Driver program RIPROV00 which is used as Script driver program to fire the output from smartforms also
    Only thing is little bit you have to modify the program such that it triggers the smartform instead of Script.
    I think there is no smartform driver program for this IW21.
    see some standard SF driver program like RLE_DELNOTE and
    modify it and use it.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Archiving object for batch deletion

    Hi   ,
    Please let me know the archiving object for batch date deletion from table MCHA.
    MM_SPSTOCK is for archiving batch date from table MCHB.
    Thanks in advance,
    Vinayak

    MM_SPSTOCK - is for archiving all the Batch related data including speical stocks. This will take care of your Batch Tables MCH1, MCHA, MCHB(own stock) and also all of the special stock tables like MSKA, MKOL, MSKU, MKOP, MSLB .....(if used in your company)etc. You should be fine just using this object

  • Max record limit for Batch delete

    Hi,
    Is there a limit on the maximum number of records that can be deleted using the batch delete functionality?
    If I select an Account list which has more than 200 records, so it covers more than one page of the list view. When I select batch delete, does that delete all the records or just the 100 records on the first page?
    Regards,

    The batch delete will delete all the records in the list. There is no upper limit on batch delete.
    Edited by: bobb on May 4, 2011 7:30 AM

  • Standard program for SCript  delete logs

    Hi experts
    Can any one tell me the standardprogram for deleting script logs. i did some modifications for invoice script
    but its not fetching the values thats why if delete ( reset ) script log then may be it'll work.
    urgent.
    Update me ASAP.
    Thnak you .

    Hi,
    i don't think there is some thing for this. just log off. and log in again .
    why do you think because of logs you are not getting the data. check your program once again.
    Regards
    vijay

  • Smartform Driver Program for Purchase Order & Request For Quotation

    Hi All,
    We are in ECC 6.0 EHP 4
    I am unable to find Driver Program /SMB40/FM06P for Smartform
    Purchase order  = SMB40/MMPO_L.
    Request For Quoation = /SMB40/MMRFQ_L
    So can anyone help me how to get the Driver Program into my SAP system.
    Regards
    Rakesh

    We had a similar problem... The package /SMB40/ is not installed by default with the ECC 6.0 system, so your Basis team should install it now.
    See this thread for more information, I hope it can be useful for you.
    /SMB40 and /SMB11

  • Program for Batch Job

    Hi,
    How can i find a program attached to a batch job in sm37.
    Points will be rewarded definitely.
    Thanks

    (1) If you want to know the program used by the job
    go to SM37, select a job and click on "step", each step used a program or an external command/program.
    (2) If you search for job using a program*
    On the initial screen of SM37, put the name of the program you search for.
    Regards

  • Best Program for Batch Normalizing & Simple editing?

    Hi.
    I used to have a program called audio finder that let me batch normalise files and pitch them and edit them.... just wondering whether there is any others out there that you would recommend?
    Merci!

    I bought Audio Finder too... but don't use it as I find the Finder (preview mode with space bar) quicker for what I was using it for.
    You should check out Soundtrack Pro for some scriptable batch processing... It's actually really good for that kind of thing. As far as pitch related sensing etc... well, it won't do that, but for general conversion and plugin processing etc, you can set up some awesome droplets and automator functions that can save you time.

  • Script for batch delet redundant layer

    I have thousands files in the different folders, each file has same layer named “Job Info”. Can someone help me to write a script for del this layer folder by folder?
    I expected the script tells me that I have to select a folder, then it can automatically open the files, del “job info” layer then save file, rewrite, close file

    Hi Ashram,
    Sorry, I misunderstood your question. Please try the below.
    var folder = Folder.selectDialog ("Select the root folder");
    var myfiles = [];
    var _layers = ["test1", "test2", "test3"];
    getsubfolderfiles(folder);
    for(var i =0;i<myfiles.length;i++)
            var doc = app.open(myfiles[i],false);
            for(var j=0;j<_layers.length;j++)
                try
                    app.activeDocument.layers.add({name:_layers[j]})
                catch(e){}
            doc.save();
            doc.close();
    function getsubfolderfiles(folder)
        var filelist = folder.getFiles();
        for(var i =0;i<filelist.length;i++)
            if(filelist[i] instanceof Folder)
                getsubfolderfiles (filelist[i]);
            else if(filelist[i] instanceof File)
                if(filelist[i].name.indexOf(".indd") > -1){
                    myfiles.push(filelist[i]);
    Hi HarveyLiu,
    Try this,
    var folder = Folder.selectDialog ("Select the root folder");
    var myfiles = [];
    getsubfolderfiles(folder);
    for(var i =0;i<myfiles.length;i++)
            var doc = app.open(myfiles[i],false);
            try{
                var _layer = doc.layers.item("Job Info");
                _layer.remove();
                var link, image, frame,
                links = doc.links, counter = 0;
                for (var i = links.length-1; i >= 0; i--) {
                    if (links[i].status == LinkStatus.LINK_MISSING) {
                        try {
                            link = links[i];
                            image = link.parent;
                            frame = image.parent;
                            frame.remove();
                            counter++;
                        catch (err) {
                            $.writeln(i + " - " + err);
            catch(e){}
            doc.save();
            doc.close();
    function getsubfolderfiles(folder)
        var filelist = folder.getFiles();
        for(var i =0;i<filelist.length;i++)
            if(filelist[i] instanceof Folder)
                getsubfolderfiles (filelist[i]);
            else if(filelist[i] instanceof File)
                if(filelist[i].name.indexOf(".indd") > -1){
                    myfiles.push(filelist[i]);
    Regards,
    Chinna

  • Table for deleted requests information

    Hi,
    can any one please tell the table name where the information of all the deleted request get stored. we want the user name, time, the data target name, req id (LOG) for the deleted request to be displayed through a report.
    Thanks,
    Pallavi

    Dear PVP,
    Check  RSREQDONE..
    Also,,
    RSMONICDP table - there you can see requests status. Try to understand if red status means that a red request is still sitting in the data target, or it is deleted.
    RSICPROT - there is a request description in the EXTNUMBER field. Some of them may contain 'DELET' word. Maybe these are deleted requests?
    Hope this helps u..
    Best Regards,
    VVenkat..

  • AE 5.1 and 5.2 - Configuring parallel workflows for "Delete" Request type

    Has anyone configured parallel workflows for the "Delete" Request type?  I want to configure 1 for SAP and 1 for non-SAP applications, but have been unable to do it successfully. 
    The initiators I have created that do not work are:
    1 - SAP initiator:
    SAP application with "OR" condition
    Request Type = Delete with  "AND" condition
    2 - Non-SAP initiator:
    Non SAP application 1 with "OR" condition
    Non SAP application 2 with "OR" condition
    Non SAP application 3 with "OR" condition
    Request Type = Delete with  "AND" condition
    When I create a request to Delete a user with SAP app and Non SAP app I get the error:  "Error in creating request. Multiple Initiators, [NON SAP DELETE, SAP DELETE] Found."
    Based on what I am reading on p. 58 of the AE52ConfigGuide.pdf, this should be possible to do.  Does anyone have any suggestions?

    This is my understanding.,
    A request cannot have more than one initiator. You cannot trigger multiple initiators for one single request. In your case both attributes SAP & Non SAP application are given with OR condition which makes both the initiators alike. As mentioned in the documentation the request for deletion can be made to happen in both SAP & Non SAP application by having forked path (for this the initiator should be OR Application SAP OR Non SAP Application AND Request Type Delete). Given the other option then it should have different initiator for SAP and Non SAP applications by giving them with AND condition.

  • Need Report for batch wise consuption

    i need the coding (program) for batch wise consuption report,,,
    output fields are
    Posting date, batch number, quantity, mfg date, exp date, next inspec date, order no(po) , product name, batch no quanty issue.
    i want the logic after retriving the data from MSEG table with moment types 101,102,261,262,201,202.
      that i should cancle the record of movement type 102 from 101
    regards
    mukesh

    HI Siva,
    Thanks for quick reply. Yeah, in S_ALR_87013047 i can compare only two materials. but i am looking for a report for group of materials for forecasting. Can we create acustomised report for this.
    Please let me know.
    Thanks
    vamshi

  • Batch Select or Batch Delete?

    When there'a a lot of mail in my iPad Inbox (POP account), there's no way to "select all" for batch deletion.
    Am I missing something?

    If you have gmail you can batch delete using Safari. Log into gmail using Safari. Scroll down to the bottom of the page and click on the link labeled DESKTOP. The page will reopen up with more options. Click on the box above the first email and select ALL and then hit delete. This will delete emails that are selected off of the sever.
    You might be able to use Safari with other mail providers to batch delete emails.

  • FM for Contract Deletion

    Hi All,
    I want to know any FM can delete Contract. Through(VA42) BDC i am deleting contract but some times its not deleting. So i can do through FM.
    Suggest me experts.
    Thanks
    Amit

    Hi Suresh,
    what you can do is to create an Abap Program for selective deletion.
    Create a Program by incuding what ever the selection parameters you would require and don't forget to incude Time Characterstics from High to Low level Granularity.
    Create a Variant by incuding an infoprovider on which you want to go for selective deletion. You can just change the infoprovider name for further requirement.
    If you want you can also incude this selective deletion program in process chain.
    Note: It's not advisable to go for selective deltion using selective deletion.
    Regards
    SujanR

Maybe you are looking for

  • Re-install Adobe Acrobat Pro X on new PC

    Does anyone know if I can move my Adobe Acrobat Pro X from my old PC to my new one without having to buy a new licence etc,  and how do I go about it?

  • The bottom part of my safari window is missing!

    When I open safari the top half of my address bar is there but the rest of the page is missing.  I can press the green expand button and the rest of the page shows up, except for my bookmarks bar.  I logged on with another user and safari is fine.  H

  • WebCenter WorkFlow

    Version: WebCenter Spaces 11g PS3 WebCenter provides some inbuilt workflows on content. Is it mandatory to use Oracle Content Server as a connected repository to avail the built-in workflows. If we want to use Sharepoint then what needs to be done fo

  • Hardwired Keyboard turned off, inexplicable mode change

    Logitech Classic Keyboard 200 USB. Windows 8.1 Licensed. MSO 2013 Licensed. For the second day, the keyboard suddenly is taken over by some unlisted program. It stops doing data entry and additional keystrokes just bring up completely irrelevant slid

  • Serial number for photoshop cs6

    i i got my adobe photoshop cs6 from my school admin,they gave me serial number but i lost now my trial is experied but i signed in to adobe id before to get my product serial number but i dont get any help from my adobe account what should i do?