Create Abstract List from Node contains repeat of last node element

My custom controller is giving me fits.
I have a structure (Empl_Pernr) in my model that needs to be part of the input before calling a second BAPI.  The source of this input is the output of another BAPI - thus a structure.  The structure that is input is found in wdContext.node<NODENAME> contains 5 distinct entries.  When I run the following code the abstract list created is 5 long but only contains the LAST element in the node I was "unloading".
AbstractList emplList = new Zhr_Empl_Pernr.Zhr_Empl_Pernr_List();
Zhr_Empl_Pernr emplItem = new Zhr_Empl_Pernr();
for(int i = 0; i < wdContext.node<NODENAME>().size(); i++)
emplItem.setLastName(wdContext.node<NODENAME>().getOrg_OutElementAt(i).getLastName());
emplItem.setPersNo(wdContext.node<NODENAME>().getOrg_OutElementAt(i).getPersNo());
emplList.add(i,emplItem);
inputMangHours.setEmpl_Pernr(emplList);
INPUT
Last name  PersNo
Last1      02600174
Last2      02600176
Last3      02600265
Last4      02600266
Last5      02600268
OUTPUT
Last name  PersNo
Last5      02600268
Last5      02600268
Last5      02600268
Last5      02600268
Last5      02600268
What did I miss?

Diane,
You are not creating the object inside the loop. You are just changing the same object again and again. Because of object references its updating all previous entries. Simple to say you are adding same element 5 times.
Change the code this way...
AbstractList emplList = new Zhr_Empl_Pernr.Zhr_Empl_Pernr_List();
Zhr_Empl_Pernr = null;
for(int i = 0; i < wdContext.node<NODENAME>().size(); i++)
emplItem = new Zhr_Empl_Pernr();
emplItem.setLastName(wdContext.node<NODENAME>().getOrg_OutElementAt(i).getLastName());
emplItem.setPersNo(wdContext.node<NODENAME>().getOrg_OutElementAt(i).getPersNo());
emplList.add(i,emplItem);
Regards
Abhilash

