Still not solved problem

Hello Friends,
I am using 6 tables in my report.i want to display recores by AT NEW and Related stuff.
Can i use following code for query and internal tables ?
or Sujjest me Better code.
to use loop within loop is not good idea.
I want to disply Records
total Document type wise ->year wise -> Month wise -> Sales Order Number wise->Item Numberwise -> Production order numberwise
This is interactive report of 8-9 screens !!
Main problem is to make AT new with different loop !!
Sujjest me with code !!
Points will be rewarded soon !!
Regards,
Nimesh Master
TABLE DECLARATION ************************
TABLES : VBAK,AFPO,AUFM,MAKT,KNA1,VBAP.
INTERNAL TABLE DECLARATION *******************
DATA : BEGIN OF T1 OCCURS 0,
AUART TYPE VBAK-AUART,
NETWR TYPE VBAK-NETWR,
KUNNR TYPE VBAK-KUNNR,
VBELN TYPE VBAK-VBELN,
AUDAT TYPE VBAK-AUDAT,
END OF T1.
DATA : BEGIN OF T2 OCCURS 0,
NETWR TYPE VBAP-NETWR,
POSNR TYPE VBAP-POSNR,
END OF T2.
DATA : BEGIN OF T3 OCCURS 0,
AUFNR TYPE AFPO-AUFNR,
KDPOS TYPE AFPO-KDPOS,
KDAUF TYPE AFPO-KDAUF,
PSMNG TYPE AFPO-PSMNG,
WEMNG TYPE AFPO-WEMNG,
END OF T3.
DATA : BEGIN OF T4 OCCURS 0,
DMBTR TYPE AUFM-DMBTR,
MATNR TYPE AUFM-MATNR,
ELIKZ TYPE AUFM-ELIKZ,
END OF T4.
DATA : BEGIN OF T5 OCCURS 0,
NAME1 TYPE KNA1-NAME1,
END OF T5.
DATA : BEGIN OF T6 OCCURS 0,
MAKTX TYPE MAKT-MAKTX,
END OF T6.
FREE T1.
SELECT VBELN NETWR AUART AUDAT KUNNR FROM VBAK INTO CORRESPONDING FIELDS
OF TABLE T1 WHERE AUART IN AUART AND VBELN IN VBELN.
FREE T2.
SELECT NETWR POSNR FROM VBAP INTO CORRESPONDING FIELDS OF TABLE T2
FOR ALL ENTRIES IN T1 WHERE VBELN = T1-VBELN .
FREE T3.
SELECT AUFNR PSMNG WEMNG KDPOS FROM AFPO INTO CORRESPONDING FIELDS OF
TABLE T3 FOR ALL ENTRIES IN T1 WHERE KDAUF = T1-VBELN .
FREE T4.
SELECT DMBTR MATNR ELIKZ FROM AUFM INTO CORRESPONDING FIELDS OF
TABLE T4 FOR ALL ENTRIES IN T3 WHERE AUFNR = T3-AUFNR.
FREE T6.
SELECT MAKTX FROM MAKT INTO CORRESPONDING FIELDS OF TABLE T6 WHERE
MATNR = T4-MATNR.
FREE T5.
SELECT NAME1 FROM KNA1 INTO CORRESPONDING FIELDS OF TABLE T5 WHERE
KUNNR = T1-KUNNR.
  LOOP AT T1.
    AT NEW VBELN.
     WRITE : / T1-VBELN .
    ENDAT.
   AT NEW AUFNR.
      WRITE : / T1-AUFNR.
   ENDAT.
    AT END OF AUFNR.
      SUM.
      IF T1-PSMNG = T1-WEMNG.
        T1-CLOSE_ORD1 = T1-CLOSE_ORD1 + T1-DMBTR.
      ELSE.
        T1-OPEN_ORD1 = T1-OPEN_ORD1 + T1-DMBTR.
      ENDIF.
      TOT_DMBTR_C = TOT_DMBTR_C + T1-CLOSE_ORD1.
      TOT_DMBTR_O = TOT_DMBTR_O + T1-OPEN_ORD1 .
    ENDAT.
    AT END OF VBELN.
      SUM.
      P =  TOT_DMBTR_C.
      Q =  TOT_DMBTR_O.
      TMP_OC_SALES  = NET_PRICE - P.
        TMP_PER_SALES = ( TMP_OC_SALES * 100 ) / NET_PRICE .
        TMP_TOT_MAT =  P + Q.
        TMP_PER_MAT = ( TMP_TOT_MAT  * 100 ) / NET_PRICE.
        TOT_NET_SALES_A = TOT_NET_SALES_A + NET_PRICE.
        TOT_P_A = TOT_P_A + P.
        TOT_Q_A = TOT_Q_A + Q.
      ENDIF.
      FORMAT COLOR 2 ON.
      WRITE : 20 NET_PRICE,
              50 P,
              65 Q,
              83 TMP_OC_SALES,
              100 TMP_PER_SALES,'%',
              120 TMP_TOT_MAT ,
              139 TMP_PER_MAT,'%'.
      FORMAT COLOR 2 OFF.
    ENDAT.
  ENDLOOP.
