Need help in dynamic report for a range of year and period

Dear all,
I need help in creating an ALV report with dynamic columns based on the Year and period entered on the selection screen. for example if in the year we enter 2002 and period range from 10 to 12 then we should get the 3 columns display for cost(example) for period 10/2002, 11/2002 and 12/2002.
Can anyone help me in achieving this dynamically since the user can enter the year also in intervals along with the period and data also needs to be populated in the corresponding columns.
An example code would be of great help.
Thanks,
Amit

Hi,
Use field symbols as follows.
TYPE-POOLS : SLIS.
TABLES : MARC,T001W.
DATA : BEGIN OF ITAB OCCURS 0,
       MATNR LIKE MARC-MATNR,
       END OF ITAB.
DATA : FIELDSTAB TYPE LVC_T_FCAT,
       STAB      TYPE LVC_S_FCAT,
       T_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
       S_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
       NEW_LINE TYPE REF TO DATA,
       NEW_TABLE TYPE REF TO DATA,
       INDEX(3) TYPE C,
       STR(70),
       TEXT(6),
       CNT(1),
       TEXT1(16),
       REPID LIKE SY-REPID.
FIELD-SYMBOLS : <FS> TYPE STANDARD TABLE,
                <WA> TYPE ANY.
SELECT-OPTIONS : S_WERKS FOR MARC-WERKS NO INTERVALS,
                 S_MATNR FOR MARC-MATNR NO INTERVALS.
INITIALIZATION.
  REPID = SY-REPID.
START-OF-SELECTION.
  SELECT * FROM MARC
           INTO CORRESPONDING FIELDS OF TABLE ITAB
           WHERE MATNR IN S_MATNR
           AND   WERKS IN S_WERKS.
  SORT ITAB BY MATNR.
  DELETE ADJACENT DUPLICATES FROM ITAB COMPARING MATNR.
  STAB-FIELDNAME = 'MATNR'.
  STAB-DATATYPE  = 'CHAR'.
  STAB-INTLEN    = '18'.
  APPEND STAB TO FIELDSTAB.
  CLEAR CNT.
  LOOP AT S_WERKS.
    CLEAR TEXT.
    CNT = CNT + 1.
    CONCATENATE  'EISLO' CNT INTO TEXT.
    STAB-FIELDNAME = TEXT.
    STAB-DATATYPE  = 'CHAR'.
    STAB-INTLEN    = '16'.
    APPEND STAB TO FIELDSTAB.
    CLEAR S_WERKS.
  ENDLOOP.
  CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
    EXPORTING
      IT_FIELDCATALOG = FIELDSTAB
    IMPORTING
      EP_TABLE        = NEW_TABLE.
  ASSIGN NEW_TABLE->* TO <FS>.
  CREATE DATA NEW_LINE LIKE LINE OF <FS>.
  ASSIGN NEW_LINE->* TO <WA>.
  PERFORM MOVE_DATA.
  CLEAR S_FIELDCAT.
  S_FIELDCAT-FIELDNAME = 'MATNR'.
  S_FIELDCAT-TABNAME = ITAB.
  S_FIELDCAT-SELTEXT_M = 'Part Number'.
  S_FIELDCAT-NO_ZERO = 'X'.
  S_FIELDCAT-DDICTXT   = 'M'.
  APPEND S_FIELDCAT TO T_FIELDCAT.
  CLEAR CNT.
  LOOP AT S_WERKS.
    CLEAR T001W.
    CNT = CNT + 1.
    SELECT SINGLE * FROM T001W WHERE WERKS = S_WERKS-LOW AND SPRAS = SY-LANGU.
    CLEAR TEXT.
    CONCATENATE 'EISLO' CNT INTO TEXT.
    S_FIELDCAT-FIELDNAME = TEXT.
    S_FIELDCAT-SELTEXT_M = T001W-NAME2.
S_FIELDCAT-NO_ZERO = 'X'.
    S_FIELDCAT-DDICTXT   = 'M'.
    APPEND S_FIELDCAT TO T_FIELDCAT.
    CLEAR S_WERKS.
  ENDLOOP.
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      IT_FIELDCAT = T_FIELDCAT[]
    TABLES
      T_OUTTAB    = <FS>.
*&      Form  MOVE_DATA
      text
