Vendor Name is not coming in Studio

Hi,
  Vendor name as well as the name is not coming in the development studio. Rather it takes directly the sap.com as vendor name.
  I have created product, software components(with necessary dependencies). but still i am not getting it right.
  Can some one help me.
Thanks in advance,
Kumar

Hi Kumar,
1) Check if the Nameserver(SLD) is running as stated above,
2) Have you defined the "Namespace Prefix"
3) after doing all steps try after restarting the J2EE Engine.
also check your steps with the guide <b>"How to Get Started with the SAP NetWeaver Development Infrastructure"</b>, given at the following link,
Web Application Server How-to Guides for SAP NetWeaver 2004 [original link is broken] [original link is broken]
Hope above will help you,
Regards
Deepak

Similar Messages

  • The  vendor code is not coming against some Assignment line items with the

    Hi All,
    While executing  t.code FBL3N,the  vendor code is not coming against some Assignment line items with the GL A/C4607000, some line items it is coming.
    The GL A/c 4607000 is GR/IR clearing a/c.
    Please let us know  why this situation is happeing at the time of FBL3N.
    Thanks
    Ram

    HI,
    By activating the special fields you can the vendor number, but use the new reprot called "FAGLL03 - Display/Change Items (New) ".
    First go to SPRO> Financial Accounting (New)> General Ledger Accounting (New)--> Master Data > G/L Accounts>Line Items --> Define Special Fields for Line Item Display
    Click on New Entries -
    Table - BSEG - Field - LIFNR
    Save. Now execute the report - FAGLL03 - Display/Change Items (New)
    Give the gl account number and execute.
    After getting the line items list from menu select --Settings --> Special Fields --> Click on New Entries --> Enter Table BSEG, Field Name LIFNR.
    After this come back and execute again. It will give you the vendor number.
    Thanks & Regards,
    Shashi Kanth.

  • In excel sheet tab name is not coming-urgent

    hi all,
    one small rewquirement. if u run this test program it opens a excel sheet which contains signle tab. here tab name is not coming. i dont no hot to display tabname here.anybody can  make the changes and send me the code.
    i am sending my code below.
    thanks,
    maheedhar.t
    REPORT  ytestvij MESSAGE-ID zv.
    TABLES sscrfields.
    TYPE-POOLS: icon.
    TYPES : BEGIN OF zfnames_ds,
            reptext TYPE reptext,
            END OF zfnames_ds.
    TYPE-POOLS ole2 .
    DATA: wa_fntxt TYPE smp_dyntxt.
    DATA : wa_t75_booking TYPE zvt75_booking_h,
            t_t75_booking TYPE STANDARD TABLE OF zvt75_booking_h.
    DATA : wa_fields TYPE dfies,
            t_fields TYPE STANDARD TABLE OF dfies.
    DATA : wa_fnames TYPE zfnames_ds,
            t_fnames TYPE STANDARD TABLE OF zfnames_ds.
    handles for OLE objects
    DATA: h_excel TYPE ole2_object,        " Excel object
          h_mapl TYPE ole2_object,         " list of workbooks
          h_map TYPE ole2_object,          " workbook
          h_zl TYPE ole2_object,           " cell
          h_f TYPE ole2_object.            " font
    DATA  h TYPE i.
    DATA : lin TYPE i.
    data: excel       type ole2_object,
          application type ole2_object,
          books       type ole2_object,
          book        type ole2_object,
          sheet       type ole2_object,
          cell        type ole2_object,
          column      type ole2_object.
    PARAMETERS : p_input TYPE localfile.
    Add button to application toolbar
    SELECTION-SCREEN FUNCTION KEY 1.  "Will have a function code of 'FC01'
    INITIALIZATION.
    Add displayed text string to buttons
      wa_fntxt-icon_id = icon_xls.
      wa_fntxt-icon_text = 'Input File template'.
      wa_fntxt-quickinfo = 'T75 Header Data'.
      sscrfields-functxt_01 = wa_fntxt.
    AT SELECTION-SCREEN.
      IF sscrfields-ucomm = 'FC01'.
    do nothing
        PERFORM open_excel.
      ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_input.
      PERFORM get_filename USING p_input.
    START-OF-SELECTION.
    *set pf-status 'ONE'.
    END-OF-SELECTION.
      WRITE : lin.
    *&      Form  GET_FILENAME
          text
    -->  p1        text
    <--  p2        text
    FORM get_filename USING p_file TYPE rlgrap-filename . "localfile.
      DATA : w_rc TYPE i.
      DATA : wa_file_table TYPE file_table ,
              t_file_table TYPE STANDARD TABLE OF file_table.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
       EXPORTING
         WINDOW_TITLE            =
         DEFAULT_EXTENSION       =
         DEFAULT_FILENAME        =
         FILE_FILTER             =
         INITIAL_DIRECTORY       =
         MULTISELECTION          =
        CHANGING
          file_table              = t_file_table[]
          rc                      = w_rc
         USER_ACTION             =
        EXCEPTIONS
          file_open_dialog_failed = 1
          cntl_error              = 2
          error_no_gui            = 3
          OTHERS                  = 4
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT t_file_table INTO wa_file_table.
        p_file = wa_file_table-filename.
      ENDLOOP.
    ENDFORM.                    " GET_FILENAME
    *&      Form  open_excel
          text
    -->  p1        text
    <--  p2        text
    FORM open_excel.
    SELECT * FROM ZVT75_BOOKING_H
              INTO TABLE t_t75_booking
              UP TO 10 ROWS.
    start Excel
      CREATE OBJECT h_excel 'EXCEL.APPLICATION'.
      PERFORM err_hdl.
      SET PROPERTY OF h_excel  'Visible' = 1.
      PERFORM err_hdl.
    get list of workbooks, initially empty
      CALL METHOD OF h_excel 'Workbooks' = h_mapl.
      PERFORM err_hdl.
    add a new workbook
      CALL METHOD OF h_mapl 'Add' = h_map.
      PERFORM err_hdl.
    output column headings to active Excel sheet
      PERFORM fill_cell USING 1 1 1 'Financial year'.
      PERFORM fill_cell USING 1 2 1 'Financial quarter'.
      PERFORM fill_cell USING 1 3 1 'Customer number'.
      PERFORM fill_cell USING 1 4 1 'Booking Year'.
      PERFORM fill_cell USING 1 5 1 'Financial quarter'.
      PERFORM fill_cell USING 1 6 1 'Contract type'.
      PERFORM fill_cell USING 1 7 1 'Sub Contract type'.
      PERFORM fill_cell USING 1 8 1 'Customer purchase order number'.
      PERFORM fill_cell USING 1 9 1 'Booking Amount'.
      PERFORM fill_cell USING 1 10 1 'Currency Key'.
    LOOP AT t_t75_booking into wa_t75_booking.
    copy items to active EXCEL sheet
       H = SY-TABIX + 1.
       PERFORM FILL_CELL USING H 1 0 wa_t75_booking-BOOKYEAR.
       PERFORM FILL_CELL USING H 2 0 wa_t75_booking-BOOKQTR.
       PERFORM FILL_CELL USING H 3 0 wa_t75_booking-.
       PERFORM FILL_CELL USING H 4 0 wa_t75_booking-BOOKYEAR.
       PERFORM FILL_CELL USING H 5 0 wa_t75_booking-BOOKQTR.
    ENDLOOP.
    disconnect from Excel
      FREE OBJECT h_excel.
      PERFORM err_hdl.
    ENDFORM.                    " open_excel
    *&      Form  ERR_HDL
          outputs OLE error if any                                       *
    -->  p1        text
    <--  p2        text
    FORM err_hdl.
    data test type sy-subrc.
    test = sy-subrc.
      IF test <> 0.
         Message e000(ZV) with 'Error in OLE-Automation:'.
        STOP.
      ENDIF.
    ENDFORM.                    " ERR_HDL
          FORM FILL_CELL                                                *
          sets cell at coordinates i,j to value val boldtype bold       *
    FORM fill_cell USING i j bold val.
      CALL METHOD OF h_excel 'Cells' = h_zl EXPORTING #1 = i #2 = j.
      set property of sheet 'Name'  = 'T75'.
      PERFORM err_hdl.
      SET PROPERTY OF h_zl 'Value' = val .
      PERFORM err_hdl.
      GET PROPERTY OF h_zl 'Font' = h_f.
      PERFORM err_hdl.
      SET PROPERTY OF h_f 'Bold' = bold .
      PERFORM err_hdl.
    ENDFORM.

    Hi,
    Look at the below thread, i posted complete code in this one, just copy that Program and past in your SAP and run the Program, it will create 3 sheets with the names also, then look at the Sheet name in the code, you will understand where to add the code
    Re: format an excel
    Regards
    Sudheer

  • System Name is not coming

    Hi,
    I have created a new technical system in SLD. Now while I am creating a JCO connection for Metadata System Name is not coming.
    Message Server   : New technical System name is coming here
    System Name      : Its coming blank(It should have SID value)
    Logon Group      : Blank
    Regards,
    Prakash Jha

    Hi,
      please Configure the SLD Data Supplier in Visual Administrator.
    Refer http://help.sap.com/saphelp_nw04/helpdata/en/ea/cd2e807e0e45bf9da67354f452fc05/content.htm
    Hope that helps.
    Regards,
    S.Divakar

  • Vendor Evaluation tab not coming in Service Entry sheet.

    Please guide me to get the vendor eval tab in Service entry sheet creation and also provide the what are the transaction code to be used.
    How to run the back ground job.
    In Vendor evaluation each and every vendor need to be maintained the scores?
    Regards,
    Hanuman.

    Hi,
    T.code: ML81N below mentioned tabs are coming.
    1. Basic Data
    2. Accept data
    3. Value
    4. Long txt.
    5. History.
    Vendor Evaluation tab not coming
    Regards,
    Hanuman

  • Queries inactive in Production Technical name is not coming After Transport

    Hi Folks,
    i transported queries with role into production .
    There queries are coming without their technical name means b'coze its related data-target was not active but now its active even then queries are not coming with their technical name.
    So can we do any manual activation in production or should i go for re-import the same req again into production.
    Plz Suggest me

    Hi Rajan,
    You can do manual activation in production and you can change the technical names of your queries in production.
    Thanks and Kind Regards,
    Lakshman Kumar Ghattamaneni

  • Vendor Name FBL3N Not appear

    Hi Friends,
    I have done the configure for display vendor code, name in FBL3N but when i select changlayout system is not showing vendor? Please advice.
    Configured in system Table  BSEG   Field Name LIFNR.
    Regards,
    Pankaj

    You Can not get Vendor Name in FBL3N , for this You can use transaction Code KSB1 by putting gl range for the particular Period , After Executed you can Select Offsetting account thru Layout.
    Here you can get Vendor Code for each expenses booked or other offsetting account like Provision for Expenses / Prepaid Expense etc.
    Then thru LFA1 table you can get Vendor Name.
    I hope this will help solve your problem
    Reg
    Umesh

  • Vendor account details not coming in MKVZ

    I Created one vendor account through transaction Fk01, but when i go to transaction MKVZ to see all details of vendor created by me , it shows the vendor name in F4 help, but does not show me any details.
    Can anybody please tell me whats the problem.

    Hi,
    U will get list of vendor created centraly ie xk01 by linking MM ie field like tick gr based invoice verification etc. U will find it in MKVZ
    Otherwise if u r creted with tcode fk01 it should be extended to MM then only u will able to see it in MKVZ.
    Regards
    Pari

  • Category names are not coming in Gantt chart

    Hi all
    I have a Gantt chart where I am displaying customer name in category axis. But instead of coming those names I am getting category1,category2.. in category axis.Please help.
    Regards
    Sunit

    Hi,
        I think for 4.6 C <fn> must be declared as an internal table and the field names should be given as records and not as one single record.
       the fieldnames internal table should contain records as :
       Field1
       Field2 ....  and not as Field1 Field2 ....
    Regards,
    Srini.

  • Field names are not coming in file when dloaded frm apserv to prserv

    Here i'm dloading data to Appserver..frm there data is dloading to pre server..but fieldnames are downloading...i am working in 4.6c version.same code is working in ECC version...Plzz give me a suggestion...
    FORM dload_file_from_server  USING     p_srfname            "#EC *
                                           p_fname              "#EC *
                                           p_psfile             "#EC *
                                           p_flag.
      DATA: lv_fname TYPE string.
      CASE p_flag.
        WHEN 'MSEG'.
          ASSIGN it_fn TO <fn>.
          ASSIGN wa_fn TO <fn_wa>.
          ASSIGN it1_mseg TO <fs>.
          ASSIGN wa1_mseg TO <fs_wa>.
          ASSIGN p_srfname TO <fs_fname>.
          CONCATENATE p_psfile p_fname INTO lv_fname SEPARATED BY '\'.
        WHEN 'MKPF'.
          ASSIGN it_fn TO <fn>.
          ASSIGN wa_fn TO <fn_wa>.
          ASSIGN it1_mkpf TO <fs>.
          ASSIGN wa1_mkpf TO <fs_wa>.
          ASSIGN p_srfname TO <fs_fname>.
          CONCATENATE p_psfile p_fname INTO lv_fname SEPARATED BY '\'.
         WHEN OTHERS.
      ENDCASE.
      OPEN DATASET <fs_fname> FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      READ DATASET  <fs_fname> INTO <fn_wa>.
      APPEND <fn_wa> TO <fn>.
      DO.
        IF sy-tabix GE 1.
          READ DATASET <fs_fname> INTO <fs_wa>.
          IF sy-subrc = 0.
            APPEND <fs_wa> TO <fs>.
          ELSE.
            EXIT.
          ENDIF.
        ENDIF.
      ENDDO.
      CLOSE DATASET <fs_fname>.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                  = lv_fname
          filetype                  = 'ASC'
          trunc_trailing_blanks     = 'X'
          trunc_trailing_blanks_eol = 'X'
        TABLES
          data_tab                  = <fs>
          fieldnames                = <fn>.
      IF sy-subrc <> 0.                                         "#EC
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CLEAR: <fn>, <fn_wa>.
    ENDFORM.                    " dload_file_from_server
    Please use code tags - it makes your code easier to read
    Edited by: Rob Burbank on Dec 6, 2010 4:00 PM

    Hi,
        I think for 4.6 C <fn> must be declared as an internal table and the field names should be given as records and not as one single record.
       the fieldnames internal table should contain records as :
       Field1
       Field2 ....  and not as Field1 Field2 ....
    Regards,
    Srini.

  • Skill Group Name is not coming on Cisco CTI Tool Kit real time status

    Hi,
    I have UCCE 9.0.3 in my environment but when supervisor is monitoring agent state on CTI Toolkit Team Real Time Status we are not able to see Skill Group name.
    For your reference I have enclosed screen shot of that.

    Hi,
    first, read this document: Recommended Tracing Levels for Troubleshooting IPCC Issues. Apply the recommended trace levels to the following services:
    CTI OS Server
    CTI Server
    But first take note of the original values (so you can switch back to normal tracing).
    Dump the logs for both the above services: How to Use the Dumplog Utility.
    For instance: dumplog ctisvr /hr 1 /of c:\temp\ctisvr.log
    Post the logs to here.
    G.

  • Change Vendor Name in SRM

    Can any one tell me how to change the Vendor Name in SRM which is getting replicated from ECC where the name has been change to the new vendor. The new Vendor name is not coming over in the replication from ECC (5.0). Reason for vendor change is that the old vendor was purchased by another vendor.

    Our common reasons for Vendors not transferring from ERP to SRM using TCode BBPUPDVD or BBPGETVD are.
    1. Vendor does not exist in ERP
    2. Vendors email address is faulty
    As stated previously SLG1 log usually reveal the problem.
    We also have a problem with the scheduled Vendor Sync job that runs each night failing to import new vendors, even though the spro config has been set to include new vendors. 
    I suspect that the Vendor Sync job my be stopping as soon as it finds a faulty email address and we do have a few hundred of these lurking in our ERP system.  I plan to investigate, when I get time, but if anyone else has this problem I would like to here of your experiences?
    Hope this helps
    Allen

  • Partner role- Goods supplier name not coming in MIGO

    Hi,
    While configuring partner roles i did all settings ...in PO i am giving my goods supplier name in partner tab ...now when i am doing MIGO that supplier name is not coming in the screen..
    What can be the reason?
    Utsav

    Hi,
    Re:
    What else to check? Are you using partner role GS for your goods supplier? Has the GS vendor master the name of the goods supplier in Name 1 field?
    Yes i am using partner role in goods suppler....
    Yes  the GS vendor master the name of the goods supplier in Name 1 field..
    I created 1 venodr  Main Vendor V1 through XK01..
    I created another vendor as Goods Supplier V2 through XK01..
    Now i went in XK02, in Vendor V1 under partner roles, i mentioned Goods Supplier as V2...
    Now i am creating PO against main  Vendor  V1...Under partner tab Goods supplier V2 is coming from Vendor master..That is correct...
    Now when i am doing GRN for above PO, there i am not getting my Goods supplier name...
    Utsav

  • Offset account name not coming in G/L printout

    Hi,
    We have SBO 2005B PL25
    in the G/L printout the offset acount code is coming through systm variable 74 but the acount name is not coming even after using system variable 415 please help with a workaround as we urgntly need the printed cash books
    regards
    Edited by: Philip Eller on Jul 7, 2008 9:25 AM

    Pradipta Dasgupta,
    You can print offset account name using
    system variable no.415 using subsidary account option and
    then select template
    'General Ledger by posting date(system)'.
    I checked it offset account name appears in print preview.
    Jeyakanthan

  • Vendor names instead of vendor number in J1INMIS

    J1INMIS report-Company & Non Company details & Vendors Name is not available but vendor number  is available in Report.
    how do i get the names in the report instead of the vendor numbers
    warm regards
    Manjunath

    hai,
    Dont use j1inmis... Once u run j1inqefile,you will get an output where also you can
    see all the required info...
    Try to make use of that....
    J1inmis.. is very old
    Raghav

Maybe you are looking for