End transaction without saving it

Hi All
A. Is there any possible with a button standard sap, to get out from a document
transaction without saving it? after confirm account? (i am not working with IVR)
B. Is there any possible to get out from document transaction without
saving the changes even i made change.
for example:
1.Navigate to the INBOX
2.Chosse transaction: press the link.
3.Press change button
4.Now lets say that i made some change and then i understand that is is
a mistake. How can i get out without saving this changes.
In the win guy or PCUI there is a pop up asked you to save or not. in The ICWeb
I know there are no pop ups.
Any sugested
Did someone deal with such request?
Thanks
Merav

Method:
CL_GUI_FRONTEND_SERVICES->REGISTRY_GET_VALUE(
ROOT = 1
KEY = Software\Microsoft\Windows NT\CurrentVersion\Windows
VALUE = Device

Similar Messages

  • Cannot connect on OWB - "started new global transaction without ending..."

    Hi, folks.
    I had to change my computer and reinstall my OWB 11.1.0.6.0 in my PC (Windows 7 64b), but thus far I couldn't connect to OWB and we don't really know what to do here.
    We've been experiencing these following mistakes:
    "PRS-00322: Internal Error: started new global transaction without ending existing global transaction. Please contact Oracle Support with the stack trace and details on how to reproduce it".
    "API5022: It's not possible to establish connection with the specified account. Check out the connection information".
    Do I have to change something on the TNSNAMES.ora or something like this?
    Thanks for your help

    have u tried this
    alter system session kill immediate""..
    else
    login as sys and check status of OWB design user...see if that is locked
    or at last
    if possible reboot the database server

  • Report without saving the records

    Hello all of you,
    i have a master detail block,, and i want to take a print from oracle report 6i without saving the record,, i just enter the record in the text boxes and then press the report button to generate the report
    i am using oracle forms and report 6i with oracle 9i database
    thanks in advance

    Hi i put the code for testing for one block and its not inserting the records and mainly its a non database block and i want to insert only the selected check box' record.I tried following code but its not inserting
    DECLARE
    Num_Tot NUMBER;
    Num_Loop NUMBER;
    BEGIN
    GO_BLOCK('FLX');
    LAST_RECORD;
    Num_Tot := TO_NUMBER(NAME_IN('SYSTEM.CURSOR_RECORD'));
    FIRST_RECORD;
    FOR Num_Loop IN 1..Num_Tot LOOP
    IF :TR.CHK = 1 THEN -- 1 is the value when checked.
    INSERT INTO REC_HIST
    values(:TR.RN_DT,:TR.AC,:TR.Amt,sysdate);
    commit;
    IF :SYSTEM.LAST_RECORD = 'TRUE' THEN
    EXIT;
    END IF;
    end if;
    NEXT_RECORD;
    END LOOP;
    end;
    rgds
    sandya
    Edited by: user10642220 on May 25, 2009 11:56 PM

  • Unbilled Revenue Reporting - without saving simulation billing documents

    Hi,
    I would like to know if anyone has ever run unbilled revenue reporting successfully from BI without saving the simulation billing documents that are generated from the Mass Simulation Run? Can the information be exported to BI without saving these documents? If yes, where is the total revenue calculated stored in SAP?
    In my past experience we had to save the generated billing documents to be able to load them in BI and run monthly report. This is affordable if the number of customers is low but is not a good practice in case of clients with very high customers.
    Transaction ESIMD can be used to delete these billing documents - how has your experience been with this report? What are the factors to be considered when using this report?
    Thanks,
    Shweta

    Gurus -
    I am still struggling with this.
    I am debugging the program REA_SIMINDICES_BILL.
    I see the biiling doc internal tables getting populated, but the internal tables for sending data to BW (and COPA, etc.) are empty.
    The simulation type clearly has transfer to BW set, and the datasource is the 0UC_SALES_SIMU_01 datasource defined in the subdialog.
    Is there a SAP NOTE that I am missing - we are on ECC 6.0 (IS-U).
    Is there ANY functional/technical reason why BW delta Q is not getting populated despite Simulation Docs being generated.
    Thanks!!!!

  • UNIX command to quit pages without saving?

    I know that killall "pages" quits pages, but I need a command to quit without saving.. I can't find on anywhere and I don't know anything about unix commands!!!

    Welcome,
    Opening the Pages dictionary there seems to be a standard command:
    tell application "Pages"
      quit saving no
    end tell
    Regards,
    Shawn

  • Navigate to next document without saving any changes in last document in AxWebBrowser

    Hi,
    I am opening MS Office Document file in AxWebBrowser after that i navigate to next Office Document ,before navigating i saved the last document like this
    AxWebBrowser1.ExecWB(SHDocVw.OLECMDID.OLECMDID_SAVE, SHDocVw.OLECMDF.OLECMDF_ENABLED)
    but how can i navigate to next Document without saving it if it also have any changes?
    if i do not use above line of code it ask for "Save","Don't Save" and "Cancel" before navigating to next document.
    help me thankx

    Hi,
    I am opening MS Office Document file in AxWebBrowser after that i navigate to next Office Document ,before navigating i saved the last document like this
    AxWebBrowser1.ExecWB(SHDocVw.OLECMDID.OLECMDID_SAVE, SHDocVw.OLECMDF.OLECMDF_ENABLED)
    but how can i navigate to next Document without saving it if it also have any changes?
    if i do not use above line of code it ask for "Save","Don't Save" and "Cancel" before navigating to next document.
    help me thankx
    Hello,
    In this case, we need to get the object for that document inside the NavigateComplete2 event.
    And then we could call its
    close method before we navigate to the other document.
    For get the document object we could refer to the sample shared in
    How to use the WebBrowser control in Visual Basic to open an Office document
    Public Class Form1
    Dim OpenFileDialog1 As OpenFileDialog = New OpenFileDialog()
    Dim oDocument As Object
    Private Sub Button1_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button1.Click
    Dim strFileName As String
    'Find the Office document.
    With OpenFileDialog1
    .FileName = ""
    .ShowDialog()
    strFileName = .FileName
    End With
    'If the user does not cancel, open the document.
    If strFileName.Length Then
    oDocument = Nothing
    AxWebBrowser1.Navigate(strFileName)
    End If
    End Sub
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Button1.Text = "Browse"
    With OpenFileDialog1
    .Filter = "Office Documents " & _
    "(*.docx, *.xlsx, *.ppt)|*.docx;*.xlsx;*.ppt"
    .FilterIndex = 1
    End With
    End Sub
    Private Sub Form1_Closing(ByVal sender As Object, ByVal e As _
    System.ComponentModel.CancelEventArgs) Handles MyBase.Closing
    oDocument = Nothing
    End Sub
    Private Sub AxWebBrowser1_NavigateComplete2(ByVal sender As Object, _
    ByVal e As AxSHDocVw.DWebBrowserEvents2_NavigateComplete2Event) _
    Handles AxWebBrowser1.NavigateComplete2
    On Error Resume Next
    oDocument = e.pDisp.Document
    'Note: You can use the reference to the document object to
    ' automate the document server.
    MsgBox("File opened by: " & oDocument.Application.Name)
    End Sub
    End Class
    And for closing part, we could refer to
    How to: Programmatically Close Documents.
    Regards,
    Carl
    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.

  • Action repeats on End Transaction

    Hi,
    I have an Action which is designed to send mails. The Processing Time of the Action is "Processing while saving the document". The problem is that it is getting triggered even when END button is clicked in IC. i.e mails are being sent twice- once during saving of the document and second time when END transaction is clicked.
    Is it the case with all Actions which are intended to be processed during save? because END button by default saves all the unsaved data?
    Thanks & Best Regards,
    Uma.

    Hi Uma,
    Pressing 'End' in IC will save all business transaction you have created during the interaction, even the ones that were already saved before. This is a given.
    In action profile customizing you can make sure that an action is only executed once. This should allow you to prevent that the email is send out twice.
    regards
    Gert

  • Display image in JPanel without saving any file to disk

    Hi,
    I am fetching images from database. I am saving this image, display in JPanel and delete it. But this is not actually I want.
    I wish to fetch this image as stream , store in memory and display in JPanel without saving any fiel in disk.
    I wonder if it is Possible or any used implementation that I can use in my project. Any idea or experienced knowledge is enough.
    Thanks

    In what format is the image coming to you from the database? If it's an InputStream subclass, just use javax.imageio.ImageIO:
    InputStream in = getImageInputStream();
    BufferedImage image = null;
    try {
       image = ImageIO.read(in);
    } finally {
       in.close();
    // ... Display image in your JPanel as you have beenIf you receive the image as an array of bytes, use the same method as above, but with a ByteArrayInputStream:
    byte[] imageData = getImageData();
    ByteArrayInputStream in = new ByteArrayInputStream(imageData);
    BufferedImage image = null;
    try {
       image = ImageIO.read(in);
    } finally {
       in.close();
    // ... Display image in your JPanel as you have been

  • Close Excel com object without saving changes?

    Hi, I am trying to write a script which opens each of 31 excel workbooks, retrieves a value from a cell, and closes each workbook after retrieving.
    My code so far:
    $day=1
    $excel = New-Object -ComObject Excel.Application
    $excel.Visible=$True
    $workbook= $excel.Workbooks.Open("C:\Path|to\File\1_"+$day+"_14.xlsx")
    $workbook.sheets.item(1).activate()
    $WorkbookTotal=$workbook.Worksheets.item(1)
    $value = $WorkbookTotal.Cells.Item(7,13)
    $value.Text #this should give you back the Value in that Cell
    $excel.close()
    My problem is that when the code hits the $excel.close() method, the file stays open, and prompts for saving changes.  I don't know why it thinks there are changes, but what I want is to close the workbook without saving changes.
    I've just closed 44 open browser tabs, and have tried many things over the last hour, but can't seem to get this one.
    If anyone has any advice on how to do this, it would be greatly appreciated!
    Thanks,
    Kevin

    Hi,
    Please replace below code:
    $excel.close()
    with
    $workbook.close($false)
    $excel.quit()
    Hope this helps.
    Regards,
    Yan Li
    Regards, Yan Li

  • I want to use Thunderbird without saving e-mails to PC. How is this possible?

    I want to use Thunderbird without saving any e-mail to local folder in my PC.
    Can you please help me on this?
    thanks.

    There are two types - POP and IMAP
    You would need to logon to your webmail account using a browser and select the option to use IMAP forwarding - assuming that option is available.
    Pop mail accounts can only access the server Inbox.
    Emails are downloaded to your computer and stored in your Thunderbird Profile folder. So this type may not suit your requirements.
    IMAP mail accounts offer a remote view of folders and emails stored on the server.
    You subscribe to see those folders. Then Headers are downloaded and when you select to view an email, the email is downloaded to a temp cache.
    Subscribed folders that are synchronised, download a copy of the folder and store it in your Thunderbird Profile. But these folders are constantly updated to reflect what is stored on the server.
    So your best option would be to create IMAP mail account, subscribe to see folders on the server, but do not select to synchronise those subscribed folders.
    Emails stored in your Thunderbird Profile on your computer load faster than those that have to be retrieved from the server each time.
    Info on synchronising, so you can see how to enable/disable.
    * https://support.mozilla.org/en-US/kb/imap-synchronization

  • My old computer had itunes and downloaded songs that I put on my ipod. My old computer got replaced years ago without saving hard drive info or passwords and my iPod burnt out and will not activate. How can I get access to my old songs on new computer.

    My old computer had itunes and downloaded songs that I put on my ipod. Well, my old computer got replaced years ago without saving hard drive info or passwords and my iPod burnt out years ago and will not activate. I now have a new computer and iPod and I have an iTunes account on my iPhone5. How can I get access to my old songs on new computer? Are they lost for good? I have no info about my old computer and old account.

    Downloading past purchases from the App Store ... - Support - Apple

  • Using Firefox, I used to be able to open a document on a website and look at it without downloading.  Now, I must download a document in order to view it.  How can I change settings so that I can open documents without saving them?

    Using Firefox, I used to be able to open a document on a website, such as a bank statement, and view it without downloading.  Now, I must download and save a document before I can view it.  How can I change settings so that I can open documents without saving them first?

    Do you know what kind of docs they are? Did you upgrade/Update Firefox lately?
    https://addons.mozilla.org/en-US/firefox/addon/pdf-download/
    http://kb2.adobe.com/cps/333/333563.html
    https://addons.mozilla.org/en-US/firefox/addon/open-it-online/

  • Creating a Mavericks USB boot drive after the horse has bolted.  Can I create a bootable USB drive from my iMac after installing Mavericks without saving the Install OS X Mavericks.app file?  Do I need to re- download the whole 5.29 Gb again?

    Creating a Mavericks USB boot drive after the horse has bolted.  Can I create a bootable USB drive from my iMac after installing Mavericks without saving the Install OS X Mavericks.app file?  Do I need to re- download the whole 5.29 Gb from the App Store again?  My problem is my 4Gb/month allowance on a 12 month contract.  I cannot purchase a data block from my ISP and although my speed is theoretically slowed to 64k after reaching my 4Gb, it actually ceases to download in reality.

    HI tasclix, it depends what you mean by an OS X boot drive.
    If you want a recovery disk from which you can reinstall (by re-downloading) or recover from a time machine backup, then nbar is correct.
    If, however, you want to boot and run the OS X installer from the USB drive (so that you don't need to download again), then you will need a copy of "Install OS X  Mavericks.app"; see this article:
    http://support.apple.com/kb/HT5856
    Before downloading again, search your system to see if the installer is still there - it's usually in the /Applications folder unless it has been deleted, but check your whole system for it anyway, you never know, you might still have it somewhere.
    Message was edited by: SilverSkyRat

  • How can I get Firefox to directly open a file (like a torrent) without saving it at all

    It seems that up until about 3 months ago - I could get firefox to download a file and open it directly without saving it to any particular place. This is particulary useful for downloading say a torrent or, for that matter, any other file I wish to use within another program but do not need to save the file.
    Now I have to download the file, chose where it will be saved, open the folder click on the file, and then delete the now un-needed file. A huge hassle.
    I am sure I could do this until a few months ago. For some reason I cannot now.
    Please help

    Make sure that the file has the .html file extension.
    That should be sufficient.
    Windows hides some file extensions by default.
    Among them are .html and .ini and .js and .txt, so you may only see file name without file extension.
    You can see the real file type (file extension) in the properties of the file via the right-click context menu in Windows Explorer.

  • How do I prevent the "Save as" window that started popping up yesterday and just print articles without saving?

    In years of printing articles I could always print without "saving as" first. Is there some setting I need to change or an add-on? I have firefox 3.6.13, Windows XP, HP PSC 2355

    {Ctrl + P} or File > Print
    Is your printer selected at the top in Printer - Name??
    Is '''Print to File''' selected on the right, a little further down??

Maybe you are looking for

  • Amazon Prime Instant Videos crash Flash Player in IE10

    Have tried all the trouble-shooting steps in Flash Player Help (reinstalling, removing Caches, fixing Security settings, Storage Settings, etc.) until my eyes are crossed.  This surfaced recently (probably with the latest Flash Player Version (11.6.6

  • Compiling error: "checking for mtc_init in -lmatc... no"

    Hello I'm trying to compile the elmer fem from svn via a selfmade PKBUILD. I've got an error message: "checking whether we are using the Microsoft C compiler... no checking for mtc_init in -lmatc... no configure: error: libmatc ==> FEHLER: Ein Fehler

  • Error in RZ20-GL account

    Hello, I am getting this error "G/L account with currency HRK not possible in case  of valuated GR" when posting a PO from the SRM to the backend in production. I have checked in FS00 for the currency of the GL account and HRK is maintained for the s

  • Replaced title name track with "check"

    Last year, my MacBook internal drive crashed. I had backups with the earlier version of Backup by Apple. I installed a new drive, did a clean install, and retrieved all the files I needed from Backup. I went back now and then to find other files, and

  • "Error parsing data-sources config" when I restart JDeveloper

    I am using JDeveloper. Every time I got the same server error - "Error parsing data-sources config" when I restart JDeveloper and even if i use a project it works before JDeveloper is restarted. Firstly, I import EAR file to the JDev, then I work on