Smartform problem while printing the employee details

Hi,
I am creating a smartform to display the employee pay slips as the report.
the requirement is to display two employee's payslip on the single page.
Suppose:
1 ABC
2. XYZ
On the same page and so on...
How do i do it through smartform.... Any hint?

Hi
there is an easy way to do that,
first u need to adapt the size of ur MAIN windows just for 2 registers, inside the MAIN a loop to the table with the data of employee and a template, so write the data there.
with that, the every 2 register the smartform will pass to another page.
It is everything on the MAIN windows,
Regards

Similar Messages

  • Pronlem in LOP while retrieving the employee details

    Hi,
    I am new to HR for ABAP developing,
    I have a Pronlem in a report for LOP (loss of pay) while retrieving the employee details.
    (i.e) while retrieving employee details by individual it shows the correct details.
    But, in the group of 10 employess out of 9 doesn't have the LOP and the 1 is having LOP. While retrieving this it shows all the
    10 members have LOP.  It shows some amount for that 1 person also.
    Kindly i need ur help for the above issues.
    Waiting for ur valuable replies.

    Hi swarna,
             Herewith i attached my code, would u please suggest me wer shud i make changes.
    Rgds,
    Karthik
    START-OF-SELECTION.
      IF P_1 = 'X'.
        W_EXT = '.csv'.
      ELSE.
        W_EXT = 'err.csv'.
        PR_PATH = '/obrm/in/asset/'.
      ENDIF.
      CLEAR:W_PR_FNAME,
            W_STR,
            W_PATH1,
            W_LEN,
            W_F6_TMP.
      CLEAR:WA_MESSTAB,WA_UP_SUCC,WA_FINAL,WA_FILE.
      REFRESH:IT_FINAL, IT_MESSTAB,IT_UP_ERROR,IT_UP_SUCC,ITFILE,ITFILE1 .
      W_GO = 'X'.
      CALL FUNCTION 'SUBST_GET_FILE_LIST'
        EXPORTING
          DIRNAME      = PR_PATH
          FILENM       = '*'
        TABLES
          FILE_LIST    = ITFILE
        EXCEPTIONS
          ACCESS_ERROR = 1
          OTHERS       = 2.
      IF SY-SUBRC <> 0.
        MESSAGE TEXT-102 TYPE C_I.
        EXIT.
      ENDIF.
      LOOP AT ITFILE INTO WA_FILE.
        IF WA_FILE-NAME CS W_EXT.
          APPEND  WA_FILE TO ITFILE1.
          CLEAR WA_FILE.
        ENDIF.
      ENDLOOP.
      LOOP AT ITFILE1 INTO WA_FILE.
        IF SY-TABIX > 1.
          CLEAR IT_FINAL[].
        ENDIF.
        CONCATENATE PR_PATH WA_FILE-NAME INTO W_PR_FNAME.
        OPEN DATASET W_PR_FNAME FOR INPUT IN TEXT MODE ENCODING DEFAULT.
        CLEAR : IT_SOURCE[].
        DO.
          READ DATASET W_PR_FNAME INTO W_STR.
          IF SY-SUBRC NE 0.
            EXIT.
          ENDIF.
          SPLIT W_STR AT ';' INTO
                WA_FINAL-F1
                WA_FINAL-F2
            WA_FINAL-F3.
          CLEAR WA_SOURCE.
          WA_SOURCE-F1 = WA_FINAL-F1.
          WA_SOURCE-F2 = WA_FINAL-F2.
          WA_SOURCE-F3 = WA_FINAL-F3.
          SO_SER-LOW = WA_FINAL-F1.
          SO_SER-SIGN = 'I'.
          SO_SER-OPTION = 'EQ'.
          APPEND SO_SER.
          APPEND WA_SOURCE TO IT_SOURCE.
          APPEND WA_FINAL TO IT_FINAL.
        ENDDO.
        CLOSE DATASET W_PR_FNAME.
        IF IT_FINAL[] IS INITIAL.
          MESSAGE TEXT-E01 TYPE C_I.
          EXIT.
        ENDIF.
        PERFORM MATERIAL_DOCS_GET.
        IF SY-SUBRC NE 0.
          MESSAGE TEXT-M01 TYPE 'S'.
          RETURN.
        ENDIF.
        DELETE IT_MDOCS WHERE BWART = '102'.
        LOOP AT IT_MDOCS INTO WA_MDOCS.
          WA_AMT_SUM-EBELN = WA_MDOCS-EBELN.
          WA_AMT_SUM-SHKZG = WA_MDOCS-SHKZG.
          WA_AMT_SUM-DMBTR = WA_MDOCS-DMBTR.
          COLLECT WA_AMT_SUM INTO IT_AMT_SUM.
        ENDLOOP.
        PERFORM SERIAL_NUMBERS_GET.
        IF IT_SRNO[] IS INITIAL.
          RETURN.
        ENDIF.
      ENDLOOP.
      CALL SCREEN 100.
    END-OF-SELECTION.
      IF PR_TEST NE 'X'.
        PERFORM DISPLAY_LOG.
      ENDIF.
    FORM MATERIAL_DOCS_GET .
      SELECT MATNR
             FROM MARA INTO TABLE IT_MATNR
             WHERE MATKL in ('DTH_STB','DTH_STBSC') AND
                   MTART EQ 'UNBW'    AND
                   LVORM EQ ' '.
      IF IT_MATNR IS NOT INITIAL.
        LOOP AT IT_MATNR INTO WA_MATNR.
          SO_MATNR-SIGN   = 'I'.
          SO_MATNR-OPTION = 'EQ'.
          SO_MATNR-LOW    =  WA_MATNR-MATNR.
          APPEND SO_MATNR.
        ENDLOOP.
      ELSE.
        MESSAGE TEXT-M06 TYPE 'S'.
        RETURN.
      ENDIF.
      SELECT A~OBKNR A~SERNR A~MATNR B~OBKNR B~MBLNR B~MJAHR B~BWART
             FROM OBJK AS A INNER JOIN SER03 AS B ON A~OBKNR = B~OBKNR
             INTO CORRESPONDING FIELDS OF TABLE IT_SER03
             WHERE A~SERNR IN SO_SER AND
                   A~MATNR IN SO_MATNR AND
                   B~BWART IN ('101','102','122') and
                   B~LIEFERANT <> ' '.
      IF IT_SER03 IS NOT INITIAL.
        SELECT MBLNR MJAHR ZEILE EBELN EBELP LFBNR LFBJA LFPOS SJAHR SMBLN SMBLP BWART SHKZG WAERS MENGE MEINS KUNNR
               FROM MSEG INTO CORRESPONDING FIELDS OF TABLE IT_MSEG
               FOR ALL ENTRIES IN IT_SER03
               WHERE MBLNR = IT_SER03-MBLNR       AND
                     MJAHR = IT_SER03-MJAHR       AND
                     BWART IN ('101','102','122') AND
                     MATNR IN SO_MATNR            AND
                     DMBTR > 0 .
      ENDIF.
      IF IT_MSEG IS NOT INITIAL.
        SELECT * FROM ZPOVAL_ASSET INTO CORRESPONDING FIELDS OF TABLE IT_PO
                 FOR ALL ENTRIES IN IT_MSEG
                 WHERE EBELN = IT_MSEG-EBELN.
        SELECT KUNNR REGIO
               FROM KNA1 INTO CORRESPONDING FIELDS OF TABLE IT_KNA1
               FOR ALL ENTRIES IN IT_MSEG
               WHERE KUNNR = IT_MSEG-KUNNR.
      ENDIF.
      DELETE IT_MSEG WHERE EBELN = '6100000124'.
      LOOP AT IT_SER03 INTO WA_SER03.
        WA_MDOCS-SERNR = WA_SER03-SERNR.
        WA_MDOCS-MATNR = WA_SER03-MATNR.
        READ TABLE IT_MSEG INTO WA_MSEG1 WITH KEY MBLNR = WA_SER03-MBLNR.
        IF SY-SUBRC = 0.
          MOVE-CORRESPONDING WA_MSEG1 TO WA_MDOCS.
          READ TABLE IT_PO INTO WA_PO WITH KEY EBELN = WA_MSEG1-EBELN.
          IF SY-SUBRC = 0.
            WA_MDOCS-DMBTR = WA_PO-DMBTR.
          ENDIF.
          READ TABLE IT_KNA1 INTO WA_KNA1 WITH KEY KUNNR = WA_MSEG1-KUNNR.
          IF SY-SUBRC = 0.
            WA_MDOCS-KUNNR = WA_KNA1-KUNNR.
            WA_MDOCS-REGIO = WA_KNA1-REGIO.
          ENDIF.
          APPEND WA_MDOCS TO IT_MDOCS.
        ENDIF.
      ENDLOOP.
      SORT IT_MDOCS BY SERNR MJAHR MBLNR DESCENDING.
      DELETE ADJACENT DUPLICATES FROM IT_MDOCS COMPARING SERNR.
      IF SY-SUBRC EQ 0.
        LOOP AT IT_ZFT_POSTED_MDOCS1 INTO WA_ZFT_POSTED_MDOCS1.
          CONCATENATE TEXT-M09 WA_ZFT_POSTED_MDOCS1-MBLNR TEXT-M10 INTO WA_LOG-MSG SEPARATED BY SPACE.
          WRITE: /5 WA_LOG-MSG.
          DELETE IT_MDOCS WHERE MBLNR EQ WA_ZFT_POSTED_MDOCS1-MBLNR.
        ENDLOOP.
      ENDIF.
      CLEAR WA_LOG.
      REFRESH IT_LOG[].
      IF IT_MDOCS[] IS INITIAL.
        SY-SUBRC = 4.
        RETURN.
      ENDIF.
    *copy material docs for dumping in ZFT_POSTED_ASSET
      IT_ZFT_POSTED_ASSET[] = IT_MDOCS[].
    ENDFORM.                    " material_docs_get
    FORM DISPLAY_LOG .
      IF IT_LOG[] IS INITIAL.
        RETURN.
      ENDIF.
      LOOP AT IT_LOG INTO WA_LOG.
        WRITE: /5 WA_LOG-MSG.
      ENDLOOP.
    ENDFORM.                    " display_log
    FORM SERIAL_NUMBERS_GET.
      DATA: WA_SRNO1 TYPE TY_SRNO.
      SELECT MBLNR MJAHR BUDAT
             FROM MKPF INTO CORRESPONDING FIELDS OF TABLE IT_MKPF
             FOR ALL ENTRIES IN IT_MDOCS
             WHERE MBLNR = IT_MDOCS-MBLNR AND
                   MJAHR = IT_MDOCS-MJAHR.
      LOOP AT IT_MDOCS INTO WA_MDOCS.
        MOVE-CORRESPONDING WA_MDOCS TO WA_SRNO.
        READ TABLE IT_MKPF INTO WA_MKPF WITH KEY MBLNR = WA_MDOCS-MBLNR MJAHR = WA_MDOCS-MJAHR.
        IF SY-SUBRC = 0.
          WA_SRNO-BUDAT = WA_MKPF-BUDAT.
        ENDIF.
        APPEND WA_SRNO TO IT_SRNO.
      ENDLOOP.
      LOOP AT IT_SRNO INTO WA_SRNO WHERE BWART EQ '101'.
        READ TABLE IT_SRNO INTO WA_SRNO1 WITH KEY SERNR = WA_SRNO-SERNR
                                                  BWART = '122'.
        IF SY-SUBRC EQ 0 AND WA_SRNO-MBLNR LT WA_SRNO1-MBLNR.
          DELETE IT_SRNO.
        ENDIF.
      ENDLOOP.
      DELETE IT_SRNO WHERE BWART = '122'.
      DESCRIBE TABLE IT_SRNO LINES W_COUNT.
      SORT IT_MDOCS BY SERNR.
      SORT IT_SRNO BY SERNR.
      SORT IT_FINAL BY F1.
      LOOP AT IT_SRNO.
        READ TABLE IT_MDOCS WITH KEY SERNR = IT_SRNO-SERNR.
        IF SY-SUBRC = 0 .
          IT_SRNO-VALUE = IT_MDOCS-DMBTR.
          IT_SRNO-EBELN = IT_MDOCS-EBELN.
          READ TABLE IT_FINAL WITH KEY F1 = IT_SRNO-SERNR.
          IT_SRNO-CAPDT = IT_FINAL-F2.
          CONCATENATE     IT_FINAL-F26(4) IT_FINAL-F20(2) IT_FINAL-F2+3(2)   INTO IT_SRNO-CAPDT.
          CLEAR KNA1.
          SELECT SINGLE * FROM KNA1 WHERE KUNNR = IT_FINAL-F3.
          IF SY-SUBRC = 0 .
            IT_SRNO-KUNNR = IT_FINAL-F2.
            IT_SRNO-REGIO = KNA1-REGIO.
          ENDIF.
          SELECT SINGLE * FROM ZFT_100_ASSET WHERE SERNR = IT_SRNO-SERNR.
          IF SY-SUBRC = 0.
            IT_SRNO-VALUE = 0 .
          ENDIF.
          MODIFY IT_SRNO.
          MOVE-CORRESPONDING IT_SRNO TO IT_ASSET  .
          IT_ASSET-ASSET_ACT_DT = IT_SRNO-CAPDT.
          CONCATENATE 'A' W_FREENUM2  INTO IT_ASSET-ASSET_ID.
          COLLECT IT_ASSET.
          MOVE-CORRESPONDING IT_ASSET TO IT_ASSET_POST.
          COLLECT IT_ASSET_POST.
        ENDIF.
      ENDLOOP .
      SORT IT_ASSET_POST BY ASSET_ID ASSET_ACT_DT REGIO.
      IF PR_TEST NE 'X'.
        LOOP AT IT_ASSET_POST.
          CLEAR W_FREENUM2.
          SELECT SINGLE * FROM ZFT_STATE_COST WHERE REGIO = IT_ASSET_POST-REGIO AND TYPE  = 'E' .
          IF SY-SUBRC <> 0 .
            MESSAGE X899(FI) WITH 'No cost center for the region'.
          ENDIF.
          CALL FUNCTION 'NUMBER_GET_NEXT'
            EXPORTING
              NR_RANGE_NR             = '01'
              OBJECT                  = C_NRANGE1
            IMPORTING
              NUMBER                  = W_FREENUM2
            EXCEPTIONS
              INTERVAL_NOT_FOUND      = 1
              NUMBER_RANGE_NOT_INTERN = 2
              OBJECT_NOT_FOUND        = 3
              QUANTITY_IS_0           = 4
              QUANTITY_IS_NOT_1       = 5
              INTERVAL_OVERFLOW       = 6
              BUFFER_OVERFLOW         = 7
              OTHERS                  = 8.
          IF SY-SUBRC = 0.
          ENDIF.
          CONCATENATE 'A' W_FREENUM2  INTO IT_ASSET_POST-ASSET_ID.
          IT_ASSET_POST-KOSTL = ZFT_STATE_COST-KOSTL.
          MODIFY IT_ASSET_POST.
        CLEAR ZFT_100_ASSET.
        ENDLOOP.
      ENDIF.
      SORT IT_ASSET_POST BY ASSET_ACT_DT REGIO.
      SORT IT_ASSET BY ASSET_ACT_DT REGIO.
      LOOP AT IT_ASSET.
        READ TABLE IT_ASSET_POST WITH KEY ASSET_ACT_DT =  IT_ASSET-ASSET_ACT_DT REGIO = IT_ASSET-REGIO MATNR = IT_ASSET-MATNR.
        IF SY-SUBRC = 0 .
          IT_ASSET-ASSET_ID =  IT_ASSET_POST-ASSET_ID .
          IF IT_ASSET-VALUE = 0.
            IT_ASSET-TEXT = 'Asset Already Created'.
          ELSE.
          ENDIF.
          MODIFY IT_ASSET.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " serial_numbers_get
    FORM ASSET_CREATE .
      DATA :LW_CNT TYPE I.
      LOOP AT IT_ASSET_POST WHERE VALUE > 0.
        CLEAR: IT_ASSET1[],LW_CNT.
        IT_ASSET1[] = IT_ASSET[].
        DELETE IT_ASSET1 WHERE ASSET_ID <> IT_ASSET_POST-ASSET_ID.
        DESCRIBE TABLE IT_ASSET1 LINES LW_CNT.
        MOVE IT_ASSET_POST-ASSET_ID TO WA_ANLA-ANLN1.
        CALL FUNCTION 'ASSET_EXISTENCE_CHECK'
          EXPORTING
            I_ANLN1          = WA_ANLA-ANLN1
            I_BUKRS          = '5100'
          EXCEPTIONS
            ANLAGE_DEAKTIV   = 1
            ANLAGE_GELOESCHT = 2
            ANLAGE_GESPERRT  = 3
            ANLAGE_NOT_FOUND = 4
            ANLAGE_IST_INVM  = 5
            OTHERS           = 6.
        IF SY-SUBRC EQ 0.
          CONCATENATE TEXT-M02 IT_ASSET_POST-ASSET_ID TEXT-M05 INTO W_MSG SEPARATED BY SPACE.
          WA_LOG-MSG = W_MSG.
          APPEND WA_LOG TO IT_LOG.
          CLEAR: WA_LOG, W_MSG.
          CONTINUE.
        ENDIF.
        IF SY-SUBRC <> 0.
        ENDIF.
        WA_ANLA-BUKRS = '5100'.  "company code
        IF IT_ASSET_POST-MATNR = '000000000030000452'.
          WA_ANLA-ANLKL = '00009021'.  "asset class for STB
        ELSEIF IT_ASSET_POST-MATNR = '000000000030000700'.
          WA_ANLA-ANLKL = '00009033'.  "asset class for HD STB Box
        ENDIF.
        WA_ANLA-ANLN1 = IT_ASSET_POST-ASSET_ID. "wa_srno-sernr.
        CONCATENATE 'STB - ' IT_ASSET_POST-ASSET_ID INTO WA_ANLA-TXT50 SEPARATED BY SPACE.
        WA_ANLA-AKTIV = IT_ASSET_POST-ASSET_ACT_DT.
        WA_ANLZ-KOSTL =  IT_ASSET_POST-KOSTL .                  "'1711121'.
        WA_ANLA-MENGE = LW_CNT.
        WA_ANLA-MEINS = 'EA'.
        CALL FUNCTION 'CREATE_ASSET'
          EXPORTING
            I_ANLA                     = WA_ANLA
      I_ANLV                           =
            I_ANLZ                     = WA_ANLZ
           I_DARK                      = 'X'
           I_NASSETS_FIX               = ' '
           I_CALLED_BY_PURCHASE_ORDER  = ' '
          TABLES
            T_ASSETS                   = IT_ASSETS
         EXCEPTIONS
           MISSING_COMPANY_CODE        = 1
           MISSING_ASSET_CLASS         = 2
           MISSING_ASSET_MAINNUMBER    = 3
           INTERNAL_ERROR              = 4
           OTHERS                      = 5
        IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        IF SY-SUBRC EQ 0.
          COMMIT WORK.
          SELECT SINGLE * FROM ANLB WHERE BUKRS = '5100' AND ANLN1 = WA_ANLA-ANLN1 AND AFASL = 'Z001'.
          IF SY-SUBRC = 0 .
            ANLB-AFABG = '20071201'.
            MODIFY ANLB.
            COMMIT WORK.
          ENDIF.
          SELECT SINGLE * FROM ANLB WHERE BUKRS = '5100' AND ANLN1 = WA_ANLA-ANLN1 AND AFASL = 'IN14'.
          IF SY-SUBRC = 0 .
            ANLB-AFABG = '20071201'.
            MODIFY ANLB.
            COMMIT WORK.
          ENDIF.

  • Problem while priniting the Xcelsius

    Hello Experts,
    I have a problem while printing the xcelsius dashboard(.SWF file),
    While printing some objects not prinitng. and in the grid, the alert colors are not showing,
    I am using Xcelsius 2008 SP3.
    Please help me in resolving the issue.
    Thanks in advance,
    Radhika

    Hai
    Solution is to uninstall flash player, install Latest one
    When users open Microsoft PowerPoint files that contain SWFs and print the slides before running the
    Slide show, the printed slides are blank.
    To print SWFs in PowerPoint, start Slide Show mode and open each slide before printing the file.
    https://cw.sdn.sap.com/cw/ideas/1641
    http://www.tek-tips.com/viewthread.cfm?qid=1548648
    http://www.hackingsap.com/blog/tag/xcelsius
    http://www.sap-forum.org/f22/printing-xcelsius-t2789/

  • Error While Printing the Report

    Post Author: saqib
    CA Forum: .NET
    HI All,I have joined this forum recently. I found this forum so helpful. I have one query which is: I am using crystal report 10 with Dot Net 1.1, I have created one web report which consists of 19 pages. Once i press the print button on the report after previewing it shows me the error reporting screen of windows. I have checked in event viewer it gives me the following error detail:The description for Event ID ( 1000 ) in Source ( Microsoft Internet Explorer ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. The following information is part of the event: iexplore.exe, 6.0.2800.1106, printcontrol.dll, 10.0.0.533, 0003bb45. Can any one helps me as i am totally stuck in that. Thanks in advance.  

    Try the following if your printer is a network printer
    1. Add Printers - select Local Printer
    2. In the Add Printer wizard, select "create a new port" option and select "TCP/IP" as type
    3. Write the IP address of the network printer in the "Add standard TCP/IP Printer Port wizard". The port name becomes IP_<ip addr>. Click Next.
    4. Select the printer and printer type in "Add Printer" wizard.
    5. Select a driver and Write a printer name. This completes the setup. Use this printer name to print from Oracle reports.
    Hope this helps..
    Yogesh
    I am getting this error message while printing the report on Network Printer.
    "REP-1849: Failed while printing"
    Reports Server is not installed on my machine.
    On shared printer, it has no problems.
    Platform is Win2000. Report Builder 6.0.8.11.3
    Plz help !
    Thanks in advance !

  • Problem while printing in ukraine language using smart form

    Hi All,
    Am facing an issue while printing the quality certificate in Ukraine language. I have created the smartform in English,later I maintained the transalations in Ukraine. I will execute the print program by passing the delivery number in selection screen.
    The problem is in print preview every thing is coming fine in Ukraine language except the ship-to party address,But when I issue the print only the ship-to party address in coming in UK rest all are coming as junk characters. Am using  HELVCYR font. I have tried creating form in UK as well but same result.
    Other Ukraine documents are printed correctly using the same printer.
    Please tell me what could be the problem here?
    Thanks in advance.
    Regards
    harris

    Hi Harikrishna,
                         Which printerdevice you using .Is it supports uk language.Try to findout proper printer device for this.

  • Error while printing the letters in Recruitment

    Hi, SAP Gurus.
    I am working on implementation of Recruitment module.I am facing a problem while printing a letter for confirm receipt, invitation for Interview etc.
    error is "Internal error in SAP OLE document container control
    Message no. SOFFICEINTEGRATION019"
    Pl suggest whether this error of customization or of BASIS.
    I want to get letters printed through std SAP system.
    Thanks in advance
    Regds
    Punit

    Hi
    make sure whether printer was connected to the system and check with basis

  • Problem  in Printing the ALV list

    Hi,
       I have one problem with printing the ALV list. While printing the ALV list(thro Print Icon on application Tool bar) ,Fist page of my print out contains some other inforamtion.
      inforamtions included two tables
      first table  contains Sort Criteria, Ascdg, Descnd, Subtotal  columns.
      And second table contains Data statistics , number of
    columns.
    But from Second page onwards , my alv list printed correctly .
      How can i avoid the First page inforamtion and
          what is the Reason of coming like this?
    Thanks,
    Neptune.M

    I assume you are using function module Reuse_alv_grid_display or reuse_alv_list_display for ALV.
    If this is the case, there is a parameter called IS_PRINT that you need to supply while calling the function module.
    you can for exapmle declare
    data:
    printstruc type SLIS_PRINT_ALV.
    printstruc-NO_PRINT_LISTINFOS = 'X'.
    call function 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
    IS_PRINT = printstruc
    There are many other flags in is_print structures that you can use to manipulate the printing.
    Cheers!

  • While Printing The Ontest labels in the thermal printer it is printing Rev

    While Printing The Ontest labels in the thermal printer it is printing Rev
    the problem is my if my heading is on top
    and footer is at the end in preprinted
    my print has to be rotated 180 degrees

    Resolved Myself.

  • REP-1849: Failed while printing : Problem while printing on network printer

    I am getting this error message while printing the report on Network Printer.
    "REP-1849: Failed while printing"
    Reports Server is not installed on my machine.
    On shared printer, it has no problems.
    Platform is Win2000. Report Builder 6.0.8.11.3
    Plz help !
    Thanks in advance !

    Try the following if your printer is a network printer
    1. Add Printers - select Local Printer
    2. In the Add Printer wizard, select "create a new port" option and select "TCP/IP" as type
    3. Write the IP address of the network printer in the "Add standard TCP/IP Printer Port wizard". The port name becomes IP_<ip addr>. Click Next.
    4. Select the printer and printer type in "Add Printer" wizard.
    5. Select a driver and Write a printer name. This completes the setup. Use this printer name to print from Oracle reports.
    Hope this helps..
    Yogesh
    I am getting this error message while printing the report on Network Printer.
    "REP-1849: Failed while printing"
    Reports Server is not installed on my machine.
    On shared printer, it has no problems.
    Platform is Win2000. Report Builder 6.0.8.11.3
    Plz help !
    Thanks in advance !

  • Problem While saving the Invoice

    Dear Experts,
                      I am facing the Problem while Saving the Invoice, In invoice, We assigne the Output as RD00 and Medium as 6 (EDI).
    When we are saving the Invoice, it getting as ' Updated Terminated'. When i found where the Error is coming in SM13, it showing in as Function Module "RV_MESSAGE_UPDATE' & Error Details is 'EAN11 not found for Material'.
                     But in Invoice whatever we enter the Material number, we maintain the EAN11 code. This EAN11 code is seen in MARM & VBRP Table. Unable to find the what the exact error is.
                   please help me to sort this issue, Its business complicated.
    Thanks in Advance,
    Srini

    Hi Asik,
              Thanks for your valuable Message.... I run as you suggested, but the dispatch time i kept as 1 or 2. because the program RSNAST00 is picking the values only for 1 or 2. so i run manually,, as of now the issue is, in the invoice number, for one material number, the Billed quantity is zero, so the UOM is getting as initial. From those vaues we are picking the EAN11 from maram table.
    So, i modify that and run the EDI manually. As of now its working...
              Thanks for your reply,,,
    Regards,
    Srini

  • Problem while exporting the data from a report to an excel file.

    Hi SAP guru's,
    I have a problem while exporting the data from a report to an excel file.
    The problem is that after exporting, the excel file seems to have some irrelevant characters....I am checking this using SOST transaction..
    Required text (Russian):
    Операции по счету                                    
    № документа     Тип документа     № учетной записи     Дата документа     Валюта     Сумма, вкл. НДС     Срок оплаты     Описание документа
    Current Text :
       ? 5 @ 0 F 8 8  ? >  A G 5 B C                                   
    !   4 > : C       "" 8 ?  4 > : C      !   C G 5 B = > 9  7 0 ? 8 A 8        0 B 0  4 > : C         0 ; N B 0      ! C <       ! @ > :  > ? ; 0 B K        ? 8 A 0 = 8 5  4 > : C
    Can you help me making configuration settings if any?
    Regards,
    Avinash Raju

    Hi Avinash
    To download  such characteres you need to adjust code page to be used during export. You can review SAP note 73606 to identify which code page is required for this language
    Best regards

  • Error while updating the Assignment details using 'hr_assignment_api'

    An exception message is thrown while updating the assignment details through 'hr_assignment_api.update_emp_asg'.
    The message is 'ORA-20001: HR_FLEX_VALUE_MISSING: N, COLUMN, ASS_ATTRIBUTE6, N, PROMPT'.
    Even though a valid value is being passed to the segement,the error is thrown.
    I have tested the API in one instance and it is working fine. Recently I have migrated the codes to nother instance and encountered this error. The only difference is that in the newer instance, the segment is mandatory.
    One interesting thing is that, When I update the Assignment through application it is successfully saving the record. Then if I use the API to correct the Assignment, it is working fine. The API is not able to update only when the mandatory segment is null.
    Please help
    Thanks in advance
    Kumar

    Pl post details of OS, database and EBS versions, along with HR RUP level. It may be a bug, as outlined in MOS Doc 429169.1 (When Calling the Assignment API To Update Position, It Errors in Required Segment)
    HTH
    Srini

  • Error While terminating the employee through API

    Hello Group,
    I am facing the error while terminating the employee through standard api. The error is "You cannot create an entry past the termination rule date" The element entry I have are type "Recurring" and Termination at "Final Close" I have gone through the thread
    " http://forums.oracle.com/forums/thread.jspa?messageID=3794867 " Which is partial complete.
    Will be looking forward for the response.
    Thanks,
    Nitin Singh

    This doc directs to apply a patch.
    I have gone through. Just want to cross check if this required. I am able to terminate the employee through the application. There it just throws the warning saying " Element Entry has been changed for the Employee as the result of the termination do you wish to go with the termination"
    Srini let me know your opinion.
    Thanks
    Nitin Singh

  • Problem while updating the Support Package 17 on my SAP WAS SP9

    Hi,
    I'm facing problem while updating the Support Package 17 on my SAP WAS SP9
    ERROR 2006-10-13 10:23:22
    FSL-06002  Error 2 (The system cannot find the file specified.
    ) in execution of a 'CreateProcess' function, line (284), with parameter (java.exe ...).
    Please help me in this regard.....
    Thanks in advance...
    Satya

    Hello gentlemen, I am also having problem with the following running on 64 bit Windows and SQL2005/64 bit. I am erroring in Step 8 'Updating JDBC' driver. I am attempting to update from SP9 to SP18. The WEBAS Jave installed went flawless but I seem to be stuck here. Any help is appreciated...
    ERROR 2006-11-22 10:13:57
    FSL-06002  Error 2 (The system cannot find the file specified.
    ) in execution of a 'CreateProcess' function, line (284), with parameter (java.exe ...).

  • Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site

    Have an existing ex2010 sp3 organization.
    Could not run ex2013cu1 setup from my newly built 2012 server, getting the error in the subject line.  I used the command line to run the AD preparation steps successfully from my 2012 DC/GC, then tried to run setup again from the new 2012 server and
    still get the same error.  The error itself in the log is pretty useless:
    [05/07/2013 01:19:13.0137] [0] **********************************************
    [05/07/2013 01:19:13.0137] [0] Starting Microsoft Exchange Server 2013 Cumulative Update 1 Setup
    [05/07/2013 01:19:13.0137] [0] **********************************************
    [05/07/2013 01:19:13.0152] [0] Local time zone: (UTC-08:00) Pacific Time (US & Canada).
    [05/07/2013 01:19:13.0152] [0] Operating system version: Microsoft Windows NT 6.2.9200.0.
    [05/07/2013 01:19:13.0152] [0] Setup version: 15.0.620.29.
    [05/07/2013 01:19:13.0152] [0] Logged on user: DOMAIN\ADMINISTRATOR.
    [05/07/2013 01:19:13.0168] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0168] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0215] [0] Command Line Parameter Name='sourcedir', Value='\\h1\f$\junk\installers\server\Exchange\2013cu1'.
    [05/07/2013 01:19:13.0215] [0] Command Line Parameter Name='mode', Value='Install'.
    [05/07/2013 01:19:13.0215] [0] RuntimeAssembly was started with the following command: '/sourcedir:\\SERVER\f$\junk\installers\server\Exchange\2013cu1 /mode:Install'.
    [05/07/2013 01:19:13.0215] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0793] [0] Finished loading screen CheckForUpdatesPage.
    [05/07/2013 01:19:38.0762] [0] Finished loading screen UpdatesDownloadsPage.
    [05/07/2013 01:19:40.0496] [0] Starting file's copying...
    [05/07/2013 01:19:40.0496] [0] Setup copy files from '\\SERVER\f$\junk\installers\server\Exchange\2013cu1\Setup\ServerRoles\Common' to 'C:\Windows\Temp\ExchangeSetup'
    [05/07/2013 01:19:40.0700] [0] Finished loading screen CopyFilesPage.
    [05/07/2013 01:19:40.0840] [0] Disk space required: 1292445007 bytes.
    [05/07/2013 01:19:40.0840] [0] Disk space available: 23767240704 bytes.
    [05/07/2013 01:19:59.0762] [0] File's copying finished.
    [05/07/2013 01:19:59.0965] [0] Finished loading screen InitializingSetupPage.
    [05/07/2013 01:20:02.0934] [0] Setup is choosing the domain controller to use
    [05/07/2013 01:20:09.0325] [0] Setup is choosing a local domain controller...
    [05/07/2013 01:20:11.0794] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:20:11.0794] [0] [ERROR] Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.
    [05/07/2013 01:20:11.0809] [0] Setup will use the domain controller ''.
    [05/07/2013 01:20:11.0809] [0] Setup will use the global catalog ''.
    [05/07/2013 01:20:11.0825] [0] Exchange configuration container for the organization is 'CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=domain,DC=local'.
    [05/07/2013 01:20:11.0919] [0] Exchange organization container for the organization is 'CN=DOMAIN,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=domain,DC=local'.
    [05/07/2013 01:20:11.0966] [0] Setup will search for an Exchange Server object for the local machine with name 'WEX1'.
    [05/07/2013 01:20:12.0028] [0] No Exchange Server with identity 'WEX1' was found.
    [05/07/2013 01:20:12.0044] [0] The following roles have been unpacked:
    [05/07/2013 01:20:12.0044] [0] The following datacenter roles are unpacked:
    [05/07/2013 01:20:12.0044] [0] The following roles are installed:
    [05/07/2013 01:20:12.0059] [0] The local server does not have any Exchange files installed.
    [05/07/2013 01:20:12.0075] [0] Server Name=WEX1
    [05/07/2013 01:20:12.0137] [0] Setup will use the path '\\SERVER\f$\junk\installers\server\Exchange\2013cu1' for installing Exchange.
    [05/07/2013 01:20:12.0137] [0] The installation mode is set to: 'Install'.
    [05/07/2013 01:20:27.0591] [0] An Exchange organization with name 'DOMAIN' was found in this forest.
    [05/07/2013 01:20:27.0591] [0] Active Directory Initialization status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Schema Update Required Status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Organization Configuration Update Required Status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Domain Configuration Update Required Status : 'False'.
    [05/07/2013 01:20:27.0841] [0] Applying default role selection state
    [05/07/2013 01:20:27.0872] [0] Setup is determining what organization-level operations to perform.
    [05/07/2013 01:20:27.0872] [0] Because the value was specified, setup is setting the argument OrganizationName to the value DOMAIN.
    [05/07/2013 01:20:27.0872] [0] Setup will run from path 'C:\Windows\Temp\ExchangeSetup'.
    [05/07/2013 01:20:27.0888] [0] InstallModeDataHandler has 0 DataHandlers
    [05/07/2013 01:20:27.0888] [0] RootDataHandler has 1 DataHandlers
    [05/07/2013 01:20:27.0903] [0] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.  See
    the Exchange setup log for more information on this error.
    [05/07/2013 01:20:27.0935] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:21:04.0154] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:21:04.0154] [0] End of Setup
    [05/07/2013 01:21:04.0154] [0] **********************************************

    Hi,
    The cause is clearly described in the log:
    [05/07/2013 01:20:11.0794] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:20:11.0794] [0] [ERROR] Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.
    I'd suggest you check NIC settings and AD configuration.
    Hope it is helpful.
    Fiona Liao
    TechNet Community Support

Maybe you are looking for

  • Views Status at MARA general info segment level

    Hi all, Please guide me how to maintain Views Status at MARA general info segment level.I am extending standard MATMAS IDOC for my own fields. Thank you.

  • Transferring Photos from iPhone 3GS to iPhoto

    IPhone is not visible in iPhoto so I am not able to transfer my iPhone pics to iPhoto. It used to work fine until 3-4 weeks ago! Can anyone help me resolve this I have reinstalled iTunes and iPhoto and Rebooted my MacBook Pro 15'' Message was edited

  • Daily email "subscriptions" coming randomly/too late

    Hello, I have the Apple Discussions board set up to email mail a "daily digest" of what posts get updated that I contributed to. I also post to other a lot of other forums (most of which are ran my vBulltion, which is a little different then these bo

  • ITunes artwork grabber not working

    Has anyone else encountered the problem with the iTunes artwork grabber not working in the new update of iTunes? It just WON'T get any artwork (I was trying to get Nirvana Unplugged in case you were wondering). What the **** is going on, Apple??? Mac

  • Download elements 11 form computer

    I have a new computer and I just got Adobe Photoshop Elements 11. How can I download it on my pc without a DVD drive? I have never used 11 yet. I have the dvd  and serial number. I am using windows 8.1.