Please help me regarding report  below which already doen't working..Urgent

tables:
t179,t179t,vbap,S001,MVKE.
data: begin of i_stufe occurs 100,
      stufe like t179-stufe,
      digit(2) ,
      end of i_stufe.
data: begin of i_stufe1 occurs 100,
      stufe like t179-stufe,
      digit(2) ,
      end of i_stufe1.
data: begin of i_stufe2 occurs 100,
      stufe like t179-stufe,
      digit(2) ,
      end of i_stufe2.
data: begin of i_svy occurs 100,
      svy like t179-stufe,
      end of i_svy.
data: b(3).
i_svy-svy = 1.
APPEND i_svy.
data:v_n type i,
      v_n1 type i,
      v_prodh like t179-prodh,
      v_digit type i.
data i_repid like sy-repid.
data i_lines like sy-tabix.
Data for ALV display ************************
TYPE-POOLS slis.
DATA : ls_slis_layo TYPE slis_layout_alv,
         lt_slis_fcat TYPE slis_t_fieldcat_alv ,
         it_sort TYPE slis_t_sortinfo_alv,
         ls_sort TYPE slis_sortinfo_alv.
DATA : wa_slis_fcat TYPE slis_fieldcat_alv.
DATA : alvfcwa TYPE slis_fieldcat_alv.
DATA: begin of itab occurs 0 ,
vkorg like s001-vkorg,
vtweg like s001-vtweg,
spart like s001-spart,
kunnr like s001-kunnr,
matnr like s001-matnr,
prodh like t179-prodh,
vtext like t179t-vtext,
select type c ,
p1 LIKE prodh-zzprodh1,
  t1 LIKE t179t-vtext,
  p2 LIKE prodh-zzprodh2,
  t2 LIKE t179t-vtext,
  p3 LIKE prodh-zzprodh3,
  t3 LIKE t179t-vtext,
  p4 LIKE prodh-zzprodh4,
  t4 LIKE t179t-vtext,
  p5 LIKE prodh-zzprodh5,
  t5 LIKE t179t-vtext,
  p6 LIKE prodh-zzprodh6,
  t6 LIKE t179t-vtext,
  p7 LIKE prodh-zzprodh7,
  t7 LIKE t179t-vtext,
  p8 LIKE prodh-zzprodh8,
  t8 LIKE t179t-vtext,
  p9 LIKE prodh-zzprodh9,
  t9 LIKE t179t-vtext,
  p like t179-prodh,
END OF itab.
data : begin of gt_prodh occurs 0 .
        include structure mvke.
data: end of gt_prodh .
DATA:X(1),
      p(20),
      t(20),
      y(1),
      v_hier(20).
DATA:v_digiteski(2).
v_digiteski = 0.
data:check(1).
DATA: BEGIN OF gt_t179 OCCURS 0,
    stufe LIKE t179-stufe,
    prodh LIKE t179-prodh,
  END OF gt_t179.
DATA: v_max TYPE i.
selection-screen  begin of block  part1 with frame title text-001.
select-options:  s_vkorg for s001-vkorg,
               s_vtweg for s001-vtweg,
               s_spart for s001-spart,
               s_kunnr for s001-kunnr,
               s_matnr for s001-matnr.
selection-screen end of block  part1 .
select-options:spart for vbap-spart.
concatenate spart-low '*' into b.
ranges vprodh for t179-prodh.
vprodh-sign = 'I'.
vprodh-option = 'CP'.
vprodh-low = b.
append vprodh .
clear vprodh.
start-of-selection.
read data into table imat
  do 9 times.
    SELECT SINGLE prodh FROM t179 INTO v_prodh
    WHERE STUFE EQ i_svy-svy.
    IF sy-SUBRC = 0.
      IF STRLEN( v_prodh ) LE 18.
        i_stufe-stufe = i_svy-svy.
        i_stufe1-stufe = i_svy-svy.
        i_stufe1-digit = STRLEN( v_prodh ).
        i_stufe-digit = STRLEN( v_prodh ) - v_digit.
        v_digit = STRLEN( v_prodh ).
        APPEND i_stufe.
        CLEAR i_stufe.
        APPEND i_stufe1.
        CLEAR i_stufe1.
        APPEND i_stufe2.
        CLEAR i_stufe2.
      ENDIF.
    ELSE.
      EXIT.
    ENDIF.
    i_svy-svy = i_svy-svy + 1.
    APPEND i_svy.
  enddo.
  SORT i_stufe DESCENDING BY stufe.
  LOOP AT i_stufe.
    v_max = i_stufe-stufe.
    EXIT.
  ENDLOOP.
  SELECT * FROM t179 INTO CORRESPONDING FIELDS OF TABLE gt_t179
  where prodh eq v_prodh.
  select * from s001 into corresponding fields of itab where matnr