FORM MOVE_DATA.
  LOOP AT ITAB.
    CLEAR STR.
    CONCATENATE ITAB-MATNR ' ' INTO STR SEPARATED BY SPACE.
    LOOP AT S_WERKS.
      CLEAR MARC.
      SELECT SINGLE * FROM MARC WHERE MATNR = ITAB-MATNR AND WERKS = S_WERKS-LOW.
      IF SY-SUBRC EQ 0.
        CLEAR TEXT1.
        TEXT1 = MARC-EISLO.
        CONCATENATE STR TEXT1 INTO STR SEPARATED BY SPACE.
      ELSE.
        CONCATENATE STR '0' INTO STR SEPARATED BY SPACE.
      ENDIF.
    ENDLOOP.
    <WA> = STR.
    APPEND <WA> TO <FS>.
    CLEAR ITAB.
  ENDLOOP.
ENDFORM.                    "MOVE_DATA
Reward points if helpful.
Regards,
Sankar..

Similar Messages

  • Crash during Startup - need help deciphering Problem Report for Kernel

    I got the crash message with subsequent system lockup during my last startup. This is what the problem report states:
    Interval Since Last Panic Report: 1302194 sec
    Panics Since Last Report: 5
    Sun Sep 27 18:46:32 2009
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000000000000 PC=0x00000000000ACD2C
    Latest crash info for cpu 0:
    Exception state (sv=0x301bc780)
    PC=0x000ACD2C; MSR=0x00009030; DAR=0x00000000; DSISR=0x40000000; LR=0x00DDC2F4; R1=0x3028FBF0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x03680F8C 0x0012F064 0x001D25AC 0x001C8F80 0x001C9030 0x0003F2A0
    0x000B1DD4
    Kernel loadable modules in backtrace (with dependencies):
    com.cisco.nke.ipsec(2.0.1)@0xdd9000->0xe5afff
    Proceeding back via exception chain:
    Exception state (sv=0x301bc780)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x2a2cd000)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    9L30
    Kernel version:
    Darwin Kernel Version 9.8.0: Wed Jul 15 16:57:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_PPC
    System model name: PowerBook5,6
    System uptime in nanoseconds: 66876930554
    unloaded kexts:
    (none)
    loaded kexts:
    com.cisco.nke.ipsec 2.0.1 - last loaded 1232289266
    com.Cycling74.driver.Soundflower 1.4.3
    net.telestream.driver.IODVDImage 1.0 BETA
    com.AmbrosiaSW.AudioSupport 2.3.7
    com.Logitech.driver.HIDDevices 2.1.2
    com.apple.iokit.IOBluetoothSerialManager 2.1.8f2
    com.apple.filesystems.autofs 2.0.2
    com.apple.driver.AppleTAS3004Audio 2.5.8f1
    com.apple.driver.AudioIPCDriver 1.0.6
    com.apple.driver.IOI2CLM7x 1.9d0
    com.apple.iokit.IOFireWireIP 1.7.7
    com.apple.ATIRadeon9700 5.4.8
    com.apple.driver.AppleHWClock 1.5.2d0
    com.apple.driver.AppleTexasAudio 2.5.8f1
    com.apple.driver.AppleTexas2Audio 2.5.8f1
    com.apple.driver.AppleDACAAudio 2.5.8f1
    com.apple.driver.AppleHWSensor 1.9d0
    com.apple.driver.AppleSMUMonitor 1.9d0
    com.apple.driver.IOI2CADT746x 1.0.10f1
    com.apple.AppleOnboardDisplay 1.15.1
    com.apple.driver.InternalModemSupport 2.4.0
    com.apple.driver.MotorolaSM56K 1.3.9
    com.apple.driver.AppleSCCSerial 1.3.2
    com.apple.driver.PBG4_ThermalProfile 3.4.0d0
    com.apple.driver.AppleK2Driver 1.7.2f1
    com.apple.kext.IOI2CDeviceLMU 1.4.5d1
    com.apple.driver.AppleI2S 1.0.1f1
    com.apple.driver.CSRUSBBluetoothHCIController 2.1.8f2
    com.apple.driver.AppleUSBMergeNub 3.4.6
    com.apple.driver.AppleUSBTrackpad 1.7.4f1
    com.apple.driver.AppleUSBTCKeyEventDriver 1.7.4f1
    com.apple.driver.AppleUSBTCKeyboard 1.7.4f1
    com.apple.driver.CSRHIDTransitionDriver 2.1.8f2
    com.apple.driver.AppleFileSystemDriver 1.1.0
    com.apple.driver.iTunesPhoneDriver 1.0
    com.apple.iokit.IOUSBMassStorageClass 2.0.8
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.1.1
    com.apple.iokit.SCSITaskUserClient 2.1.1
    com.apple.driver.XsanFilter 2.7.91
    com.apple.iokit.IOATAPIProtocolTransport 1.5.3
    com.apple.iokit.IOATABlockStorage 2.0.6
    com.apple.driver.ApplePMU 2.5.6d2
    com.apple.driver.AppleUSBHub 3.4.9
    com.apple.iokit.IOUSBUserClient 3.4.9
    com.apple.driver.AppleI2CPMU 3.5.1
    com.apple.driver.AppleGPIO 1.3.0d0
    com.apple.iokit.AppleMediaBay 1.0.2f1
    com.apple.driver.KeyLargoATA 1.1.1f1
    com.apple.driver.AppleVIA 1.5.1d1
    com.apple.driver.MacIOGPIO 1.3.0d0
    com.apple.driver.AppleMPIC 1.5.3
    com.apple.driver.IO@
    just wondering if there are any signs that indicate my Powerbook is slowly dying... it's been slowing down noticeably even with only one app running on a fresh restart

    I'm betting it's your Cisco hardware and its software driver. The driver is reported as com.cisco.nke.ipsec. I don't know what the actual driver file is called, but I would look in the /System/Library/Extensions/ folder for any drivers with "cisco" in the filename. Select the item(s) then CTRL- or RIGHT-click and select "Move to Trash" from the contextual menu. Do not empty the Trash as you don't want to actually erase the item(s). Shutdown and disconnect and Cisco hardware. If there is a Cisco application involved be sure it will not launch automatically at startup. Reboot the computer. If your kernel panics cease you will need to contact Cisco about upgrades that are compatible. It could also be an incompatibility between the Cisco driver and one of the other third-party drivers that are in the Extensions folder and listed in your report:
    com.Cycling74.driver.Soundflower
    net.telestream.driver.IODVDImage
    com.AmbrosiaSW.AudioSupport
    com.Logitech.driver.HIDDevices

  • Cost Analysis Report - For a range of process orders

    Dear all,
    Is there a standard report available to get the cost analysis for a range of process order? COR3 --> Go to --> Cost --> Analysis. Here I can see the cost analysis for one report. But I wanted to get the cost analysis report for a range of process orders. Please help.
    Thanks
    Nagarajan

    Dear
    You can use cost analysis report like
    1.S_ALR_87099932 - Variances Between Costing Runs
    2.S_ALR_87099931 - Price vs Cost Estimate
    3.S_ALR_87099932 - Variances Between Costing Runs
    5.KOC4
    Regards
    JH

  • Need help on classical report

    hi friends i need help on classical reports,
    sold-party,
    material
    sales and distrubitutation channel ,division,
    incoming orders,order number,invoice ,credit,
    i need sub totals and final total of invoice and each customer should display in new page .

    Hi
    Use the Tables KNA1,VBAk,VBAP,VBRK and VBRP and design the report
    see the sample report using KNA1,VBAK and VBAP.
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    LOOP AT SCREEN.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    ENDLOOP.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND.
    REPORT demo_list_at_user_command NO STANDARD PAGE HEADING.
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Reward points for useful Answers
    Regards
    Anji

  • Need help on Oracle Report format

    Hi,
    I need help on Oracle Reports. I am generating a report in excel sheet. I have a column which is 13 digit number (In database it is CHAR datatype). In excel sheet it showing some thing like 9.78381E+12. I want to show complete number like 9783805591331.
    Also sometimes leading zero's are not showing when my column values is something like 0098794859583. I need to show the leading zero's as well in excel without losing them.
    Below are the parameters i am using for the report
    DESFORMAT=SPREADSHEET AND DESTYPE=FILE
    My Oracle 9i developer version.
    Any help on this would be much appreciated.
    Thanks
    Kishore

    An additional quote string ' character with the number field will solve this problem but if u want to display this field in report then it will look ugly
    '''||yourfield from table; check ur regional settings also
    plz mark it helpful correct if it is

  • Need help in developing BADI for IT0001

    Hi All,
    I need help in developing BADI for IT0001.
    On IT0001 create or change, there is need to update IT0017 with following data from IT0001
    -Company Code
    -Cost center
    -Business Area
    -Begin and End Date.
    Other fields from IT0017 need to be derived from Position and update in IT0017.
    Please guide me how I can address this. I do not want to go for dynamic action, as it is not getting evoked during background jobs.
    I am new to BADI development and will appreciate step by step instructions.
    Thanks

    Hi,
         follow the below steps to achive
    Steps:
    1.     Execute Business Add-In(BADI) transaction SE18
    2.     Enter BADI name i.e. HRPAD00INFTY and press the display
            button
    3.     Select menu option Implementation->Create
    4.     Give implementation a name such as Z_HRPAD00INFTY
    5.      You can now make any changes you require to the BADI within this
            implementation, for example choose the Interface tab there are 3 methods avialble
    6.     Double click on the method you want to change, you can now enter
            any code you require.
    7.      Please note to find out what import and export parameters a
            method has got return the original BADI definition
            (i.e. HRPAD00INFTY) and double click on the method name
            for example within HRPAD00INFTY contract is a method
    8.      When changes have been made activate the implementation
    <b>Reward points</b>
    Regards

  • Need a parked/blocked report that contains both the FI and MM number for ea

    Hi Guys,
    Business need a report which contains the translation of 'MM' numbers (typically beginning with '51') assigned for parked PO invoices vs. the 'FI' document number that comes out in the parked report. 
    Ideally, business need a parked/blocked report that contains both the FI and MM number for each record.
    Can someone help me pull this report from MM
    Thanks and Regards,
    Habeeb

    Hello Habeeb,
    Check out the report MR43 which gives information about Parked invoice. Also you can have a look on MIR6 with check box Parked Innvoice.
    The main table for parking invoice is VBKPF and other relevent tables are as follow:
    VBKPF                          Document Header for Document Parking
    VBSEC                          Document Parking One-Time Data Document Segment
    VBSEGA                         Document Segment for Assets Document Parking
    VBSEGD                         Document Segment for Customer Document Parking
    VBSEGK                         Document Segment for Vendor Document Parking
    VBSEGS                         Document Segment for G/L Accounts Document Parking
    VBSET                          Document Segment for Taxes Document Parking
    Hope this helps.
    Regards
    Arif Mansuri

  • Need help Connecting Crystal Reports 8.5 with GBS Agency Expert 6.7.6c

    Need help Connecting Crystal Reports 8.5 with GBS Agency Expert 6.7.6c.  I need assistance on connecting these together so I can run a report.  I am not an IT person so if someone could dumb it down it would be great.
    Thanks,
    NBGHealth

    Hello,
    I assume GBS Agency Expert 6.7.6c is some sort of database or data source? If you have an ODBC driver then create or use a System DSN to the database. Then you can create a report using that DSN.
    Otherwise I suggest you contact the makers of GBS Agency Expert 6.7.6c and ask them how to connect to the database.
    Let them know CR is ANSII 92 ODBC 3 compliant.
    Thank you
    Don

  • I still need help with the Dictionary for my Nokia...

    I still need help with the Dictionary for my Nokia 6680...
    Here's the error message I get when trying to open dictionary...
    "Dictionary word information missing. Install word database."
    Can someone please provide me a link the where I could download this dictionary for free?
    Thanks!
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

    oops, im sorry, i didnt realised i've already submitted it
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

  • Need Help existing Crystal 8.5 to Ver.11 Install and SmartViewerActiveX.asp

    How to get my reports working, required Install onto Server? Version Changes to Code?
    Like other developers I am trying to reconfigure an existing solution / application that uses Crystal Reports 8.5 & RDC to call and display reports now moving to Crystal Reports XI =Ver.11.   Here is an almost identical issue that I have used for the basis of my question.
    Link: [ CRViewer - Crystal 8.5 VS. Crystal 11|http://www.tek-tips.com/viewthread.cfm?qid=1505100&page=6|From www.tek-tips.com]
    Just like the linked site's questions for the reports, our ActiveX viewer is called from within the ASP code  SmartViewerActiveX.asp from Ver 8.5, we now have Crystal Reports XI = Ver.11 Developer.
    However I am not sure that the other site was clear with the procedure for deployment and setup and that's why I am seeking help with the Crystal Reports we have in our projects.
    Do I install Crystal Reports XI Developer onto the Server to get the VIEWER?
    What configuration is required so that the NEW Ver. 11 viewer works with 8.5?
    What code changes are required to use a new Activex Viewer object?
    I have legacy Crystal Reports solution using 8.5 and moving to Crystal Ver. 11.  Need help with clear requirements for what is required and how to install the required components to the WEB SERVER / IIS Server.  Using "Unmanaged" Reports with Crystal Dev. Edition Ver. 8.5 to Ver. 11.  Currently 8.5 is not working I suspect due to the viewer not being installed to the server.
    CODE LINE from my SmartViewerActiveX.asp in my IIS server.....
    "/viewer9/activeXViewer/activexviewer.cab#Version=9,2,0,442"
    I have not found a virtual folder reference to a folder that contains, /viewer9/activeXViewer/activexviewer.cab on the IIS server.  Keep in mind this is a NEW server with many of the application solutions copied to it without complete migration steps and possibly missing installation steps such as Crystal Reports Developer CD Ver.11.
    Below are the steps I had found at the LINK above, however I need validation if this is the correct steps and clarification of the steps.  This will eventually be going onto a PRODUCTION server and I need to minimize the possibility of killing other apps and potentially the server.  (Windows 2003 Server, with Mainly VISTA and Win 7 clients via IE. 8 to present version.) 
    From: (http://www.tek-tips.com/viewthread.cfm?qid=1505100&page=6)
    NEED MORE DETAILS
    1. Install CR11 developer to server
    2.  Setup Virtual Path within IIS for ActiveX component
       C:\program files\common........\Busines objects\3.0\CrystalReportsViewers11\activexcontrols
    3. Check registry to get classid for activex control
    hkey_classes_root
      Crystalreports.activexreportviewer
      CLSID
      CurVer
    4. Change code to use new activex control page:  Smartvieweractivex.asp
    5. migrate reports from Crystal Reports 8.5 to 11
    6. run application and open report using CR11 viewer
    Help would be greatly appreciated!
    Thanks.
    E

    Thanks for ALL your feedback! 
    Still not there yet with a solution or option from the last reply....
    I tried to be as brief as possible, however it appears that there are MANY issues surrounding Crystal Reports in General let alone the versions and applications that had been developed and very little straight forward information on how to migrate/move and use existing applications on NEW servers (NOTE: Old CR 8.5 is running in a newer environment as it had been developed at the Company that had previously owned us.).
    I am trying to get the application that is OLD re-deployed into a new company, with old data, old reports, just to make the existing solution work.   Crystal Reports Ver. 11 was brought into the mix when a copy of Crystal 8.5 could not be purchased by our new company.  Right after purchase of Ver.11, I was able to get the original 8.5 DEV CD and License from our old company.
    Q: 1)  "/viewer9/activeXViewer/activexviewer.cab#Version=9,2,0,442"
    A: This is what is on the server that the Crystal Reports 8.5 solution is running on in the server environment that it currently is running and working in.  PROBLEM.. The Our Comapny is no longer part of the other Company... They have theirs running without issue with Crystal 8.5 Reports, and the command line listed above on their IIS server... This is what was given to me to migrate into our NEW Company environment.
    Q: 2) CR 11 is rather undefined... There is CR XI Release 1 (11.0)
    A: APPEARS that I have CR XI Release 1 (11.0)  - HELP ABOUT SHOWS 11.0.0.1282
    Q: How do you get the app on your server? Use the RDC merge modules and create a setup or an MSI.  
    Not sure what, "...Use the RDC merge modules and create a setup or an MSI..." involves??
    Why Can't I just install this using the CR Dev. CD.?  The Product was purchased with 2 Licenses.
    I also have the OLD Crystal Reports Developer Ver. 8.5 CD that could be used to re-deploy the viewers.
    Q: Did you realize that the RDC is retired in CR 11.5?... ETC..
    A:  Yes, again why cant the existing solution of Crystal Reports 8.5 RPT files be used on the IIS server being called via Crystal Reports 8.5 Viewers...  I have access to the original 8.5 CD,.. Again not sure how to deploy the VIEWERS part to the server..
    Trying to get the simplest solution to have the existing 8.5 Reports, running from the IIS Web Server using the ActiveX viewer and URL Calls...
    ALL HELP IS WELCOME!
    Thanks
    E.

  • I accidentally changed a setting on my ipod touch and now it won't change back. I have had my ipod for more than two years and i dont know what to do. If i go to the apple store, would they fix it, or would i need to get a new one?

    I accidentally changed a setting on my ipod touch and now it won't change back. I have had my ipod for more than two years and i dont know what to do. If i go to the apple store, would they fix it, or would i need to get a new one? If it could be fixed, how much would it cost?

    If it is still under warranty you can call the 800 number to apple and enter the serial number and it will tell you if it is under warranty or not if not its like $30 basically for them to help or something like that it said today when i called...
    Or take it to a genius bar if you have one near?
    Or further explain what setting you are needing fixed back and im sure someone here can help you for free!

  • I need help, I sent a job to my eprint address and it did not print

    I need help, I send two jobs to my eprint address and it didn't print, nor does not even show that it even got the job. I sent it from both of the e-mails that I have set up for it to except. Can someone please let me know what I am doing wrong. By the way my printer is a HP photosmart premium fax series C410A AIO. Thanks for your help in helping me resolve this matter, Mitzi,{Personal Information Removed}

    Hey mitzidg!
    Has ePrint been working for you in the past? If so, try power cycling your printer (unplugging it for about 30 seconds and then plugging it back in.) If you are still having a problem, try waiting a few hours and then trying again. Occasionally we are doing updates on the ePrint servers that can cause delays.
    Hope this helps!
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • I need help getting my OS X Mavricks download to work and start downloading but it wont work

    i need help getting my OS X Mavricks download to work and start downloading but it wont work

    Contact http://www.apple.com/support/mac/app-store/contact/. They're responsible for getting this abysmal delivery system to work.

  • HT6114 I need help hacking into my ipod i forgot the password and i cant factory reset it because the power button is broken?!

    I need help hacking into my ipod i forgot the password and i cant factory reset it because the power button is broken?!

    If your iPod Touch, iPhone, or iPad is Broken
    Apple does not fix iDevices. Instead, they exchange yours for a refurbished or new replacement depending upon the age of your device and refurbished inventories. On rare occasions when there are no longer refurbished units for your older model, they may replace it with the next newer model.
    ATTN: Beginning July 2013 Apple Stores are now equipped to do screen repairs/replacements in-house on iPhone 5 and 5C. In some cases while you wait. According to Apple this is the beginning of equipping Apple Stores with the resources needed to do most repairs for iPhones, iPads, and iPod Touches that would not require major replacements. Later in the year the services may be extended as Apple Stores become equipped and staffed with the proper repair expertise. So, if you need a screen repaired or a broken screen replaced or have your stuck Home button fixed, call your local Apple Store to see if they are now doing these in-house.
    You may take your device to an Apple retailer for help or you may call Customer Service and arrange to send your device to Apple:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Contacting Apple for support and service - this includes international calling numbers.
    You will find respective repair costs in the appropriate link:
    iPod Service Support and Costs
    iPhone Service Support and Costs
    iPad Service Support and Costs
    There are third-party firms that do repairs on iDevices, and there are places where you can order parts to DIY if you feel up to the task:
    1. iResq or Google for others.
    2. Buy and replace screen yourself: iFixit
    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    A
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

  • I need i tunes 10.5 for my i phone 4s and cant download onto my 64bit windows 7 laptop treid everything any ideas???

    i need i tunes 10.5 for my i phone 4s and cant download onto 64 bit windows 7 laptop tried everything anyone help me please????

    true. but he is right itunes automatically sees your running 64 bit and as soon as you go to the site on left hand side of sceen you see download 10.5 just click it and you should see this it automatically points to 64 bit install then you just hit download again. pretty simple
    Tunes 10.5 for Windows (64-bit)
    Email me New On iTunes and special iTunes offers.
    Keep me up to date with Apple news, software updates, and the latest information on products and services.
    then right below this it says download
    or just click this link http://www.apple.com/itunes/download/

Maybe you are looking for

  • My Macbook Pro shuts off within 5 minutes when just using the battery..why?

    The problem started a while ago, but I never much payed attention to it because I kept the laptop on my desk and connected to the wall. But it started around a year and half ago, when I disconnect my computer from the power source, it might last a li

  • 1TB External Hard Drive, Who Has One That They're Happy With?

    Hi, I'm looking to get a 1tb external hard drive to store video, and was wondering if anyone was super happy with their's? I was looking at the Maxtor One Touch III, Lacie, or WD external hard drives??? Any advice would be awesome. Thanks. Dan

  • URL to Enterprise Service Repository

    Hi All, we have a ERP2005 evaluation system. Now I want to browse the enterprise services similar to the Preview system (esapreview.sap.com). Does anybody know the URL I have to use? Regards, Marc

  • Error message exporting video from iPhoto

    Running IMAC  OSX version 10.9.4  iPhoto version 9.5.1 and also Aperture 11.    I had a made a video and photo slideshow on my Mac air and wanted to get it onto my iMac.  I spent some time at the Apple store getting help in how to back the Mac Air iP

  • How to import lokal contacts out of my macbook into iphone?

    I have in the contact book of my macbook two categories of contacts.One is  named "icloud",the other "local".It seemed,that the iphone connected via USB cable is synchronizing the contacts stored under "icloud" only.How can I transfer my local contac