How to find out the schedule agreement number from the invoice number?

I have invoice number based on which i need to check the scheduleagreenment number
please let me know in which table i can find the relation between these two.

Check EKBE and EKET , EKEK

Similar Messages

  • How to find out query name using Elements of the query builder.

    Hi SDNers,
    how to find out query name using Elements of the query .
    thanks,
    satyaa

    Hi,
    For having a look at the relation between BEx tables,check the link below:
    http://wiki.sdn.sap.com/wiki/display/BI/ExploretherelationbetweenBEx+Tables
    -Vikram

  • How to find out when data was deleted from table in oracle and Who deleted that

    HI Experts,
    Help me for below query:
    how to find out when data was deleted from table in oracle and Who deleted that ?
    I did that to fidn out some data from dba_tab_modifications, but I m not sure that what timestamp shows, wether it shows for update,insert or delete time ?
    SQL> select TABLE_OWNER,TABLE_NAME,INSERTS,UPDATES,DELETES,TIMESTAMP,DROP_SEGMENTS,TRUNCATED from dba_tab_modifications where TABLE_NAME='F9001';
    TABLE_OWNER                    TABLE_NAME                        INSERTS    UPDATES    DELETES     TIMESTAMP         DROP_SEGMENTS TRU
    PRODCTL                        F9001                                                     1683         46       2171            11-12-13 18:23:39             0                   NO
    Audit is enable in my enviroment?
    customer is facing the issue and data missing in the table and I told him that yes there is a delete at 11-12-13 18:23:39 in table after seeing the DELETS column and timestamp in dba_tab_modifications, but not sure I am right or not
    SQL> show parameter audit
    NAME                                 TYPE        VALUE
    audit_file_dest                      string      /oracle/admin/pbowe/adump
    audit_sys_operations                 boolean     TRUE
    audit_syslog_level                   string
    audit_trail                          string      DB, EXTENDED
    please help
    Thanks
    Sam

    LOGMiner --> Using LogMiner to Analyze Redo Log Files
    AUDIT --> Configuring and Administering Auditing

  • How to find out who's texting you from an iCloud email address?

    how to find out who's texting you from an icloud email address?

    OK after a bit of research I found a way to achieve this.
    I simply looked up the email address in ADUC, then did a search in SP with the display name. I could locate the list and manually confirm it was configured with the incoming email address I was looking for.
    I also found the below script on Stackoverflow, but got "The 'using' keyword is not supported in this version of the language." when I tried to run it. Any idea how to fix that? I'd like to have a script to link a library to an email address istead of the
    manual approach described above.
    http://stackoverflow.com/questions/4974110/sharepoint-how-do-i-find-a-mail-enabled-list-if-i-only-have-the-email
    $SiteCollection = ""
    $EmailAddress = "" # only the part before the @
    # Load SharePoint module if not done yet
    if((Get-PSSnapin | Where {$_.Name -eq "Microsoft.SharePoint.PowerShell"}) -eq $null) {Add-PSSnapin Microsoft.SharePoint.PowerShell;}
    cls
    using System;
    using Microsoft.SharePoint;
    namespace FindListByEmail
    class Program
    {a
    static void Main(string[] args)
    string siteUrl = $SiteCollection;
    string email = $EmailAddress;
    using (SPSite site = new SPSite(siteUrl))
    foreach (SPWeb web in site.AllWebs)
    try
    foreach (SPList list in web.Lists)
    if (list.CanReceiveEmail)
    if (list.EmailAlias != null && list.EmailAlias.Equals(email, StringComparison.InvariantCultureIgnoreCase))
    Console.WriteLine("The email belongs to list {0} in web {1}", list.Title, web.Url);
    Console.ReadLine();
    return;
    finally
    if (web != null)
    web.Dispose();

  • How to find out which jobs are connected to the user

    Hello, i have a question, but i was unable to find the answer. The problem is that our internal consultant left the company, and there are certain jobs that run under his account. We want now to switch this jobs to other accounts. The problem we are facing is how to find out what jobs, or job steps are connected with his account, so we can safely demote his account, so that no other jobs will be run under his account. Thank you very much
    Sincerely,
    Luka Prijic

    the only reliable way to do this is by scanning table TBTCP using the person's userID in field AUTHCKNAM and filtering by job statuses: scheduled, released, ready and active (sorry I can't remember the code#'s off top of my head, something like P=scheduled, S=scheduled...you have to look it up).   When you search SM37 it only permits you to scan by the userID who created the job, but it won't tell you if a different userID is defined in a job step.  That's why you need to scan TBTCP.  Don't forget that you should also check for a user's open Workflow items before deletion.
    I noticed some posts in this forum that suggest a userID should never be deleted, only locked, added to a special user group, and all role assignments removed.  However I've never worked somewhere that does this.

  • ADF table: How to find out which rows were modified by the user

    Hi,
    I am using ADF table to display data that can be modified by the user (ReadOnly = false in the input text). I need to find out which rows were modified by the user, and only update (persist) those rows in the database.
    Is there an easy way to find out which rows were modified by the user.
    I am NOT particularly concerned with which columns were modified as I would update the entire row (if any data in that row is modified).
    I am using Oracle JDeveloper version 11.1.1.3.
    Thanks,
    Ash K

    Thanks Timo.
    I am using ADF Data Control (which are created from Web Service proxy) to display/update the data.
    In the backing bean, the operation that is invoked at the time persisting data is as follows:
    public void commitOperation {
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding = bindings.getOperationBinding("operationA");
    DCIteratorBinding dciter = (DCIteratorBinding)bindings.get("someIterator");
    for(int i=0; i<dciter.getViewObject().getEstimatedRowCount(); i++)
    Row row=dciter.getRowAtRangeIndex(i);
    SomeObject someObject= new SomeObject ();
    someObject.setAttr1(row.getAttribute("Attrbute1").toString());
    someObject.setAttr2(row.getAttribute("Attribute2").toString());
    objectList.add(someObject);
    operationBinding.getParamsMap().put("param1", objectList);
    ResultObject result = (ResultObject) operationBinding.execute();
    Inside the for loop (or any other place in the backing bean), I would like to figure out if the row was modified by the user. Please let me know if how to get that. If ADF provides this automatically, that would be GREAT.
    Thanks,
    Ash K

  • How to find out whether I am working on the right instance?

    Hi All
    I want to find out from Oracle Apps i.e., Front end the following:
    Whether the instance I am working on currently is the same one or restored from a backup. I will not be able to find out the difference immediately as the changes between the current instance and backup instance are very few and dispersed but at the same time critical to the system.
    How can I find out from the front end whether the instance is same as I was working yesterday assuming I am the only user?
    Thanks in Advance for any help.
    Regards
    Rahman

    Hi,
    as the changes between the current instance and backup instance are very few and dispersed but at the same time critical to the system.I believe there is no way to find out unless you check and see those changes (before/after the restore).
    Regards,
    Hussein

  • Imp:How to find out whether client authentication Enabled on the Web Server

    Hi,
    I am trying to find out whether the Client Authentication Enabled on the Web Server or not.
    Reason for doing this, if we have two certificates in the key store which will authenticate the Web Server, JSSE Authentication will always take the first cert from the keystore. If the first Certificate is Expired, it will fail while doing the HandShake.
    So if I can find out whether Client Authentication is Enabled or not, then I can prompt a dialog for the user to select the Certificate for the Hand Shake.
    Thanks in advance for any Response,
    Krish.

    AUTH_TYPE will tell you only if it SSL or not. It won't say whether the Client Certificates Required for SSL Connection.
    Also, AUTH_TYPE is not part of the Http Headers.
    If there is any other solution, greatly appreciated.
    Thanks
    Krish.

  • How to find out if a table is in the replication process?

    Hi, I'm trying to figure out if one of the table in the database is replicated from outside. What should I do to find out this? Can anyone help me out? Thanks a lot! _meg                                                                                                                                                                                                                                                                                                                                                       

    Try this query
    select gname,oname,status from dba_repobject where oname='TABLE_NAME';

  • How to Pull out single common T-code from the existing User's profiles.

    Hi experts,
    Here in my company we are using 4.7 Enterprise with 230 users.
    recently management decided to pull out authorization for one Common T-code assigned to 100 people in their profiles.
    we had created customized profile for each user.
    So, here i had 100 profiles. i need pull out one common T-code assigned in all these 100 profiles.
    not only in this 100 profiles, i want to remove for all customized profiles in my SAP PRD server.
    request you to more inputs concerned to this.
    Thanking you in anticipation,
    best regards,
    Raghav

    I agree with Alex that shows again that roles per user is NOT best practice.
    Best practice design:
    1.     Let the functional process designers describe the whole process on TRX Level.
    2.     Let business decide which part of the process is to be done by which user.
    3.     Split the process in point 1 in such a way the you can mach every user in step 2. In this try to avoid a single TRX to be in more than one single role.
    4.     Create roles for the part process in 3 and assign to users (if the number of roles per user is making it hard to maintain, you can decide to create Composite roles).
    If you would have followed steps aforementioned you would have to remove the TRX from one role ONLY!
    I would suggest to find time to make a redesign, It will definitely pay-back in far less maintenance.

  • Help me find out who is texting me from a hiden number

    I was texted today something very stalkerish which seems to be someone that we know hiding behind a texting app or possibly a different number (since you can alter your zip codes making it hard for someone to find out where the message is coming from). The text was asking for permission to take my daughter out on a date and was using specific information about us, our family and including specific names and locations which is scaring us. The zip code is not anywhere near our area. I was wondering if there was any possible way we could find out who this is or if you could verify with me that this number if being used by your service. The number is: ****
    Any information would be helpful and appreciated. Thank you.
    [Edited to comply with Guidelines]

    Please report this to the police. It would require a court order to get the owner of the phone number.

  • Find out which EAS settings come from the server

    Hello,
    I am still struggling with the screen-lock timer. It still just offers locking after "Screen turns off".
    Since our exchange-admins claim that the only supported plattform is Windows Mobile I would like to find out what instructions come from the EAS server.
    Is there a way to find out, what the EAS server sends to the Pre?
    Oh, and I am using webOS 1.4.1-wr.

    You can copy iTunes purchased from a device to your computer's iTunes library via File > Devices > Transfer Purchases - if the account is authorised on your computer's iTunes then you should be prompted to authorise it when trying to copy them.
    Or there are programs listed half-way down this page which can copy them back : Recover your iTunes library from your iPod or iOS device
    You can then add them to your iTunes library via File > Add To Library, again you should be prompted to authorise the account if it's not already authorised.
    You can also find the account that a track is tied to be selecting/highlighting it in the My Music part of your library, or the Music section of 'OnMy Device' when you select the device, and doing 'get-info' (command-i) - it will show on one of the tabs on the popup

  • How to find out what songs I deleted – from a playlist?

    Hi all, random question...
    I have have been culling music from the "Songs" section my iTunes and sending them to the Trash.
    HOWEVER the songs that are on one of my playlists, "My Favorites", I really wanted to keep. There were about 200 songs on the playlist and after I finished culling music, I discovered that I had 180 and had accidentally sent about 20 songs to the Trash that I shouldn't have. Argh.
    Is there any way to retrive a copy of that playlist from Time Machine, or something, and see which songs I deleted from that playlist. And then drag those 20 songs back from the Trash? I don't want to drag back all the songs I trashed – just the 20 that were part of that playlist.
    Any ideas???

    I would also recommend leaving the shot on the iphone untouched (downloaded to a PC is ok). There is EXIF information encoded inside the image that records the iphone's date/time (this is in addition to the file system information that the other poster I beleive is referring to). It is also changeable, though one needs more expertise to do so. The reason I recommend leaving it there is some techniques of getting shots off of cameras (i.e. phones) may remove that info or alter it.
    But how does the date/time matter -- clearly the event had occurred, how will a shot after it occurred indicate which came first, your care or her's?
    Message was edited by: Linwood_Ferguson

  • HT5624 How to find out my ICloud yahoo password for the account?

    how do i find my password for my yahoo Icloud account? setting up a new Iphone5 and need to log in on the phone for icloud????

    If you don't know it, you'll have to reset it at https://iforgot.apple.com/iForgot/iForgot.html.

  • How to find out who put an event in the EventQueue?

    Hello,
    I want to debug who has put some event in the EventQueue. I tried to create my own EventQueue (DebugEventQueue) and override postEvent and dispatchEvent. But all I see is, that postEvent is never called, and dispatchEvent has a stack trace like:
    defaultpackage.DebugEventQueue.dispatchEvent(DwohGuiContainer.java:730)
    java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
    java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
    java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
    java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
    java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    This doesn't help me a lot because I don't see which function of which instance of which class has been called that caused the event to be sent.
    Any ideas?

    Sounds weird, are you sure you overridden postEvent correctly? Mind posting its code here?

  • How to get an accounting document number from an Invoice number

    Dear All,
    I have a requirement where I need to know which accounting document is created against a  particular invoice. As we know that in the document flow of invoice we can see the Accounting document also. But to develop the report I need to pick the accounting document by the invoice document. Please suggest me a table where this value is getting stored. I already tried VBFA and VBKD but nowhere I am getting such information from which I can pick a accounting document number for a particular invoice.
    Please give me your suggestions.
    Regards,
    Sanju

    Dear,
    For Billing document create no. range by Tcode-VN01 and assign it to in Tcode-VOFA
    For Accounting document create no. range by Tcode-FBN1 and activate the External Field and assing it to in Tcode- OBA7
    but Assign the same no. range to both Document types for exp 1000000 to 1999999.
    Regards
    AJIT K SINGH
    HAPPY TO HELP U

Maybe you are looking for

  • Mid-2009 13" MacBook Pro emits high-frequency noise when engaged for sound

    Recently I noticed that when the MacBook Pro activates the sound output device for built-in speakers, a high-pitched whine or noise begins, and does not stop until the card deactivates again. The sound is not proportional to brightness, hard drive ac

  • Not working properly Computer Browser service in Windows Server 2012

    Good afternoon. Migrated from 2003 to 2012 Active Directory, all is good, but the service Computer Browser in Windows Server 2012 is not working properly. Online, there are several hundred computers, one network, no segments. PDC is the Master Browse

  • Why are my thumbnails and folders changing???

    For some reason my image thumbnails and folders are misbehaving. Thumbnails The thumbnail images will just disappear on SOME images in a folder but not all. Folders The folder sizes will max out in some folders but not in others. And, I am not sure t

  • FI-AR DATASOURCE

    Hi  all , Can any one help me to get datasource for  FI_AR  in ECC. I JUST HAVE AND IDEA THAT 0FI_AR_1 AND OFI_AR_4 EXISTS. But can any one tell how to get these datasource  in ECC. Thanks, Kiran.

  • Acrobat 9 Watermarking error

    We are trying to take a pdf that was created in Acrobat 9 and watermark it. Right now the error is "An error was encountered while retrieving page content" The only way we can watermark anything is to take it back to a previous version and watermark