Please help me about report  doesn't working proparly .

Let's define shortly . I want to get mvke s001 join material vtext from t179t table .
prodh            stufe    vtext
13010102           4     extra
1301010201         5     long .
REPORT  YPRODH.
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 in vprodh.
  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 <p> TYPE C.
          FIELD-SYMBOLS <t> TYPE C.
          CONCATENATE 'result-p' i_stufe1-stufe INTO p.
          CONCATENATE 'result-t' i_stufe1-stufe INTO t.
          ASSIGN (p) TO <p>.
          ASSIGN (t) TO <t>.
assign gt_t179-prodh+v_digiteski(i_stufe-digit) to <p>.
assign v_hier to <t>.
        <p> =  gt_t179-prodh+v_digiteski(i_stufe-digit).
         <t> = 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 <p>.
      CLEAR <t>.
    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.

Hi Yusuf,
first u have to get the PRODH from MARA for a give table then  u have to get the text of PRODH frm T179T.
sample logic :
SELECT MARA~MATNR
       MARA~PRDHA
       FROM MARA
       INTO CORRESPONDING FIELDS OF TABLE I_MARA
       WHERE MARA~MATNR IN S_MATNR1.
SELECT PRODH
       VTEXT
       INTO CORRESPONDING FIELDS OF TABLE I_VTEXT
       FROM T179T
       FOR ALL ENTRIES IN I_MARA
       WHERE PRODH =  I_MARA-PRDHA.
dont use Nested Select Stmts.
Regards
Prabhu