in s_matnr.
    select single vkorg vtweg prodh from mvke into corresponding
    fields of itab where matnr = s_matnr
    and vtweg in s_vtweg
    and vkorg in s_vkorg.
    select single vtext from t179t into corresponding fields of itab
    where prodh = itab-prodh .
    append itab.
    clear itab.
  endselect.
  SORT i_stufe2 DESCENDING BY stufe.
  LOOP at i_stufe2.
    LOOP AT gt_t179 WHERE stufe = v_max.
      clear check.
      PERFORM kontrol using gt_t179-prodh.
      CLEAR  i_stufe1-digit.
      LOOP AT i_stufe1.
        if check = 'X'.
          exit.
        endif.
        do 1 times.
          read table i_stufe into i_stufe
           with key stufe = i_stufe1-stufe.
          if i_stufe-stufe > v_max.
            exit.
          endif.
          SELECT SINGLE vtext FROM T179T INTO v_hier
          WHERE spras = sy-langu
          AND prodh = gt_t179-prodh(i_stufe1-digit).
          FIELD-SYMBOLS  = v_hier.
          itab-p = gt_t179-prodh.
          v_digiteski = i_stufe1-digit.
          CLEAR p.
          CLEAR t.
        enddo.
     ENDLOOP.
      ENDLOOP.
      CLEAR v_digiteski.
      if itab-p1 ne space.
        APPEND itab.
      endif.
      CLEAR itab.
      CLEAR .
    ENDLOOP.
    v_max = v_max - 1.
    if v_max = 0.
      exit.
    endif.
  ENDLOOP.
  data:BEGIN OF i_tt179 OCCURS 100,
    stufe like t179-stufe,
    prodh like t179-prodh,
    end of i_tt179.
*&      Form  kontrol
      text
     -->X          text
form kontrol using x.
  data: a(18).
  CONCATENATE X '*' into a.
  ranges prodh for t179-prodh.
  prodh-sign = 'I'.
  prodh-option = 'CP'.
  prodh-low = a.
  append prodh . clear prodh.
  prodh-sign = 'E'.
  prodh-option = 'EQ'.
  prodh-low = X.
  append prodh . clear prodh.
  select * FROM t179
     into CORRESPONDING FIELDS OF TABLE i_tt179 WHERE prodh in prodh.
  if sy-SUBRC eq 0.
    check = 'X'.
  endif.
ENDFORM.                    "kontrol
Check if material was found
" clear i_lines.
"  describe table result lines i_lines.
"  if i_lines lt 1.
"*   Using hardcoded write here for easy upload
"    write: /
"    'No materials found.'.
"    exit.
"  endif.
end-of-selection.
  CLEAR ls_slis_layo.
  ls_slis_layo-colwidth_optimize = 'X'.
  ls_slis_layo-max_linesize      = 1023.
  ls_slis_layo-get_selinfos      = 'X'.
  ls_slis_layo-detail_popup      = 'X'.
  CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
     EXPORTING
      i_program_name               = sy-repid
      i_internal_tabname           = 'ITAB'
    i_structure_name           = 'ZSKAR_ANZ'
    i_client_never_display       = 'X'
        i_inclname                   = sy-repid
        i_bypassing_buffer           = 'X'
    I_BUFFER_ACTIVE              =
      CHANGING
        ct_fieldcat                  = lt_slis_fcat[]
  EXCEPTIONS
     inconsistent_interface       = 1
     program_error                = 2
     OTHERS                       = 3
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
   EXPORTING
  I_INTERFACE_CHECK                 = ' '
     i_bypassing_buffer                = 'X'
  I_BUFFER_ACTIVE                   = ' '
     i_callback_program                = sy-repid
  I_CALLBACK_PF_STATUS_SET          = ' '
  I_CALLBACK_USER_COMMAND           = ' '
  I_CALLBACK_TOP_OF_PAGE            = ' '
  I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
  I_CALLBACK_HTML_END_OF_LIST       = ' '
  I_STRUCTURE_NAME                  = 'itab'
  I_BACKGROUND_ID                   = ' '
  I_GRID_TITLE                      =
  I_GRID_SETTINGS                   =
     is_layout                         = ls_slis_layo
     it_fieldcat                       = lt_slis_fcat
  IT_EXCLUDING                      =
  IT_SPECIAL_GROUPS                 =