1. Tell me is it appropriate to take same number of INTERNAL TABLE as DDIC  
    TABLE ??
2. Wat should be the queries for them ?
3. How i use AT NEW with Different Loop for Internal tables ??

i am gving u the silmilar kind of code where i used 4-5 tables.
1> used for all entries tat will increase the performance
2> use read instead of at
3> use work area
REPORT  ZBH_FI_ALV1 No Standard Page Heading.
TABLES:T001,SKA1,SKB1,BKPF,BSEG.
TYPE-POOLS:slis.
               TYPES DECLARTIONS
TYPES:begin of str_bkpf,
      blart type blart,
      bukrs type bukrs,
      belnr type bseg-belnr,
      gjahr type gjahr,
      budat type budat,
      end of str_bkpf.
TYPES: begin of str_bseg,
       belnr type belnr_d,
       gjahr type gjahr,
       buzei type buzei,
       bschl type bschl,
       hkont type hkont,
       bukrs type bukrs,
       blart type blart,
       budat type bkpf-budat,
       saknr type saknr,
       fstag type fstag,
       ktopl type ktopl,
       bilkt type bilkt,
       end of str_bseg.
TYPES:begin of str_t001,
      bukrs type bukrs,
      ktopl type ktopl,
      end of str_t001.
TYPES:begin of str_ska1,
      bilkt type bilkt,
      ktopl type ktopl,
      saknr type saknr,
      end of str_ska1.
TYPES:begin of str_skb1,
      fstag type fstag,
      bukrs type bukrs,
      saknr type saknr,
      end of str_skb1.
               DATA  DECLARATIONS
DATA:it_bkpf type standard table of str_bkpf  ,
     it_bseg type standard table of  str_bseg ,
     it_t001 type standard  table of str_t001 ,
     it_ska1 type standard  table of str_ska1 ,
     it_skb1 type standard table of str_skb1 ,
    fieldcat type slis_t_fieldcat_alv WITH HEADER LINE,
    events   type slis_t_event WITH HEADER LINE,
    layout  type slis_layout_alv,
    layout type  slis_layout_alv1 ,
    ALV type SY-REPID.
data:w_index type sy-tabix.
data: wa_bkpf like line of it_bkpf,
      wa_bseg like line of it_bseg,
      wa_t001 like line of it_t001,
      wa_ska1 like line of it_ska1,
      wa_skb1 like line of it_skb1.
                 INPUT VARIABLES
SELECT-OPTIONS:s_BUKRS FOR BKPF-BUKRS obligatory,
               s_BLART FOR BKPF-BLART obligatory,
               s_BUDAT FOR BKPF-BUDAT,
               s_BSCHL FOR BSEG-BSCHL,
               s_HKONT FOR BSEG-HKONT.
               SELECT STATEMENTS
START-OF-SELECTION.
  select   blart      "Document type
           bukrs      "Company Code
           belnr      "Accounting Document Number
           gjahr      "Fiscal Year
           budat      "Posting Date in the Document
           from bkpf
           into
           table it_bkpf
           where bukrs in s_bukrs
           and   blart in s_blart
           and budat in s_BUDAT.
