Developer 6.0 report

Hi,
all my reports generated with report 3.0(dev/2000 2.1) as landscape mode work correctly,but when i move to dev. 6.0 report
it doesn't print in landscape mode as before.
Pls,can you help me to soleve this problem..

Hi,
install patch6a for reports6.0..That is bug in reports6.0..
Suresh
([email protected])

Similar Messages

  • Need help in developing XML Publisher Report in Multi Language

    Hi Tim,
    We have requirement to develop XML Publisher report in Multi language.
    I know we can upload multiple Templates, one for each language.
    Can any one help me in knowing the process other than uploading multiple templates.
    Any documents or setup process related to this will be of great help.
    I appretiate your help.
    Thanks & Regards,
    Sahoo

    Hi,
    Lets say you have two smart styles with X and Y, and runtime based on the number of pages, if you would like to modify the style, then check any standard table or structue which holds and responsible for the holding the style value.
    If you can trace that, based on the coding we can modify accordingly.
    Regards,
    Santhosh.

  • "Oracle SQL Developer Data Modeler reporting repository required"

    Hi all,
    Trying to make use of Data Modeler Reports from within SQL Dev EA 2.1, but every time I try to connect to a DB I get the following message "Oracle SQL Developer Data Modeler reporting repository required."
    Any idea how to go about sorting this out?
    Thanks

    Hi i have the Oracle SQL Developer Data Modeler version 2.0.0 installed.
    When i try to export one diagram to the reporting schema, i get the following error : "Error occurred while exporting to Reporting Schema.See the log file for details".
    The log file has no errors.
    The repository owner is DBA.
    The connection is ok.
    Can you help me?
    Thanks in advance
    Paolo.

  • HOW TO DEVELOP AN INTERACTIVE REPORT

    HI,
         How to Develop  an interactive report to display sales orders for particular customer, items for particular order.

    Hi,
    Look at the below sample Program for the Interactive ALV report.
    *& Report  Z_INTERACTIVE_ALV3                                          *
    report  z_interactive_alv4    no standard page heading line-size 650
    message-id zz_9838                      .
    type-pools: slis.
    *type declaration for values from ekko
    types: begin of i_ekko,
           ebeln like ekko-ebeln,
           aedat like ekko-aedat,
           bukrs like ekko-bukrs,
           bsart like ekko-bsart,
           lifnr like ekko-lifnr,
           end of i_ekko.
    data: it_ekko type standard table of i_ekko initial size 0,
          wa_ekko type i_ekko.
    *type declaration for values from ekpo
    types: begin of i_ekpo,
           ebeln like ekpo-ebeln,
           ebelp like ekpo-ebelp,
           matnr like ekpo-matnr,
           menge like ekpo-menge,
           meins like ekpo-meins,
           netpr like ekpo-netpr,
           end of i_ekpo.
    data: it_ekpo type standard table of i_ekpo initial size 0,
          wa_ekpo type i_ekpo .
    *variable for Report ID
    data: v_repid like sy-repid .
    *declaration for fieldcatalog
    data: i_fieldcat type slis_t_fieldcat_alv,
          wa_fieldcat type slis_fieldcat_alv.
    data: it_listheader type slis_t_listheader.
    declaration for events table where user comand or set PF status will
    be defined
    data: v_events type slis_t_event,
          wa_event type slis_alv_event.
    declartion for layout
    data: alv_layout type slis_layout_alv.
    declaration for variant(type of display we want)
    data: i_variant type disvariant,
          i_variant1 type disvariant,
          i_save(1) type c.
    *PARAMETERS : p_var TYPE disvariant-variant.
    *Title displayed when the alv list is displayed
    data:  i_title_ekko type lvc_title value 'FIRST LIST DISPLAYED'.
    data:  i_title_ekpo type lvc_title value 'SECONDRY LIST DISPLAYED'.
    initialization.
      v_repid = sy-repid.
      perform build_fieldcatlog.
      perform event_call.
      perform populate_event.
    start-of-selection.
      perform data_retrieval.
      perform build_listheader using it_listheader.
      perform display_alv_report.
    *&      Form  BUILD_FIELDCATLOG
          Fieldcatalog has all the field details from ekko
    form build_fieldcatlog.
      wa_fieldcat-tabname = 'IT_EKKO'.
      wa_fieldcat-fieldname = 'EBELN'.
      wa_fieldcat-seltext_m = 'PO NO.'.
      append wa_fieldcat to i_fieldcat.
      clear wa_fieldcat.
      wa_fieldcat-tabname = 'IT_EKKO'.
      wa_fieldcat-fieldname = 'AEDAT'.
      wa_fieldcat-seltext_m = 'DATE.'.
      append wa_fieldcat to i_fieldcat.
      clear wa_fieldcat.
      wa_fieldcat-tabname = 'IT_EKKO'.
      wa_fieldcat-fieldname = 'BUKRS'.
      wa_fieldcat-seltext_m = 'COMPANY CODE'.
      append wa_fieldcat to i_fieldcat.
      clear wa_fieldcat.
    wa_fieldcat-tabname = 'IT_EKKO'.
      wa_fieldcat-fieldname = 'BUKRS'.
      wa_fieldcat-seltext_m = 'DOCMENT TYPE'.
      append wa_fieldcat to i_fieldcat.
      clear wa_fieldcat.
    wa_fieldcat-tabname = 'IT_EKKO'.
      wa_fieldcat-fieldname = 'LIFNR'.
      wa_fieldcat-no_out    = 'X'.
      wa_fieldcat-seltext_m = 'VENDOR CODE'.
      append wa_fieldcat to i_fieldcat.
      clear wa_fieldcat.
    endform.                    "BUILD_FIELDCATLOG
    *&      Form  EVENT_CALL
      we get all events - TOP OF PAGE or USER COMMAND in table v_events
    form event_call.
      call function 'REUSE_ALV_EVENTS_GET'
       exporting
         i_list_type           = 0
       importing
         et_events             = v_events
    EXCEPTIONS
       LIST_TYPE_WRONG       = 1
       OTHERS                = 2
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.                    "EVENT_CALL
    *&      Form  POPULATE_EVENT
         Events populated for TOP OF PAGE & USER COMAND
    form populate_event.
      read table v_events into wa_event with key name = 'TOP_OF_PAGE'.
      if sy-subrc eq 0.
        wa_event-form = 'TOP_OF_PAGE'.
        modify v_events from wa_event transporting form where name =
    wa_event-form.
      endif.
      read table v_events into wa_event with key name = 'USER_COMMAND'.
      if sy-subrc eq 0.
        wa_event-form = 'USER_COMMAND'.
        modify v_events from wa_event transporting form where name =
    wa_event-name.
      endif.
    endform.                    "POPULATE_EVENT
    *&      Form  data_retrieval
      retreiving values from the database table ekko
    form data_retrieval.
      select ebeln aedat bukrs bsart lifnr from ekko into table it_ekko.
    endform.                    "data_retrieval
    *&      Form  bUild_listheader
          text
         -->I_LISTHEADEtext
    form build_listheader using i_listheader type slis_t_listheader.
      data hline type slis_listheader.
      hline-info = 'this is my first alv pgm'.
      hline-typ = 'H'.
    endform.                    "build_listheader
    *&      Form  display_alv_report
          text
    form display_alv_report.
      v_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
       exporting
         i_callback_program                = v_repid
      I_CALLBACK_PF_STATUS_SET          = ' '
         i_callback_user_command           = 'USER_COMMAND'
         i_callback_top_of_page            = 'TOP_OF_PAGE'
         i_grid_title                      = i_title_ekko
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         = ALV_LAYOUT
         it_fieldcat                       = i_fieldcat[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
        i_default                         = 'ZLAY1'
         i_save                            = 'A'
        is_variant                        = i_variant
         it_events                         = v_events
        tables
          t_outtab                          = it_ekko
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.                    "display_alv_report
    *&      Form  TOP_OF_PAGE
          text
    form top_of_page.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary       = it_listheader
       i_logo                   =
       I_END_OF_LIST_GRID       =
    endform.                    "TOP_OF_PAGE
    *&      Form  USER_COMMAND
          text
         -->R_UCOMM    text
         -->,          text
         -->RS_SLEFIELDtext
    form user_command using r_ucomm like sy-ucomm
    rs_selfield type slis_selfield.
      case r_ucomm.
        when '&IC1'.
          read table it_ekko into wa_ekko index rs_selfield-tabindex.
          perform build_fieldcatlog_ekpo.
          perform event_call_ekpo.
          perform populate_event_ekpo.
          perform data_retrieval_ekpo.
          perform build_listheader_ekpo using it_listheader.
          perform display_alv_ekpo.
      endcase.
    endform.                    "user_command
    *&      Form  BUILD_FIELDCATLOG_EKPO
          text
    form build_fieldcatlog_ekpo.
      wa_fieldcat-tabname = 'IT_EKPO'.
      wa_fieldcat-fieldname = 'EBELN'.
      wa_fieldcat-seltext_m = 'PO NO.'.
      append wa_fieldcat to i_fieldcat.
      clear wa_fieldcat.
      wa_fieldcat-tabname = 'IT_EKPO'.
      wa_fieldcat-fieldname = 'EBELP'.
      wa_fieldcat-seltext_m = 'LINE NO'.
      append wa_fieldcat to i_fieldcat.
      clear wa_fieldcat.
      wa_fieldcat-tabname = 'I_EKPO'.
      wa_fieldcat-fieldname = 'MATNR'.
      wa_fieldcat-seltext_m = 'MATERIAL NO.'.
      append wa_fieldcat to i_fieldcat.
      clear wa_fieldcat.
    wa_fieldcat-tabname = 'I_EKPO'.
      wa_fieldcat-fieldname = 'MENGE'.
      wa_fieldcat-seltext_m = 'QUANTITY'.
      append wa_fieldcat to i_fieldcat.
      clear wa_fieldcat.
    wa_fieldcat-tabname = 'I_EKPO'.
      wa_fieldcat-fieldname = 'MEINS'.
      wa_fieldcat-seltext_m = 'UOM'.
      append wa_fieldcat to i_fieldcat.
      clear wa_fieldcat.
    wa_fieldcat-tabname = 'I_EKPO'.
      wa_fieldcat-fieldname = 'NETPR'.
      wa_fieldcat-seltext_m = 'PRICE'.
      append wa_fieldcat to i_fieldcat.
      clear wa_fieldcat.
    endform.                    "BUILD_FIELDCATLOG_EKPO
    *&      Form  event_call_ekpo
      we get all events - TOP OF PAGE or USER COMMAND in table v_events
    form event_call_ekpo.
      call function 'REUSE_ALV_EVENTS_GET'
       exporting
         i_list_type           = 0
       importing
         et_events             = v_events
    EXCEPTIONS
      LIST_TYPE_WRONG       = 1
      OTHERS                = 2
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.                    "event_call_ekpo
    *&      Form  POPULATE_EVENT
           Events populated for TOP OF PAGE & USER COMAND
    form populate_event_ekpo.
      read table v_events into wa_event with key name = 'TOP_OF_PAGE'.
      if sy-subrc eq 0.
        wa_event-form = 'TOP_OF_PAGE'.
        modify v_events from wa_event transporting form where name =
    wa_event-form.
      endif.
      endform.                    "POPULATE_EVENT
    *&      Form  TOP_OF_PAGE
          text
    form f_top_of_page.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary       = it_listheader
       i_logo                   =
       I_END_OF_LIST_GRID       =
    endform.                    "TOP_OF_PAGE
    *&      Form  USER_COMMAND
          text
         -->R_UCOMM    text
         -->,          text
         -->RS_SLEFIELDtext
    *retreiving values from the database table ekko
    form data_retrieval_ekpo.
    select ebeln ebelp matnr menge meins netpr from ekpo into table it_ekpo.
    endform.
    form build_listheader_ekpo using i_listheader type slis_t_listheader.
    data: hline1 type slis_listheader.
    hline1-typ = 'H'.
    hline1-info = 'CHECKING PGM'.
    endform.
    form display_alv_ekpo.
    call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
       i_callback_program                = v_repid
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = 'F_USER_COMMAND'
       i_callback_top_of_page            = 'TOP_OF_PAGE'
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
       i_grid_title                      = i_title_ekpo
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
       it_fieldcat                       = i_fieldcat[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         =
       i_save                            = 'A'
      IS_VARIANT                        =
       it_events                         = v_events
      tables
        t_outtab                          = it_ekpo
    exceptions
       program_error                     = 1
       others                            = 2
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    endform.
    Regards,
    Ram
    Reward points if helpful

  • How to Develop the ABAP Reports in Business One

    HI all;
    am New to SAP Business One,
    How to Develop the Z Reports in Business One ? like Normal ALV Reports and other??
    Can we have the ABAP Editor and Other Transaction in Business One.
    -Ravi

    Hi Sharma,
    Thanks for Your Replay,
    This is what my requirement !.
    Hi Experts,
    Here we are integrating SAP Business One with 3rd Party tool. !!
    We need to Develop Customize Report in Business one and These Reports Out Put Will Convert into XML Files (Third Party System Can Understand Only XML files) and stored in Application Server/ Presentation Server.
    How to Develop the u2018Z/Yu2019 Reports in Business one ? Can we use SE38 (R/3 ABAP Editor and other T-codes) in Business One.? Or  is there any tools to develop the Business One Reports ?  How to Convert the Report out put into XML File?
    Thanks,
    Upender.

  • Developer - Forms and Reports 11g?

    Hi,
    We have recently installed application server 11g and developers are asking me for the developer 11g software to go with the forms and reports. Looking at the oracle website they have changed things, there is no longer a Developer 11g, and I'm having trouble establishing what I need to download and install so the developers can develop forms and reports in 11g. Can someone tell me what I need to grab from the oracle site and roughly how to install it? It's all a bit new to me.
    Thanks
    Adam

    This came up awhile back, read the entire thing and make sure you use the same versions.
    Oracle 11g Developer suite installation
    Note that you will need to install Weblogic Server before you can install Forms 11g.
    Best Regards
    mseberg

  • Last GR date and lat GI date to be developed in the report

    HI,
    I want last GR date and last GI date to be developed in the report. I wl take the data from CKM3N.
    Is there any easy way how to go about it?
    Regards,

    Hi there
    1. Last GR date,If the material is a Batch amanged material you can get the last Gr date from the Table: MCHA-(Field) LWEDT..
    if the material is not batch manged,, Hope we can ref the MSEG based on the Movement types( Inward )/Material/Plant/Location for the last GR..
    2. For the last GI date- Same we can ref the  MSEG based on the Movement types( Outward )/Material/Plant/Location for the last GI..
    Hope it helps,,
    Thanks
    Senthil

  • Guide Oracle Reports Developer 10g: Build Reports

    Hello ...
    I'm doing the guide Oracle Reports Developer 10g: Build Reports
    and practices begin cuando not find files like ("p2q2.jsp, p2q3.rdf, p2q4.jsp, p2q5.jsp, p2q6.rdf, p2q7.rdf")
    Can someone help me and tell me where I can find them ...
    Sorry for my English poor quality ......
    thanks hope prompt response ....
    Edited by: 991659 on 4/03/2013 07:58 AM
    Edited by: 991659 on 4/03/2013 08:04 AM

    Hello,
    summit database files
    Regards

  • Developer 6i Forms/Reports for AIX-Based 5L

    Hi,
    Where can I find the download link for Developer 6i Forms/Reports for AIX-Based 5L (64-bit) from Oracle website?? I can only find Developer 6i for Linux/Solaris/Windows..
    Thanks,
    Kelvin

    Quick links to latest patchsets ==> Oracle Developer ==> <platform> ==> 6i ==> voilà!
    Werner

  • Run a report developed on Crystal Reports XI from java

    Hi,
    I am trying to run a report developed on Crystal reports XI from my Java Web Project.
    I used the configuration specified in:
    http://businessobjects.com/pdf/dev_zone/crxi_java_startup_guide.pdf
    but I am getting the error:
    "com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: There is no server specified.---- Error code:-2147217390 Error code name:serverNotFound"
    when the code reaches the line: oReportClientDocument.open(reportName, 0)
    I am using Eclipse as SDK and Tomcat as Webserver.
    Thanks for the help.

    can i use it In J2SE
    if yes where i download it.also some link for reading

  • While developing a ALV report

    hi.
    i am developing  a ALV report.i need to add one extra button. can any one suggest me how

    Try this way:
    I am showing in OO ABAP area:
    Declare in TOP
          CLASS lcl_event_handler DEFINITION
          Class event handler
    CLASS lcl_event_handler DEFINITION .
      PUBLIC SECTION .
        METHODS:
    *To add new functional buttons to the ALV toolbar
        handle_toolbar FOR EVENT toolbar OF cl_gui_alv_grid
        IMPORTING e_object,
    *To implement user commands
        handle_user_command
        FOR EVENT user_command OF cl_gui_alv_grid
        IMPORTING e_ucomm.
      PRIVATE SECTION.
    ENDCLASS.                    "lcl_event_handler DEFINITION
    DATA: gr_event_handler1 TYPE REF TO lcl_event_handler,
          gr_event_handler2 TYPE REF TO lcl_event_handler,
          flag_alv          TYPE c.
    Implement the above defined methods in the forms(F01) or main pgm
          CLASS lcl_event_handler IMPLEMENTATION
          Implementing the method definitions
    CLASS lcl_event_handler IMPLEMENTATION .
    *Handle Toolbar
      METHOD handle_toolbar.
        PERFORM handle_toolbar USING e_object.
      ENDMETHOD .                    "handle_toolbar
    *Handle User Command
      METHOD handle_user_command .
        PERFORM handle_user_command USING e_ucomm.
      ENDMETHOD .                    "handle_user_command
    ENDCLASS.                    "lcl_event_handler IMPLEMENTATION
    *Create an object(instance) for the event handler in F01
    Creating an instance for the event handler
        CREATE OBJECT gr_event_handler1.
    Registering handler methods to handle ALV Grid events
        SET HANDLER gr_event_handler1->handle_user_command FOR g_alv_grid1.
        SET HANDLER gr_event_handler1->handle_toolbar FOR g_alv_grid1.
    *&      Form  handle_toolbar
          Create buttons on ALV Toolbar
          No parameters need to be passed to this form
    *FORM handle_toolbar USING
                       i_object TYPE REF TO cl_alv_event_toolbar_set .
    DATA: ls_toolbar TYPE stb_button.
    CLEAR ls_toolbar.
    MOVE 3 TO ls_toolbar-butn_type.
    APPEND ls_toolbar TO i_object->mt_toolbar.
    CLEAR ls_toolbar.
    IF flag_alv = '1'.
    Header Details
       MOVE   'FIND1'               TO ls_toolbar-function.
       MOVE   icon_select_detail    TO ls_toolbar-icon.
       MOVE   'Header Details'(t03) TO ls_toolbar-text.
       CLEAR  ls_toolbar-disabled.
       APPEND ls_toolbar            TO i_object->mt_toolbar.
       CLEAR  ls_toolbar.
    Item Details
       MOVE   'DETAIL1'             TO ls_toolbar-function.
       MOVE   icon_select_detail    TO ls_toolbar-icon.
       MOVE   'Item Details'(t04)   TO ls_toolbar-text.
       CLEAR  ls_toolbar-disabled.
       APPEND ls_toolbar            TO i_object->mt_toolbar.
    ENDIF.
    IF flag_alv = '2'.
    Header Details
       MOVE   'FIND2'               TO ls_toolbar-function.
       MOVE   icon_select_detail    TO ls_toolbar-icon.
       MOVE   'Header Details'(t03) TO ls_toolbar-text.
       CLEAR  ls_toolbar-disabled.
       APPEND ls_toolbar            TO i_object->mt_toolbar.
       CLEAR  ls_toolbar.
    Item Details
       MOVE   'DETAIL2'             TO ls_toolbar-function.
       MOVE   icon_select_detail    TO ls_toolbar-icon.
       MOVE   'Item Details'(t04)   TO ls_toolbar-text.
       CLEAR  ls_toolbar-disabled.
       APPEND ls_toolbar            TO i_object->mt_toolbar.
    *&      Form  handle_user_command
          User Command for ALV Toolbar Buttons
         -->P_E_UCOMM  UCOMM
    FORM handle_user_command  USING    p_e_ucomm TYPE any.
      CASE p_e_ucomm .
        WHEN 'FIND1'.
    For Header detail display
          PERFORM get_selected_rows USING g_alv_grid1.
          IF i_rowid IS INITIAL.
            MESSAGE i000(zv_gts) WITH 'Select atleast one row'(e11).
            EXIT.
          ENDIF.
          PERFORM read_detail TABLES i_zvfx_gts008_head_l .
          CALL SCREEN 9020.
        WHEN 'DETAIL1'.
    For Item Summary display
          PERFORM get_selected_rows USING g_alv_grid1.
          IF i_rowid IS INITIAL.
            MESSAGE i000(zv_gts) WITH 'Select atleast one row'(e11).
            EXIT.
          ENDIF.
          PERFORM read_detail TABLES i_zvfx_gts008_head_l.
          CALL SCREEN 9030.
        WHEN 'FIND2' .
    For Header detail display
          PERFORM get_selected_rows USING g_alv_grid2.
          IF i_rowid IS INITIAL.
            MESSAGE i000(zv_gts) WITH 'Select atleast one row'(e11).
            EXIT.
          ENDIF.
          PERFORM read_detail TABLES i_zvfx_gts008_head.
          CALL SCREEN 9020.
        WHEN 'DETAIL2'.
    For Item Summary display
          PERFORM get_selected_rows USING g_alv_grid2.
          IF i_rowid IS INITIAL.
            MESSAGE i000(zv_gts) WITH 'Select atleast one row'(e11).
            EXIT.
          ENDIF.
          PERFORM read_detail TABLES i_zvfx_gts008_head.
          CALL SCREEN 9030.
        WHEN OTHERS.
      ENDCASE .
    ENDFORM.                    " handle_user_command
    ENDIF.
    *ENDFORM.                    "handle_toolbar

  • Developing a Generic Report Wizard

    Hi
    My application requires to develop a generic report wizard, using  labview.
    which allows the user to choose the required signals and respective contents
    and layout pattern,
    can anybody suggest any idea as to how to start on this, or has anybody
    earlier worked on this kind of development using labview, if so please can you
    help me out
    rags

    Hi
    If you want to develop a wizard, use the LabVIEW Wizard template, which was posted in another thread.
    It uses a tab-control which pages are switched using a button. Just have a look at it.
    Hope this helps.
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...
    Attachments:
    LV_Wizard_Dialog.zip ‏40 KB

  • Need to develop a calibration report

    Hi experts,
    i need to develop a report for calibration
    input screen parameters are
    equipment no.
    date
    output screen
    Equipment no.
    equipment description
    Functional location
    order no.
    inspection lot no.
    inspection reading before calibration
    inspection reading after calibration
    Usage Descion
    I am new to PaM module kindly help me so that i can give proper details of tables to abaper.put
    and kindly tell me from which table i can pass equipment no. and get inspect lot no. and other details as per output screen.

    Hi all,
    i am facing an issue while developing a report.
    i am using a table QAMV (LOGIC  stated below)
    pass inspection lot no. pick MIC , MIC Description
    issue is that against single inspection lot no. multiple MIC are assigned. How i can pick all MIC , MIC Description by entering inspection lot no.
    ABAPer is asking for another primary key to fetch all MIC. According to abper he is unable to fetch all MIC on the basis of single inspection lot no.
    format of report and table (qamr) screen shot attached below.

  • I AM DEVELOPING THE Z-REPORT FOR SHELF AGEING MATERIAL

    HI
    USER WANTS Z-REPORT FOR SHELF AGEING MATERIAL WITH STOCK QTY AND STOCK VALUE.
    I WANT TABLE NAME FOR SHELF AGEING MATERIAL REPORT.
    SPECIALLY, FOR DAYS (REMAINING SHELF LIFE PERIOD FOR  MATERIAL IN DYAS)

    Hi,
    Ask the abaper to write an query from the table S032 there you can find the option of last good receipt date and the last goods issue issue date.
    consider the various good mvt in between these dates calcuate the diffence betwee the current date and the last good issue date, so that you can abel to get the stock list that is not moving for more than 60 days,120 days etc
    You can also use MC46, MC50,  MB5M - expiration date list . In case if that does not solve their requirement then you need take logic from client and you need to develop own report
    pherasath

  • Unable to connect to the 2014 SQL Developer's Edition Report Server

    Hello,
       I have been through the wringer trying to gain access to my report service.  I have to admit that I am something of a neophyte with regards to SQL Server but I am pretty good with Windows 7 management in general.  I have just installed
    SQL 2014 Developer's Edition under Windows 7 SP1.  I have connected to the database engine server and loaded a couple of databases.  I chose windows authentication and can get into the report configuration manager and the SQL server configuration
    manager with no problems.  I have registered the URLs for both the web and report manager.  I can connect to all of the other instances (database engine, analysis services, and integration services).  I have to run with administrator privileges
    to connect to the integration services but it does not make any difference when attempting to connect to the reporting service either through report builder 3 or connect through object explorer.  I can find no relevant errors in the RS log even after
    enabling logging.  I have been through many of the articles I could find online but nothing seems to resolve the problem.  When connecting it shows Windows Authentication and the correct domain\user.  I also browse to find the service so the
    URL should be correct. The error that I am getting is as follows:
    "Unable to connect to the server at CALYSTO\ReportService. The specified URL might not be valid or there might be a problem with the report server version or configuration. Specify a different URL, or contact your server administrator to verify that
    the report server runs SQL Server 2008 or later. Additionally, if you are trying to connect to a SharePoint-integrated report server, verify that SharePoint is installed on the server and that the report server uses SharePoint integrated mode. (Microsoft.SqlServer.Management.UI.RSClient)"
    Program Location:
       at Microsoft.SqlServer.Management.UI.RSClient.RSClientConnection.CreateConnection()
       at Microsoft.SqlServer.Management.UI.RSClient.RSConnectionInfo.GetRSConnectionObject(Boolean ensureOpenConnection)
       at Microsoft.SqlServer.Management.UI.RSClient.RSConnectionInfo.RSTypeImpl.ProceedWithConnection(UIConnectionInfo ci)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.RSType.Microsoft.SqlServer.Management.UI.ConnectionDlg.IServerType.ProceedWithConnection(UIConnectionInfo ci)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()
    I have tried fixing the installation with the installation disk, removing the report service instance and reinstalling it, using the administrator account instead of mine (with is of course an administrator).  I'm at a loss right now.  I have spent
    about 12 hours trying to track this down and so far nothing has worked.  I'm about ready to reinstall the entire operating system and start all over.  I thought that I would try this venue before going to that extreme.
    Any thoughts, questions, or ideas would be much appreciated.
    Thanks,
    -Tom
    Tom L

    "Unable to connect to the server at CALYSTO\ReportService.
    Hello Tom,
    It should be "ReportServer" in the URL, not "ReportService".
    In "Reporting Service Configuration Manager" look up the correct URL. Open Internet Explorer with right-mouse click => "Run as Administrator" and open the URL, this should work. Navigate to "Side setting" (on top right side),
    go to tab "Security" and add your account with role "System Administrator". Afterwards you should be able to open the URL without running IE as admin.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Excel output gets expanded when developing Xml publisher report !!

    I am developing a report using XML publisher which generates Excel output ....
    And my layout keeps repeating for every unique delivery...(i am passing 'x' deliveries as input)
    1) When i try to generate a pdf output, my report works fine but when i try to generate an excel output the table size expands..
    2) The jpg file inserted in the rtf(layout template) appears when i generate pdf report and does not appear in the excel output..
    What could be the reason ??

    Hi;
    Please see below thread which could be helpful for your issue:
    XML PUBLISHER report in Excel out put problem
    Regard
    Helios

