Updating Email Addreses - is there an APi for that?

Updating Email Addreses - is there an API for that?
Ive got several APIs running in a script some to insert, some to update employee details in ORACLE Financials 11i Payables. I'm missing email addresses to update - is there an API for this? If so whats it called?
Muchos Gracias Gurus..
S

You store the email adres of an employee in the People screen? If yes, use the employee api to update the mail address.

Similar Messages

  • How do I get the Sales Orders Statuses? Is there any API for that?

    Hi!
    I'm trying to track all the statuses of a sales order. I want to get the header status, lines status, holds status, shipping status and the invoiced status.
    Does anyone knows if there is an API for that? Or I'll have to make lots of querys for that?
    I found out the following APIs, but it only returned me Y or N:
    -oe_header_status_pub.get_booked_status;
    -oe_header_status_pub.get_cancelled_status;
    -oe_header_status_pub.get_closed_status;
    -oe_holds_pub.check_holds;
    -oe_line_status_pub.get_pick_status;
    -oe_line_status_pub.get_ship_status;
    -oe_line_status_pub.get_invoiced_status;
    Thanks for the help!

    Hi,
    You can find the status of both SO Headers ahd Lines from the FLOW_STATUS_CODE column in oe_order_headers_all and oe_order_lines_all tables.
    Thanks
    Gowrishankar

  • Mac app store tells me to log into edited by host account to update apps(that I don't own) but that is not my account and I never heard of this email. Is there a fix for this?

    mac app store tells me to log into <edited by host> account to update apps(that I don't own) but that is not my account and I never heard of this email. Is there a fix for this?

    Everyone here - please take a look at this thread ( the last two posts by WZZZ and Thomas Reed):
    https://discussions.apple.com/message/15205291#15205291
    It appears that a) Hotmail has 19 domains functioning as distributors for malware and b) someone is distributing pirated software. Although it does not appear to be related to the recent trojan, my suggestion: stay away from both.
    Edit: so why does everyone here appear to have pirated software (and doing it through it App Store)?????

  • Excel Pivot Table within Email Body - Is there an ability for Recipients to manipulate table within email?

    Hello,
     Each morning, I paste an update to an Excel pivot table for an inner company report and circulate via Outlook email.  Is there any way for my recipients to be able to manipulate the table within the body of the Outlook email?  Or do they
    have to resort to the attached Excel file containing the original of the pivot table I've pasted into the email.
    Thank you.
    Eric Korslin

    Cant do.
    Only as file, opened from attachment.
    Oskar Shon, Office System MVP - www.VBATools.pl
    if Helpful; Answer when a problem solved

  • Is there any APIs for FND attachments

    Hi,
    Is there any API for FND Attachments. I would like to load the concurrent output generated as an attachment to the record.
    So I'm planning to write PLSQL to read the file and load in to fnd_lobs. Later I would like this attachment available thru UI.
    Looking for Public or Private APIs to achieve above task.
    Thanks,
    Satya

    Dear,
    I found this very Information Site...
    URL http://www.pvmehta.com/myscript.html
    Hope for future you will get benefit from it...
    Regards,
    Kamran J. Chaudhry.

  • This community is great -- very helpful. What is the best way to read "word" docs on my brand new iPad 2? Is there an app for that?

    This community is great -- very helpful. What is the best way to read "word" docs on my brand new iPad 2? Is there an app for that?

    If you're just reading them from email attachments, you can just open it to "view" the document.
    However, if you wish to do editing and work, you'll need an application. I use Documents to Go, but there are other versions that people are happy with - do a search in the App store for "office suite" or "word processing".
    The next challenge is getting docs back and forth. Doc2Go and others have their own ways to physically sync docs when connected to a computer; you can also email changed/revised/new documents from the iPad to yourself. However, I use a "cloud service" called DropBox that stores docs in the cloud (so I can get to them anywhere) - I paid for the Premium version of Docs2Go to allow that kind of syncing.

  • Hebrew language is written backwards in LR cc, is there a fix for that?

    When typing in Hebrew language (e.g. in identity plate or text for slideshow), the text is written backward (i.e. from left to right i/o right to left), so the words are scrambled.
    In PS I can control the text adjustment and direction, but I don't see such option in LR.
    Is there a fix for that?

    What year/model is your MBP? Using the incorrect power adapter (85W for 60W Mac or vice-a-versa) can cause problems.
    You may also want to try SMC and PRAM Reset.
    Intel-based Macs: Resetting the System Management Controller (SMC) - Apple Support
    How to Reset NVRAM on your Mac - Apple Support

  • Why do i constantly get cut off on calls.  I've had this problem with my 3GS, my 4S and now my iPhone 5.  When the core functionality is Phone, i.e. the ability to talk, why can't Apple make the iPhone function as a Phone?  is there an App for that !!

    why do i constantly get cut off on calls.  I've had this problem with my 3GS, my 4S and now my iPhone 5.  When the core functionality is Phone, i.e. the ability to talk, why can't Apple make the iPhone function as a Phone?  is there an App for that !!

    Well, since you've had the same problem, with three different phones, that all use different size sim cards, it seems pretty obvious the problem is with your carrier/coverage & nothing to do with your phone or sim card.

  • How to find the existing sql server backup plan/schedule is there a script for that?

    Friends,
    Is there a easy way to find out in SQLServer (for All DB's) what is the current backup plan/schedule ? is there a script for that?
    Thanks,
    Karthikeyan Jothi

    To check the database backup 
    Select
    SERVERPROPERTY('ServerName'),
    db.name,
    CONVERT(VARCHAR(10), b.backup_start_date, 103) + + convert(VARCHAR(8), b.backup_start_date, 14) backup_start_date,
    CONVERT(VARCHAR(10), b.backup_finish_date, 103) + + convert(VARCHAR(8), b.backup_finish_date, 14) backup_finish_date,
    case
    when (DATEDIFF(hour, b.backup_start_date, getdate())<24)then 'Success'
    when (DATEDIFF(hour, b.backup_start_date, getdate())>=24)then 'Failed'
    end Status,
    DATEDIFF(hh, b.backup_finish_date, GETDATE())BackupAgeInHours,
    (b.backup_size/1024/1024/1024 )BackupSize,
    case b.[type]
    WHEN 'D' THEN 'Full'
    WHEN 'I' THEN 'Differential'
    WHEN 'L' THEN 'Transaction Log'
    END Type,
    ISNULL(STR(ABS(DATEDIFF(day, GetDate(),(Backup_finish_date)))), 'NEVER')DaysSinceLastBackup
    FROM sys.sysdatabases db
    Left OUTER JOIN (SELECT * , ROW_NUMBER() OVER(PARTITION BY database_name ORDER BY backup_finish_date DESC) AS RNUM
    FROM msdb.dbo.backupset) b ON b.database_name = db.name AND RNUM = 1
    where dbid<>2
    OR
    SELECT
    DISTINCT
    a.Name AS DatabaseName ,
    CONVERT(SYSNAME, DATABASEPROPERTYEX(a.name, 'Recovery')) RecoveryModel ,
    COALESCE(( SELECT CONVERT(VARCHAR(12), MAX(backup_finish_date), 101)
    FROM msdb.dbo.backupset
    WHERE database_name = a.name
    AND type = 'd'
    AND is_copy_only = '0'
    ), 'No Full') AS 'Full' ,
    COALESCE(( SELECT CONVERT(VARCHAR(12), MAX(backup_finish_date), 101)
    FROM msdb.dbo.backupset
    WHERE database_name = a.name
    AND type = 'i'
    AND is_copy_only = '0'
    ), 'No Diff') AS 'Diff' ,
    COALESCE(( SELECT CONVERT(VARCHAR(20), MAX(backup_finish_date), 120)
    FROM msdb.dbo.backupset
    WHERE database_name = a.name
    AND type = 'l'
    ), 'No Log') AS 'LastLog' ,
    COALESCE(( SELECT CONVERT(VARCHAR(20), backup_finish_date, 120)
    FROM ( SELECT ROW_NUMBER() OVER ( ORDER BY backup_finish_date DESC ) AS 'rownum' ,
    backup_finish_date
    FROM msdb.dbo.backupset
    WHERE database_name = a.name
    AND type = 'l'
    ) withrownum
    WHERE rownum = 2
    ), 'No Log') AS 'LastLog2'
    FROM sys.databases a
    LEFT OUTER JOIN msdb.dbo.backupset b ON b.database_name = a.name
    WHERE a.name <> 'tempdb'
    AND a.state_desc = 'online'
    GROUP BY a.Name ,
    a.compatibility_level
    ORDER BY a.name
    To check the schedule you can try the below script
    https://gallery.technet.microsoft.com/SQL-Jobs-Complete-eabe0050
    --Prashanth

  • I can make individuals match to target areas (as there are tutorials for that) but i want each one

    hi in drag and drop  I can make individuals match to target areas (as there are tutorials for that) but i want each one to be able to slide in to any target area (and someday i want to create a solve button which will then place each element in the correct place).
    can any one help me with it

    I changed your mUp function to allow each movieclip to be placed on any target and to be reset to its original position if it is not on any target. I added the code for a button to position each movieclip to its correct target.
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    //Array to hold the target instances, the drop instances,
    //and the start positions of the drop instances.
    var hitArray:Array = new Array(hitTarget1,hitTarget2,hitTarget3);
    var dropArray:Array = new Array(drop1,drop2,drop3);
    var positionsArray:Array = new Array();
    //This adds the mouse down and up listener to the drop instances
    //and add the starting x and y positions of the drop instances
    //into the array.
    for (var i:int = 0; i < dropArray.length; i++)
              dropArray[i].buttonMode = true;
              dropArray[i].addEventListener(MouseEvent.MOUSE_DOWN, mdown);
              dropArray[i].addEventListener(MouseEvent.MOUSE_UP, mUp);
              positionsArray.push({xPos:dropArray[i].x, yPos:dropArray[i].y});
    //This drags the object that has been selected and moves it;
    //to the top of the display list. This means you can't drag
    //this object underneath anything.
    function mdown(e:MouseEvent):void
              e.currentTarget.startDrag();
              setChildIndex(MovieClip(e.currentTarget), numChildren - 1);
    //This stops the dragging of the selected object when the mouse is
    //released. If the object is dropped on the corresponding target
    //then it get set to the x and y position of the target. Otherwise
    //it returns to the original position.
    function mUp(e:MouseEvent):void
              var dropIndex:int = dropArray.indexOf(e.currentTarget);
              var target:MovieClip = e.currentTarget as MovieClip;
              target.stopDrag();
              for (var i:String in hitArray)
                        if (target.hitTestObject(hitArray[i]))
                                  target.x = hitArray[i].x;
                                  target.y = hitArray[i].y;
                                  return;
              target.x = positionsArray[dropIndex].xPos;
              target.y = positionsArray[dropIndex].yPos;
    // setRight is the instance name of the new button to reposition each
    // moveable movieclip to the correct target clip
    setRight.addEventListener(MouseEvent.MOUSE_UP,reset);
    // this function moves each movieclip to the correct target using a tween
    function reset(event:MouseEvent):void {
              for(var n:String in dropArray) {
              var myTweenX:Tween = new Tween(dropArray[n],"x",Strong.easeOut,dropArray[n].x,hitArray[n].x,3,true);
              var myTweenY:Tween = new Tween(dropArray[n],"y",Strong.easeOut,dropArray[n].y,hitArray[n].y,3,true);

  • Can i use turbo C on ipad ? Is there any app for that ?

    Can i use turbo C on ipad ? Is there any app for that ?

    No, I mean that all of the apps that will work on an iPad are in the App Store. If there is one that will allow you to use Turbo C, you'd find it there. "Turbo C" seems to be the most obvious search term. You might also do a Google search using both "turbo C" and "iPad" as terms.

  • CS5 can't read Canon G-15 raw files - is there any fix for that?

    CS5 can't read Canon G-15 raw files - is there any fix for that?

    When you save the pictures out of Photoshop, also consider the pixel x pixel size
    Photo Scaling for Video http://forums.adobe.com/thread/450798
    -Too Large May = Crash http://forums.adobe.com/thread/879967
    -And another crash report http://forums.adobe.com/thread/973935

  • Do any iphones have video camera stabilizer, or is there an app for that?

    Do any iphones have video camera stabilizer, or is there an app for that?

    The iPhone 5 and 4S.
    http://www.apple.com/iphone/specs.html
    8-megapixel iSight camera
    Panorama
    Video recording, HD (1080p) up to 30 frames per second with audio
    FaceTime HD camera with 1.2MP photos and HD video (720p) up to 30 frames per second
    Autofocus
    Tap to focus video or still images
    Face detection in video or still images
    LED flash
    Improved video stabilization
    Photo and video geotagging
    http://www.apple.com/iphone/iphone-4s/specs.html
    8-megapixel iSight camera
    Panorama
    Video recording, HD (1080p) up to 30 frames per second with audio
    Autofocus
    Tap to focus
    Face detection in still images
    LED flash
    Video stabilization
    Front camera with VGA-quality photos and video at up to 30 frames per second
    Photo and video geotagging

  • I want to run a Firewire device, there is no port. Is there an adapter for that?

    II want to run a Firewire device, there is no port. Is there an adapter for that?

    If you DV7 has a slot that matches:
    http://www.newegg.com/Product/ProductList.aspx?Submit=ENE&DEPA=0&Order=BESTMATCH&N=-1&isNodeId=1&Des...
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • My touch typing won't work on phone page, but it works on messages or eMail?  is there a reason for this?

    When I try and type somethink on my Phone page of the iPhone it seems to have hund, yet I am able to send SMSSes, eMails, etc.?  Is there a reason for this?

    What's the URL of the page?
    In the mean time clear the cache and reload the page.

Maybe you are looking for