check sy-subrc = 0.
  if not it_bkpf[] is initial.
   select belnr "Accounting Document Number
          gjahr "Fiscal Year
          buzei "Number of Line Item Within Accounting Document
          bschl  "Posting Key
          hkont  "General Ledger Account
          bukrs  "Company Code
          from bseg
          into table it_bseg
          for all entries in it_bkpf
          where  belnr = it_bkpf-belnr
          and    gjahr = it_bkpf-gjahr
          and    bukrs = it_bkpf-bukrs.
          endif.
  if not s_BSCHL[] is initial.
    delete it_bseg where not bschl in s_bschl.
  endif.
  if not s_HKONT[] is initial.
    delete it_bseg where not hkont in s_hkont.
  endif.
  if it_bseg[] is not initial.
    sort it_bseg by bukrs gjahr belnr.
    refresh it_t001.
    SELECT bukrs              "Company Code
           ktopl              "Chart of Accounts
           from T001
           into table it_t001
           where bukrs in s_bukrs.
    if not it_t001[] is initial.
      sort it_t001 by bukrs.
      refresh it_ska1.
      SELECT bilkt           "Group Account Number
             ktopl           "Chart of Accounts
             saknr           "G/L account number
             from SKA1
             into table it_ska1
             for all entries in it_t001
             where ktopl = it_t001-ktopl.
      if not it_ska1[] is initial.
        sort it_ska1.
        refresh it_skb1.
        SELECT fstag  "Field status group
               bukrs  "Company code
               saknr  "G/L account number
               from skb1
               into table it_skb1
               for all entries in it_ska1
               where bukrs in s_bukrs and
                       SAKNR = it_ska1-saknr.
      endif.
      endif.
      endif.
  loop at it_bseg into wa_bseg.
    w_index = sy-tabix.
    read table it_bkpf into wa_bkpf with key BUKRS = wa_bseg-bukrs.
    if sy-subrc = 0.
    wa_bseg-blart = wa_bkpf-blart.
    Read Table it_t001 into wa_t001 with key bukrs = wa_bseg-bukrs.
    if sy-subrc = 0.
    wa_bseg-ktopl = wa_t001-ktopl.
    if sy-subrc = 0.
    Read table it_ska1 into wa_ska1 with key ktopl = wa_bseg-ktopl.
    wa_bseg-saknr = wa_ska1-saknr.
    wa_bseg-bilkt = wa_ska1-bilkt.
    if sy-subrc = 0.
    Read Table it_skb1 into wa_skb1 with key bukrs = wa_bseg-bukrs saknr = wa_bseg-hkont.
    wa_bseg-fstag = wa_skb1-fstag.
    modify it_bseg  from wa_bseg index w_index transporting ktopl bilkt saknr fstag blart.
    endif.
    endif.
    endif.
endif.
  endloop.
regards
bhanu
all the  best

