Get All Reply Discussion

Hello, i want to know how can i get all reply discussion for listitem.
I written this code but its don't work.
Do you have any idea ?
Thanks .
Code Snippet
foreach (SPListItem folder in objSPList.Folders)
                    int var = Convert.ToInt32(folder.Fields["Replies"].GetFieldValueAsText(folder["Replies"]));
                    Response.Write(folder["Replies"].ToString() + "<br>");
                    for (int i = 0; i < var; i++)
                        Response.Write(folder.ListItems[var].Fields["Post"].GetFieldValueAsText(folder["Post"]) + "<br>");

check the below link
http://social.msdn.microsoft.com/Forums/sharepoint/en-US/92603d9f-4a96-4236-bc07-78295a81b574/how-to-read-all-discussions-and-replies?forum=sharepointdevelopmentlegacy
foreach (SPListItem listItem in myDiscussionList.Items)
     Response.Write("Item DisplayName: " + listItem.DisplayName + "<BR>"); // Returns Title of Discussion
     Response.Write("List ID: " + listItem.ID + "<BR>");
     Response.Write("List Folder ID: " + listItem.Fields["Parent Folder Id"].GetFieldValueAsText(listItem["Parent Folder Id"]).ToString() + "<BR>"); // Returns ID of Parent Discussion
     Response.Write("Body: " + listItem.Fields["Body"].GetFieldValueAsText(listItem["Body"]) + "<BR>");
     // Create Parent List Item
     int parentListID = Convert.ToInt32(listItem.Fields["Parent Folder Id"].GetFieldValueAsText(listItem["Parent Folder Id"]));
     SPListItem parentListItem = lvContentItemsDiscussionsList.GetItemById(parentListID);
     Response.Write("Parent List Item Name: " + parentListItem.Name + "<BR>");
     // Code to Reply to a Discussion Message
     SPListItem reply = SPUtility.CreateNewDiscussionReply(parentListItem);
     reply["Body"] = "<div class=ExternalClass89C47CD7892B4279A8F42A65DD63AE3A><div> </div> <div>Reply to the new message<br><br> <hr> <b>From: </b>Admin<br><b>Posted:
</b>Friday, July 20, 2007 4:01 AM<br><b>Subject: </b>New message<br><br> <div class=ExternalClass3D04672E599B486F9ECB76C138494708> <div>My new message content</div></div></div></div>";
     reply["TrimmedBody"] = "<div class=ExternalClass677134B4EA284660B1B236824800345C><div> </div> <div>Reply to the new message<br></div></div>";
     reply.Update();
    // Code to delete a discussion reply
    listItemToDelete = listItem;

