HOW TO DELETE DUNNING RUN AFTER PRINT OUT?

Dear all,
does anybody know if it's possible to cancel a dunning run after the notices have been printed (except manually by changing all documents and all master data)
WITH ADVANCE THANKS
KRISHNA KUMAR

Hi Krishna,
Why do you want to re-run the Dunning run after printing them out?
Anyway there is a program SAPF150D2 that enables you to re-edit the Dunning run. However whilst a Dunning letter is not a legal letter it is binding and so to add some control to SAP I am sure there is not a way where you can cancel the run and start again. What is to say that you send the wrong letters out.
You can create a simple program to go to FB09 to delete the Dunning level and the date of the last Dunning run.

Similar Messages

  • How do you geT ICal to print out the To Do Items in the same order as you have sorted them on the screen

    How do you geT ICal to print out the To Do Items in the same order as you have sorted them on the screen

    Without actually seeing some of what is in the .ics attachment there's really no way to see what's going on.

  • How to take sub-contracting challana print out

    Hai friends,
    How to take sub-contracting challana print out.
    Where i have to do the message settings for taking return delivery excise document print out ( rejected RM  material return to vendor ).
    Please guide me.

    Hello,
    During creation of 57F4 Challan in J1IF01, in Basic Data Tab Page, scroll down the screen, you will get a check box of "Print immediately" just activate it before saving, it will print the Subcontracting challan once you save it.
    And to re-print the same go to J1IF11 and activate this indicator again and save.
    Configuration Checks: -
    SPRO > Logistics - General > Tax on Goods Movements > India > Business Transactions > Subcontracting > Subcontracting Attributes > Check whether Subcon Output Type - J1IF is maintained here.
    Also check in M706 - For Output Type - J1IF should be in place.
    Note: - There is no need of maintaining condition record for output type J1IF in MN21 and also no need to do any further configuration.
    Maintain printer in the SPRO - IMG - MM - Inventory management - Output determination - printer determination.- printer determination by plant / storage location ( OMJ3). Here for the application area ME, condition type J1IF, assign the printer.
    regards,

  • Deletion or rversal of Cash Journal After Print Out

    Hi All,
    I want to delete or reverse the Cash Journal After the Print out has been taken. We have received the cash from the customer and have deposited the same in the bank and has taken the print out of the receipt as well. Now i want to change the posting date.
    How i can go for that.
    Please Help.
    Thanks and Regards
    Deepak

    Hi Deepak,
    Refer SAP Note-359656 - FBCJ: receipt printed - reversal not possible. SAP has for security reasons specifically made this check.Alternatively,if you want to reverse the receipt from customer just post one payment for the same customer on the same day as posting date.
    Assign points if the tip found useful
    Regards
    Gopal

  • How to ensure OC4J runs after user logs out of a W2003 Server

    Greetings,
    I have a question. We have BI Publisher running on a W2003 server. When I log into the server, a dos window starts up, and runs the OC4J stuff. When I log out of the server, this process stops.
    In order to use the scheduling part of BI Publisher (meaning, reports can be emailed out), the OC4J window must be running (meaning, I cannot log out of the W2003 server).
    How do I ensure the OC4J process remains running after I log out of the W2003 server? Note - this was fresh server, with a clean OBISE (Oracle Business Intelligence Standard Edition) install.
    Thanks,
    Colin Jensen

    Use the services created at installation time to startup Oracle AS components.
    thant should do the trick

  • PowerPoint using macro to delete text boxes after printing

    Hi,
    We created custom shows in Powerpoint and are running a macro to insert temporary page numbers on the slides before printing.  The issue is that I need to remove the page numbers after printing.  I'm a novice at VBA so I'm sure there is an easy
    solution, but nothing I've tried so far has been successful.  The code is displayed below for your reference.  Any help is greatly appreciated. Thanks!
    Sub PrintCustomShow()
          ' Change this number to specify your starting slide number.
          Const lStartNum As Long = 1
          ' Ask the user which custom show they want to print.
          Dim strShowToPrint As String, strPrompt As String
          Dim strTitle As String, strDefault As String
          ' See if any custom shows are defined.
          If ActivePresentation.SlideShowSettings.NamedSlideShows.Count _
             < 1 Then
             ' No custom shows are defined.
             ' Set up the string for the message box.
             strPrompt = "You have no custom shows defined!"
             ' Display the message box and stop the macro.
             MsgBox strPrompt, vbCritical
             End
          End If
          ' Find the page number placeholder; if found, pick up the style.
          Dim rect As PageBoxSize
          Dim oPlaceHolder As Shape
          Dim bFound As Boolean: bFound = False
          For Each oPlaceHolder In _
             ActivePresentation.SlideMaster.Shapes.Placeholders
             ' Look for the slide number placeholder.
             If oPlaceHolder.PlaceholderFormat.Type = _
                ppPlaceholderSlideNumber Then
                ' Get the position of the page number placeholder.
                rect.l = oPlaceHolder.Left
                rect.t = oPlaceHolder.Top
                rect.w = oPlaceHolder.Width
                rect.h = oPlaceHolder.Height
                ' Get the formatting of the slide number placeholder.
                oPlaceHolder.PickUp
                ' Found the slide number placeholder, so set the
                ' bFound boolean to True.
                bFound = True
                Exit For
             End If
          Next oPlaceHolder
          ' See if a slide number placeholder was found.
          ' If not found, exit the macro.
          If bFound = False Then
             ' Unable to find slide number placeholder.
             MsgBox "Your master slide does not contain a slide number " _
                & "placeholder. Add a " & vbCrLf & "slide number placeholder" _
                & " and run the macro again.", vbCritical
             End
          End If
          ' Set up the string for the input box.
          strPrompt = "Type the name of the custom show you want to print." _
             & vbCrLf & vbCrLf & "Custom Show List" & vbCrLf _
             & "==============" & vbCrLf
          ' This is the title of the input box.
          strTitle = "Print Custom Show"
          ' Use the first defined show as the default.
          strDefault = _
             ActivePresentation.SlideShowSettings.NamedSlideShows(1).Name
          ' Obtain the names of all custom slide shows.
          Dim oCustomShow As NamedSlideShow
          For Each oCustomShow In _
             ActivePresentation.SlideShowSettings.NamedSlideShows
             strPrompt = strPrompt & oCustomShow.Name & vbCrLf
          Next oCustomShow
          Dim bMatch As Boolean: bMatch = False
          ' Loop until a named show is matched or user clicks Cancel.
          While (bMatch = False)
             ' Display the input box that prompts the user to type in
             ' the slide show they want to print.
             strShowToPrint = InputBox(strPrompt, strTitle, strDefault)
             ' See if user clicked Cancel.
             If strShowToPrint = "" Then
                End
             End If
             ' Make sure the return value of the input box is a valid name.
             For Each oCustomShow In _
                ActivePresentation.SlideShowSettings.NamedSlideShows
                ' See if the show is in the NamedSlideShows collection.
                If strShowToPrint = oCustomShow.Name Then
                   bMatch = True
                   ' Leave the For loop, because a match was found.
                   Exit For
                End If
                ' No match was found.
                bMatch = False
             Next oCustomShow
          Wend
          ' Get the array of slide IDs used in the show.
          Dim vShowSlideIDs As Variant
          With ActivePresentation.SlideShowSettings
              vShowSlideIDs = .NamedSlideShows(strShowToPrint).SlideIDs
          End With
          ' Loop through the slides and turn off page numbering.
          Dim vSlideID As Variant
          Dim oSlide As Slide
          Dim Info() As SlideInfo
          ' Make room in the array.
          ReDim Preserve Info(UBound(vShowSlideIDs) - 1)
          ' Save the current background printing setting and
          ' then turn background printing off.
          Dim bBackgroundPrinting As Boolean
          bBackgroundPrinting = _
             ActivePresentation.PrintOptions.PrintInBackground
          ActivePresentation.PrintOptions.PrintInBackground = msoFalse
          ' Loop through every slide in the custom show.
          Dim x As Long: x = 0
          For Each vSlideID In vShowSlideIDs
             ' The first element in the array is zero and not used.
             If vSlideID <> 0 Then
                ' Add slide ID to the array.
                Info(x).ID = CLng(vSlideID)
                ' Get a reference to the slide.
                Set oSlide = ActivePresentation.Slides.FindBySlideID(vSlideID)
                ' Store the visible state of the page number.
                Info(x).IsVisible = oSlide.HeadersFooters.SlideNumber.Visible
                ' Turn off page numbering, if needed.
                If Info(x).IsVisible = True Then
                   oSlide.HeadersFooters.SlideNumber.Visible = msoFalse
                End If
                ' Create a text box and add a temporary page number in it.
                Dim oShape As Shape
                Set oShape = _
                   oSlide.Shapes.AddTextbox(msoTextOrientationHorizontal, _
                                            rect.l, rect.t, _
                                            rect.w, rect.h)
                ' Apply the formatting used for the slide number placeholder to
                ' the text box you just created.
                oShape.Apply
                ' Add the page number text to the text box.
                oShape.TextFrame.TextRange = CStr(x + lStartNum)
                ' Increment the array element positon.
                x = x + 1
             End If
          Next vSlideID
    ' Print the custom show. NOTE: You must turn background printing off.
                 With ActivePresentation
                 With .PrintOptions
                 .RangeType = ppPrintNamedSlideShow
                 .SlideShowName = strShowToPrint
                 End With
                 .PrintOut
                End With
          ' Restore the slide information.
          For x = 0 To UBound(Info)
             ' Get a reference to the slide.
             Set oSlide = ActivePresentation.Slides.FindBySlideID(Info(x).ID)
             oSlide.HeadersFooters.SlideNumber.Visible = Info(x).IsVisible
          Next x
          ' Restore the background printing setting.
          ActivePresentation.PrintOptions.PrintInBackground = _
             bBackgroundPrinting
       End Sub

    Hi hlolrich,
    According to the description, you want to remove the shapes which created after you print the presentaion.
    I suggest that you name the shape you added with some rule, then we can delete thease shapes via the name rule.
    And here is a sample that you delete the shapes which name contains the
    myShape words on the first slide for your reference:
    Sub deleteShapes()
    For Each aShape In Application.ActivePresentation.Slides(1).Shapes
    If InStr(aShape.Name, "myShape") Then
    aShape.Delete
    End If
    Next aShape
    End Sub
    Also you can learn more about PowerPoint developing from link below:
    How do I... (PowerPoint 2013 developer reference)
    PowerPoint 2013
    Regards & Fei
    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.

  • How can i use query in Print out

    I am going to insert some Item's properties to print out of good issue, I dont know how can I use query in this tools?

    Hi,
    Please go through the following documentation on the service market place under the landing pages for
    cross topics:
    https://sapneth1.wdf.sap.corp/~form/sapnet?_FRAME=CONTAINER&_HIER_KEY=701100035871000437965&_OBJECT=011000358700003137952006E&_SCENARIO=01100035870000000183&
    Regards,
    Abhinav Banerjee
    SAP Business One Forums Team.

  • How to hide Frieght in PO Print out...

    hi guru's
    Can anybody explain how to hide the frieght charges in PO print out.If the frieght vendor is different from Main vendor, my client wants to Hide the frieght charges only in Print outs, please any one explain the configuration details for this.
    thanks
    sap mm

    In m/08 for your pricing procedure
    dont mark X  for ur freight condition type in print column
    only those condition type wioll be printed when u have marked X in print column in m/08 for u r pricing procedure
    reward is usefull
    Message was edited by:
            Umakant Bhangale

  • Something I noticed after printing out a document

    I was just wondering why you have to save a file again after you print out a document. Does printing change the file or something? I also noticed that this isn't just in Pages. It's in most apps that have to do with printing, like TextEdit and Numbers.

    The date & time printed gets embedded in the file. I thought you could find it in Get Info but I can't find it right now in Leopard.

  • How to delete old runs from Health Monitor?

    I am looking at the 11G built-in Health Monitor (http://docs.oracle.com/cd/B28359_01/server.111/b28310/diag007.htm), and have found that each run needs a unique name (ORA-48600: HM run with name [Dictionary Check] already exists).
    I'm running them from the command line using a shell script - exec DBMS_HM.RUN_CHECK('Dictionary Integrity Check', 'Dictionary Check');
    I want to run these monthly, and although I can create unique names that are date-stamped, over time these will build up.
    Does anyone know how to delete the old runs?
    There is no option from the command line in the documentation, or anywhere in OEM (12c) to delete them.
    Thanks.

    user12030043 wrote:
    I am looking at the 11G built-in Health Monitor (http://docs.oracle.com/cd/B28359_01/server.111/b28310/diag007.htm), and have found that each run needs a unique name (ORA-48600: HM run with name [Dictionary Check] already exists).
    I'm running them from the command line using a shell script - exec DBMS_HM.RUN_CHECK('Dictionary Integrity Check', 'Dictionary Check');
    I want to run these monthly, and although I can create unique names that are date-stamped, over time these will build up.
    Does anyone know how to delete the old runs?
    There is no option from the command line in the documentation, or anywhere in OEM (12c) to delete them.
    Thanks.http://docs.oracle.com/cd/B28359_01/server.111/b28319/adrci.htm

  • How to delete trailing zeros after decimal ?

    Hi,
    i want to delete trailing zeros after decimal.
    Example:
    if it is 22.000 then output will be 22
    if it is 22.010 then output will be 22.01.
    plz let me know hw to do this ?

    DATA:
      lv_decimal TYPE f DECIMALS 3,
      lv_string  TYPE string.
    lv_decimal = '22.010'.
    WRITE lv_decimal TO lv_string.
    SHIFT lv_string RIGHT DELETING TRAILING '0'.
    CONDENSE lv_string NO-GAPS.
    * now no trailing zeros are in the decimal stored in LV_STRING
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Jan 30, 2008 12:10 PM

  • How to deactivate/disable auto TO print-out for Storage bins and storage type in WH?

    Is there a way to deactivate auto printing of TO for some storage bins ? If yes then can you please tell me step by step configuration?
    If no then how can we deactivate auto TO printing for the Storage type ?

    Hello Manu,
    As I know it works entirely at storage type level, not storage bin level in WM. This is standard SAP default behavior.
    It is standard behaviour that printing settings in the warehouse are generally based on storage types and movement types
    Please check the user exits for transfer parameters.
    in RLVSDR40 -> MWMD0001   :  EXIT_RLVSDR40_001
    Print transfer orders (TOs)
    Check user exits MWMD0001 or MWMD0002, a detailed documentation via Transaction SMOD.
    Best Regards,
    R.Brahmankar

  • How to delete unwanted TCP/IP Printer Ports

    Windows 7 64bit; I have created, in error, one TCP/IP Printer Port which I would like to delete to keep the Ports clean of rubish, but I am unable to find how to do so.
    Can anyone help?
    Nevio

    You get the 'port is in use' error message if the port is currently assigned to a printer. It has nothing to do with print spooler - it's just that you can't delete a port that is already assigned to a printer.
    1. When you open properties and go to the 'Ports' tab, you have your printers listed with headings - Port, Description, Printer.
    2. Identify the printer using the port that you want to delete, exit out of printer properties window and delete the printer.
    3. Right Click on any of the remaining listed printers and select 'Properties' (if there is none left then you craft create a fake printer).
    4. Click the Ports tab.
    5. Select the port and click “Delete port".
    6. Check any available port and exit out of 'properties' window.
    The above will work in many cases but unfortunately not all. You may well find one of a couple of problems. One symptom is that having removed printer(s) and exited from "Devices and Printers" - if you re-enter "Devices
    and Printers"  the printers have returned. Another symptom is that  Windows will not let you delete the port as described above.
    There are three things I have encountered which can need fixing. One is that there are print jobs queued on the printer. If this job can be cancelled that fixes that, otherwise stop and re-start
    the print spooler. the third is the "in use" message mentioned below.
    The second situation is that a program - in my case foxit reader - is somehow associated with the printer you are trying to remove when you look through the full list of Ports. I had to un-install
    Foxit and only re-install it after the printer situation was resolved.
    Thirdly you may have to go into "Programs and Features" and un-install the software associated with the printer.

  • How to Delete imported JPEGS after matching RAW files are imported as masters

    Using a 5D Mark III and shoot JPEG (SD) and RAW (CF).
    Aperture 3.5.1, using a managed library
    Perviously, using a 7D so new to shooting JPEG and RAWs from an aperture Aperture workflow standpoint.
    I know that i can import the JPEGs > delete images that do not make the cut > then import the matching RAW files in the import dialogue that correspond to the JPEGs in the Aperture Library.
    I use the RAW files as my Camera Master images and once the RAW files are imported, the smaller resolution JPEGs are no longer needed or viewed in my normal edit workflow.  I only need the JPEGs to quickly go through the images to find out which RAW files i need to import at a later time to increase the speed of import > edit > deliver.
    My Assumptions:
    1.  Logic would lead me to believe that after import the user should see a stack like image representation with whatever file type is considered Master to be on top and the viewable secondary file type on the bottom.  clicking on the image stack should allow you to see both file types as you would normally see with image stacks with the same files types.  This is not the case...  What am i missing here?
    2.  Logic again would lead me to believe that when i have the ability to delete one of the 2 image types as i do not need both in the end.  After the import process is complete and RAWs are backed up, I want to delete the JPEG files as they are just taking up more space on my DAS drive array...  There is no need to keep a duplicate of every file in both JPEG and RAW format.  This is not the case as when i delete the JPEG or RAW, both files formats are deleted simultaneously.  What am i missing here?
    Problems: (correspond to Assumptions above)
    1.  I do not seem to have access to both images (JPEG & RAW) in a stack where i can expand and close the stack to see both?  It seems like i only have access to the image type i have selected as Master?  This seems counter intuitive to what the workflow should be as why would aperture 'lock the secondary file types away' so you can't easily view both file types as the same time for comparison?
    2a.  Reality seems to be that i do not have access to the JPEG and RAW image files.  I can only see one at a time by selecting the images and choosing 'make JPEG master’ and then respectively... 'make RAW master', but you can't see both at the same time for file comparison.
    2b.  Also, I can't find a way to delete the JPEG images after the RAW files have been imported.  I would presume most professional photographers shoot RAW and do not shoot JPEG as their camera master or editing master images.  I do not understand why aperture has captured both as a pair in the library that does not allow me to delete the JPEG (in this case) as i have selected the RAW as my master.
    If someone can please help...  The function seems like either i am missing something obvious or that the implemented function of using RAW + JPEGs files for import is broken from a real world workflow standpoint.

    leonie...
    thank you for clearing that up for me.
    I think that at this point it is silly to use the JPEG+RAW import functionality as it seems that it takes longer to do the above steps than to just import only the RAW files and press on from there.
    I seems what i have done in the past of only importing the RAW files and then using the quick preview functionality to reduce image load times is the best thing in can come up with without keeping 'duplicates' in the database.
    That really baffels me that there is no built in functionality to remove the JPEG from a RAW+JPEG pair and i wonder how the real world photographers who help Apple test and implement software to solve real world workflow problems thought the JPEG+RAW import was going to be used.
    I do understand that i can use a smaller JPEG file size to reduce the bloat of the database, but used over hundreds of thousands of images is certainly going to make a dent in my total aperture database size and therefore storage needs down the road.
    If you have any other workflow thoughts, or know of a 3rd party plugin/ etc... to fix this obvious shortcoming then i am all ears..
    thank you again Leonie and have a great week

  • How to delete duplicate songs after restore

    I've restored my hard drive after a crash and now I have a duplicate of every song in my music Library. ( And one of the duplicates will not play as it states-"original file cannot be found.')Is there an easy way to delete the duplicates without doing each one individually?

    Take a look at robert jacobson's scripts:
    http://home.comcast.net/~teridon73/itunesscripts/
    The one you need is itunesremovenotfound
    Download the EXE file. When you run it select the script and when prompted for playlist you want library.

Maybe you are looking for

  • Lion Radeon Driver Bug (New System Configs)

    I've read lots of posts about graphics problems with older mac configurations... but I'm curious if any users with NEW models have experienced graphics issues.  I'm running a Mac Book Pro 8,3 with AMD Radeon HD 6750M 1024 MB and have run into problem

  • Charging New iTouch in car adaptor

    I recently bought a 2009 Subaru Forester and got the iPod addon option. So, this past week I bought a brand new iTouch and plugged it in. The functionality seems to work, but it says as I plug it in, that it is NOT charging. So I looked up the docume

  • Issue in accessing the hana from laptop

    Hello Experts, I am new to Hana . I have an cloud share account and trying to access the Hana studio from laptop. But I am getting the error "The system Can't be reached" Help me in this and thanks in advance. Regards, Suresh

  • Search on a clob field

    I have a search screen google style. The search uses LIKE command in the WHERE clause. I also tried CONTAINS. The problem: If the user writes "Human Frontiers" => gets no results. Writing "Human Frontier" (without the at the end) brings results. Is t

  • Is it possible to change supplementation language from German to English ?

    Hi, We installed Czech language in SAP ERP 2005 System. The language was classified with  German as supplementation language. The supplementation was successfully executed from SMLT transaction. We copied several clients. After time we recognized tha