Get a List of Invoice Name Field

Due that our one time sales process not being done the standard way, our invoices allow to change the name of the sold to party.
Now we need a list of sold to party name with Invoice number.
Is there some report where I could get it?
Thank you and Happy New Year.
Regards,
Carlos

Dear Carlos,
You can check VF05 or can also create a QUERY with the table VBRK
VBRK-VBELN will give the invoice number and you can check for the field name for SP.
Thanks & Regards,
Hegal K Charles

Similar Messages

  • Any option to get the list of Invoice with respect to Sales Area

    Dear All,
    Is there any option to check the list of Invoices with respect to the Sales area.
    Because, in VF05, we are getting the list either for a Payer or a Material.
    I want to see the list of Invoices for a Sales area. I mean, it should be similar to VA05, where we can get the list of Sales Orders even without providing the Customer and Material information.
    Reagrds,
    Mullairaja

    HI
    Use the T code VF05N and select the option Bill documents in Fi
    Here you can get the list of invoices
    Try with MC+2
    regards
    Prashanth
    Edited by: Prashanth@SD on Nov 11, 2010 9:44 AM

  • How can I get a list of database names from environment

    Hi,
    How can I get a list of database names from environment.
    I had found a method in JE API Docs named Environment.getDatabaseNames(), and i couldn't found the same method in Berkeley DB.
    I use java interface, is it supported?
    Thanks.

    Hello,
    I don't know if it would work for you, but have you checked the db_archive utility at:
    http://download.oracle.com/docs/cd/E17076_01/html/api_reference/C/db_archive.html
    Check the -s option.
    Thanks,
    Sandra

  • Hi - When I go into Contacts and type a letter in the search bar to get to last names that begin with that letter I get a list of random names that don't correlate to the letter. My settings are fine.  Help ?

    Hi. When I go into my contacts and type a letter in the saerch bar to get to a list of last names that begin with that letter I get a list of random names that don't begin or end with the letter.  My Settings appear fine.  Any insights would be greatly appreciated.  Cheers Bill

    The search bar is not designed to take you to names beginning with the letter you put in. If you want to do that, use the letters down the side. In the search bar, the device will return results for all contacts that have that have that letter in them. If you type a couple of letters of the name, you'll find what you want faster. Once you get used to how it works, it's quite efficient.
    Best of luck.

  • How do I get a list of cameras names from MAX to use in a CVI app?

    I wish to avoid any confusion in selecting cameras to use in my CVI application, so I'm looking for a way, from within my app, to get the list of camera names as set up in MAX. Then I can populate a listbox and the user can choose their camera without having to guess or refer to an external listing for the MAX name. The selected name will then be passed to IMAQdxOpenCamera.
    Thanks!

    Found it! (Should have looked in the hardware boards first, but it seemed to be a software question.) Anyway, use IMAQdxEnumerateCameras.

  • Clicking assign in Notification tab get empty list of Email Name

    I make Email Definitions:
    First - Provisioning Related
    Second - Request Related
    screenshot:
    http://img28.imageshack.us/img28/8513/emaildefinition.png
    Then I make a process task "MAIL" in provisioning process of resource. I try to assign email in notification tab, but get empty list.
    screenshot:
    http://img248.imageshack.us/img248/5773/mailprocess.png
    Maybe, there is some customization else?

    Hey,
    Just check the value of User Language and User Region attributes in System Confirguration through design console.
    Verify both the values are same like en and us.
    Regards
    Alabhya Goel
    Edited by: Alabhya Goel on Jul 21, 2010 5:14 AM

  • How do i get a list of file names in to a new folder?

    Hi,
    Does anyone know if there is a way of having a list of  image file names, searching for the images then putting them into a new folder?  I'm guessing it can probably be done through mac scripting but I know nothing about scripting and genreally not great with technogy so ideally need step by step instructions!!
    If anyone can help I would really appreciate it!!
    Ruth

    Without details about your workflow and folder set up, I can only give you a generic script, but this should at least get us started.  test it and see what needs to be tweaked.
    -- set paths to source and destination folders
    set imageSourcePath to POSIX path of (choose folder with prompt "Choose a source folder.")
    set destinationFolder to POSIX file POSIX path of (choose folder with prompt "Choose a destination folder.")
    -- get file names from text file: assumes one name per line.
    set fileNameTextFile to (choose file with prompt "Choose a file list text file." of type "public.plain-text")
    set fileNames to paragraphs of (read fileNameTextFile)
    repeat with thisFileName in fileNames
      -- replace each file name with an alias to that image file
              set contents of thisFileName to POSIX file (imageSourcePath & thisFileName)
    end repeat
    tell application "Finder"
      -- using 'duplicate' because I assume you want to make copies rather than move files
      duplicate fileNames to destinationFolder
    end tell

  • How can I get a list of the names of the failed steps ?

    Hi,
       I wanted to have a string which can describe all the failed steps. For example, if I had the steps below :
    Step 1
    Step 2
    Step 3, etc
    and Step 1 and Step 3 failed, how can I get a string " Step1, Step2" ?
    Can I somehow add a variable in each step which records the step result and then use all the variables at the end to creat a Result string ?
    Please help.
    ~Sam~

    Sam,
    you have at least two possibilities for your question:
    a) use the "SequencePostResultListEntry"-callback. You can check the "Step.Result.Status". If it is failed, you can copy the stepname into a string-variable which builds your "string"
    b) In the end of your MainSequence, just browse your ResultList for every step which has Result.Status as failed. Copy all stepnames into your string.
    Both methods require your station to record results, but since this is defaultsetting, there shouldn't be a problem.
    hope this helps,
    Norbert B.
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Getting list of domain names on NT, and authenticating user

    Hello, I want to make an class that will check the user login name and password on a NT domain, the class will show a screen with 2 fields, username and password, and a combobox, with all domain names, on this screen the user will type his username and password and choose a domain to login to, the class will then check if he can login to that domain.
    Currently the problem I have is that I couldn�t find a way to get a list of domain names.
    And after I get that list, what is the best way to authenticate the user ?
    Thanks a lot in advance for any help.

    hi,
    you can ask for username, password by running this code:
    String auth = httpRequest.getHeader("Authorization");
    if (auth == null)
    httpResponse.setStatus(httpResponse.SC_UNAUTHORIZED);
    httpResponse.setHeader("WWW-Authenticate", "NTLM");
    httpResponse.flushBuffer();
    return;
    if (auth.startsWith("NTLM "))
    byte[] msg = new sun.misc.BASE64Decoder().decodeBuffer(auth.substring(5));
    int off = 0, length, offset;
    if (msg[8] == 1)
    byte z = 0;
    byte[] msg1 = {(byte)'N', (byte)'T', (byte)'L', (byte)'M', (byte)'S', (byte)'S', (byte)'P',
    z,(byte)2, z, z, z, z, z, z, z,(byte)40, z, z, z,
    (byte)1, (byte)130, z, z,z, (byte)2, (byte)2,
    (byte)2, z, z, z, z, z, z, z, z, z, z, z, z};
    httpResponse.setHeader("WWW-Authenticate", "NTLM " +
    new sun.misc.BASE64Encoder().encodeBuffer(msg1));
    httpResponse.sendError(httpResponse.SC_UNAUTHORIZED);
    return;
    else if (msg[8] == 3)
    off = 30;
    length = msg[off+17]*256 + msg[off+16];
    offset = msg[off+19]*256 + msg[off+18];
    String remoteHost = new String(msg, offset, length);
    length = msg[off+1]*256 + msg[off];
    offset = msg[off+3]*256 + msg[off+2];
    String domain = new String(msg, offset, length);
    length = msg[off+9]*256 + msg[off+8];
    offset = msg[off+11]*256 + msg[off+10];
    String username = new String(msg, offset, length);
    You can put this code in youe servlet or in a filter.
    I am also strucked with similar problem.
    With this code i am getting the window to enter loginId/password but i am not able to authenticate it.
    If you have found any solution to authenticate the user please help me.
    i am really strucked.
    thanks in advance
    Pamjoshua

  • REPORT for list of invoice with an order reason.

    Hi SAP Gurus !
    Is there any standard SAP report which will show me a list of invoice with an order reason field?
    I have tried VF05 and VF05n,but in both of them, order reason as a selection parameter field is missing.
    In case of any clarification kindly revert back to me.
    Regards,
    Ujjawal

    Thanks to all !
    Actually i was going  to create a query with VBRK and VBAK  tables but sales order number is not the common link as sales order number is present in VBAK table only.
    Apart from that i had tried to add VBRK and VBRP table then i was getting the list of invoice with order reasons (because order reason was getting copied from an order to invoice) ,but in this query i'm getting Order reason number with list of invoice only(Description of order reason is not coming).
    Please guide me for this if i'm wrong.
    Regards,
    Ujjawal

  • List of server names

    Is it possible to get a list of server names that Adobe uses for hosting Creative Cloud apps and services?
    I am stuck behind a whitelisting firewall and any domains I need to access have to be listed specifically.
    Thanks

    Well... this morning I tried it again and it worked, without my having to change anything!
    I then managed to get Edge Animate to install after simply retrying 20 times.
    It seems there was some problem with Adobe's servers but what else is new?

  • List of invoice

    is it possible in sap to get the list of invoices yet to receive from vendor, we have already done GR, but we have not yet received invoices in this case can we find the list of PO's for which invoice have not yet received

    Hi
    Try in t-cdoe ME2L
    Enter you vendor number and select parameter as follows
    selection parameter
    1) GUTSCHRIFT-invoice exit
    2) RECHNUNG-Open Invoice
    3) WE102-Goods Receipt Exit
    OR
    Try In MR11
    Regards
    Kailas Ugale

  • "File Path and Name" field not displaying correctly

    Post Author: DaveWoo
    CA Forum: General
    Hello,Here's my situation: I'm currently upgrading from Crystal Reports for Visual Studio .NET 2003 to Crystal Reports for Visual Studio 2005. I have several reports (programmatically generated using VB.NET) that use the "File Path and Name" special field. Now, in the old version of Crystal Reports (2003), the field properly displayed the original file path and name; however, in the new version (2005), the field displays as "C:\DOCUME1\Username\LOCALS1\Temp\Filename{F2459406-3719-4C8B-917C-4A7055A18C76}.tmp" - in other words, the location of the temporary .rpt file.How do I get the "File Path and Name" field to correctly display the path & name of the original file, like it did in the prior version?- Dave

    This is a known issue tracked under ADAPT0000962216. At this time I do not know when this will be resolved, however Service Pack 2 for CR 2008 is targeted to be released by September and this may contain the fix.
    Ludek

  • How to get a list of tables in an application

    In version 6.0 I could do a simple join on views CI_TABLE_DEFINITIONS and CI_APPLICATION_SYSTEMS to get a list of table names given the name of the application system. The requisite columns to perform the join aren't there anymore in version 6i. How does on accomplish this?

    Roger,
    The link between containers (Folders and Application Systems) and the objects they own is recorded in a different fashion in Designer 6i. There is a new view SDD_FOLDER_MEMBERS that contains this link. It is an intersection between the containers on the one hand and all other PAC objects on the other.
    The query you are after is now written as follows:
    select tbl.name
    , tbl.irid
    from ci_application_systems app
    , sdd_folder_members fm
    , ci_table_definitions tbl
    where app.name = 'APP NAME'
    and app.irid = fm.folder_reference
    and fm.member_object = tbl.irid
    order
    by tbl.name
    Note: if you do not set the workarea context before running this query, you will get rows returned for all versions of the Application System times all versions of the Tables owned by the Application System. You can set the workarea context by executing this statement before executing the query:
    begin
    jr_context.set_workarea('Workarea Name');
    end;

  • List of attribute names..

    Where can I get the list of attribute name to set in ctx_ddl.set_attribute command.
    null

    Please read the "CREATE_PREFERENCE" section on the reference guide.
    o.

