T-code for PR to be deletion

Hello,experts
Is there  Tcode for mass deletion of generated PR after MRP run?
if yes please send it
regards,
mangesh

Hi Mangesh
Use Mass change transaction code MEMASSRQ or use BAPI (BAPI_REQUISITION_DELETE )to do the same.
Or
Use ME57 with layout ALV , in this also u can delete PR
Vishal...

Similar Messages

  • T-code for delete file from application server

    Hi all!
    Please, has any t-code for delete file from application server? For upload exist CG3Z, for download has CG3Y. And for delete? Has anyone?
    I need to delete file from application server in QA system and i don't want to create a program for this because i will need to transport a request from DEV to QA.

    I don't have contact with basis team.
    The FM EPS_DELETE_FILE support directory name with max 60 char. My dir. has more than that. I need a transaction for this.
    Anybody know if this transaction exist?

  • How to delete the region code for country in T005U

    Hello,
    The region code for XX country are changed, So I have deleted all entries for that country in transaction code "OVK2" and updated the new region code which should be updated in Table T005S and T005U.
    But in table T005U there are few region code for language other then EN. Now I need to delete the entries T005U for other language.
    Now region code in OVK2 = Table T005S, but not equal to T005U
    How language can be selected to delete the region code (TABLE T005U), please advise.
    Thanks in advance.
    Praveen

    Hi Praveen,
    In order to delete the entries from the language table T005U, you will have to maintain in T005S.
    It means that, suppose in table T005U, you have a region appearing in two languages danish and german and the corresponding entry does not exist in T005S, then follow the steps below.
    1. Maintain Region XX in EN in T005S.
    2. Log on in language Danish, and in table T005U, only delete the text and log off.
    3. Log on in Language German, and in table T005U, delete the text only and log off.
    4. Now your T005U table is clear, log on in language EN and delete from table T005S.
    5. Check both tables T005S and T005U for the region XX. they both should be empty.
    Regards,
    SAPFICO

  • T. Code for Cancelling / Deleting the Payment Run in F110

    Hi Gurus,
    Can anybody please tell me the transaction code for deleting the payment run (before taking print out) in F110.
    I tried to do it from F110 itself and is working fine.
    I want to know if there is any separate T.Code available.
    Regards.
    Vikas

    Hi Chintan
    If there is no concept of Deleting Output then why SAP provided Delete Output Option in F110.
    Vikas you are right We can Delete the Payment Run in F110 itself.
    And as you mentioned you did not make the printout form so there is no Check Printed, you go to Transaction FBRA and Reset & Reverse the Payment Document(Clearing Document).
    If the Check is printed then you need to use FCH8 , Cancel the Check and then Reverse the Document as said Above by Zubin.
    Regards
    Venkat

  • Hi what is the transaction code for vendor master delete

    hi
       what is the transaction code for vendor master delete? and customer master delete?
    thank u
    surya

    Hi
    There won't be any Deleting of customer and vendor completely
    we only BLOCK them
    FK05                   Block Vendor (Accounting)
    MK05                   Block Vendor (Purchasing)
    XK05                   Block Vendor (centrally)
    FD05                   Block Customer (Accounting)
    VD05                   Customer Block (Sales)
    XD05                   Block customer (centrally)
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • VB code for fitting graphics, deleting pages, updating TOC

    Thanks again to all who helped me to find the object model info and other specifics I needed for completing my VB project. I'm not sure if this will be of any use to those who helped me, but at least I can "pay it forward".
    The following code snippets are from my live project, with a bunch of ancillary code stripped away. I think I included everything needed for these three bits of functionality (fit graphics proportionally to frames, delete pages, update TOC), but if I accidentally left out something important, let me know (respond to this thread, as I'm not able to monitor all the threads). Note that in some cases, the code expects values in variables to be set outside of this code. I'll trust that anyone using this code can do that, and I've noted where this takes place.
    My document uses only single pages, not facing-page spreads, so code referencing spreads works for me--but if you're using actual spreads, you may need to change the code to reference pages instead of spreads. Please bear in mind, I'm pretty new to ID, so if I misunderstood how pages and spreads (or anything else) work, please be kind. It's working for me, and hopefully will for others.
    Be advised that deleting spreads (and possibly even fitting graphics) with LOCKED content (in the case of deleting, if ANYTHING on the page is locked) will cause InDesign to CRASH. If you have locked content on your pages, unlock it first either manually or through code (I have code for that as well, if anyone needs it).
    The code for deleting spreads allows you to specify the spreads to delete by LABEL. I haven't figured out (anyone?) how to set labels through ID itself, but I was able to do it in code.
    Lastly, please be advised that the forum may not properly indent or format the code. If it doesn't look pretty, it's not my doing. :)
    VB Code follows:
    Dim InDesign As Object
    Dim InDesignDocument As Object
    Dim LinkCt As Integer
    Dim SpreadsCt As Integer
    Dim PageLabel As String
    Dim TOCStylesCt As Integer
    Dim i As Integer
    Dim p As Integer
    'Create an InDesign object reference and open the InDesign
    'document specified by DocumentFilespec. Note that if InDesign
    'is and the selected document are already open, the in-memory
    'copies will be used.
    Set InDesign = CreateObject("Indesign.Application.CS3")
    Set InDesignDocument = InDesign.Open(DocumentFilespec)
    'Loop through all linked graphic frames and fill
    'frame proportionally.
    LinkCt = CInt(InDesignDocument.Links.Count)
    For i = 1 To LinkCt
    InDesignDocument.Links(i).Parent.Fit 1718185072
    Next i
    'This code deletes selected spreads (or pages if not using facing
    'pages). It expects each spread to have a label, and it expects
    'an array DeletePages to contain a list of the labels for pages
    'to be deleted. DeletePagesCt is a count of the total number of
    'items in the DeletePages array
    For i = 1 To DeletePagesCt
    SpreadsCt = InDesignDocument.Spreads.Count
    For p = 1 To SpreadsCt
    PageLabel = Trim(InDesignDocument.Spreads(p).Label)
    If PageLabel <> "" And DeletePages(i) = PageLabel Then
    InDesignDocument.Spreads(p).Delete
    Exit For
    End If
    Next p
    Next i
    'This code updates the Table of Contents for a given TOC Style Name
    '(ExpectedTOCStyleName).
    TOCStylesCt = CInt(InDesignDocument.TOCStyles.Count)
    For i = 1 To TOCStylesCt
    If InDesignDocument.TOCStyles.Item(i) = ExpectedTOCStyleName Then
    InDesignDocument.CreateTOC InDesignDocument.TOCStyles.Item(i), True
    Exit For
    End If
    Next i

    If I understand your question correctly that you want to know how to give an object in InDesign a Script Label (not using a script), then below is how (I needed to do it for the templates I'm using in the current project I'm doing using VBscript). Hope I was able to help some one else for a change. :-)
    Window > Automation > Script Label
    Select the Object
    Enter the text in the Script Label box

  • Code for updating/deleting in R/3 from WD java

    Hi All,
    Please provide me the code for deleting/updating seleected row of a table of which data is coming from SAP R/3. (Webdynpro java) The changes should reflect in R/3. I want to put the selected row values in a value node and then updated in the backend.
    Regards
    Shilpa Bhanot

    hi
      get the size of the model node that you have bind to the table
    int n= wdcontext.nodeModeNode.size();
      for(int i=0;i<n;i++)
      fetch the data from the row of the table on LeadSelection
    String name= wdcontext.nodeModelNode.getElementNameatindex(i).getName();
      String age= wdcontext.nodeModelNode.getElementNameatindex(i).getAge();
      String ID= wdcontext.nodeModelNode.getElementNameatindex(i).getID();
      String Salary= wdcontext.nodeModelNode.getElementNameatindex(i).getSAL();
      here after fetching the data from the table to update to the R/3 table ,
    you have to set the data to the RFC
      ZRFCCclass name = new ZRFCClassname();
    name.set(name);
    name.set(age);
    name.setId(id);
    name.set(slary)
    and then bind or the add  the strucute node and in the same way delete operation
      create a value node called Employee , and attributes name , id , age , sal
      adding the data to the value node node ;
       IprivateViewname.IEmployeeElement element  = wdcontext.nodeEmployee.createemployeeelement();
      element.setname(name);
    element.setname(age);
    element.setid(id);
    element.setsalary(salary);
    wdcontext.nodeemployee.addelement(element);

  • SQL Command for deleting T-Code for roles

    Hi Experts
    I want to delete the transaction from the role name by using SQL Command in MS-SQL Server  instead of going to /npfcg -> zwa_xyz (role name for user) and transaction code is CR01,CR01,CA01 Etc.,
    I have so many transaction code which is taking time to delete one by one.
    So is there any SQL Statement to delete the t-code for that rolename
    Delete from tablename where t-code=xyz and rolename in ('zwa_xyz',zwa_123')
    regards

    Hey,
    SAP does not support executing update/insert/delete SQLs on their tables,
    (the only SQL they support are select, and updates that they publish in their official site, such as notes in service.sap.com/notes)
    is is probably due to the fact that sap contains about 30,000 of table,
    and sometimes SAP uses cluster tables (which are difficult to handle in DB)
    in addition, each and every SP adds/remove table or changes existing tables.
    For example, you probably don't know that changing rule, would
    create a change document (cluster table - CDHDR, CDPOS and etc),
    If you want, it is very easy to get the full list of the table (and the sql) that are updated
    (as I mentioned before, it is not recommended to run this sql, because it is not supported!!!)
    just run transaction ST05 while deleting transaction from role,
    when you display the list, press shift+F8 (or summerized trace from the menu),
    and they search (Ctrl+F) the words: update or insert or delete.
    You can use standard API such as BAPIs (such as BAPI_USER_*)/IDOCs(such as USERCHANGE),
    and execute them from the portal and any other place (even in EXCEL or OS->meaning command line).
    Here more information on executing RFCs:
    1. in order to execute an RFC from excel, you should install SAP gui on the client that would execute the RFCs to the SAP, and you would have to write VBA code.
    2. in order to execute an RFC from command line, this is a little bit more difficult,
    sap provide RFC sdk (in service.sap.com/SWDC)
    3. in order to execute an RFC from .net you can use the .net connector,
    more information is here:
    NW RFC SDK - is there a guide somewhere?
    4. You can also, execute an RFC using Web service,
    by creating web-service from the RFC in SE37.
    I guess It will take more time to develop this they just executing the SQL.
    If you need more information in executing an RFC,
    please decide which option is your favorite,
    and I would add information...

  • Urgent where i put this code for delete

    hi master
    sir this code is right for my requirment but when i put on_delete event system not respons or not delete record
    where i put this code for conditional deletion
    this is my code
    declare
         recno number;
    begin
    if :system.cursor_block='accbal' then
    delete accbal where accid=:chartofacc.accid;
         go_block('chartofacc');
         next_record;
    elsif :system.cursor_block='chartofacc' then
         select count(*) into recno from accbal where accid=:chartofacc.accid;
         if recno=0 then
         delete_record;
         go_block('chartofacc');
         previous_record;
         else
         message ('system found matching record then no delete master record');
         message ('system found matching record then no delete master record');
         end if;
    end if;
    end;
    please gide me which event i use
    thanking you
    aamir

    Hello,
    The ON-DELETE triger fires only after a COMMIT statment and only for those records that have been deleted in the block.
    Francois

  • HI ALL SINCE TWO DAYS I AM DOWNLOADING VIBER BUT I AM NOT HAVING MY ACCESS CODE AND EVERY TIME I DELETE THE APPLICATION AND DOWNLOADING IT AGAIN BUT ALWAYS THE SAME RESULT PLEASE I NEED YOUR HELP FOR THE ACCESS CODE.MY PHONE NUMBER IS 0022996969896.THANKS

    HI ALL SINCE TWO DAYS I AM DOWNLOADING VIBER BUT I AM NOT HAVING MY ACCESS CODE AND EVERY TIME I DELETE THE APPLICATION AND DOWNLOADING IT AGAIN BUT ALWAYS THE SAME RESULT PLEASE I NEED YOUR HELP FOR THE ACCESS CODE.MY PHONE NUMBER IS 0022996969896.THANKS IN ADVANCE

    try this website this should help you http://helpme.viber.com/index.php?/Knowledgebase/List/Index/1/iphone

  • Trasaction code for mass delete of open Pur req.

    I was looking for is a way to perform a mass delete of open PRu2019s prior to running MRP.  My reasoning is if a PR has not been converted to a PO by the time the next MRP runs we  want to delete all open PRu2019s so items are re-planned based on the most current data.
    Is there a mass delete transaction code for PRu2019s?
    Thanks

    The blw are the options'
    1- Try with MEMASSPR for PR
    2- You cannot directly delete PRs, You can only mark them as "deleted". To delete them physically from DB you have to "archive" them via transaction SARA.
    Deletion of PR can be done using ME52N
    This is only possible provided that no purchase order have been assigned. If po has been created, you can only Flag for Deletion.
    To delete the PR, select the line(s) you wish to delete and then click on the dustbin (Thrash) icon.
    3 - Try with LSMW

  • PO function code for HOLD & CANCEL (DELETE or BLOCKED) button

    Hi,
    can any one can provide the function code for HOLD button in purchase order creation.
    How to find out the function code for HOLD button.
    Regards,
    Nagaraju.

    For your case specifically, function code for hold is dependent on that program is calling it, but any way for hold, you can simply use HOLD or RECN or ONHO or PTBK or a bunch of others.
    For block you can use SHB1 or SHB2 or VFIX etc. To make it easy for you and others, follow the following steps:
    -Run transaction SHDB and record the transaction you want.
    -Then in a different session, run SE16 and enter table name RSMPTEXTS.
    -Enter any OK Code you want to know its use in the field OBJ_CODE (Function Code) and execute.
    -If you know the program name or Tcode, you can use that too. Just enter that in the appropriate field.
    -OR use the text wildcard and see if you're lucky.
    -The Text will tell you what the OK Code does.
    Ken G

  • Delete the company code for all customization

    Hi All
    is it possible to delete the company code, if yes how to delete the company code?.
    is it possible to house keep the company code?
    Please help us to provide the necessary solution.
    Regards
    K.Gunasekar

    Hi,
    It is possible to delete company code, but have you started using the company code already?
    Path to delete company code
    IMG -> Enterprise Structure -> Definition -> Financial Accounting -> Edit, Copy, Delete, Check Company Code
    Your second question is not clear to me. Could you please elaborate.
    Regards,
    Abhinav Sethi

  • I want to writte C# code for 503 Service Unavailable error to web application page immediate close connection any page loaded

    Here is a ticket regarding our current client web application (  Image data add, edit , delete in folder with form data in MSSQL Database) that using code c#, web form, ajax, VS2008, MSSQL Server2008 , it appears that there is an error where the HTTP
    503 error occurs. 
    . Below is a conversation with Host Server support assistant.Can you take a look at it? 
    Ben (support) - Hi 
    Customer - We're having an issue with our windows host 
    Ben (support) - What's the issue? 
    Customer - 503 errors 
    Ben (support) - I am not getting any 503 errors on your site, is there a specific url to duplicate the error? 
    Customer - no, it comes and goes without any change Customer - could you have access to any logs ? 
    Ben (support) - Error logs are only available on Linux shared hosting, however with this error it may be related to you reaching your concurrent connections 
    Ben (support) - You can review more about this at the link \ 
    Customer - probably yes - how can we troubleshoot ? 
    Ben (support) - http://support.godaddy.com/help/article/3206/how-many-visitors-can-view-my-site-at-once 
    Ben (support) - This is something you need to review your code and databases to make sure they are closing the connections in a timely manner 
    Customer - we're low traffic, this is an image DB to show our product details to our customers 
    Customer - ahhhh, so we could have straying sessions ? 
    Ben (support) - Correct Customer - any way you could check if it's the case ? 
    Customer - because it was working previously 
    Ben (support) - We already know that's the case as you stated the 503 errors don't happen all the time if it were issue on the server the the 503 would stay. 
    Customer - so our 2/3 max concurrent users can max out the 200 sessions 
    Customer - correct ? 
    Customer - is there a timeout ? 
    Ben (support) - no that's not a time out concurrent connections are a little different then sessions and or connections. Lets say for an example you have 5 images on your site and 5 7 users come to your site this is not 7 concurrent connections but 35. They
    do close after awhile hence why the 503 error comes and goes. You can have these connections close sooner using code but this is something you have to research using your favorite search engine 
    Customer - thank you so much 
    Customer - I'm surprised that this just started a few weeks ago when we haven't changed anything for months 
    Customer - any changes from your side ? lowering of the value maybe ? 
    Customer - I'm trying to understand what I can report as a significant change 
    Ben (support) - We haven't touched that limit in years 
    Ben (support) - This could just be more users to your site than normal or even more images 
    Customer - I was thinking that could be it indeed 
    Customer - so I need to research how to quickly close connections when not needed 
    Ben (support) - Correctly 
    Ben (support) - correct 
    Customer - thanks !! 
    Ben (support) - Your welcome 
     Analysis : 
     The link provided tells us : All Plesk accounts are limited to 200 simultaneous visitors. 
     From what Ben (support) says and a little extra research, if those aren't visitors but connections then it's quite easy to max out, especially if the connections aren't closed when finished using. I'd suggest forwarding this to Kasem to see what he thinks. 
    Cheers, 
    Customer

    Hi Md,
    Thank you for posting in the MSDN forum.
    >>
    I want to writte C# code for 503 Service Unavailable error to web application page immediate close connection any page loaded.
    Since
    Visual Studio General Forum which discuss VS IDE issue, I am afraid that you post the issue in an incorrect forum.
    To help you find the correct forum, would you mind letting us know more information about this issue? Which kind of web app you develop using C# language? Is it an ASP.NET Web Application?
    If yes, I suggest you could post the issue directly on
    ASP.NET forum, it would better support your issue.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Code for 'screen refresh' in webDynpro for ABAP

    Hi all,
    can I get some sample code for refreshing the screen in webDynpro for ABAP??
    Its urgent, awaiting for your early helpful replies.
    thanks,
    Hema.
    Edited by: Hema Sundar Munagapati on Jan 19, 2008 4:00 PM

    HI Hema,
    What i understood from u r query is u want 2 refrsh all ui elements data.
    u can read data from the respective nodes and clear those data.
    Example: I want to delete contents of an ui element on the screen( FULL_NAME ).
    create a buuton REFRESH  on the screen and assicn a action to that button.u wil get a method with that action.write this follwing code in tat method.
    method ONACTIONREFRESH_UI .
        DATA lo_nd_processedby TYPE REF TO if_wd_context_node.
        DATA lo_el_processedby TYPE REF TO if_wd_context_element.
        DATA ls_processedby TYPE wd_this->element_processedby.
        DATA lv_full_name LIKE ls_processedby-full_name.
      navigate from <CONTEXT> to <PROCESSEDBY> via lead selection
        lo_nd_processedby = wd_context->get_child_node( name = wd_this->wdctx_processedby ).
      get element via lead selection
        lo_el_processedby = lo_nd_processedby->get_element(  ).
      get single attribute
        lo_el_processedby->get_attribute(
          EXPORTING
            name =  `FULL_NAME`
          IMPORTING
            value = lv_full_name ).
    clear lv_full_name.
    CALL METHOD lo_el_processedby->set_attribute
      EXPORTING
        value  = lv_full_name
        name   = `FULL_NAME`
    endmethod.
    reward if it is use ful

Maybe you are looking for

  • How to load a customise component?

    I have created a customised component that i want to load dynamic. In the end i want to send a instance of the component i want to load to the user.mxml file. So i dont need to create a new (user) file when i create a new component. I want to use the

  • As3 call a function inside  swf

    I am loading an external swf like that. In the extrnal swf I have a function called "foo". how can I call "foo" function from the main swf? Thanks

  • Sending a text using the Spanish Keyboard

    When I send a message to some one in Spanish using the Spanish keyboard, they cannot read it because it shows as a bunch of squares and symbols. They are using an Envy touch to see my messages. Can some one help me? Is anyone having the same problem?

  • XFCE: after installing new Dropbox: icon in tray missing

    Hey Arch forum, I have been using Archlinux for 1 year and so far i have never had any (bigger) problems. But yesterday I kind of messed up my dropbox. I reinstalled dropbox from the AUR and when I started it, the Icon in the Systemtray was gone. I s

  • Copy Paste of clips within a sequence closes the programm saying TickTime.cpp-290

    Hello I got the problem after a while when I want to copy and paste a clip or audiofile within a sequence the programm closes by saying Error TickTime.cpp-290. It also happens when I open certian sequences. All video/audiofiles are the same format. I