IT_SORT                           = it_sort
  IT_FILTER                         =
  IS_SEL_HIDE                       =
  I_DEFAULT                         = 'X'
  I_SAVE                            = ' '
  IS_VARIANT                        =
  IT_EVENTS                         =
  IT_EVENT_EXIT                     =
  IS_PRINT                          =
  IS_REPREP_ID                      =
  I_SCREEN_START_COLUMN             = 0
  I_SCREEN_START_LINE               = 0
I_SCREEN_END_COLUMN               = 160
I_SCREEN_END_LINE                 = 5
  I_HTML_HEIGHT_TOP                 = 0
  I_HTML_HEIGHT_END                 = 0
  IT_ALV_GRAPHICS                   =
  IT_HYPERLINK                      =
  IT_ADD_FIELDCAT                   =
  IT_EXCEPT_QINFO                   =
  IR_SALV_FULLSCREEN_ADAPTER        =
IMPORTING
  E_EXIT_CAUSED_BY_CALLER           =
  ES_EXIT_CAUSED_BY_USER            =
    TABLES
      t_outtab                          = itab[]
   EXCEPTIONS
     program_error                     = 1
     OTHERS                            = 2
*CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
*EXPORTING
*it_fieldcat = lt_slis_fcat
*TABLES
*t_outtab = itab
*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.
  break yusufc.
/code[/code]
Message was edited by: yusuf tunay çilesiz
Message was edited by: yusuf tunay çilesiz
Message was edited by: yusuf tunay çilesiz

Hi,
i don't know your real problem,
but i think this can be a mistake.
  CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
     EXPORTING
      i_program_name               = sy-repid
data: report like sy-repid.
report = sy-repid.
CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
EXPORTING
i_program_name = report
Regards, Dieter
the same in
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
Regards, Dieter
Message was edited by: Dieter Gröhn