Similar Messages

  • How to Create Abstract WSDL from Concrete WSD

    Hello Everyone,
    I want to create abstract wsdl from concrete wsdl and place that abstract wsdl in the MDS Location. Now, In the composite i would be configuring the reference section where for ui:wsdlLocation value, i need to give the path of abstract wsdl in mds location. binding.ws location would be the actual concrete wsdl...So basically, all iwant to achieve is lets say CompositeA is calling CompositeB. I want to create abstract WSDL for CompositeB and keep that Abstract WSDL in MDS location, and use that ABstract WSDL which is in MDS location while configuring the Web Service Adapter in Composite A.
    can anyone help me on this ,
    Thanks in advance

    Here is my concrete WSDL...
    <wsdl:definitions name="BPELProcess3" targetNamespace="http://xmlns.oracle.com/Test_jws/simpleResponse/BPELProcess3">
    <wsdl:documentation>
    <abstractWSDL>http://192.168.1.106:8001/soa-infra/services/Enterprise/simpleResponse!1.0/BPELProcess3.wsdl</abstractWSDL>
    </wsdl:documentation>
    <plnk:partnerLinkType name="BPELProcess3">
    <plnk:role name="BPELProcess3Provider">
    <plnk:portType name="client:BPELProcess3"/>
    </plnk:role>
    </plnk:partnerLinkType>
    <wsdl:types>
    <schema>
    <import namespace="http://xmlns.oracle.com/Test_jws/simpleResponse/BPELProcess3" schemaLocation="http://192.168.1.106:8001/soa-infra/services/Enterprise/simpleResponse/bpelprocess3_client_ep?XSD=xsd/BPELProcess3.xsd"/>
    </schema>
    </wsdl:types>
    <wsdl:message name="BPELProcess3RequestMessage">
    <wsdl:part name="payload" element="client:process"/>
    </wsdl:message>
    <wsdl:message name="BPELProcess3ResponseMessage">
    <wsdl:part name="payload" element="client:processResponse"/>
    </wsdl:message>
    <wsdl:portType name="BPELProcess3">
    <wsdl:operation name="process">
    <wsdl:input message="client:BPELProcess3RequestMessage"/>
    <wsdl:output message="client:BPELProcess3ResponseMessage"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="BPELProcess3Binding" type="client:BPELProcess3">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="process">
    <soap:operation style="document" soapAction="process"/>
    <wsdl:input>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/Test_jws/simpleResponse/BPELProcess3"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/Test_jws/simpleResponse/BPELProcess3"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="bpelprocess3_client_ep">
    <wsdl:port name="BPELProcess3_pt" binding="client:BPELProcess3Binding">
    <soap:address location="http://192.168.1.106:8001/soa-infra/services/Enterprise/simpleResponse/bpelprocess3_client_ep"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    So in order to create the abstract wsdl, i just need to remove the bindings tab from this one ? please let me on this,
    Thanks.

  • Creating a list from the output of Xml parsing

    i extracted all the Folder name from the xml file.. (Thanks to Mr.Peter_vd_Wal..... [http://forums.sun.com/thread.jspa?threadID=5388524&tstart=0|http://forums.sun.com/thread.jspa?threadID=5388524&tstart=0] )
    the xml file is
    <?xml version="1.0"?>
    <folders>
      <folder><name>A</name><uid>C1</uid></folder>
      <folder><name>B</name><uid>C2</uid></folder>
      <folder><name>C</name><uid>C3</uid></folder>
      <folder><name>D</name><uid>C4</uid></folder>
      <folder><name>E</name><uid>C5</uid></folder>
    </folders>
    now i want create a list of folders form the output.
    i tried....
    public void endDocument() throws SAXException
        StringBuffer result = new StringBuffer();
        for (int i=0; i<nodes.size(); i++)
          Noden currentnode = (Noden)nodes.elementAt(i);
          result.append(" \"" + currentnode.getName() +  "\" ,");  
         midlet.alert(result.toString());
         System.out.println(result);
    ...........and
    protected void alert(String msg)
        Display display = Display.getDisplay(this);
       String[] stringElements = {msg};
        List list = new List("Listing",List.IMPLICIT,stringElements,null);
        display.setCurrent(list);
    ....the output i get is
    "A" , "B" , "C" , "D" , "E" ,i want a LIST of folders.... like
    A
    B
    C
    D
    Ebut i get all the folders as the first option in the list.
    > "A" , "B" , "C" , "D" , "E" ,

    ... i get all the folders as the first option in the list.
    "A" , "B" , "C" , "D" , "E" ,
    WYSIWYC (What You See Is What You Coded) - with code like your, above is the correct behavior.
    To make a list of folders, I'd rather try something like this....
    public void endDocument() throws SAXException
        String[] result = new String[nodes.size()];
        for (int i=0; i<nodes.size(); i++)
          Noden currentnode = (Noden)nodes.elementAt(i);
          result[i] = currentnode.getName();
          System.out.println(result);
    midlet.createAndDisplayList(result);
    System.out.println("createAndDisplayList called");
    and//.....
    protected void createAndDisplayList(String[] msg)
    Display display = Display.getDisplay(this);
    List list = new List("Listing", List.IMPLICIT, msg, null);
    display.setCurrent(list);

  • How to create a list from checkboxes using Numbers on iPad?

    I am creating a guest list using Numbers foriPad. First sheet is a list of invited people with checkboxes (Yes/No/still to reply) in next column. In the next sheet i want create a list of everyone that has replied yes.
    I have tried using the if statement, but I dont want any blank cells.
    -IF(A2;TRUE;A1) gives name in A1 if box is checked, but gives 0 or something else if i specify. But i want to automatically start on next row to avoid blank or 0-
    Example:
    David   V
    Lisa.     V
    Derek 
    Brad.   V
    Paul.
    John
    The separate list in another sheet should then be:
    David
    Lisa
    Brad
    Any help will be appreciated.

    Can you use the the reorganize panel to sort the list?
    Idon't have Numbers on the iOS so I am not sure.  You are posting in the forum for Numbers on Mac OS X.
    you can also add a new column (let's say C)
    where
    C1=if(A1, A1, "")
    this will include the name from column A  when the checkbox in B is checked.  You can then copy column C and paste values using the menu item (Edit > Paste Values, or equivalent in iOS... not sure what it is)

  • How can I create a list from the e-mail addresses "To:" field of an e-mail?

    Is there a way to automatically create a mailing list from a list of people who have received an e-mail? I know how to create a list manually, but there are a lot of e-mail addresses, so this would be an incredibly tedious process.
    Thanks!

    https://getsatisfaction.com/mozilla_messaging/topics/how_to_create_a_mailing_list_from_a_list_of_email_recipients
    Install the add-on and right-click any recipient in the To: field in the Header Pane.

  • Error in creating invoice list from VF21 transaction

    Hi,
    i am craetin a sales order fro VA01 transaction and for the perticular sales order number I am generating the billing document number.when I take this number and try to create a invoice list from vf21 transaction,it gives an error message as no invoice list can be created.and the processing status of the document becomes invalid.
    what can be the reasons?plz sugges....

    Hello all,
    We are facing the same issue.  While creating ZMHF (custom Urgent Change) users "sometime" receive error "There is no active task list in the associated project"
    Hi Mateus , the document is you mentioned is currently expired / unavailable.  Can you kindly upload the same again please?
    Thanks in advance,
    Shaji Narayanan

  • Can I create "keyword list" from keywords in EXIF data?

    Hi - I'm still a Mac and Aperture noob, so please excuse me if the question is dumb or ill-formed...
    I used to use Photoshop Elements on a PC. I made pretty extensive use of "tags" (keywords, in Aperture lingo) for categorizing my photos. I wrote all the tags into the exif data of my photos, then copied everything over to Aperture.
    Now, when I pull up an existing photo in Aperture browser, I can see the keywords that I already added. Great...but, is there a way to extract all the existing keywords from all my photos, and build a "library" of keywords that I can pick and choose from for tagging future photos?
    Alternatively - if I could export a keyword list from Photoshop Elements (in txt or XML format, whatever) is there a way that I can import that into Aperture?
    From the reading I've done so far, it seems like I have to manually enter keywords on each photo or do a batch update (and, again, manually enter them). I'd much prefer to have a list of keywords that I can scroll down, then just click to select. Is that asking too much of Aperture?

    jtj3 wrote:
    Hi - I'm still a Mac and Aperture noob, so please excuse me if the question is dumb or ill-formed...
    Welcome to the list and Mac's. Don't woory about your questions, veteran Mac and Aperture users here frequently post dumb and ill-formed questions.
    I used to use Photoshop Elements on a PC. I made pretty extensive use of "tags" (keywords, in Aperture lingo) for categorizing my photos. I wrote all the tags into the exif data of my photos, then copied everything over to Aperture.
    Now, when I pull up an existing photo in Aperture browser, I can see the keywords that I already added. Great...but, is there a way to extract all the existing keywords from all my photos, and build a "library" of keywords that I can pick and choose from for tagging future photos?
    I tried what you described to see what would happen. I opened an image in Preview and added a keyword to it (one I was sure wasn't in my Aperture) saved the file and imported into Aperture. The new keyword was bot in the EXIF data field of the image and in Apertures keyword list.
    Are you familiar with the *Keywords HUD* (*Window->Show Keyword HUD*)? If you look there do you see your keywords from your imported images?
    Alternatively - if I could export a keyword list from Photoshop Elements (in txt or XML format, whatever) is there a way that I can import that into Aperture?
    There is a way to import and export keywords see *+Exporting and Importing Keyword Lists+* in the +Aperture Users Manual+ (get to it by *Help->Aperture Help*)
    From the reading I've done so far, it seems like I have to manually enter keywords on each photo or do a batch update (and, again, manually enter them). I'd much prefer to have a list of keywords that I can scroll down, then just click to select. Is that asking too much of Aperture?
    Not at all, ask away (you may not always like the answer )

  • How do you create a list from Contacts, including Photos?

    How do I create a list of Contacts, including photos in Address Book?  I want to print this list out.

    You can print a list by selecting a group and and using "File > Print".
    In the Print dialoge you can select a print stile for the list and and check, which attributs you want to have included. Only the photo is not selectable, sorry.
    use one of the styles "Pocket Addressbook" or "Lists".

  • Create a list from an XML file    no display

    I have a multiline Dynamic text box called projList.
    I am trying to populate it from an xml file and create a
    clickable list.
    The trace works but cannot get to display the list in the
    text box.
    As far as the clickable goes, haven't gotten that far yet.
    Help very much appreciated.
    The xml is structured like this:
    <?xml version="1.0" ?>
    - <images>
    - <pic>
    <Image>/Butler/Images/sfah2_small.jpg</Image>
    <Category>Institutional</Category>
    <Proj_title>FRESH AIR HOME</Proj_title>
    Please see code below:
    import mx.xpath.XPathAPI;
    var allproj_xml:XML = new XML();
    allproj_xml.ignoreWhite = true;
    allproj_xml.onLoad = function(success:Boolean) {
    trace("onload...");
    if (success) {
    trace("success...");
    var thePath_str:String = "/images/pic/Proj_title";
    var title_array:Array =
    XPathAPI.selectNodeList(this.firstChild,
    thePath_str);
    for (var i:Number = 0; i < title_array.length; i++) {
    trace(title_array
    .firstChild.nodeValue);
    projList.addItem(title_array.attributes.Proj_title);
    } else {
    trace("error loading XML");
    allproj_xml.load("allimages.xml");
    stop();

    This did it:
    projList.addItem(title_array
    .firstChild.nodeValue);
    > Thanks for your response.
    > How can I add what I am tracing, to the component
    properly?
    >
    > "DMennenoh **AdobeCommunityExpert**"
    <[email protected]> wrote in
    > message news:eqaejh$bi8$[email protected]..
    >>>>trace(title_array.firstChild.nodeValue);
    >> projList.addItem(title_array
    .attributes.Proj_title);
    >>
    >>
    >> Your code seems OK. What you are tracing here
    however isn't what you're
    >> adding to the component. Are you sure what you're
    adding traces?
    >>
    >> --
    >> Dave -
    >> Head Developer
    >> www.blurredistinction.com
    >> Adobe Community Expert
    >>
    http://www.adobe.com/communities/experts/
    >>
    >

  • Creating a list from multiple tables

    Hi!
    Hopefully someone can help. I have a spreadsheet with 9 tables on it. I use this sheet to track different groups of volunteers based on departments. I have a separate table for each department. The  first table has a list of all of the volunteers. I currently fill in the names from each table on the the first table manually. I would like to be able to type a name into one of the tables and it auto populate on the first table. Is this possible or asking too much?
    Thanks for any help you can give me!

    Hi J,
    Turning the problem on its head, here is one approach. Start with two tables.
    The Department table is one cell. It will act as the trigger to filter rows in the Volunteers table.
    The Volunteers table contains the names of all volunteers. The order of names is alphabetical, but that may not be important in your aim. Column B contains dummy values for each Department.
    In the Volunteers table, select cells B2 to the bottom of the table. Format them as Pop-Up Menu.
    Delete Row 2 (it won't remove "All" from the Pop-Ups).
    Select and copy cell B2 and paste into the Department table so that it too becomes a Pop-Up.
    Using the Pop-Ups in the Volunteers table, assign a department to each volunteer:
    Now to set up Column C for the filter.
    Formula in C2 (and Fill Down) is:
    =IF(Department::A$1="All","Show",IF(B2=Department::A$1,"Show",""))
    Now select something other than All in the Department table
    Filter Rule on Column C ("Show"):
    To see this:
    You can hide columns B and C.
    To see the full list of volunteers again, choose All in the Department table
    Regards,
    Ian.
    Acknowledgment to t quinn for showing this filter idea in another thread. Ian.

  • Creating Abstract datatypes from Create Type As Object

    hi.
    I am define new type abstract datatypes as
    create type cust_address_ty as object
    (STREET VARCHAR2(25),
    CITY VARCHAR2(25),
    COUNTRY VARCHAR2(25));
    then insert data into new created table
    when we run sql select command for * from
    following error occured.
    SQL> select * from fml.cust;
    select * from fml.cust
    ERROR at line 1:
    ORA-01024: invalid datatype in OCI call
    what should i do for this.
    please help
    thanks
    Ali

    try to update your sqlnet version.
    regards
    daniel

  • Creating dynamic lists from db resultset

    Hello, Not sure if this is the right forum but I am hoping someone can point me in the right direction.
    I have tried to set up a popup menu with JRadioButtonMenuItem (s) or a JTable from the resultset and then select from the list as input to the next db query (OracleSE db).
    What I cannot do is retrieve the value.
    With "JRadio" I cannot use 'this' on the button in the listener.
    With JTable I cannot extend the object.
    If there are examples then I would be grateful for leads, none of what I have seen goes this deep.
    Thanks,
    Ralph.
    Edited by: user548412 on Feb 21, 2012 6:05 PM

    It would be helpful if you posted your code inside the tags so it became readable. Please do that next time.
    And also: what's your question about that code? I don't see any JDBC code in there; did you have a JDBC question of some kind? If so, what is it?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Problems creating a PDF from Word containing a Excel sheet

    When I want create a PDF (Acrobat 8 or 6) in Word 2007 it always happens that the excel sheet in the word document is a solid black box instead of the excel sheet in the created PDF. Anyone else had that problem and who can help?
    Thanks alot!

    if you have acrobat 8 pro go to tools advanced editing and select the touch up object tool and click on the black box and hit delete

  • Retriving user list from ldap (username - first and last, dn, cn)

    Hi,
    I tried connecting LDAP server and succesfully connected and now i need to get userlist from LDAP can anyone give me a sample code to get userlist from LDAP.
    public static boolean testLDAP() {
                   InitialDirContext ctx = null;
                   try {
                           Hashtable htbl = new Hashtable();
                           htbl.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
                           htbl.put(Context.PROVIDER_URL, "ldap://padl:389");
                           htbl.put(Context.URL_PKG_PREFIXES, "com.sun.jndi.url");
                           htbl.put(Context.REFERRAL, "ignore");
                           htbl.put(Context.SECURITY_AUTHENTICATION, "simple");
                           htbl.put(Context.SECURITY_PRINCIPAL, "cn=administrator");
                           htbl.put(Context.SECURITY_CREDENTIALS, "password");
                           ctx = new InitialDirContext(htbl);                       
                           if (ctx != null) {
                                   ctx.close();
                                   return true;
                   catch (NamingException e) {
                           System.out.println("Error Connecting to LDAP Server.");
                           System.out.println(e.toString());
                           ctx=null;
                           return false;
                   return false;
           }Thank You.

    Ok here is the code to fetch userlist(First Name, Last Name, cn, dn, mail) from LDAP.
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.NameNotFoundException;
    import javax.naming.NamingEnumeration;
    import javax.naming.NamingException;
    import javax.naming.directory.Attributes;
    import javax.naming.directory.DirContext;
    import javax.naming.directory.InitialDirContext;
    import javax.naming.directory.SearchControls;
    import javax.naming.directory.SearchResult;
    public class UserListFromLDAP
       public static void main(String args[])
          Hashtable env = new Hashtable();
          env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
          env.put(Context.PROVIDER_URL,"ldap://host:389");
          DirContext ctx;
          try {
             ctx = new InitialDirContext(env);
          } catch (NamingException e) {
             throw new RuntimeException(e);
          NamingEnumeration results = null;
          try {
             SearchControls controls = new SearchControls();
             controls.setSearchScope(SearchControls.SUBTREE_SCOPE);
             results = ctx.search("", "(objectclass=person)", controls);
             while (results.hasMore()) {
                SearchResult searchResult = (SearchResult) results.next();           
                Attributes attributes = searchResult.getAttributes(); 
                System.out.println("dn----------> "+searchResult.getName());
                System.out.println("cn----------> "+attributes.get("cn").get());
                if (attributes.get("givenName")!=null)
                     System.out.println("First Name--> "+attributes.get("givenName").get());
                System.out.println("Last Name---> "+attributes.get("sn").get());
                System.out.println("Mail--------> "+attributes.get("mail").get()+"\n\n");
          } catch (NameNotFoundException e) {
               System.out.println("Error : "+e);
          } catch (NamingException e) {
             throw new RuntimeException(e);
          } finally {
             if (results != null) {
                try {
                   results.close();
                } catch (Exception e) {
                     System.out.println("Error : "+e);
             if (ctx != null) {
                try {
                   ctx.close();
                } catch (Exception e) {
                     System.out.println("Error : "+e);
    }Here is the code to search user from LDAP based on cn and sn
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.NameNotFoundException;
    import javax.naming.NamingEnumeration;
    import javax.naming.NamingException;
    import javax.naming.directory.Attributes;
    import javax.naming.directory.DirContext;
    import javax.naming.directory.InitialDirContext;
    import javax.naming.directory.SearchControls;
    import javax.naming.directory.SearchResult;
    public class LDAPUserSearch
       public static void main(String args[])
          Hashtable env = new Hashtable();
          env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
          env.put(Context.PROVIDER_URL,"ldap://host:10389");
          DirContext ctx;
          try {
             ctx = new InitialDirContext(env);
          } catch (NamingException e) {
             throw new RuntimeException(e);
          NamingEnumeration results = null;
          // give either cn or sn to check     
          String cn = "Common Name";
          String sn = "lastName";
          try {
             SearchControls controls = new SearchControls();
             controls.setSearchScope(SearchControls.SUBTREE_SCOPE);
             if(!cn.equalsIgnoreCase("") && !sn.equalsIgnoreCase("")){
                  System.out.println("Please test with either cn or sn");
             else if(cn!=null && !cn.equalsIgnoreCase("")){
                  System.out.println("Result based on cn:");
                  results = ctx.search("", "(cn="+cn+")", controls);
             else if(sn!=null && !sn.equalsIgnoreCase("")){
                  System.out.println("Result based on sn:");
                  results = ctx.search("", "(sn="+sn+")", controls);
             else{
                  System.out.println("No results found");
             while (results.hasMore()) {
                 SearchResult searchResult = (SearchResult) results.next();
                 Attributes attributes = searchResult.getAttributes();
                 System.out.println("Full Name:--------> "+attributes.get("cn").get());
                 if(attributes.get("givenName")!=null)
                      System.out.println("First Name:-------> "+attributes.get("givenName").get());
                 System.out.println("Last Name:--------> "+attributes.get("sn").get());
                 System.out.println("Mail:-------------> "+attributes.get("mail").get());
          } catch (NullPointerException e) {
               // Leave this...
          catch (NameNotFoundException e) {
             System.out.println("Error : "+e);
          } catch (NamingException e) {
             throw new RuntimeException(e);
          } finally {
             if (results != null) {
                try {
                   results.close();
                } catch (Exception e) {
                     System.out.println("Error : "+e);
             if (ctx != null) {
                try {
                   ctx.close();
                } catch (Exception e) {
                     System.out.println("Error : "+e);
       public static void common() {
    }

  • Enqueue/Dequeue is repeating the last queued element

    Hello
    I am trying to aquire data from a camera at 256fps in one for loop, enqueueing the data after each frame is acquired. A seperate while loop is supposed to dequeue each image and stream it to a binary file, acheiving the maximum imaging speed possible by seperating the data acquisition from the saving routine.
    However, this is not happening. The files are being queued and dequeued correctly UNTIL the acquisition for loop reaches completion (for example after 500 cycles) at which point the dequeue VI stops passing successive images to the binary write VI and just sends the last dequeued image over and over again until 500 images have been written to the binary file.     
    Can anyone suggest why this might be happening?
    Cheers 

    Hi Phoenix,
    The queue approach is still the best architecture for your
    application.  Instead of converting the image to an array, have you tried
    flattening each image to a string and passing this into the que?
    You can then un-flatten from the string in the non-deterministic loop.
    Hope this helps,
    John P
    John.P | Certified LabVIEW Architect | NI Alliance Member

Maybe you are looking for

  • Exchange 2010 Autodiscovery & Outlook Anywhere kind of but really not working

    This is driving me nuts. We have a single Exchange Server 2010 running (everything is on one box). It works fine internally (all Outlook clients can see and grab the login info from the user login). OWA works from outside, mail delivers nicely. My pr

  • Using Microsoft Outlook to receive a report from ABAP...

    Guys may you please have a look at this coding of myne, i want to send a report as an e-mail(my outlook inbox) but when i execute it nothing is happening if there is any configuration that has to be done please can anyone send me the steps to do that

  • IPhone mail inbox grey for IMAP account

    I am having trouble with the main inbox folder on IMAP email accounts being greyed out on the iPhone. Greyed out meaning I cannot select the inbox and look at my mail. Only the inbox is grey, subfolders are black and I can read mail in them. Two sepa

  • Export volume

    I can't seem to control my export to iTunes volume. Help tells me to adjust the slider located below the right corner of the time line. The only thing I see is at the right of the tempo adjuster. If I adjust that slider way up or way down, there is n

  • Photoshop CC not opening - asking for license or to start trial

    All the sudden, PS is not opening. Bridge opens, but not PS. Wants me to start trial, or enter serial # ... which I don't know.  What's the problem?