Similar Messages

  • Please Help. My OnDemand doesn't work!!

    When I got a new tv, I ended up getting a new HD box. It's been about 3 months & my On Demand has yet to work. I keep getting this message....
    Set top box doesn't have enough credits to purchase this asset. Quick Code 8632, VOD_131, Credit check failure
    What can I do? I've tried to power it off & then on, unplug everything, reset the modem & nothing works?

    Hubrisnxs, I tried what you suggested & for some reason, my STB doesn't even appear on the list of STB's. That's odd. I guess I'm going to have to contact support & have them reboot it because nothing else seems to be working. 
    I wanted to use live support like I did last time, but I didn't know what I paid on the last bill, so I'm going to have to look it up. It only asked for my number & name on the account last time.

  • Please help! connection.rollback() doesn't work for me.

    I have two updates to the database. If either one fails, all the changes should be rolled back.
    I set the auto commit to false before the updates started and invoked rollback() if any exception was caught.
    During the execution of the program, an exception was caught. And one table got updated and the other didn't.
    I can see "TRYING TO ROLLBACK~!!!! ROLLBACK!!!" and "ROLLBACK FINISHED!!!" printed out. But the change made to
    one table did not get rolled back.
    And I tried to call rollback() right after the first update was made. But it didn't rollback the changes made
    to the database.
    Why doesn't the rollback() work?
    Development environment:
    Database:     MySQL Server 4.1
    jdbc driver:      mysql-connector-java-3.1.8
    JDK:          jdk1.5.0_04
              Connection connection = dbConn.getDBConnection();
              String insertDummy1= "insert into dummy1 values(?)";
              String insertDummy2 = "insert into dummy 2 values(?)";
              PreparedStatement psCA = null;
              PreparedStatement psCD = null;
              try {               
                   connection.setAutoCommit( false );
                   psCA = connection.prepareStatement( insertClientAccount );
                   psCA.setString(1, cName);               
                   psCA.executeUpdate();
                   psCA.close();                         
                   // connection.rollback();
                   psCD = connection.prepareStatement( insertClientDetail );
                   psCD.setString(1, cName);               
                   psCD.executeUpdate();               
                   psCD.close();
                   connection.commit();
              } catch(Exception e){
                   if( connection != null ) {
                        try {
                             System.out.println("TRYING TO ROLLBACK~!!!! ROLLBACK!!!");
                             connection.rollback();
                             System.out.println("ROLLBACK FINISHED!!!");
                        } catch(Exception ex) {
                             System.out.println("Exception!! try to roll back >>> " + ex.getMessage() );
                             ex.printStackTrace();
                   processResult = "Failed to complete the process. " + e.getMessage();
                   System.out.println("Exception!! >>> " + e.getMessage() );
                   e.printStackTrace();
              } finally {                                             
                   psCA = null;
                   psCD = null;
                   try{
                        connection.close();
                   } catch(Exception e){
                        System.out.println("Exception!! >>> " + e.getMessage() );
                        e.printStackTrace();
                   return processResult;
              } // try

    In MySQL, there are several different storeage engines/table types. Some of these table tables support transactions (and therefore commit() and rollback() ) and some do not. I believe that if you use a non-transactional table type, it's effectively the same as having autocommit=true (and commit() and rollback() are then silently ignored).
    See:
    http://www.developer.com/db/article.php/2235521
    http://dev.mysql.com/doc/mysql/en/storage-engines.html
    I have used the InnoDB storeage engine and have had no issues with transactionality.

  • Please help! My gmail doesn't work. Something to do with imap.gmail??

    It start today. I noticed i havent gotten email all day.
    I tried to put my password again but nothing
    Ps. This is the same with my ipad

    Here it is! I finally fixed the issue! I've literally tried everything and this is what i did! I downloaded the Gmail App and setup my email account. After that, i went back to a regular pre-installed Iphone mail app and added my Gmail account information and it worked. Basically, the app Gmail app from the Apple store somehow pushed the signal to Gmail, saying Here it is, it is working account.
    I've spent about 3 days to figure out what was the problem, tried everything on the net, 2-step verification, Google display capture, deleting account and setting it up again, changing the password on Gmail account. I was going nuts! And i know there are so many people out there who are also having the same issue. They get this crazy message "Cannot Get Mail - The user name or password for 'Gmail' is incorrect." It was so annoying. I hated it!
    The solution to this problem is: Go to App Store on your Ipad or Iphone and search for "Gmail". Download the first one, Free version, install it and setup an email account with your existing credentials, the ones that didn't work earlier, and to your surprise, it will allow you to add your account back.
    Next step is to click Settings (on your Iphone, Ipad) --> Mail, Contacts, Calendars --> Add Account --> Gmail (Enter your lovely email credentials and you will see, it is working again, just like in early days!
    I hope it will solve your frustration and disappointment.

  • Please help URGENT : Chinese handwriting doesn't seem to work on Lion OSX. the handwriting trackpad appears but anything i write in Chinese doesn't appear in word, chrome,..... HELP PLEASE

    please help URGENT : Chinese handwriting doesn't seem to work on Lion OSX. the handwriting trackpad appears but anything i write in Chinese doesn't appear in word, chrome,..... HELP PLEASE
    And in system prefs/language and text/input languages, simplified chinese and traditional chinese are ticked as usual with handwriting options on !!!!

    Please search the forum for "chinese" to find the many other earlier posts about your issue, like
    https://discussions.apple.com/message/15746805#15746805

  • All of a sudden, report doesn´t work anymore

    Getting really tired of this whole SCOM-thing the last days.
    Now the reporting doesn´t work anymore. We changed NOTHING.
    State went from Zero to Healthy 4:14 PM on friday last week. Alright.
    But a few hours later, when nobody was here anymore, it changed to EROR.
    How can that happen?
    Reports are EMPTY suddenly. You can't start report-tasks anymore. They disappeared.
    We checked:
    - Discovered Inventory -> Data Warehouse Synchronization Server
    - State is Critical.
    - Display name is wild numbers+characters, is this normal?
    - Health explorer says:
    'DeploymentException': Failed to deploy reports for management pack with version
    dependent id '471cffe4-2085-cf71-2513-ecbac52be31f'. Failed to deploy report
    'Microsoft.Windows.Server.Reports.PerformanceBySystem'. AdjustDataSources:
    Exception <ErrorCode
    xmlns="http://www.microsoft.com/sql/reportingservices">rsItemNotFound</ErrorCode><HttpStatus
    xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message
    xmlns="http://www.microsoft.com/sql/reportingservices">The item '/Data
    Warehouse Main' cannot be found.</Message><HelpLink
    xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsItemNotFound&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.2100.60</HelpLink><ProductName
    xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server
    Reporting Services</ProductName><ProductVersion
    xmlns="http://www.microsoft.com/sql/reportingservices">11.0.2100.60</ProductVersion><ProductLocaleId
    xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem
    xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId
    xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation
    xmlns="http://www.microsoft.com/sql/reportingservices"><Source>ReportingServicesLibrary</Source><Message
    msrs:ErrorCode="rsItemNotFound"
    msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsItemNotFound&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.2100.60"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">The item '/Data
    Warehouse Main' cannot be
    found.</Message></MoreInformation><Warnings
    xmlns="http://www.microsoft.com/sql/reportingservices" />

    Hi,
    Generally these errors are caused by improper SQL SRS configuration, to confirm SRS is initialized correctly, are you able to navigate to http://localhost/reports or http://localhost/reportserver?
    Are you upgraded to SP1 RC yet and have you the latest versions of the MP' as a lot of these reporting issues have been resolved?
    Also re-check all your SRS accounts have the relevant permissions and all permissions in IIS are correct?
    You could try resetting the SRS configuration and re-install Reporting.
    1. COPY the ResetSRS.exe file in SupportTools folder of the OM 2007 media to
    C:.
    2. Open a Command Prompt and change your path to C:.
    3. Type "ResetSRS.exe  MSSQLSERVER" where MSSQLSERVER is your SQL instance
    name.
    4. Then open Reporting Services Configuration Console, select Web Service
    Identity and click Apply.
    5. Finally, reinstall your reporting service by running OMSetup.exe again.
    In addition, please provice the event ID under event vierwers, so that we could analyze it further.
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/0a66dfa4-a39c-44c4-93cf-ca064d6bc52c/scom-reporting-error-rsitemnotfound-?forum=operationsmanagerreporting
    Hope this helps.
    Regards,
    Yan Li
    Regards, Yan Li

  • My wifi Don,t work on iOS 6 iPad 3 Please help me, My wifi Don,t work on iOS 6 iPad 3 Please help me

    My wifi Don,t work on iOS 6 iPad 3 Please help me, My wifi Don,t work on iOS 6 iPad 3 Please help me

    iOS 6 Wifi Problems/Fixes
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting
    http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet
    http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    Try This - Renew IP Address:
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • HT1766 please help my ipad min is not working on the scren it says iPad disabled connect to itunes

    please help my ipad min is not working on the scren it says iPad disabled connect to itunes

    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    You may have to do this several times.
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just canceling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • Please help me about Workflow

    sir/mam,i am new for workflow,will any one give me guidence for how i will start with workflow ..please help me about this topic....?

    Somnath,
    Your question is very vague.  What do you mean by new to Workflow?
    Workflow can be defined as
    A workflow is a reliably repeatable pattern of activity enabled by a systematic organization of resources, defined roles and mass, energy and information flows, into a work process that can be documented and learned. Workflows are always designed to achieve processing intents of some sort, such as physical transformation, service provision, or information processing.
    Workflows are closely related to other concepts used to describe organizational structure, such as silos, functions, teams, projects, policies and hierarchies. Workflows may be viewed as one primitive building block of organizations. The relationships among these concepts are described later in this entry.
    Read more on the Web ..http://en.wikipedia.org/wiki/Workflow
    Suda

  • Please help me about question security because in my apple id no have for restart or chenge my answer

    please help me about answer security question in my apple id because im forgot for my answer, in my apple id no have for change answer, tell me for this please because i love my iphone.
    <Email Edited by Host>

    You need to ask Apple to reset your security questions; this can be done by clicking here and picking a method, or if your country isn't listed, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (110899)

  • I am looking for macbookpro mid 2010 HDD exact specs so that i can upgrade it to 1TB. PLEASE HELP ME  about OEM apple brand or which one is better.Thanks

    I am looking for macbookpro mid 2010 HDD exact specs so that i can upgrade it to 1TB. PLEASE HELP ME  about OEM apple brand or which one is better?.Thanks

    clintonfrombirmingham Your information is not correct.
    http://kb.sandisk.com/app/answers/detail/a_id/8142/~/difference-between-sata-i,- sata-ii-and-sata-iii
    I have a sata II samsung 5400 rpm and i am only able to transfer at 85 read right speed.
    On my main drive sata III ocz agility 3 ssd i get 120 mb read and 180 write.
    Neither of these come close to the 300 mb promised. So it wont matter if he got sata II or III
    The speed came from Blackmagic Disk Speed Test

  • I have been able to access a site regularly but in the last few days get a message: "cookies required to access this site." please help, I use this site for work daily:)

    I have been able to access a site regularly but in the last few days get a message: "cookies required to access this site." please help, I use this site for work daily:)

    Goto > Settings > Safari... Enable Cookies > Always
    Good luck!

  • Please help. just got my jabra halo, worked fine with my iphone4 but can't use it on my macbook pro. it always prompts " the devise does not have the necessary service

    please help. just got my jabra halo, worked fine with my iphone4 but can't use it on my macbook pro. it always prompts " the devise does not have the necessary service

    Found these instructions here:
    https://discussions.apple.com/message/15388885#15388885
    I found an answer that worked for me. I am using an iMac.
    (1) Sign out of the iTunes store
    (2) Open a NEW account with a new Apple ID
    (3) Go through the sign up process and then go to the ACCOUNT INFORMATION page
    (4) Go to RECOMENDATIONS & PING POSTING
    (5) Turn on Genius there
    Once the Genius updates, you can sign out and then sign in under your original Apple ID or the e-mail address you use for the iTunes store. All my store credit was there and now Genius worked.
    Rather odd but I actually like the Genius at times except when it can't deal with some of my lesser known bands that I listen to.
    Worked for me.

  • Please help Apple??? It worked fine with Snow Leopard??

    I recently upgraded to Lion and now cant see my Windows 7 laptop in network? Or see my macbook Air 2010 on my win7 laptop. Please help Apple??? It worked fine with Snow Leopard??

    You're not addressing Apple here, you are addressing a user based community.  An Apple employee may read your post but he/she will not officially respond to it.
    You didn't say if your networking is Wi-Fi or USB Dongle based so I'm assuming Wi-Fi in this response. If you do a search of the forums you will find that quite a few are having Wi-Fi issues with Lion--things that worked fine with Snow Leopard are flakey or don't work at all with Lion so your problem may be another instance of the Wi-Fi issues in Lion.  If not, then perhaps someone with knowledge of your specific issue will post.  I see my other Macs (MBP, 24" iMac, 27" iMac all running Lion) fine but I don't have a PC to test.

  • My JSP Report doesn't work !!! Help me !!!

    What's up friends! I holp that so good!
    My question is very simple, I've been building a JSP Report with JDev and Report Builder, but when I has tryed to run the report from inside JDev, the IE has started with the LOADING... page and nothing happened.
    I have Oracle9iDS and Oracle91AS installed on the same machine, I started the HTTP Server and Oracle9i Report Service before run the report.
    I've been reading a lot of documents but I don't know what I need to do.
    What is missing to configure to work well?
    Please, help me!!!

    You need to create a JSP report from JDev's new object gallery from 'File -> new... -> Reports Objects', so that the project settings can be prepared to run JSP report.
    If you want to run JSP report on a standalone Reports server, put 'server=<server_name>' in 'parameters' attribute of <rw:report> JSP tag.
    You can also use rwservlet's in-process Reports server, by not specifying 'server=...' in 'parameters' attribute. No standalone Reports server is needed. Make sure JVM is set to'hotspot' in JDev's project settings -> runner.
    When running JSP in JDev, it uses JDev's embedded oc4j web server.
    Regards,

Maybe you are looking for

  • How to calculate the total sum value of a particular field that repeats

    Hi All, I have the following Req...File----Idoc Scenario In the Inbound xml file i will get the Sales Order details with suppose 10 line items( 10 Orders) Each line item represents one one SO. So totally i wil have 10 Sales Orders in this file. <?xml

  • Error -42110. And backup of my iPhone

    When I open the iTunes appear the unknow error -42110. And i cant do the backup of my iPhone. What I need to do to fix it?

  • Embedded Printer Webpage & Java Issues

    I work with many LaserJets daily and I also do a great deal of troubleshooting for them. I`ve been able to figure out or I just simply knew how to fix many of the problems our printers present. They are all very old devices. They are the following, a

  • How to record entity changes

    Hi friends, I am trying to implement feature which should record entity property changes. Basicaly I want to keep history when and what has changed in a separate table. For example having a table similar to this and record all changes made to entitie

  • Start up- none - screen with a circle with a diagonal line through it

    what should i do? computer mac book pro 17 inch not starting up. circle with a line though it.