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

Similar Messages

  • Technical names of column shown after POWL_D01

    Hi
    After we have executed POWL_D01 all column for the Queries are shown with technical names.
    After first load the column description comes correctly in.
    Does anyone know a report or somehow we can update this before the business user takes in use?
    We cannot use POWL_WLOAD because query does not exist yet after POWL_D01.
    BS
    Henrik

    I suspect this is due to some memory residue for the metadata. I'd suggest that you try to run transaction SHMM to clear the memory area or run report /SAPSRM/PDO_META_INVALID_CONF for the same purpose. Then check to see if you can see proper column descriptions.

  • 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 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

  • 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

  • Cancelling the GR the excise item tab is not coming after flagging the OK

    Hi SAP Experts,
    there is one subcon PO for excisable material for depot, after its GR it have been posted from j1iex.
    Now there is a requirement to cancel the excise posting for which first of all its GRN should be cancel.
    But while cancelling the GR the excise item tab is not coming after flagging the OK.
    This problem is there only for the depot, for other plant Im able to cancel for subcon PO.
    Thanks & Regards,
    Anisha Sinha

    still not cleared

  • Jdev 11g Production: Connection Name FOD Not Defined (Tutorial: ADF Visuali

    I tried out the following tutorial: ADF Visualization Components. I follow the step by step to install Jdev 11g and the FOD schemas. The step by step tutorial is helpful but ran into a problem in the beginning when I tried to run the FOD Module as stated. The following message came up when I right click the FODModule and select run, "Connection Name FOD Not Defined". I have created the connection as stated in the tutorial and can access the FOD database and see the tables.
    I search the form and I don't see anyone else running into the same problem. Can any help me out.

    Hi,
    try the following: Select the model project and expand it until you see the ApplicationModule. Right click the module and choose "configure" from the context menu. Then "edit". Set the database connection to JEE data source. Rin the app again
    Frank

  • Technical Name is not displayed on the hierarchy

    Hi,
    While diplaying the hierarchy on the web interface for a particular node only description is visible. We want to display the text as well as the technical name of the node.
    Is it possible to display the technical names of hierarchy nodes in the variablescreen of a webapplication in BW 3.x?
    Regards,
    Anita

    Firstly check no UI elements are hidden via Personalization (Ctrl and Right Mouse button) on user level or in the PCD preview at administrator level
    Secondly check you are operating a recommend SP landscape
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/profile/marcio+leoni
    --->HOW TO GET RID OF SP STACK MISMATCH ISSUES
    Next check that none of the fields are marked as unused in V_T588M, V_T588MFPROPS,  V_T588MFPROPC
    Hope this helps
    Stuart

  • Contact name does not appear after upgrading to iOS 5

    I recently upgraded to iOS 5 and after doing so, contact name does not appear when someone calls; but text messages the name appears. I have saved all my contacts under +9 format. 

    This indicates that the phone was carrier locked and had been 'hacked' to unlock it. Updating the phone has re-locked it to the original carrier.
    ONLY the carrier it is locked to can authorize unlocking it. Not all do so. Contact the carrier and find out what their policy is.
    If it's locked to AT&T, you may as well sell it and buy a new phone. AT&T will not unlock iPhones for any reason.

  • Production Order reservation(ETO) not deleting after PGI (VL01N)

    Hi All,
    Greetings!!!
    A query, regarding ETO (Project system)
    ETO scenario, For production, reservation will be create through WBS element. After production , If I do delivery and PGI,  production order reservation is not deleting.
    Same material If I do delivery(LP) through CNS0, then order reservation is going to delete after PGI. But Sales order price is not copying to Billing If I follow this process.
    Is there any copy controls to flow the sales price to billing when delivery happens through CNS0. If not
    Which requirement class and movement type I need to determine in Sales order.
    Please do needful.
    Very High,
    Thanks,
    Prasad.

    This is standard SAP
    SAP process is to deliver project stock using project delivery , where in PGI happens against the reservation created & deletes RESERVATION.
    wherein if you do PGI for order ( sale order or prod order ) , it happens against project stock ( spe stk Q - 281 movement )  i.e., against WBS element
    I faced the same for sale order delivery of project stock .
    we are selecting FINAL Issue indicator through user exit which triggers when PGI is clicked
    This will delete RESERVATION from stock overview
    hope this helps ...Let me know if you found any alternative

  • Web template with HTML framset not working after transport

    Hi,
    I've built a frameset which consists of two web-templates (role-menu and content area) those two are combined together using plain HTML which does not acontain any web items (uploaded via WAD). This works fine in development. After transporting to our QA environment all the templates have been transported with concode 0, but the frameset does not get loaded. I always get an "Error loading template ...". The two templates which contain web items work fine when used stand-alone.
    When looking in transport connection I see the following message:
    "Object ZWF_WEB_FRAMESET (Web Template Name) could not be collected for object ()"
    I also see the same behavior on another transport of a template. Nine out of ten ar fine, but one, all are exact copies - only the query used is different, does not work either. The query that is used has been transported and is working.
    Has anybody an idea what could cause this?
    Is there a way to regenerate templates (like RSRT for queries) ?
    Thanks in advance
    Bernd Dümmel
    KODAK Stuttgart
      using ve created a

    Did you upload the video?
    Did you provide the correct path to your HTML object?

  • Query not opening after transport

    Hi All,
    I transported Query to production but it is not open in production.But same query is  working fine in Dev and QA.In Prduction it is givng eror like this.
    Diagnosis
    InfoProvider ICSALES does not contain characteristic ZBPTEST. The exception aggregation for key figure ZBP_CNTSUMCNT can therefore not be applied.
    System Response
    The key figure will therefore be aggregated using all characteristics of ICSALES with the generic aggregation SUM.
    Diagnosis
    Characteristic Industry (Revenue co was not found in InfoProvider .
    Procedure
    Before you can delete an InfoObject from an InfoProvider, you must change all the queries that use this InfoObject. Therefore you have to delete the relevant InfoObject from these queries.
    Query is still using an InfoObject like this.
    System Response
    Procedure
    To change the query, put the InfoObject back in the InfoCube, adjust the query and then remove the InfoObject from the query again.
    Procedure for System Administration
    But INdustry Object is there in Cube.
    HOw can i solve this problem.

    Hello chang bw,
    for your error status:
    Diagnosis
    InfoProvider ICSALES does not contain characteristic ZBPTEST. The exception aggregation for key figure ZBP_CNTSUMCNT can therefore not be applied.
    This InfoProvider ICSALES has a characteristic called ZBPTEST in DEV and QA but it's not in PROD that's why the system is complaining.
    Compare the InfoCube between PROD and QA and DEV and make the necessary adjustments to the InfoCube in PROD (by transport) to be like the InfoCube in QA and DEV.
    Then retransport your query again. It should be working just like QA and DEV again.
    Please assign points,
    Diogo.

  • ADOBE FM not exist after transport

    Hi dears,
    I'm facing to a problem with an adobe form transport.
    In dev, adobe works fine. I've transported the adobe in acceptance, after the transport, I test the adobe.
    Transaction sfp, test button.
    So I reach the initial screen of FM module. The FM is called /1BCDWB/SM00000007 and when I execute it, I've a dump. It's say:
    Short text
        The function module is not active or contains no code.
    What happened?
        The function module "/1BCDWB/SM00000007" is called, but
        cannot be found in its function group.
        Error in the ABAP Application Program
        The current ABAP program "/1BCDWB/SM00000007============FT" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    I know that with smartforms sometimes we need to regenerate the SF after transport with the option in the menu generate.
    I go in form object menu Form Object (first one) and choose generate.
    I've the information message (in green):
    Unable to find include '/1BCDWB/LSM00000007U01
    and the FM is not yet avaible
    In dev this manipulation generate works fine but not needed.
    Su53 in acceptance is ok last authorization wheck was successful and adobe in acceptance (the form and interface with sfp) are ok.
    Any help is welcome
    Thx in advance
    Vincent

    Hi Vincent,
    Similar to SMARTFORMS in adobe forms also the FM have a different name in different systems.
    So wherever you are writing the code to call your adobe form call FM: FP_FUNCTION_MODULE_NAME and get the fm name from there, replace your FM /1BCDWB/SM00000007 with the variable in which you are getting your Forms FM name.
    For example:
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = <Your form name>
        IMPORTING
          e_funcname = lv_funcname.
      CALL FUNCTION lv_funcname
        EXPORTING
          git_item       = git_item
          gs_header      = gs_header
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 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.
    Regards,
    Vaibhav

  • ALV Title Not Display after transporting the Programme from DeV to Qlty

    Hellow Experts,
    i developed one ALV report with two screens, i transported the report from Development server to Qulaity server.
    in Development server report are working fine  but in Qulaity server after transporting the TiTle of ALV not display , plz give me some hint , below is my code to display alv title
    DATA: alv_grid       TYPE REF TO cl_gui_alv_grid.
    DATA:alv_grid_ref type ref to CL_GUI_ALV_GRID.
    DATA: layout    TYPE lvc_s_layo.
    layout-grid_title = 'Daily Material Reports.' .
    DATA: fieldcat  TYPE lvc_t_fcat.
    I m using  ALL METHOD alv_grid->set_table_for_first_display method for display alv .
    Thanks,
    Regards
    Neha.

    Hi neha,
    use the sap/help link to solve your issue,
    [http://help.sap.com/saphelp_erp2004/helpdata/en/0a/b5533cd30911d2b467006094192fe3/content.htm]
    if not use the below example code ,
    Heading 3 :h3  Set the title of the grid
    Fill the grid_title field of structure lvc_s_layo.
    Note that the structure lvc_s_layo can be used for to customize the grid appearance in many ways.
    DATA:
    ALV control: Layout structure
    gs_layout TYPE lvc_s_layo.
    For example :
    Set grid title
    gs_layout-grid_title = 'Flights'.
    CALL METHOD go_grid->set_table_for_first_display
                EXPORTING
               i_structure_name = 'SFLIGHT'
    is_layout      =gs_layout*
               CHANGING 
              it_outtab   = gi_sflight.
    Regards,
    Saravana.S
    Edited by: saravanasap on Dec 21, 2011 8:13 AM

  • Hierarchy Analysis Authorization does not work after transport

    Hi Gurus,
    I am facing a issue in hierarchy analysis authorization in quality system but the same authorization works perfectly fine in development.
    All hierarchy authorizations works in Quality except for this one. I found one old sap note describing this as program error but this note is not applicable in BW 7.3.
    I have checked the table RSECVAL, RSECHIER and authorization is active so everything looks good. Please advise if anyone faced this issue after transporting hierarchy auths to other systems
    Regards,
    Salman

    Salman,
    What I understood from your description is that you have same role+AA in Dev and QA, which provides access in Dev for all the nodes for said hierarchy but in QA, same role+AA provides access to the same hierarchy for all the nodes but one. Try to create a ZTEST analysis authorization in QA itself with access for the problematic hierarchy node and see if it works ? This will rule out the case if there is a difference in hierarchy in DEV & QA.
    Regards,
    Shivraj Singh

Maybe you are looking for

  • I want to use Find my iphone, but just on iOS

    I have an iPhone, iPad, and a Mac. I have iCould on the ios devices, but not the Mac. I want to use find my iphone, but not on the Mac. Just on ios. Is there any way to do that?

  • Sending in my 3g for repair, can i upgrade to 3gs?

    Hi, i will me mailing in my iphone 3G for replacment monday, is there anyway i can request an upgrade and pay the difference for a 3GS? Thanks

  • Making Adobe 7.0 as default

    Does anyone know how I would make Adobe 7.0 as the default reader instead of 5.0 ?

  • [SOLVED] google-chrome update fails

    Hi, Apologies if this is a dumb-basic problem, but for some reason chrome is not updating via pacaur. I noticed chrome was complaining about being an unsupported version in gmail, and I realised my google-chrome-stable was v38, so I went to update it

  • WM reversal material document

    Hi all. I read in OSS note 173272 that (I include it literally): "When you reverse a material document, Customizing data is used in releases earlier than Release 40A in the detail screen of the movement type to specify the source storage bin.This inc