Similar Messages

  • Please help me regarding VAR customer create new message in work center

    Hi, guru
    I have encountered with a problem regarding, for example, when VAR customer 'X' create new message in work center and specify message processor to partner no '1'  (partner no 1 has employee role with username 'A' in BP) but when username 'A' log on and open work center via SAPGUI to find a new message created to him, username 'A' did't got a new message from VAR customer 'X' whom choose specify message processor to him and work center show My Messages (0)
    why, do I set something config wrong ?
    Any recommend would be appreciated
    thank you very much

    Hi
    1) can you check in CRM_DNO_MONITOR and oepn the ticket , whethere the processor name appearing in the ticket?
    2) Does your customer assign the processor manually or any automatic support team assgnemt, if so please verify your automatic support tean assignment against the blog
    [/people/dolores.correa/blog/2007/10/06/service-desk-support-team-determination|/people/dolores.correa/blog/2007/10/06/service-desk-support-team-determination]
    3)Might be an authoraisation issue of the Processor. assign SAP_ALL access and check again
    [Service desk roles|http://help.sap.com/saphelp_sm32/helpdata/en/0a/f12c41ab78f66fe10000000a1550b0/content.htm]
    Thanks,
    Jansi

  • Please help me regarding role upload ?

    Hi All,
       installed CRM business package in portal. took CUA as user base. now assigning of users to roles is a concern for me.
    i.e. CRM 4.0 and BW 3.5 already comes with some predefined roles for portal, for ex : PCCCAMPAIGNMANAGER*
    I assigned an user X in CRM and BW system and I want the same user assignment to be used in portal. so I used "Role upload". i.e. I uploaded CRM user to role assignments to Portal, so I got that under migrated content --> sap component systems --> name of crm system --> under that my role (PCCCAMPAIGNMANAGER).
    Now I added the portal role com.sap.***.CampaignManager (portal specific) to this role by "Add role to role". so now when the user logs in, he will be able to see the worksets assigned.
    please note that we didnt do any user to role assignments in portal.
    so all the users assigned to this role in crm and doing manual "role upload" can login into portal and view the worksets. 
    portal role consists of iviews from both crm and bw. but now we just had the users assigned to role in crm mapped to role in portal, but what about bw iviews?
    i.e. what happens when i assign user x,y,z for this role in CRM and only users x,y in BW, so in portal x,y,z will be assigned to the respective role as we took only crm-portal user to role assignments. then the user Z will get an error obiviously for bw iviews, so how to ensure that CRM and BW roles are in sync with roles in portal.
    is there some concept of role mapping or something like that to solve my problem?
    sorry if my question is not clear, but hope that you can help me in this regard
    Thank you

    could some one please help me regarding this..
    I am in very urgent need..
    Thank you

  • Please help error regarding GPShell 1.4.2 with Java Card 2.2.1

    Hi masters..
    please help me regarding GPShell + Smart Card Reader (namely Omnikey Cardman 5321)..
    currently i've a smart card reader (Omnikey) and a sample java card that support for Java Card 2.2.1..
    i've installed Smart card reader's driver, and it has already completely function..
    When i try to run this command in GPShell 1.4.2, i get this report :
    C:\GPShell-1.4.2>GPShell helloInstallgemXpressoProR3_2E64.txt
    mode_201
    gemXpressoPro
    enable_trace
    establish_context
    card_connect
    * reader name OMNIKEY CardMan 5x21 0
    card_connect() returns 0x80100069 (The smart card has been removed, so that furt
    her communication is not possible.
    select -AID A000000018434D00
    Command --> 00A4040008A000000018434D00
    Wrapped command --> 00A4040008A000000018434D00
    select_application() returns 0x00000006 (The handle is invalid.
    Yes, i know that in that script (helloInstallgemXpressoProR3_2E64.txt), there's a script for load helloworld.cap into Java card..
    i tried that because i just want to make sure whether my Java Card run well or not..
    Please help me regarding this..
    Thanks in advance..

    Hi safarmer, thanks for your reply :)..
    Sorry before, i still don't understand about your last reply.. :(
    especially for check the crytpogram.. :(
    could you describe what mean of each line of code from that snippet code?..
    Sequence   : 0002
    challenge  : 598dd3961bfd
    cryptogram : 24cccf18c18437bb
    host       : 5a7787ba91497948
    DEBUG [] - Input to session S-ENC derivation: 01820002000000000000000000000000
    DEBUG [] - S-ENC: adc1163ba2a146fbb94af44c8676fb7cadc1163ba2a146fb
    DEBUG [] - Input to session DEK derivation : 01810002000000000000000000000000
    DEBUG [] - S-DEK: fd01086b6db03bdfe0d5cb61d03ed3abfd01086b6db03bdf
    DEBUG [] - Input to session CMAC derivation: 01010002000000000000000000000000
    DEBUG [] - S-MAC: 3e07b0c8fdfd798a573b9b9889d0cb513e07b0c8fdfd798a
    Input to card cryptogram verification: 5a7787ba914979480002598dd3961bfd8000000000000000
    DEBUG [] - Signature : 24cccf18c18437bb
    DEBUG [] - Cryptogram: 24cccf18c18437bb
    Card cryptogram authenticated=======================================================================================
    =======================================================================================
    i've added script "mode_211" to my script, as follow :
    mode_211
    enable_trace
    establish_context
    card_connect -readerNumber 2
    select -AID a0000000030000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4f -enc_key 404142434445464748494a4b4c4d4e4f // Open secure channel
    delete -AID a00000006203010c0101
    delete -AID a00000006203010c01
    delete -AID a00000006203010c0101
    install -file HelloWorld.cap -nvDataLimit 500 -instParam 00 -priv 2
    card_disconnect
    release_contextbut when i executed that script in the console, i got this :
    C:\GPShell-1.4.2>GPShell helloInstallChan.txt
    mode_211
    enable_trace
    establish_context
    card_connect -readerNumber 2
    * reader name OMNIKEY CardMan 5x21-CL 0
    select -AID a0000000030000
    Command --> 00A4040007A0000000030000
    Wrapped command --> 00A4040007A0000000030000
    Response <-- 6F108408A000000003000000A5049F6501FF9000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4
    f -enc_key 404142434445464748494a4b4c4d4e4f // Open secure channel
    Command --> 80CA006600
    Wrapped command --> 80CA006600
    Response <-- 664C734A06072A864886FC6B01600C060A2A864886FC6B02020101630906072A864
    886FC6B03640B06092A864886FC6B040215650B06092B8510864864020102660C060A2B060104012
    A026E01029000
    Command --> 80500000083C4E03633407EC1800
    Wrapped command --> 80500000083C4E03633407EC1800
    Response <-- 0000715457173C2B8FC1FF020002598DD3961BFD8B6F2963C070FF949000
    Command --> 8482010010E17B69E2A3DFEA320B0B457657362614
    Wrapped command --> 8482010010E17B69E2A3DFEA320B0B457657362614
    Response <-- 9000
    delete -AID a00000006203010c0101
    Command --> 80E400800C4F0AA00000006203010C010100
    Wrapped command --> 84E40080144F0AA00000006203010C0101D259A163E654B99900
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    delete -AID a00000006203010c01
    Command --> 80E400800B4F09A00000006203010C0100
    Wrapped command --> 84E40080134F09A00000006203010C01094A9BF13AD2CC3E00
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    delete -AID a00000006203010c0101
    Command --> 80E400800C4F0AA00000006203010C010100
    Wrapped command --> 84E40080144F0AA00000006203010C010156679B9711B83FAB00
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    install -file HelloWorld.cap -nvDataLimit 500 -instParam 00 -priv 2
    file name HelloWorld.cap
    Command --> 80E602001F09A00000006203010C0107A0000000030000000AEF08C60201A8C80201
    F40000
    Wrapped command --> 84E602002709A00000006203010C0107A0000000030000000AEF08C60201
    A8C80201F400D35F07F1D11A31E500
    Response <-- 6985
    install_for_load() returns 0x80206985 (6985: Command not allowed - Conditions of use not satisfied.)What it does mean?..
    so, can i reset THE RETRY COUNTER of my Java Card?..
    could you give me an example script that reset the Retry Counter?..
    Thanks in advance..
    Sorry i really confuse.. :(

  • When trying to verify the email address, I get the following message. Please help. This email address is already in use or you may already have an Apple ID associated with this email address. Please try again or sign in using your existing Apple ID.

    When trying to verify the email address, I get the following message. Please help. This email address is already in use or you may already have an Apple ID associated with this email address. Please try again or sign in using your existing Apple ID.

    Me too. I try to verify and i get the same message.
    I've created 3 alternate e-mail addresses and tried creating new accounts.
    Same Result!
    This is bullsh!t. How the **** can all 4 of my attempts result in the same freakin error???

  • Please help me regarding implemenatation of plsql webservices

    hello every one,
    My name is anil, I am working on the topic "building pl/sql web services". I successfully deployed my pl/sql function. But i got an error while invoking the function from a web service.
    my error is
    08/04/22 10:40:23 javax.servlet.ServletException: Cannot generate Class: java.lang.NoClassDefFoundError: com/sun/tools/javac/M
    ain
    Exception in thread "main"
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.generateWrapperClass(RpcWebService.java:569)
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.generate(RpcWebService.java:467)
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.getWrapper(RpcWebService.java:614)
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.doGetRequest(RpcWebService.java:725)
    08/04/22 10:40:23 at oracle.j2ee.ws.BaseWebService.doGet(BaseWebService.java:1199)
    08/04/22 10:40:23 at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    08/04/22 10:40:23 at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    08/04/22 10:40:23 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:691)
    08/04/22 10:40:23 at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    08/04/22 10:40:23 at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    08/04/22 10:40:23 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.ja
    va:303)
    08/04/22 10:40:23 at java.lang.Thread.run(Unknown Source)
    please help me

    SowmyRaj wrote:
    But i am unable to run it successfully...please help me regarding this... No wonder. Script is full of entries:
    **MOBILE CODE**Modify script:
    1. Change:
    **MOBILE CODE** immediateto:
    execute immediate2. Change:
    **MOBILE CODE**to:
    end ifRun the script. If you will run it second time, change:
    u_exist PLS_INTEGER;
    t_exist PLS_INTEGER;
    ts_exist PLS_INTEGER;
    ss_exist PLS_INTEGER;to:
    u_exist PLS_INTEGER := 1;
    t_exist PLS_INTEGER := 1;
    ts_exist PLS_INTEGER := 1;
    ss_exist PLS_INTEGER := 1;This way existing objects will be dropped before recreating them.
    SY.

  • Hi can anyone help me. I have a apple macbook laptop OSX 10.5.8 . When i push print, it shows my printer but says cannot communicate with printer. (epson stylus nx125). Do I need new drivers? Please help .  regards Cindy

    Hi can anyone help me. I have a apple macbook laptop OSX 10.5.8 . When i push print, it shows my printer but says cannot communicate with printer. (epson stylus nx125). Do I need new drivers? Please help .  regards Cindy

    Welcome to Apple Support Communities. We're users here and do not speak for "Apple Inc."
    Some basic printer troubleshooting steps before worrying about a printer driver:
    1. Have you tried turning the printer off and back on?
    2A. Is the printer attached with a cable?
         If yes, have you tried unplugging and re-plugging both ends of the printer cable?
         If that does not help, can you test the printer with another cable?
    2B. If your printer is not connected to the computer with a cable, have you tried restarting your printer (assuming wireless connection)?
         Have you tried restarting your wireless router?
    3. Have you tried restarting your MacBook? (Be sure to save your work first.)
    4. Does the printer have ink? (Doesn't usually generate a 'communications error' though)
    5. Have you updated OS X or the program you're trying to print from recently?

  • Please help me regarding the running of a sql file

    Hi I downloaded one sql file from
    http://www.cs.uwf.edu/~sbagui/db/practical_oracle.htm
    But i am unable to run it successfully...please help me regarding this... thanking you
    Edited by: SowmyRaj on Dec 24, 2009 5:24 AM

    Hi vali thanks for your reply...
    I am using Windows XP sp2 Os.
    and Oracle database 11g ...
    when executing this file the follwing error is occuring
    Enter value for user_name: system
    old 2: uname VARCHAR(50) := '&user_name';
    new 2: uname VARCHAR(50) := 'system';
    **MOBILE CODE** immediate 'drop user ' ||uname;
    ERROR at line 13:
    ORA-06550: line 13, column 1:
    PLS-00103: Encountered the symbol "*" when expecting one of the following:
    ( begin case declare exit for goto if loop mod null pragma
    raise return select update while with <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> <<
    continue close current delete fetch lock insert open rollback
    savepoint set sql execute commit forall merge pipe purge

  • I am facing a problem in my IPod . it is not detected by computer i tried every possible thing i changed cable i installed new itunes still its not coming up in itunes. can you please help me regarding this problem.

    i am facing a problem in my IPod . it is not detected by computer i tried every possible thing i changed cable i installed new itunes still its not coming up in itunes. can you please help me regarding this problem.

    This is for Windows: http://support.apple.com/kb/TS1538

  • Please help me regarding error in jcManager 1.1

    Hi Friends..
    perhaps this question especially for bebecanu, but perhaps i hope all of you could help me too.. :)
    i tried to learn how way jcManager works, so i downloaded the jcManager1.1 source..
    i created new application in Netbeans 6.9, and then i copied all of files in the jcmanager.source..
    i've set the libraries needed also in Netbeans, i've added the libraries of jpcsc.jar and looks-2.1.4.jar , so assume that there's no error while compile time..
    but while runtime, there's message error displayed in the TextArea..
    this is the message error :
    Exception in thread "Thread-3" java.lang.NoClassDefFoundError: Could not initialize class com.linuxnet.jpcsc.PCSC
         at com.braicu.jcm.card.CardWorker.disconnectCard(CardWorker.java:507)
         at com.braicu.jcm.JCManager$22.construct(JCManager.java:620)
         at com.braicu.jcm.layout.MySwingWorker$2.run(MySwingWorker.java:108)
         at java.lang.Thread.run(Thread.java:619)so, how to initialize class com.linuxnet.jpcsc.PCSC in Netbeans?..
    Please help me regarding this..
    Thanks in advance..

    Hi
    You need to have jpcsc.dll (you may find it in the res folder) in your java library path.
    So, all you need to do is to specify this VM argument on running:
    -Djava.library.path=res
    Hope it helps
    Stefan

  • Please help me regarding Secure RMI Applet Application

    Hi Friends..
    Currently i use Java Card 2.2.1..
    I'm learning about SecureRMIDemo application that shipped with JCDK 2.2.1..
    Assume that i've loaded the SecureRMIApplet.cap successfully, and i've created the Secure RMI Client using SmartCardIO..
    And then i tried to do any process provided by Purse interface, such as debit, credit, setAccountNumber, etc..
    But i got this error message :
    java.rmi.RemoteException: Signature mismatch
         at com.sun.javacard.javax.smartcard.rmiclient.CardObjectFactory.throwError(Unknown Source)
         at com.sun.javacard.javax.smartcard.rmiclient.CardObjectFactory.throwException(Unknown Source)
         at com.sun.javacard.javax.smartcard.rmiclient.CardObjectFactory.getObject(Unknown Source)
         at com.sun.javacard.ocfrmiclientimpl.JCRemoteRefImpl.parseAPDU(Unknown Source)
         at com.sun.javacard.ocfrmiclientimpl.JCRemoteRefImpl.invoke(Unknown Source)
         at com.sun.javacard.samples.SecureRMIDemo.SecurePurseImpl_Stub.setAccountNumber(Unknown Source)
         at testRMIClient.SecureRMIClienrt.main(SecureRMIClienrt.java:27)Yes, i know that, that error message required to ensure that the application run in the Security context..
    But for me, who just getting started to Java Card Security, it becomes a problem... :(
    The message error tells that the Signature is mismatch..
    And then how to set this Signature before do any process in the SecureRMI Client application?..
    Since there's no way to set the Signature through Purse interface..
    Please help me regarding this..
    Thanks in advance..

    Thanks Shane for your reply..
    does it mean i've to send APDU?.. Because in the MySecurityService class code there's method that checks the CLA and INS byte..
    Or can i send an APDU Object while we're using the Java Card RMI Application mode?..
    Actually, in my opinion, i would say that if we use RMI mode, we don't need APDU Command anymore..
    Please correct me if i'm wrong..
    Thanks in advance..

  • Hi, i just try to update my 3g in itunes unfortunatly it got error while updating it asked me to restore update but unable to restore it , now my 3g i locked and on screen it displying usb symbol connect to itunes ,please help me regarding this

    hi, i just try to update my 3g in itunes unfortunatly it got error while updating it asked me to restore update but unable to restore it , now my 3g i locked and on screen it displying usb symbol connect to itunes ,please help me regarding this

    I suspect your error was 1015, not 1051. This usually involves a jailbroken iPhone, use Google to find your solution.

  • Please help me regarding RMI Applet Application?

    Hi Friends..
    Please help me describe the work-flow of RMI Applet Application..
    Currently, i use Java Card 2.2.1.. In the package Java Card 2.2.1 there's an example of RMI Applet Application..
    in that RMI Applet Application there are 3 Java files, namely :
    1. public interface Purse extends Remote
    2. public class PurseImpl extends CardRemoteObject implements Purse
    3. public class PurseApplet extends Applet
    There's also RMIDemo.opt file.. and in the contain of that RMIDemo.opt file, there's only PurseApplet class that would be converted to CAP file..
    so, what is the use of Purse Interface and PurseImp class?.. and how to use both of them?..
    Please help me regarding this..
    Thanks in advance..

    Hi Shane, thanks for clarifying that.. :).. Ok. i'm going to learn hard..
    Sorry, i've a doubt regarding this thread ..
    In that thread, that's mentioned purse.jar containing :
    - Purse.class
    - PurseApplet.class
    - PurseImpl_Stub.class
    - PurseImpl.class
    The only class that i'm wondering is PurseImpl_Stub.class..
    Why this class required, whereas i don't found it in the RMIDemo application that shipped with JCDK 2.2.1, and JCDK 2.2.2 as well..
    I've tried to create other Java Card RMI Application, but it requires the "Stub" class..
    Here's the error message :
    java.rmi.StubNotFoundException: com.latihan.rmi.DataMahasiswaImpl_Stub
         at com.sun.javacard.ocfrmiclientimpl.JCCardObjectFactory.getRemoteObject(Unknown Source)
         at com.sun.javacard.javax.smartcard.rmiclient.CardObjectFactory.getObject(Unknown Source)
         at com.sun.javacard.javax.smartcard.rmiclient.JavaCardRMIConnect.getInitialReference(Unknown Source)
         at testRMIClient.DataMahasiswaClient.main(DataMahasiswaClient.java:43)How to create and what's the contain of that "Stub" class?..
    Can i know the source code of PurseImpl_Stub.java file?..
    Thanks in advance..
    Edited by: Leonardo_Carreira on Apr 13, 2010 8:27 PM

  • I am using iphone 4 (MC603B, version 4.3(8F190) and never updated it. as i have formated my laptop; i have to download itunes again. please help me to download itunes which suits this version. where can i get the link. thank you.

    I am using iPhone 4 (MC603B, version 4.3(8F190) and never updated it. as i have formatted my laptop; i have to download iTunes again. please help me to download iTunes which suits this version. where can i get the link. thank you.

    Older iTunes versions can be downloaded here: Apple - Support - Downloads
    Follow these steps to get your data to your new computer:
    Syncing to a "New" Computer or replacin…

  • Bluetooth shuttted down after I updated to Mavericks, please help me !  I am 70 Years old and worked very happy with my iMac (21,5" mid 2010, 3,2 GHz Intel Core 3) until I updated him from  SnowLeopard 10.6.8 to Mavericks 10.9.2. 2 Days all was OK. Next M

    Bluetooth shuttted down after I updated to Mavericks, please help me !
    I am 70 Years old and worked very happy with my iMac (21,5“ mid 2010, 3,2 GHz Intel Core 3)
    until I updated him from  SnowLeopard 10.6.8 to Mavericks 10.9.2.
    2 Days all was OK. Next Morning-Start he needs (until now) 3 minutes to show me a SCREEN only milky white. After that he starts like ever with all ICONS in about 1 minute. (together 4 min.)
    ..But I must notice, that I cannot make anything, because the „BLUETOOTH APPLE WIRELESS KEYBOARD  and the APPLE  MAGIC MOUSE“ doesn't work anything like before.
    I could nothing do, I must drop my APPLE only out.
    That I maked ever 10x and all was the same... (Maveriks also 4x new updated)
    I taked my Logitech-Bluetooth-Mouse from the WIN-Laptop, dropped it in USB from iMAC...and in one second I could work only with this MOUSE...I buyd the Logitech COMBO K520 and all was OK now with my lovely APPLE iMAC to work with him...But without APPLE KEYBOARD and MAGIC MOUSE...and with a 4 min. -START until now.
    I  asked the EXPERTS from APPLE-SUPPORT under Tel. 0800-6645451 in Germany, became a Number, maked many Things by starting new, but the mistake after all is the same like before.
    When I look into ...Apple/ Info/System/ Hardware/ Bluetooth   ..my APPLE says: NO INFOs FOUND (Es wurden keine Informationen gefunden.)
    Under Hardware/ Diagnose : Selbsttest beim Einschalten: zuletzt ausgeführt: 15.05. 14, Ergebnis: Bestanden (that means OK) !!
    I asked many Peaple, who sold APPLE-Computers in the STORS, but they all had no IDEA, how they can help.
    I think, it could be a DRIVER when Starting the BIOS, JAVA RUNTIME a.s.o...
    Is an Expert under YOU to help me by my Problem with this iMAC ?

    dietmarfromdeu,
    if you start up your iMac in Safe mode, do you still have Bluetooth problems with your Apple wireless keyboard and Magic Mouse?

Maybe you are looking for

  • Filter Credit Memo's from  Invoice Reports

    Hi All, The SPM extractor for Invoices includes a filter based on Posting Key to only include types of 21, 22, 31, 32 which are Credit Memo, Reverse Invoice, Invoice, and Reverse Credit Memo. We have a requirement on our Invoice based reports to excl

  • Signing Not Allowed after Enable Forms Fill-In & Save in Adobe Reader

    When using Adobe Acrobat X Standard and creating a fillable form that uses digital signature, selecting File / Save As / Reader Extended PDF / Enable Forms Fill-In & Save in Adobe Reader changes the security for Signing to Not Allowed. When using Ado

  • Mouse moves himself but can't click

    Once I start the Imac, the mouse can only move around the desktop but it can't click or underline anything

  • Install failed on flash drive

    Hi. First time post. Nice to be here. I recently tried installing Star Office to a usb flash drive. Everything worked fine during the installation process but when I try to run it, I get a weird error message and the whole thing quits. I don't rememb

  • Transfer PDF's and books to iPad without erasing other files

    I've seen a couple of posts about this issue but I haven't been able to resolve this problem. If I try to sync PDF's or books from my iMac iTunes to my iPad I get this warning -Are you sure you want to sync books? All existing songs, movies and TV sh