Similar Messages

  • We have three discussions forums with same subject. whenever a post gets new reply in one forum, it should automatically trigger workflow functionality to check conditions and send the same reply to other synchronized forums.

    we have three discussions forums with same subject. whenever a post gets new reply in one forum, it should automatically trigger workflow functionality to check conditions and send the same reply to other synchronized forums.
    Rajiv Kumar

    Hi,
    More details about your discussions forum will make others easier to find a corresponding solution on your requirement.
    If you mean there are three Discussion Board list waiting for synchronizing, I would suggest you create an Event Receiver for the three Discussion Board list.
    Here is a link with code demo about how to copy items from one Discussion Board to another including Replies:
    http://spcodes.blogspot.com/2013/03/programmatically-copy-items-from-one.html
    Here is a step by step sample on creating a simple Item added event receiver for Custom List in SharePoint 2010:
    http://msdn.microsoft.com/en-us/library/ff398052.aspx
    More information on Event Receiver for your reference:
    http://msdn.microsoft.com/en-us/library/gg749858(v=office.14).aspx
    http://msdn.microsoft.com/en-us/library/ff408183(v=office.14).aspx
    Feel free to reply if there are still any questions. 
    Best regards
    Patrick Liang
    TechNet Community Support

  • I have a new Mac PC but my IPod touch ITunes account was on my old desk top, how do I get all my music on my new MAC? It appears I might have 2 ITunes accounts which is why my IPod is not synching all the songs, please help.

    I have a new MAC PC with an old IPod Touch that was synch to my old desktop, how do I get the new music on my new MAC if I might have had an old account?

    The article in my previous reply said:
    - Transfer iTunes purchases from iPod to computer by:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    - For non-Tunes purchases you need to use a third-party program. Several are discussed in the link in my previous reply
    - Then to sync with the new computer after getting all synced media like apps and music on the new computer yo have to backup the iPod to iTunes and restore from that backup
    iOS: Back up and restore your iOS device with iCloud or iTunes

  • Recurring Events not gets all data in a given month in C#

    Help me about this. I cannot get all the records of recurring events in Calendar. Even using <Month> ,<Year>. it doesn't give the all records. that happens when adding no end date of recurrence.
    ex. i want to filter all records on the 10-01-2018 by its month but it appears like in different result range of date. cause i've tried creating an event in calendar with recurrence of Daily weekday=true and no end date. then i don't why it doesn't give the
    correct result and just tried this date as sample. 
    here's the image of what trying to get:
    https://social.msdn.microsoft.com/Forums/getfile/621163
    here's the data showing when getting it.
    http://community.office365.com/cfs-file.ashx/__key/communityserver-discussions-components-files/154/0841.img.jpg
    Here's the code:
    var list = xWeb.Lists.TryGetList("TestCalendar");
    var oQueryBookings = new SPQuery();
    oQueryBookings.CalendarDate = new DateTime(2018,10 ,1);
    oQueryBookings.ExpandRecurrence = true;
    SPListItemCollection oCollBookings = null;
    string strViewField = "<FieldRef Name='RecurrenceID' />" +
    "<FieldRef Name='Duration' />" +
    "<FieldRef Name='Title' />" +
    "<FieldRef Name='EventDate' />" +
    "<FieldRef Name='EndDate' />" +
    "<FieldRef Name='Location' />" +
    "<FieldRef Name='Category' />" +
    "<FieldRef Name='Description' />" +
    "<FieldRef Name='fRecurrence' />" +
    "<FieldRef Name='RecurrenceData' />" +
    "<FieldRef Name='fAllDayEvent' />" +
    "<FieldRef Name='TimeZone' />" +
    "<FieldRef Name='EventType' />" +
    "<FieldRef Name='UID' />" +
    "<FieldRef Name='XMLTZone' />" +
    "<FieldRef Name='LinkTitle'/>";
    oQueryBookings.ViewFields = strViewField;
    string strQuery =" <Where>" + 
    " <DateRangesOverlap> " + 
    " <FieldRef Name=\"EventDate\" /> " + 
    " <FieldRef Name=\"EndDate\" /> " + 
    " <FieldRef Name=\"RecurrenceID\" /> " + 
    " <Value Type=\"DateTime\" IncludeTimeValue=\"TRUE\"> " + 
    " <Month /> " + 
    " </Value> " + 
    " </DateRangesOverlap> " + 
    " </Where> " ;
    oQueryBookings.Query = strQuery;
    oCollBookings = list.GetItems(oQueryBookings);
    if (oCollBookings.Count > 0)
    DataTable objDatatable = new DataTable();
    objDatatable = oCollBookings.GetDataTable();

    Hi,
    Per my understanding, you might want to get all the recurring events within a specific month using C#.
    Here is working code demo about getting recurring events by month for your reference:
    public static void getRecurringEvents()
    using (SPSite site = new SPSite("http://sp"))
    using (SPWeb web = site.RootWeb)
    SPQuery query = new SPQuery();
    query.ExpandRecurrence = true;
    query.Query = "<Where><DateRangesOverlap><FieldRef Name=\"EventDate\" /><FieldRef Name=\"EndDate\" />" +
    "<FieldRef Name=\"RecurrenceID\" /><Value Type=\"DateTime\">" +
    "<Month />" +
    "</Value></DateRangesOverlap></Where>";
    //get the events in the specific months
    query.CalendarDate = DateTime.Now.AddMonths(-1);
    SPListItemCollection calendarItems = web.GetList("/Lists/Calendar1").GetItems(query);
    foreach (SPListItem item in calendarItems)
    Console.WriteLine(item["Title"] + ": starts "
    + item["EventDate"].ToString() + " and ends "
    + item["EndDate"].ToString());
    It will return all the recurring events of last month:
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to get all AD User accounts, associated with any application/MSA/Batch Job running in a Local or Remote machine using Script (PowerShell)

    Dear Scripting Guys,
    I am working in an AD migration project (Migration from old legacy AD domains to single AD domain) and in the transition phase. Our infrastructure contains lots
    of Users, Servers and Workstations. Authentication is being done through AD only. Many UNIX and LINUX based box are being authenticated through AD bridge to AD. 
    We have lot of applications in our environment. Many applications are configured to use Managed Service Accounts. Many Workstations and servers are running batch
    jobs with AD user credentials. Many applications are using AD user accounts to carry out their processes. 
    We need to find out all those AD Users, which are configured as MSA, Which are configured for batch jobs and which are being used for different applications on
    our network (Need to find out for every machine on network).
    These identified AD Users will be migrated to the new Domain with top priority. I get stuck with this requirement and your support will be deeply appreciated.
    I hope a well designed PS script can achieve this. 
    Thanks in advance...
    Thanks & Regards Bedanta S Mishra

    Hey Satyajit,
    Thank you for your valuable reply. It is really a great notion to enable account logon audit and collect those events for the analysis. But you know it is also a tedious job when thousand of Users come in to picture. You can imagine how complex it will be
    for this analysis, where more than 200000 users getting logged in through AD. It is the fact that when a batch / MS or an application uses a Domain Users credential with successful process, automatically a successful logon event will be triggered in associated
    DC. But there are also too many users which are not part of these accounts like MSA/Batch jobs or not linked to any application. In that case we have to get through unwanted events. 
    Recently jrv, provided me a beautiful script to find out all MSA from a machine or from a list of machines in an AD environment. (Covers MSA part.)
    $Report= 'Audit_Report.html'
    $Computers= Get-ADComputer -Filter 'Enabled -eq $True' | Select -Expand Name
    $head=@'
    <title>Non-Standard Service Accounts</title>
    <style>
    BODY{background-color :#FFFFF}
    TABLE{Border-width:thin;border-style: solid;border-color:Black;border-collapse: collapse;}
    TH{border-width: 1px;padding: 2px;border-style: solid;border-color: black;background-color: ThreeDShadow}
    TD{border-width: 1px;padding: 2px;border-style: solid;border-color: black;background-color: Transparent}
    </style>
    $sections=@()
    foreach($computer in $Computers){
    $sections+=Get-WmiObject -ComputerName $Computer -class Win32_Service -ErrorAction SilentlyContinue |
    Select-Object -Property StartName,Name,DisplayName |
    ConvertTo-Html -PreContent "<H2>Non-Standard Service Accounts on '$Computer'</H2>" -Fragment
    $body=$sections | out-string
    ConvertTo-Html -Body $body -Head $head | Out-File $report
    Invoke-Item $report
    A script can be designed to get all scheduled back ground batch jobs in a machine, from which the author / the Owner of that scheduled job can be extracted. like below one...
    Function Get-ScheduledTasks
    Param
    [Alias("Computer","ComputerName")]
    [Parameter(Position=1,ValuefromPipeline=$true,ValuefromPipelineByPropertyName=$true)]
    [string[]]$Name = $env:COMPUTERNAME
    [switch]$RootOnly = $false
    Begin
    $tasks = @()
    $schedule = New-Object -ComObject "Schedule.Service"
    Process
    Function Get-Tasks
    Param($path)
    $out = @()
    $schedule.GetFolder($path).GetTasks(0) | % {
    $xml = [xml]$_.xml
    $out += New-Object psobject -Property @{
    "ComputerName" = $Computer
    "Name" = $_.Name
    "Path" = $_.Path
    "LastRunTime" = $_.LastRunTime
    "NextRunTime" = $_.NextRunTime
    "Actions" = ($xml.Task.Actions.Exec | % { "$($_.Command) $($_.Arguments)" }) -join "`n"
    "Triggers" = $(If($xml.task.triggers){ForEach($task in ($xml.task.triggers | gm | Where{$_.membertype -eq "Property"})){$xml.task.triggers.$($task.name)}})
    "Enabled" = $xml.task.settings.enabled
    "Author" = $xml.task.principals.Principal.UserID
    "Description" = $xml.task.registrationInfo.Description
    "LastTaskResult" = $_.LastTaskResult
    "RunAs" = $xml.task.principals.principal.userid
    If(!$RootOnly)
    $schedule.GetFolder($path).GetFolders(0) | % {
    $out += get-Tasks($_.Path)
    $out
    ForEach($Computer in $Name)
    If(Test-Connection $computer -count 1 -quiet)
    $schedule.connect($Computer)
    $tasks += Get-Tasks "\"
    Else
    Write-Error "Cannot connect to $Computer. Please check it's network connectivity."
    Break
    $tasks
    End
    [System.Runtime.Interopservices.Marshal]::ReleaseComObject($schedule) | Out-Null
    Remove-Variable schedule
    Get-ScheduledTasks -RootOnly | Format-Table -Wrap -Autosize -Property RunAs,ComputerName,Actions
    So I think, can a PS script be designed to get the report of all running applications which use domain accounts for their authentication to carry out their process. So from that result we can filter out the AD accounts being used for those
    applications. After that these three individual modules can be compacted in to a single script to provide the desired output as per the requirement in a single report.
    Thanks & Regards Bedanta S Mishra

  • Not getting all of my email

    Somehow, I'm not getting all of my email (via iCloud).  My wife forwared an email to me, I got the "ding" but no email.  She sent it to another IMAP account that I have and I got it just fine.  She repeatedly tried to send it to my .mac account and nothing is received.  Sometimes during the day, I hear the email "ding" but no mail is received.  The biggest problem is subscribing to various developer forums that require replying to an email to finish the subscription.  I'm hung up in never-never land.  I get a lot of mail from a lot of sources with no problems - just not sure if it's 100%.  Running Mac Mini 2011 with Mountain Lion 10.8.2, iCloud with .mac/.me/.icloud email account.  I don't know if this is an iCloud or mail.app problem.  Any ideas?  Thanks.
    Message was edited by: SunnComm
    Update:  I guess it isn't mail.app because I don't get these emails on my iPhone 4S either.

    Hey, Toad, thanks for the links.  Yeah, I saw the Macworld article but I didn't think these email had anything of a nature that would trigger iCloud's spam filter.  But, the Macintouch article I had not seen and it tells me a lot. 
    I guess I'll have to plot some strategy on how to handle this stuff.
    What is crazy, though, is that I get the *ding* but no mail.  I tried using the Activity window, had my wife send the the email, but the Activity window contents just fly by and the window clears.  If the Activity window had a Clear button for the user to use, it might be more helpful.  Duh!
    Anyway, thank you very much for responding.  I'll re-register with my development forums using a different name and email address.
    (I might ask my wife to send her email to her iCloud account and see if it makes it.)
    Kind Regards

  • Mail not getting all messages from server and other strange behavior

    Hello All,
    Mail has been doing some odd things for me of late (at least the last week) and I'm lost for a solution to my problem. As far as I can tell, perhaps my Prefs. have become corrupted, or at least something in relation to Mail has become corrupted. Perhaps someone has a solution to this issue before I have to back it all up and NUKE the whole **** app to get back up and running properly.
    The main issue I appear to be having is that Mail is not getting all of my Mail messages from my server. I can log into my web-mail interface provided by my domain host and can see there that there are many e-mails that don't appear to be coming down the pipe to the Mail.app client. I'm getting some e-mail's but not all....
    *Here are all the things that I've checked:*
    • The missing e-mails are not being picked up as Junk and are not in the Junk folder
    • I have done a search within Mail for the missing e-mail's and nothing turns up anywhere.
    • I have checked on the server end that I'm not maxing out my InBox or that there are any other service issues from my domain host provider.
    • I have been into Prefs and checked my account settings - most (see below) of which appear to be as normal and are fine.
    *Here are the weird things that I've noticed:*
    • When I went into the Prefs. for the account in question, I noticed that my login had changed. For example - it usually it is "[email protected]", however it had seemed to have changed to just "johndoe" - I know this wasn't me as my domain host will not allow me to access any mail unless the login is the full mail address.
    • In RULES, every rule I double click to check on seems mostly fine, apart from the fact that every "Account is:" the pull down menu just appears as blank. Usually it says "Account is: ([email protected])"
    It's there last 2 items that make me think something is corrupted - so I guess my question is, what pref or file has corrupted and how can I fix it without having to give Mail.app a digital enema?
    Any assistance would be most helpful - missing some but not all your incoming e-mail messages is quite annoying, as you can guess...!
    Thanks,
    Boz

    Hello Boz.
    This appears to be a rules issue. Mail is almost certainly downloading those messages, but they’re probably being processed by your rules in an unexpected way — given the information you’ve provided, maybe because there is something wrong with the file where the account settings are stored.
    Do you have any Mail plug-ins? In the Finder, go to each of the following folders (if they exist). What do you see there?
    /Library/InputManagers/
    /Library/Mail/Bundles/
    ~/Library/InputManagers/
    ~/Library/Mail/Bundles/
    To make accurately reporting this information easier, you may open /Applications/Utilities/Terminal, type the following command (you can just copy it here and paste it in Terminal), and press <Return>. You can then copy the output of that command from Terminal and paste it in your reply to this post:
    ls -1 /Library/InputManagers /Library/Mail/Bundles ~/Library/InputManagers ~/Library/Mail/Bundles
    <hr>
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    After having fixed all the filesystem issues, if any, and ensuring that there’s enough space available on the startup disk (a few GB, plus the space needed to make a backup copy of the Mail folder), try this:
    1. Write down your Mail > Preferences > Accounts settings or take screen shots of them.
    2. If you have a .Mac account and .Mac synchronization of Mail data is enabled either in Mail > Preferences > General or in System Preferences > .Mac, disable it before proceeding.
    3. Quit Mail.
    4. Make a backup copy of the ~/Library/Mail folder, just in case something goes wrong while trying to solve the problem. You can do this in the Finder by dragging the Mail folder to the Desktop while holding the Option (Alt) key down, for example. This is where all your mail is locally stored.
    5. In the Finder, go to ~/Library/Preferences/. Locate com.apple.mail.plist and move it to the Desktop (to be deleted if this solves the problem). If you have a backup of your data that includes a working copy of this file, you may try restoring it from the backup to avoid steps 6-8.
    6. Open Mail. You’ll have to set up your non-.Mac accounts from scratch all over again. If given the option to import existing mailboxes or something like that, don’t. Just enter the account information and Mail will automagically rediscover the data in ~/Library/Mail/ when done.
    7. You’ll have to re-configure some of your Mail > Preferences settings. For spam-related security reasons, the first thing you should do is go to Preferences > Viewing and disable Display remote images in HTML messages if it’s enabled.
    8. As a side effect of re-creating com.apple.mail.plist, Mail might rename Outbox (which is where messages waiting to be sent are stored) to Delivered. The name of that mailbox is actually a misnomer, as it would contain messages (if any) that couldn’t be delivered for some reason. You can delete that mailbox if you wish.
    9. If the problem is fixed now and .Mac synchronization of Mail data was enabled at the beginning, enable it again, go to System Preferences > .Mac > Advanced, click Reset Sync Data, and choose the appropriate options to reset the Mail data stored on the .Mac server with the data locally stored on the computer, i.e. sync data must flow from the computer to the .Mac server.
    <hr>
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. You can easily locate any of the folders referred to in this post by copying the folder path here, doing Go > Go to Folder in the Finder, and pasting the folder path there.

  • Hello i just came back from the apple store and they had to restore my phone and i just downloaded all my apps and music back but my photos that are on icloud i only got 80 out of 768 back. what do i do to get all of them back?

    hello i just came back from the apple store and they had to restore my phone and i just downloaded all my apps and music back but my photos that are on icloud i only got 80 out of 768 back. what do i do to get all of them back?

    If you tried to restore to your iCloud backup and your photos didn't fully restore, first go to Settings>iCloud>Storage & Backup and make sure it isn't still in the process of restoring.
    If the restore is complete and all your photos weren't restored, all you can do is try restoring the backup again.  You might try the solution posted by ezjules in this discussion: https://discussions.apple.com/message/19518589#19518589.  This involves opening the photos app after the phone restarts and you provide the passwords for your Apple IDs, then leaving it open for the remainder of the restore process.

  • Trying to get all music from ipod touch transferred to new laptop!

    i only have my ipod touch, my old computer, and my new laptop.  how do i get all the music to transfer from my ipod touch to my new laptop?  i seem to only be able to transfer the few songs that ive purchased but i want to move my whole ipod library onto my new laptop.  PLEASE HELP!!!

    See Here  >  https://discussions.apple.com/docs/DOC-3991

  • Get all content from iTouch to a new computer.

    My problem is very simple to explain, but I find no solution.
    My old computer is damaged and I cant use it anymore. So I bought a new one and I want to get all my stuff from the iTouch to iTunes on me new computer. After installing iTunes I actived in iTunes my iTouch for iTunes. In iTunes I get the massage that now two computers are actived (5 are possible).
    So I connect my iTouch with the wire to my computer and I get the massage that my iTouch is logical connected with an other iTunes libary. I get the only possibility to delete my iTouch and syncronize it with the content of the new iTunes libary.
    *My question is how can I get my content from the iPod touch to iTunes on my new computer?*

    Hi,
    Welcome to Apple discussions.
    So, in a perfect world, you would restore your library of valuable music from *your backed up files* to the library on your new PC, you know, the ones burnt to DVD/CD or on an external HD.
    This is the way iTunes works, it makes it perfectly clear and actively encourages users to *back up your music*.
    The iPod touch is not a back up device (nor is it advertised as one) it is a music player with a volatile memory that could actually disappear at anytime so it should not be trusted as a store for valuable files.
    To salvage your music you will have to use some 3rd party application on your PC/Mac (you fail to say) such as [Touch Copy|http://www.wideanglesoftware.com/touchcopy/index.html], Google for other options. This is not guaranteed to work but hopefully you will get your music back.
    Then back up.
    Good luck,
    Dud.
    *iPod touch* by the way, this an [ITOUCH|http://en.pasen.it/product_detail.php?id=36]

  • How can I get all of my purchased iTunes to show up in my "MUSIC" on my iPhone5?

    I've purchase several iTunes songs. Some of them show up in my "MUSIC" but some don't.  How can I get all of them to show up in the "MUSIC" app/tab?  Currently the only way I can play some of them is to go to ITunes where they show as "purchased".

    Mac OS X & Mountain Lion Community
    https://discussions.apple.com/community/mac_os
    https://discussions.apple.com/community/mac_os/os_x_mountain_lion?view=discussio ns
    https://www.apple.com/support/osx/
    https://www.apple.com/support/quickassist/
    http://www.apple.com/support/mac101/help/
    MacBook Series Forums 
    https://discussions.apple.com/community/notebooks?view=discussions
    http://www.apple.com/support/macbookpro
    http://www.ehow.com/how_5873496_fonts-available-mac-ms-word.html
    Using Font Book: http://support.apple.com/kb/HT2509

  • HT201401 I have my a song purchased from Itunes and would like to use part of it for a ringtone and get all the way thur the process of getting it to my phone but it goes to sync to my phone it doesn't show up in my phone like it says it is suppose to und

    I have my a song purchased from Itunes and would like to use part of it for a ringtone and get all the way thur the process of getting it to my phone but it goes to sync to my phone it doesn't show up in my phone like it says it is suppose to under ringtones. Does anyone have any tips on how to do this.

    http://osxdaily.com/2010/09/04/make-free-iphone-ringtones-in-itunes-10/
    https://discussions.apple.com/message/17777381 - making a ringtone
    Getting ringtones folder to show in iTunes - https://discussions.apple.com/thread/2629494 - iTunes > Preferences. Under the General tab below Show, confirm Ringtones is selected

  • My dad and my iPhones are under his apple id, i get all of his contacts, notes, calendars, events and sometimes texts. how do i stop our phones from sharing? also i have my own apple ID, how do i change apple IDs on my iPhone without losing all my stuff?

    i dont want to lose all my phones, contacts, events, apps etc. im sick of my dad getting texts from my friends and whenever i write a something in notes he can see it, and he gets all my contacts too. please help (:

    Have a look here...
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    With regard to Apple IDs...
    Anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID
    Apple ID FAQs >  http://support.apple.com/kb/HT5622
    You may also find this of use  >  How to Use Multiple iDevices with One Computer
    And... Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha

  • How can I get all the print on my screen to be larger?

    How can I get all of the print on my screen to be larger?

    Thank you for helping me with the size of the print on my screen. The suggestion you made works well with the email font. I really wanted all the print on my computer to be larger. (Some of the print seems to be way too small.) Someone suggested I change the resolution settings. I did this, and changed it to 1024 X 640. That changed the size of the font on the toolbar at the top of the page, and that is what I really wanted, as well as all the other print on my screen. Nonetheless, I would like to thank you for your very helpful and prompt reply to my question.
    Sincerely,
    Wayne10

  • How to get all the approver list for a particular transaction in iExpense

    Is there any API to get all the approver list for a particular transaction in iExpense workflow after submitting an expense report?

    Hi All,
    Could anyone please let me know API to get all AME approvers in one go.
    I am currently using below API to get approver list.
    ame_api.getallapprovers (applicationidin => 201 , -- PO
    transactionidin => l_document_id , -- req header id
    transactiontypein => 'PURCHASE_REQ'
    ,approversout => l_appr_list
    But if any of the approver is INACTIVE then API is going into exception and not showing all approvers. Requirement is like to show all approvers with their statuses (ACTIVE / INACTIVE).
    Reply ASAP.

Maybe you are looking for