Maybe you are looking for

  • Vendor Credit Limit

    Hi, In SAP is there anything similar to credit limits in SD on the MM Side for Vendors? E.g. We might have a credit limit with a Vendor to spend up to £5,000 so if payments havn't been cleared on the AP side we should get an error message which will

  • Apache version in OracleAS 10.1.3.1 (SOA?)

    Can anyone tell me what version of apache is embedded into OracleAS 10.1.3.1? It only shows up as Oracle-Application-Server-10g/10.1.3.0.0 Oracle-HTTP-Server Server at <hostname> Port <port> I am having a problem with it loading a third party DSO (na

  • Audio in Acrobat - embedded in each page, not as user triggered event?

    Hi, I'm an audio professional doing  voiceovers for a company.  The company wants to have audio that plays -  without a user trigger - on each page of the pdf training document. Possible using scripting or  not??   I'm using Acrobat Pro 8 on a mac. T

  • Can't get rid of itunes icon on desktop

    Already have iTunes showing on dock on bottom of display and now have iTunes icon on desktop display as well. Tried dragging it into trash but then I can't open iTunes from the dock without dragging desktop icon out of trash to and back to the deskto

  • OS_X upgrade makes applications crash

    I obeyed an Apple alert and installed 5 software upgrades yesterday. All seemed harmless. Now, however, I can't launch Microsoft Excel; I also had trouble using Firefox, until I reinstalled it. I use Excel for my work. What can I do to make it work a