Maybe you are looking for

  • How?print report on A3 paper to epson printer

    HI, Now I am using Report Builder 6.0.5.35.0. to write report to print to printer epson LQ2080 for A3 paper size 16.5 x 8.3 inch with fond size 15. But it keep printing in fond size 10 with maximum 80 character per line. The remaining sentence will c

  • How do I get a popup to appear every time a download finishes?

    How do I get a popup to appear every time a single download finishes? I want a big popup window. I want it to interrupt me as I'm watching full screen movies. In otherwords, if I download 100 different files, when the first finishes, I get a popup. S

  • Need help for ABAP CODE

    hi, i need to reload the master data without FM, i put the comments on fm and relaod the data, now i having a problem, loading process is slow now as compair to before, when i was using with FM.i checked the manage of infoObject, it is show 1123455 r

  • IDOC -  Infotype Record Creation (Master Data)

    Hi Experts, Here we have a scenario that from one system to other system records sent through IDOCs and get created here in othere system. When the Record is created in Infotype 0000, IT0001. IDOC elements has field details like Personnel Area, Perso

  • Mismatch of areas in new Itunes 7.03

    After having installed the new Itunes I have, for some songs the fields Album for sorting and/or artist for sorting are fullfilled with partials informations. The characters are in light and it is not possible to erase it. The only way I found is to