Similar Messages

  • TS1389 the above steps are still not solving the problem

    Following the steps recommended in http://support.apple.com/kb/TS1389 does not solves the problem.
    Did someone had the same problem and was able to solve this ?

    sudo rm -rf  /Volumes/Elements/.Trashes/$UID/*
    this excatly how i kept the commands guess i didn't know those were two seperate commands,,all my  office works were inside the folder name Documents in Mac Os disk... now its not there the games are still there and all other applications ,, just the desktop items and document folder is dissappared and it no longer visible,,, not even in my backup....
    after i dragged an item from trash can the display was like
    MacBook-Air:~ mac$ sudo rm -rf  /Volumes/Elements/.Trashes/$UID/*/Volumes/Elements/.Trashes/502/broucher\ copy.psd
    After this the document were deleted ,,, is there anyway i could recover that file it means a lot,, if you could help,,,all.. this happened because the trash can is empty but as i join the drive there are the files in trash that i deleted from external drive as a result no matter how much i delete the external drive shows no increase in space available..pelase suggest.. i even tried trash it didn work....

  • Changed setting to no proxy but not solved problem Proxy Error The proxy server received an invalid response from an upstream server. The proxy server could not handle the request GET /iam/services/setContext. Reason: Error reading from remote server

    This problem only happens with one website when I try to follow hyperlinks to other pages. They have directed me to Firefox troubleshooting section. I have followed the advice there but it has not solved my problem.

    I haven't been able to go on line since 7.01 and up. I have to use ieexplorer. are you idiots or what. I can't even contact you because i have to be in your latest version but i can't get the internet with the latest version. good bye for good

  • X11 Yellow-Cursor Problem: Still Not Solved

    Sorry for bringing this up again, but previous discussions (search for "X11 yellow cursor") are not active anymore, and the problem is unsolved. Let me briefly restate it for those who just joined in:
    When displaying X11 windows from Linux machines on Intel Macs using Apple's X-server, the cursor turns into a hardly visible yellow something. Apparently, the cause is related to some wrong assumption about the Endianness.
    There used to be a patch available (http://www.macosxhints.com/article.php?story=20060316124704289), but it was superseded by Apple's latest X11 update. The alternative solution suggested in that article (fiddling with the icon set on the Linux side) seems not work reliably - it doesn't for me.
    So the present situation is very unsatisfactory. I just bought iMacs for my research group and myself. Having tested all the software we need for our daily work (which includes X11) on my Powerbook G4, I thought I would be on the safe side. Now, we've run into this Intel-specific bug, which annoyingly enough seems to be understood and solved, but Apple decided not to correct it in its latest X11 release.
    I would highly appreciate any suggestions how to work around the problem for the time being. And I hope that somebody at Apple is reading this: The usefulness of Macs in a Linux/Unix-dominated scientific-computing environment critically depends on the availability of a reliable, stable X11 implementation.
    Hans
    iMac 24", PowerBook G4   Mac OS X (10.4.9)  

    Hi Hans,
    but it was superseded by Apple's latest X11 update.
    What do you mean by "superseded"? The patch
    http://homepage.mac.com/lycestra/yellowcursor.patch
    works well with the latest Apple's X11 source code.
    Just download X11-0.46.4.tar.gz from
    http://www.opensource.apple.com/darwinsource/10.4.9.x86/
    and put it in the same directory as yellowcursor.patch
    Then you can apply the patch as follows:
    $ tar zxvf X11-0.46.4.tar.gz
    $ cd X11-0.46.4
    $ patch -p1 < ../yellowcursor.patch
    Now you can build everything by
    $ cd xc
    $ make World >& logfile
    I guess it will take 20 to 30 minutes.
    (build may be faster if you add some definitions into config/cf/host.def)
    After the build, don't run "make install". Instead, just install the new Xquartz. Be sure to backup the origianl:
    $ sudo mv /usr/X11R6/bin/Xquartz /usr/X11R6/bin/Xquartz.ORG
    $ sudo cp -n programs/Xserver/Xquartz /usr/X11R6/bin/
    You may compare the output of xdpyinfo and glxinfo before and after installing it. I have noticed any performance difference between the original and the new Xquartz.
    PowerMacG4, PowerBookG4, iMac(C2D)   Mac OS X (10.4.9)  

  • Still not solve reading a file problem

    members here i s a bug which is not yet solved as per my littele knowledge it doesnot read the documents content and prints it on command line any input from is most apprciated
    her is code
    import java.io.*;
    class read
    public static void main(String args[]) throws IOException
         String line;
         String[] full=new String[10];
         int count=0;
         FileInputStream fis=new FileInputStream("sampledocument.doc");
         DataInputStream input= new DataInputStream("fis");
         while((line= input.readLine())!=null)
              System.out.println("line");
              count++;
              full[count]=line;
    error given is
    javac read.java
    read.java:11: cannot find symbol
    symbol :construtor DataInputStream(java.lang.String)
    location:class java.io.DataInputStream
         DataInputStream input = new DataInputStream("fis");
    Note :read.java uses or overrides a deprecated API.
    Note :Recompile with -Xlint:deprecation for details.
    1 error.

    but still by removing quotes i am not getting out put here is modified code
    import java.io.*;
    class read
    public static void main(String args[]) throws IOException
         String line;
         String[] full=new String[10];
         int count=0;
         FileInputStream fis=new FileInputStream("sampledocument.txt");
         DataInputStream input= new DataInputStream(fis);
         while((line= input.readLine())!=null)
              System.out.println("line");
              count++;
              full[count]=line;
    it creates out put on single line as "line " where as in original text i have written i mean to say in text file
    when going gets tough ,ough gets going.

  • IPad Mini retina screen orientation problem still not solved?!

    I have also been having the screen orientation problem on my iPad Mini retina. I cannot find out what the problem is or how to solve it. The switch does not help it and neither does changing the settings.  Nor does rebooting. Also, the volume on the retina is definitely lower than the ordinal iPad Mini. If I had known this I would've kept the original. I am on IOS 7.1.2.

    If you have Reset it, Restored it from Backup and Restored it as new and none of these helped then you will need to get it serviced.

  • Ipad mini retina since update to ios8.2 cannont update or install any appscircle just keeps spinning round also updated today to ios8.1 still not sorted problem out done hard reset several times no joy any body else got same issue

    ipad mini cant update any apps or install new ones since updated to ios8.02 and now today updated to ios8.1 still cant update apps the circle just keeps spinning round, i have done a hard reset etc no joy, anybody else got same problem.

    VPN-User,
    Ok - I see the list of issues and will ensure our X300 specialist takes a look at it.   
    Please do understand that while you have put together a very coherent list, I try to ensure priority to threads in which multiple customers are focused on a single issue, as we deliver the most benefit to the community in working on those.   This forum is primarly a peer to peer discussion forum rather than a Lenovo chat / tech support where we try to solve each and every issue put forth.
    Individuals with a long list of issues on a particular machine may find benefit from either contacting technical support and working through their list, or publishing it as you have done and wait for other users of the same system to share their experiences.
    Thanks for your patience
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Running headless not solving problem with X11 connectivity error

    I'm having a variation on a problem referenced in quite a few places, but I don't seem to be getting any closer to a solution.
    I'm running a stand-alone, console-only application that uses javax.swing.text.html.HTMLEditorKit to return plain text from HTML for use in multi-part e-mails. That class is causing the following error when running on the Unix server:
    java.lang.InternalError: Can't connect to X11 window server using ':0.0' as the value of the DISPLAY variable.
    at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)
    at sun.awt.X11GraphicsEnvironment.<clinit>(X11GraphicsEnvironment.java:175)
    at java.lang.Class.forName1(Native Method)
    at java.lang.Class.forName(Class.java:180)
    at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:91)
    at sun.awt.motif.MToolkit.<clinit>(MToolkit.java:124)
    at java.lang.Class.forName1(Native Method)
    at java.lang.Class.forName(Class.java:180)
    at java.awt.Toolkit$2.run(Toolkit.java:796)
    at java.security.AccessController.doPrivileged1(Native Method)
    at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))
    at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:787)
    at java.awt.Toolkit.getEventQueue(Toolkit.java:1572)
    at java.awt.EventQueue.isDispatchThread(EventQueue.java:731)
    at javax.swing.SwingUtilities.isEventDispatchThread(SwingUtilities.java:1269)
    at javax.swing.text.StyleContext.reclaim(StyleContext.java:448)
    at javax.swing.text.StyleContext.addAttribute(StyleContext.java:305)
    at javax.swing.text.html.StyleSheet.addAttribute(StyleSheet.java:568)
    at javax.swing.text.StyleContext$NamedStyle.addAttribute(StyleContext.java:1497)
    at javax.swing.text.StyleContext$NamedStyle.setName(StyleContext.java:1307)
    at javax.swing.text.StyleContext$NamedStyle.<init>(StyleContext.java:1255)
    at javax.swing.text.StyleContext.addStyle(StyleContext.java:117)
    at javax.swing.text.StyleContext.<init>(StyleContext.java:97)
    at javax.swing.text.html.StyleSheet.<init>(StyleSheet.java:177)
    at javax.swing.text.html.HTMLEditorKit.getStyleSheet(HTMLEditorKit.java:387)
    at javax.swing.text.html.HTMLEditorKit.createDefaultDocument(HTMLEditorKit.java:218)
    I don't have the option of starting an X11 service on this server, so I have to find another way around.
    I'm using Java 1.4.2, so my understanding is that headless mode should solve this problem for me. I've tried adding the statement
    System.setProperty("java.awt.headless","true");
    to the code with no avail, and tried running it with the option "-Djava.awt.headless=true" from the command line, also with no luck.
    Is anyone able to give me a tip on what other course of action I can try?

    Thanks, but I'm not sure what you mean. I don't know that I have access to "the source of X11GraphicsEnvironment" and I'm not confident I could locate and solve the problem if I did.
    I'm a little puzzled that it's not working in headless mode, because everything that my searching turned up indicated that it worked fine in 1.4.2 unless heavyweight components were used, which they aren't.

  • Problem sending photos by Email.  Received a response from T. Devlin.  Did not solve problem.  I had already done what he suggested.

    I had already entered my Email info under preferences.
    The screen comes up with the photos I want to send.
    I type my message and hit Send.  The blue bar appears "Sending".
    However,  don't know where the photos go, they don't reach destination.
    I tried sending to myself at another Email address - they didn't arrive, and they are not shown under Sent Emails either.
    How to resolve?
    Tried to respond to T. Devlin - but that didn't happen either.  Just a Like symbol was there (as in Facebook).

    You are referring to this discussion, right?
    Problem sending photos via email since I recently updated to iLife 11.
    Which MacOS X version are you using and which iPhoto version?
    If you are using Yosemite and have enabled up two-step verification for iCloud?  Then you may need to create an application specific password for iPhoto.  See this discussion:  Re: Unable to send photo through email using iphoto theme (designs)Re: Unable to send photo through email using iphoto theme (designs)Re: Unable to send photo through email using iphoto theme (designs)  Unable to send photo through email using iphoto theme (designs)

  • CORBA IDL "pragma ID" not solving problem

    Similar to "CORBA Bug?", I get the stacktrace that is listed at the end of this note. I have put "pragma ID..." for typedefs, structs and interfaces in my idl file. I did nothing else to the code. The same errors were generated, so I assume the "pragma ID..." had no effect.
    This program connects to a Cloudscape DB on the server, and works very well with servants that have only "string" types. It produces errors with strings that have user-defined or boolean return types.
    I appreciate any help in this matter.
    Gary Lance
    [email protected]
    Exception in thread "main" org.omg.CORBA.UNKNOWN:
    vmcid: SUN minor code: 202 completed: Maybe at
    sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at
    sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct orAccessorImpl.java:39)
    at
    sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at java.lang.Class.newInstance0(Class.java:296)
    at java.lang.Class.newInstance(Class.java:249)
    at
    com.sun.corba.se.internal.iiop.messages.ReplyMessage_1_2.ge
    tSystemException(ReplyMessage_1_2.java:90)
    at
    com.sun.corba.se.internal.iiop.ClientResponseImpl.getSystemEx
    ception(ClientResponseImpl.java:105)
    at
    com.sun.corba.se.internal.POA.GenericPOAClientSC.invoke
    (GenericPOAClientSC.java:129)
    at org.omg.CORBA.portable.ObjectImpl._invoke
    (ObjectImpl.java:457)
    at TeachApp._TeachingStub.getProfessors
    (_TeachingStub.java:43)
    at TeachEntry.getNames(TeachEntry.java:127)
    at TeachEntry.<init>(TeachEntry.java:85)
    at TeachEntry.main(TeachEntry.java:295)

    I had this problem myself and I finally managed to crack it ...
    Let's take an example IDL for reference
        typedef string<100> Name;
        struct PersonStruct {
            string  age;
            Name    name;
        typedef sequence<PersonStruct> PersonSeq;
        interface PersonHandling {
            long getPersons(in string personId, in Name name, out PersonSeq persons);
        };The method getPerson returns an array of PersonStructs.
    The most likely place where the error 202 is thrown is in the implementation class
         public int getPersons(String personId, String name, PersonSeqHolder persons) {
                PersonStruct a = new PersonStruct();
                a.age = "28";
                a.name = "John Smith";
                persons = new PersonSeqHolder();    //this line is the cause of error 202
                persons.value = new PersonStruct[]{a};                                         
                return 0;          
            }The return PersonSeqHolder object should not be reinitialised. We must use the object given in the input params as is ..
    i.e. persons = new PersonSeqHolder();//should be removed Remove this line and simply set the value
         persons.value = new PersonStruct[]{a};

  • I am running 10.9.4. on an older Mac (mid 2007). My iPhoto is 7.1.5.  I have no access to photos on iCloud. The icon does not even appear. I've been told that an iPhoto upgrade may not solve problem. Advice?

    I have no access to photos on iCloud. The icon does not even appear on my mac or in iCloud.
    The Mac is running 10.9.4. on a mid 2007 model.
    My iPhoto is 7.1.5.  
    I was told that my system was too old to support the required upgrades that would allow me to to see photos on iCloud; thus, I should not be the latest iPhoto.  Accurate? 

    All you need to do is upgrade your iPhoto to iPhoto 9.5.1 thru the App Store.  This screenshot shows which previous versions of iPhoto are compatible with Mavericks.  It also indicates which versions qualify for a free upgrade to iPhoto 9.5.1 and which require a purchase:
    Note 1:  every day more users are reporting problems with iPhoto 8.1.2 so I've included it in the non compatible category.
    Note 2:  If your previous version of iPhoto was iPhoto 7 (08) or earlier you'll need to download and run the iPhoto Library Upgrader 1.1 application on the library before opening it with iPhoto 9.5.1

  • IPhone 5 has lost sound and turning phone off has not solved problem

    Can anyone suggest how this problem can be resolved?  I do not have Apple Care.  I have been turning phone off and then back on without success.
    Thanks
    MaryLou

    Hi there,
    I would recommens that you take a look at some of the troubleshooting steps in the article below.
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/TS1630
    Hope that helps,
    Griff W.

  • Safari pages are darkened and unresponsive. Internet is fine. Syncing with MacBook did not solve problem. Everything else works fine.

    Safari pages are darkened and unresponsive. Internet works fine. Syncing to MacBook didn't help. Everything else works fine, including a different browser and apps that use the internet. Safari responds to searches and bookmark changes, but pages are not clickable. Help, please.

    Have you tried a reset ? Press and hold both the sleep and home buttons for about 10 seconds, after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot. Also have you cleared the cache : Settings > Safari > Clear Cache (and Clear History). Also, if your equipment list is correct, you update to 4.3.3

  • STILL NOT SOLVED. So...What Is Going On With Java And How Do I Update It?

    So...I checked my plugins this morning, and it said both my Java platform and my Java Deployment Toolkit needed updating. However, I click Update, and the link does not lead me to a download page. Plus, when I try to verify my Java version on the Java page, it says that I have the recommended Java installed (and so do other sites that run on Java). How do I update these things so that everything is up to date?
    Screenshots for further info:
    http://oi50.tinypic.com/15d87ly.jpg (the plugin checker status)
    http://oi47.tinypic.com/35jk0ub.jpg (What the "Update" link leads to)
    http://oi46.tinypic.com/34yz7kk.jpg (The verification)

    '''ponyparty''',
    <s>The x86 package is for 32-bit Windows - WinXP, Vista, and Win7.</s> <br />
    <s>The x64 is for 64-bit versions of Windows - XP, Vista, and Win7.</s>
    <sub>'''EDIT:''' You need the x86 package (32-bit version of Java) on both 32-bit and 64-bit Windows to use the Java plugin for Firefox, which is a 32-bit browser. The X64 64-bit Java is only needed for 64-bit browsers, if you use one. Ref: http://kb.mozillazine.org/Java#Java_downloads aw</sub>
    The JDK version is for Developers, you want the '''JRE''' version. The Development Toolkit plugin comes with both versions, but that plugin is really only needed by people developing for Java.
    As far as '''if''' you should update right now, my answer is '''NO'''. From what I am reading the U10 version is messed up and is not installing the Firefox required U10 plugin. Not sure if Oracle didn't update it for Firefox, or if some users are missing the registry key needed for Firefox to locate the new plugin.

  • I cannot close Safari.  Shutting down computer does not solve problem.

    When I try to close Safari, the Quit Safari option on the menu list is light gray, and I cannot activate it.  I have tried shutting down or restarting my computer from the Apple Icon, but I cannot without closing Safari.  It is a vicious circle!  How can I close Safari under these conditions?

    Hold down Option Command Escape at the same time... from the drop down Menu choose  Force Quit Safari.
    Or,
    Click the Apple menu icon top left in your screen. From the drop down menu click Force Quit.

Maybe you are looking for

  • Screen Turns into Red Blocks

    When viewing a published .swf demonistration the screen turns into red blocks about 20 minutes (100slides) in. This seems to be a random occurance as sometimes I can get all the way through the demonstration and sometimes not. Has anyone else seen th

  • Cisco ISE Wlan airspace issue

    Dears, I configured wifi user authenticate from ISE server. We have 2 SSID:  1) Guest  2) Corporate  When the wifi users connect corporate ssid it is normal wokring. But at this time when the users want to connect guest ssid it is not forward to regi

  • How to assign ROle to user

    Hello All,   I need to programmatically assign roles to user and want to give some authorization at runtime.. please suggest me which function module to use .. please help me asap thanks, jigs helpful answers wil lbe rewarded

  • Track 1, Track 2 etc.

    In my I tunes library, some songs from a mixed disc my friend made me are listed as Track 1, 2 etc. I can play them on my computer, but even after updating my ipod, I can't find it in the menu on the ipod itself. I tried going to advaced and clicking

  • ARD: Deploy Final Cut Studio

    Relative newbie to ARD. I have to deploy Final Cut Studio to 17 iMacs in a lab that already are in production. I would have expected to find more information available on how to accomplish this task, especially with this software since it is Apple so