How to get the VENDOR NAME in the report s-ME80FN,MB51

Dear friends,
In many sap standard reports we are getting the vendor no. or material no. etc., What to do if we want vendor name in the reports ME80FN AND MB51?
bye
TS

Hi Guys,
Go for enhancement of RM07DOCS......
add new variable as shown below,
DATA: BEGIN OF list OCCURS 0.
         INCLUDE STRUCTURE itab.
DATA: maktx LIKE makt-maktx,
       name1 LIKE t001w-name1,
       btext LIKE t156t-btext,
       pspid LIKE prps-posid,
       vornr TYPE vornr,                                     "215929
       color_line(03)       TYPE c,                          "n555
       color TYPE slis_t_specialcol_alv,
*{   INSERT         IDEK900044                                        1
    vd_name1 type name1_gp,
Also add the variable if required.
Then go for Deatil_list and add the further coding.....
Problem get resolved......

Similar Messages

  • How to get a server name through the load balancer

    Hi.
    I'd like to get the server name where is my application installed. There are some servers and clients access there throuth the load balancer. When I try to get it with request.getServerName(), I get the virtual address of the load balancer.
    Any suggestions?
    Thanks.

    Dear Sikindar;
    THanks for your cooperation, but I believe that these Tcodes will eb helpful if I know the table name, actually we don't know its name and that's what I'm asking about, how can I get the table name for the ABAPer?
    Appreciating your cooperation.
    Best Regards;
    Lobna

  • How to get ther servlet name from the Httprequest / servletContext

    Hi,
    How can I get the servlet name from the Http Request / Servlet conext?
    Arthik

    I have a requirement to call the business logic either in local server / external server.
    Local / External server
    The original / main request is made to the server from the client and from the server if the main request requires some resource (second request from server side) available in the external server then I need to make a URL connection. If the requested resource is the local resource then I need to by-pass the HTTP call. So I need to verify the server name , port with the originally requested server.Then I need to check if the request servelt is available in local or not.
    Can you please help me.

  • How to get value and name of the n'th parameter in a pl/sql funct./proced.

    procedure test(name varchar2, birthdate date, zip number, country varchar2);
    in procedure x I do
    test('Michael Postmann', to_date('03.01.1983', 'DD.MM.YYYY'), 7461, 'AUSTRIA');
    And this should htp.print the following:
    test: name=Michael Postmann,birthdate=1983/01/03,zip=7461,country=AUSTRIA
    In procedure test I want to know:
    *) What is the name of myself (the procedure)
    *) Optionally: Am I a procedure or a function?
    *) How many Parameters do I have?
    *) What are the values of them?
    *) What are the names of them?
    *) Optionally: What are the types of them?
    What I actually want to do is:
    I have a procedure for logging errors. So in my program I call this function frequently and I want it to log the current time, a string passed to the logging function, the client's ip, etc.... but it should also log a list of the parametrs and values of the procedure/function where the error occoured.
    Is there any way to do this (I think in C this is done by argc and argv, but a string containing all the information (as you get it from the WebDb when something goes wrong) would be enough)?
    Thx in advance,
    Nomike aka Michael Postmann

    Name of procedure or function can be retrieved using DBMS_UTILITY.FORMAT_CALL_STACK:
    CREATE OR REPLACE FUNCTION fn_whoami (v_in varchar2)
    RETURN varchar2
    AS
    v_stack varchar2(1000) DEFAULT DBMS_UTILITY.FORMAT_CALL_STACK;
    v_job varchar2(500);
    v_name varchar2(100);
    BEGIN
    v_job := SUBSTR(v_stack,INSTR(v_stack,'function'),256);
    v_name := SUBSTR(v_job,1,INSTR(v_job,CHR(10))-1);
    return v_name;
    END fn_whoami;
    select fn_whoami('1') from dual;
    CREATE OR REPLACE PROCEDURE pr_whoami
    AS
    v_stack varchar2(1000) DEFAULT DBMS_UTILITY.FORMAT_CALL_STACK;
    v_job varchar2(500);
    v_name varchar2(100);
    BEGIN
    v_job := SUBSTR(v_stack,INSTR(v_stack,'procedure'),256);
    v_name := SUBSTR(v_job,1,INSTR(v_job,CHR(10))-1);
    dbms_output.put_line(v_name);
    END pr_whoami;
    exec pr_whoami;

  • How to get Database Vendor Name or Database Type...

    Hello,
    Is it possible to get the vendor or database from jdbc connection?
    Or maybe from the loaded Driver Class...
    The classpath and the jdbcurl seems not to be the right way
    Greetings & Thanks
    Peter

    void printDBInfo(Connection con) {
       try {
          DatabaseMetaData conMD = con.getMetaData();
          System.out.println("Driver Name: " + conMD.getDriverName());
          System.out.println("Driver Version: " + conMD.getDriverVersion());
          System.out.println("Database Name: " + conMD.getDatabaseProductName());
          System.out.println("Database Version: " + conMD.getDatabaseMajorVersion());
       } catch (Exception ex) {
          ex.printStackTrace();
    }

  • Vendor name in the Journal entry PLD

    Hi all,
    I want to print the vendor name in the journal entry pld, what is happening is i have taken the Table as GL Account and the Column as Account Name, it is getting me the control account, but i dont want  control account i want the name of the vendor to be printed.
    And i have checked the system journal entry pld in that the name of the vendor name is printing correctly it has taken table as Journal entry rows and the Column as Bp/Account code i am also taking the same but it is not fetching me the name of the vendor,it is only fetchig the account code. So let me know how to resolve this issue.

    Solved by Myself

  • Including Vendor Name in Standard report 'MB51' transaction

    Hi Friends,
    I have a requirement of Displaying the Vendor Name in the standard report 'MB51', after the vendor No.
    I checked the report and it is really confusing ..... ( i ve seen something like when i double click the document number it is going to 'Display material Document - 147404608' something !! ........
    I want the same report with vendor name included ... is that possible ????
    One more doubt .... i actually copied the Program 'RM07DOCS' with the includes to a name 'ZRM07DOCS' but when i execute with plant '0020' iam getting an error 'Selection was not restricted' though iam not getting the error when i give the same selection criteria in the Standard report....
    Expecting ur replies :-|
    Thanks in advance
    Cheers,
    R.Kripa.

    Hi,
    I did similar requirement but in my case the tr code was mb5b but anyway approach would be same ,please check steps below.
    1) Copy standard report to a Zreport. copy everything including includes , texts etc.
    2) Now put a break point at REUSE_ALV_LIST_DISPLAY , it might be possible that its used multiple times. so just cross check which list display is showing results.comment out this REUSE_ALV_LIST_DISPLAY.
    3) Now say you have to add 2 extra fields to report.define you own internal table with all the fields you needed.move the final internal table to your internal table.
    4) build your own field catalog for your internal table.
    4) using select queries fetch field values of those 2 extra fields for each record.and then use resue_alv_list_display  or resue_alv_grid_display in place of original list_display. pass fieldcatalog and your final internal table to it so as to get output desired.

  • How to get the specific name of the workset which is currently selected by the user in sap portal 7.0

    Dear Expert,
    I have one requirement like to read the selected workset name in portal by the current user.I have read two documents regarding how to retrieve the PCD contents (iViews, Pages, Worksets and Roles) and its properties like Created by, Changed by, Last changed by and others using PCD API.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/6112ecb7-0a01-0010-ef90-941c70c9e401?overridelayout=true
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/508baf88-9335-2d10-efa6-c6ad61e5fc4b?quicklink=index&overridelayout=true
    But I am not able to understand how to get the specific name of the workset which is currently selected by the user.Can you please help me.
    I am using portal 7.0.
    Thanks & Regards,
    Patralekha

    Hi Expert,
    I found that we can use Interface INavigationHelperService to read Portal Role selected by user at runtime from http://scn.sap.com/thread/52194
    But this class is available in SAP NetWeaver 7.30 Enterprise Portal .
    But in SAP NetWeaver 7.0 Enterprise Portal that interface is not available.
    INavigationService is available there.
    But didn't get any proper discussion on this interface for the same requirement.
    Can you please help me.
    Thanks & Regards,
    Patralekha

  • For some artists in my Music app on my I-phone, the songs do not appear when I search by the artist.  However, if I search the album name, all the songs show.  How do I get the songs to show under songs?

    For some artists in my Music app on my I-phone, the songs do not appear when I search by the artist.  However, if I search the album name, all the songs show.  How do I get the songs to show under songs?

    Hi Spam_Valley,
    I understand that you are having issues with your music displaying correctly. This may be an issues with the metadata stored within that song, and iTunes interpretation of that info.
    We may need to repair this. See the following resources for information:
    iTunes 10 for Windows: If song titles don’t appear correctly
    http://support.apple.com/kb/PH1468
    Fixing Incorrect Song or Album Listings in iTunes
    http://support.apple.com/kb/TA24677
    Thanks,
    Matt M.

  • How to get the column names of the table into the Dashboard prompt

    how to get the column names of the table into the Dashboard prompt
    Thanks & Regards
    Kishore P

    Hey john,
    My requirement is as follows
    I have created a Rank for Total sales by Region wise i.e RANK(SUM(Dollars By Region)) in a pivot table.
    My pivot table looks like this
    COLUMN SELECTOR: TOTAL US , REGION , DISTRICT , MARKET
    ---------------------------------------------------- JAN 2009          FEB 2009        MAR 2009
    RANK              REGION                  DOLLARS           DOLLARS        DOLLARS DOLLARS
    1 CENTRAL 10 20 30 40
    2 SOUTHERN 10 30 30 70
    3 EASTERN 20 20 20 60
    4 WESTERN 10 20 30 40
    When i select the District in column selector
    Report has to display rank based on Total Sales by District. i.e
    ------------------------------------------------- JAN 2009         FEB 2009       MAR 2009
    RANK             DISTRICT              DOLLARS           DOLLARS        DOLLARS DOLLARS
    for this i need to change the fx of rank i.e RANK(SUM(Dollars By Region)) to RANK(SUM(Dollars By District)) and fx of Region i.e Markets.Region to Markets.District dynamically.
    so , i need to capture column name of the value selected from the column selector and dynamically i need to update the fx 0f RANK & fx of region.
    do you have any solution for this?
    http://rapidshare.com/files/402337112/Presentation1.jpg.html
    Thanks & Regards
    Edited by: Kishore P on Jun 24, 2010 7:24 PM
    Edited by: Kishore P on Jun 24, 2010 7:28 PM

  • How to unblock the payment to the vendor , even though the lot will be get

    Hi,
    we receive the material from vendor . when store people unloaded, it was get broken.
    so quality will reject the lot for the reason. but if we reject vendor will not get the payment
    since this is not the vendor mistake. he expect for the payment.
    how to unblock the payment to the vendor , even though the lot will be get reject .

    Hi
    Can you not make UD code as Partially accepted.
    Put OK material in Unrestricted
    For NOT oK material put into block stock.
    From Block stock you can move to QRNT (Quarantine storage Location - 311 mvt type) or directly move to Unrestricted(mvt type 343)
    Form here you can move material to Scrap by 551
    This will give payment to vendor & Qty can be scrapped.

  • Previously Firefox would show a number at the end of the file name (renaming the file by adding a number) showing that I had already downloaded a file at least once before. Recently that isn't happening. How do I get that feature back?

    When downloading, previously Firefox would show a number at the end of the file name (renaming the file by adding a number) showing that I had already downloaded a file at least once. Now that isn't happening. How do I get that feature back?

    When downloading, previously Firefox would show a number at the end of the file name (renaming the file by adding a number) showing that I had already downloaded a file at least once. Now that isn't happening. How do I get that feature back?

  • How to get the display name of the dropdownlist?

    How can i get the display name of the dropdownlist.
    I want to have value as other data not the same as display name.
    In that case is there any easy way to get the display name of the selection from the dropdownlist.

    I usually just use a hashmap to store the value and label, if I want to retrieve the label again later.
              HashMap bleh = new HashMap();
              bleh.put(dropDownValue, "Drop Down Label"); //Item value (any object), Item Label (String)
              Iterator it = bleh.keySet().iterator();
              while (it.hasNext()) {
                   Object key = it.next();
                   SelectItem selectItem = new SelectItem(key, bleh.get(key));
              //And then later, when you want to retrieve the label
              bleh.get(itemValue); //The item value of the label you wantThe value is easy to get because the selected item(s) from the list will be set to the value(s) the user selected. You should have a getter in your bean for that.
    CowKing
    Message was edited by:
    IamCowKing

  • How to get the full name of the Account Owner?

    Hi,
    I would like to ask if there's a way to display the full name of the Account Owner in a report where the subject area is Opportunity? Currently, the Username (under Owned By User) which displays the full name is equal to the Opportunity Owner.
    Thanks,
    Teena

    Hi Cameron,
    Thanks again.
    Currently, I have a report under Opportunity history where the following fields are being shown:
    - Account's Country
    - Opportunity Owner (Owned By User - gives me the full name)
    - Account Name
    - Opportunity Name
    - Metrics field (Revenue, Volume. etc.)
    - Close Date
    - some custom fields
    The users want to see the Account Owner so I added this field but it's showing the owner's alias. My question is, in using the "Combine with Similar Analysis", can I display all the values retrieved by the Opportunity report and get the value of 'Owned By User' in the Account report?
    I have tried combining the two reports but the values are derived from the driving report which is Opportunity. How can I get the value/format of the field in the Account report?
    Teena

  • How to get the owner name for the file in ftp using abap ?

    Hi folks ,
    How to get the owner name for the file in ftp using abap ? please help me very ugernt . I tried with all standard FTP commands
    but doest work out me . Helping in this regard highly appreciated ...
    Thanks and regards,
    Swarupa Vanarchi

    Hi
    dont you  have used the os user while calling the FTP_CONNECT FM?
    Hope you are not talking about the user executing the FTP program.
    Else If you are talking about the FTP file creator then its not related to abap as you can handle it by maintaining the user in file name itself.
    May be i am going too far with if and elses here as your question possesses no  clarity.
    Plz elaborate your requirement  before anybody can help.
    Regards
    sateesh

Maybe you are looking for

  • Click Save on Toolbar Freezes Acrobat 9.5.2

    Hi, I have Adobe Acrobat 9.5.2 on Windows 7 x64. It recently updated automatically. Since then, I've had several problems. One is that if I click Save (or Typewriter) icon on the tool bar, Acrobat freezes and I have to shut it down. Can anyone explai

  • IOS 8.2 and Airplay doesn't work

    iOS 8.1 never had any issues with Airplay. I connect to a Airport Express (2nd Gen-7.6.4) that had the mini jack (2.5mm) that I run to my mixer to play break and intermission music at gigs.  Now it doesn't work at all since updating to iOS 8.2 which

  • Error while configuring iscsi client node using udev for RAC on linux

    Hi All, I am setting up iSCSI on Oracle Enterprise Linux referring the document "+Build Your Own Oracle RAC Cluster on Oracle Enterprise Linux and iSCSI+" posted on OTN by Jeffrey Hunter. After configuring the iscsi service on iscsi client node, the

  • Change with info type screen 2002.

    Hi All I want to change infotype screen 2002 subtype 1200 (over time hours paid), need to add a field P2002-PREAS. the same thing should work for List entry for multiple entires. Any idea how can I modify this. rgds Anup

  • Realms with different top-level domain

    I'm testing OCS 10.1.2 and I am interested in setting up multiple realms. Must all realms be in the same top-level domain? I see in the examples (like in Note Note:317434.1) names like this: - Default realm created at install: dc=us,dc=oracle,dc=com