Troubleshooting Missed Transactions from a vendor application

Hi,
we are running oracle 10.2.0.4 enterprised edition database. We have a vendor application which sent some DML statements last month. They didn't provide any logs to us. They just told us that their DML statements were successful, but when we see the data in the database, we did not see the effect of those statements. We suspect those DML statements never came to the database. We did log mining and found that during that time, we did not see any DMLs for that table. I understand that proper logging and instrumentation is missing here.
How else can we troubleshoot such incidents???
Thanks,
Sarayu

How else can we troubleshoot such incidents???AUDIT

Similar Messages

  • Passing parameters to Transactions from Web dynpro Application through ITS

    Hi,
    i need to call a transaction from Web dynpro through ITS. On action from web dynpro application, i am concatenating the respective parameters mentioned below along with URL. The problem is one parameter(VARIANT) is being passed to the t-code CAT3 correctly. The next mandatory parameter(PERNR) is not passed to the respective field.Here is the URL Code:
    CONCATENATE 'http'
    '://' host ':' port
    '/sap/bc/gui/sap/its/webgui/?sap-client=&~transaction=' 'CAT3'
    '%20TCATST-VARIANT=' lv_name2 '&CATSFIELDS-PERNR=' lv_name1 INTO url.
    Called T-Code CAT3
    Passing Parameters are:
    Data Profile TCATST-VARIANT
    Pernr: CATSFIELDS-PERNR

    Pradeep,
    iam trying to pass values from webdynpro application to SAP GUI Transaction
    here is the sample code which iam using
    CONCATENATE  'http://s0164dep01.adta.uae:50000/irj/portal/interop?NavigationTarget=pcd:portal_content/Testing/trn_iw33?'
    '%20CAUFVD-AUFNR='
                 'ApplicationParameter=CAUFVD-AUFNR='
                  lv_workorder';'
              'DYNP_OKCODE=SHOW'
             INTO lv_url.
    i could'nt able to succed as its displaying page not found exception.
    Help me on this to proceed further
    Regards
    Jaipal.E

  • Call SAPGUI transaction from BSP and vice versa

    Hi all
    There was some discussion about this topics before. Maybe someone can just point me to the thread answering this issue:
    1. I need to call a SAPGUI transaction from a BSP application: I want to use SAPGUI, not ITS/webgui, I need single sign on, the SAPGUI transaction could possible run in another SAP system then the BSP.
    As far as I understand I need to create a *.sap file with the correct parameters for sapshortcut. But how does single sign on work? Can I create a logon ticket in my BSP and forward it to sapshortcut?
    2. I need to call a BSP application from a SAPGUI transaction or report, with single sign on but in a MS IE window, not inside a SAPGUI HTML control
    Can I create a logon ticket in my coding an append it to the start url for the BSP?
    any hints?
    thanks
    Michael

    hi Michael,
    For your second issue,to call a BSP application from a SAP GUI in MS IE explorer,
    you can use the Function Module CALL_BROWSER in your report,like
    data url(200) type c.
    url = 'http://<server>.<domain><port>:'.
    concatenate url '/sap/bc/bsp/sap/' into url.
    concatenate url 'znw_poc2_1_prtl/dts.htm' into url.
    concatenate url '?sap-user=<userid>' into url.
    concatenate url '&sap-password=<passowrd>' into url.
    CALL FUNCTION 'CALL_BROWSER'
      EXPORTING
        URL                          = url
    *    WINDOW_NAME                  = ' '
    *    NEW_WINDOW                   = ' '
    *    BROWSER_TYPE                 =
    *    CONTEXTSTRING                =
    *  EXCEPTIONS
    *    FRONTEND_NOT_SUPPORTED       = 1
    *    FRONTEND_ERROR               = 2
    *    PROG_NOT_FOUND               = 3
    *    NO_BATCH                     = 4
    *    UNSPECIFIED_ERROR            = 5
    *    OTHERS                       = 6
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    For this to work you have to enable SSO on your server.
    you can check if it is enabled or not by runnning the BSP application "SYSTEM" ,page "SSO2TEST.htm" .
    Follow the instructions on the page for testing.
    This may not be a great way as your userid password are passed via URL,still it works .
    Hope this helps,
    Regards,
    Siddhartha

  • Vendor Master transactions from external application

    Hi..
    I have to Create(XK01), Change(XK02), Block(XK05) and Delete(XK06) Vendor Master from an external application.
    This application is able to interact with SAP using RFC/BAPI and IDOC, but I only found BDC as a way to achieve this. How does this work? Can I 'wrap' a BDC into a BAPI and remote-enabled this BAPI to my application?
    All help welcome (and examples too
    Cheers,
    Adzy

    Hi Andreas,
    Thank you for your reply.
    BAPI_VENDOR_CREATE seems to be used in a dialog; the response was:
    "RFC_ERROR_SYSTEM_FAILURE: Screen output without connection to user"
    I going back digging a bit more...
    Thank you and regards,
    Adzy

  • Vendor list - not get transaction from last three years

    Dear Sir,
    Can we have a list of vendor which are not get transaction from last three years ?
    Vijay Vadgaonkar
    SAP MM

    either you write a z-report
    or you download all vendor numbers from LFA1 table
    then run MC$4  transaction for analyzing period of last 3 year.
    download the vendor numbers from this report as well.
    Finally compare the both download (easiest with VLOOKUP formula) to find the delta, which are the inactive vendors.
    However, these are the inactive vendors from purchasing point of view only.
    vendors like restaurants and customs and tax authorities may only have financial postings and never purchasing activities.

  • Transfer transactions from Vendor Account A to Vendor Account B

    Hi Gurus,
    Can you advise is there a standard program or transaction within SAP to transfer items from one vendor account to another vendor account? We need to be able to transfer the detailed account line items.
    Thanks for any guidance offered.
    Regards
    Michael

    Hi there, I'm having the same problem, by some human error there are 2 vendors who happen to be the same, the big problem here is that there are some payments made some months ago to both of them (not the same, I mean, we didnt pay twise) and we want to see all transactions to that vendor (2 registers in SAP) as one, but if we just make all the single transactions of one of them to the other an then disable the first, it would make some account transactions that are not for real, I mean, that solution would make some noise to the financial register.
    I hope to find some solution with your help.
    And thanks in advise.

  • Requirement: Open Transaction code in SAP GUI from WD ABAP application

    Hello All,
    I have a WD ABAP application which is accessed from SAP GUI and Portal. In SAP GUI, there is report which calls the application URL.
    In the WD application, I need to call a transaction code. At this juncture, I made use of the ITS url. But,, the SSO does not work in SAP GUI.It works only in portal.
    As a solution,we identified the entry point i.e. SAP GUI or portal. Then, based on entry from SAP GUI, we tried to call the transaction code using call transaction statement. But, that replaced the wd application. We instead wanted it as a popup or atleast another session.
    Now, how do we open a transaction from WD screen in another session?
    Also, can we setany configurations in the system to make sure the SSO works for all the transactions i.e. ITS used in SAP GUI.?
    Thank you.
    Regards,
    Sharath

    Hi,
    This question gets asked many times.
    Depending on the circumstances, this can be achieved with varying degree of success
    So here is some code that might help you.
    This can (does) load a Windows GUI.
    Some things to consider.
    1. Browser settings can get in the way a bit, asking the user if they want to open a ".sap" file
    2. The user may have a SAP session open so consider adding a "/o" to the system code.
    3. The Custom variable might want to contain a [Options] section for "Re-use"
    4. The SAPLogon_ID may be required if using SSO (SNC)
    I have modified the code below, but you will get the idea.
    JS
    * Create the shortcut contents
      call function 'SWN_CREATE_SHORTCUT'
        exporting
          i_system_command        = lv_com
          i_saplogon_id           = lv_logon_id
          i_sysid                 = sy-sysid
          i_client                = sy-mandt
          i_user                  = sy-uname
          i_custom                = lv_custom
        importing
          shortcut_string         = lv_string
        exceptions
          inconsistent_parameters = 1
          others                  = 2.
    * Convert to xstring to execute....
      call method cl_http_utility=>if_http_utility~encode_utf8
        exporting
          unencoded = lv_string
        receiving
          encoded   = lv_xstring
        exceptions
          others    = 1.
    * Now call to open the shortcut.
      lv_file_name =  'mytrans.sap'.
      lv_mime = 'application/x-sapshortcut'.
      call method cl_wd_runtime_services=>attach_file_to_response
        exporting
          i_filename      = lv_file_name
          i_content       = lv_xstring
          i_mime_type     = lv_mime
          i_in_new_window = abap_true.

  • I missed the second day free application from itune 12 Days of Gifts.  Where can I download again.  What was the second day free application ?

    I missed the second day free application from itune 12 Days of Gifts.  Where can I download again.  What was the second day free application ?

    Yesterday's app here in the UK still appears to be free (at the moment) to download (I don't know what the app's normal price is) : Score! Classic Goals. If it's not free in your country's store then if you want you will need to buy it.

  • Premere and After Effects are missing from Cloud Adobe Application Manager... please help ASAP

    Premere and After Effects are missing from Cloud Adobe Application Manager... please help ASAP

    Short and to the point: If they don't show up, your system doesn't support them. Refer to the Tech Specs on teh product pages and make up your mind...
    Mylenium

  • Disabling transactions from WLI Workshop Web Service application?

    I need to disable the transactions from a Workshop generated Web Service for WLI (Workshop 8.1.6).
    I can accomplish this by changing and repackaging the builded EAR-package by altering the ejb-jar.xml:s in the .workshop directory and setting the transactions from Required to NotSupported. It would be much more convenient, if I could do that change from the Workshop.
    Actual question: is there a way to disable transactions from a Web Service in Workshop? I have not found any place to change this property.

    Hi
    You have 2 options.
    As you mentioned you can modify the generated ejb descriptors. Unfortunately this attribute is not exposed as a property in the workshop, so you cannot change there.
    Other option is to suspend the transaction created by workshop so that your webservice functionality or any control called within that won't be part of the workshop transaction.
    More info at http://forums.bea.com/bea/message.jspa?messageID=600045134&tstart=0
    Thanks
    Vimala

  • I want to access JMS Queue in websphere from a client application

    Hello all
    I tried to access a jms queue in the websphere from a client application
    my connection factory jndi name is : MyConn
    my queue name jndi name is : MyQueue
    and here is my code :
    Hashtable environment = new Hashtable();
    environment.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.ibm.websphere.naming.WsnInitialContextFactory");
    environment.put(Context.URL_PKG_PREFIXES, "com.ibm.ws.naming");
    environment.put(Context.PROVIDER_URL, "corbaloc:iiop:localhost:2809");
    return new InitialContext(environment);
    then:
    q = (Queue) ctx.lookup(QJNDIName);
    QueueConnectionFactory connFactory = (QueueConnectionFactory)
    ctx.lookup(ConnFactName);
    I had the following exception :
    javax.naming.NameNotFoundException: Context: networking/nodes/networking/servers/server1, name: MyQueue: First component in name MyQueue not found. Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0
    Can i have any help please ....

    Hi
    You are missing some critical jar files in your class path. It should be namingclient.jar, also please or something similar that is missing in classpath.
    HTH
    VJ

  • Several payments from one vendor into one payment order

    Hello,
    I would combine payments from one vendor into one payment order.
    I found in XK03 there is a tab in payment tab to set the voice individual payment but I cannot change it since is not an editable field.
    see image
    How can I change this?
    I need to do this change as a massive change for all vendors for a company code.
    Can you help me, please?
    Thank You

    Yes, What Harnish says is correct.
    Additional you can check in Vendor Master-Company Code Data-Payment Transactions Tab-Individual Payment
    Individual pmt should be un-ticked.
    Hope this will help you
    Regards,
    Deepak

  • Missing Data from Legacy System

    Hello All,
    My client went live end of January this year. They had a month of transaction data in their legacy system which they did not bring into SAP. Since this is their first year on SAP and recently implemented Extended Withhold Tax one month data is missing; when they run the 1099s at the end of the year they are going to be reported incorrectly.
    How can we bring over that missing data from legacy system over to SAP without having to clear those invoices in SAP?
    Thank You In Advance

    Hi Shashi,
       Have a look : <a href="http://www.box.net/shared/9tda040za6">Transferring Data with DB Connect</a>
    <a href="http://sapbwneelam.blogspot.com">More Docs...</a>
    Hope it Helps
    Srini

  • The problem is encountered when we try to open the file from external vendor.

    We are using Adobe illustrator CS3 with Patch 13.0.2. in MAC PC with OS 10.4.11. We tried to open the file generated from external vendor. This file is made by CS4/CS5 & downgraded to CS3 because we are using different version of CS package.
    When we try to open such as file. It takes some time to open it. But after a while, the application illustrator has unexpectedly quit & crash report is generated. Any expert can help to look at the problem.

    Just a bad file.
    No telling what specifically may be the issue without seeing the original file as compaired to the CS3 file.

  • HELP ASAP!! PSE5 "elements user name organization or serial number is missing or invalid.  thsi application cannot continue and must now exit

    HELP!!!!  I am a graphic designer I LOVE my version of Photoshop elements 5... I am also a Mom of two who depends on my party supply business as my only income currently!!!! 
    Upon opening to work on a party supply order DUE TODAY for a kid's first birthday I got this ERROR MESSAGE:
    "Your adobe photoshop elements user name organization or serial number is missing or invalid.  This application cannot continue and must now exit"  And then closes.....
    I don't know where my disc is to uninstall/reinstall since I got this program Oh say 10 years ago....  WHAT DO I DO!!?  I am in complete PANIC mode!
    Anyone?! Chat said they couldn't help me it's too old?!?!  HELP

    Hello ...Mom,
    here you will find (if stored at Adobe) "General infos about your Adobe Account" https://www.adobe.com/account.html. To see what Adobe has saved about your serial number, please have a look there: http://helpx.adobe.com/x-productkb/global/find-serial-number.html.
    On the other hand you could use a non Adobe program, like
    Belarc Advisor - Free Personal PC Audit, for software, hardware and security configuration information on your computer.…
    If necessary and for further questions click through http://helpx.adobe.com/contact.html and if "open" please use chat, I had the best experiences. I quote from Adobe's employee Preran: The chat button is activated as soon as there is an agent available to help.
    Good luck!
    Hans-Günter

Maybe you are looking for

  • How to modify an existing xml file from java code.

    Hi I have worked on creating a new xml file from java code using xmlbeans.But if i try to modify an already existing file using java code I am unable to get errorfree xmlfile. For example if xml file(studlist.xml) is as below: <?xml version="1.0" enc

  • How to get mysql error as a message on java

    hi, can any one please tell me how we can get the error generated by Mysql database during runtime as a message on a java program form. thanks

  • Gstreamer, the easy way

    Since I like to have a way to install all gstreamer packages, I thought others might like to have them all displayed and formatted for a quick installation. All you need is current and extra repo's pacman -Sy gstreamer0.10 gstreamer0.10-a52dec gstrea

  • 10.7.3 Network accounts are unavailable.

    I installed Lion on my work computer yesterday from a USB drive and I got the message that "Network accounts are unavailable".  Today I updated to 10.7.3 hoping that might do the trick and still get the same message.  Any ideas of how I should deal w

  • UOM - Metric vs. Imperial

    Good afternoon, We have two offices, one in Switzerland, the other in Canada.  The item in question was set up on the system by Canada and the UOM is inches.  We know that we can set up UOM conversion for metric to imperial, but we have another issue