How to call outlook email editor from PCUI ?

Hi all,
Can anybody tell me how do I can invoke the outlook email editor with To, CC, BCC, body, format, signature, etc filled up from PCUI ?
Thanks and regards
Arijit Ghose

i have not worked with PCUI, but i assume its a HTML page.
if so you can use the following code.
<script>
function popupMessage() {
// SET MESSAGE VALUES
  var to = "[email protected]";
var cc = "[email protected]";
var bcc = "[email protected]";
var subject = "A Preformatted Email Message";
var body =       "Chandler,nntI'm sorry, I can't make it tonight. " +
      "I have to rearrange my sock drawer. " +
     "nnSincerely,nnMonica" 
// BUILD MAIL MESSAGE COMPONENTS
  var doc = "mailto:" +
to +
      "?cc=" +
cc +  
    "&bcc=" +
bcc +
      "&subject=" +
escape(subject) +
       "&body=" +
escape(body);
  // POP UP EMAIL MESSAGE WINDOW
window.location = doc;}
</script>
<FORM>
<INPUT TYPE=BUTTON NAME=Test Value="Mail Window Test" onClick="popupMessage()">
</FORM>
if not if its from SAPGUI do let me know, i will present another solution.
Regards
Raja

Similar Messages

  • Open Outlook email editor from SAP

    Hi,
    I need to open the outlook email editor from ABAP program so that the user can manually input the To, CC, subject, body and attachment.
    Can anybody help ?
    Thanks and regards
    Arijit Ghose

    check out this sample code (using VB script) , you can do similar stuff using activex control as well.
    FUNCTION Z_OUTLOOK_MAIL_CREATE.
    *"*"Local interface:
    *"       IMPORTING
    *"             VALUE(I_SUBJECT) TYPE  C OPTIONAL
    *"       TABLES
    *"              EMAIL_BODY STRUCTURE  SOLI OPTIONAL
    *"              ADDRESS_LIST STRUCTURE  SOLI OPTIONAL
    *"              ATTACHMENTS STRUCTURE  SOLI OPTIONAL
    *"       EXCEPTIONS
    *"              INVALID_PATH
    *"              DOWNLOAD_FAILED
    *"              EXECUTION_FAILED
      DATA:
        V_TRANSLATE(2),
        IT_VBS          LIKE SOLI
           OCCURS 50 WITH HEADER LINE,
        V_LAST,
        V_VBS_FILENAME  LIKE RLGRAP-FILENAME,
        COMMANDLINE(1000).
    *- Prepare a code to translate a quote into a hex-tab
    *- so it can then be translated back to 2 double quotes.
      CONCATENATE '"' CON_HEX-TAB INTO V_TRANSLATE.
      APPEND:
        'Dim myolapp                                        ' TO IT_VBS,
        'Dim olNamespace                                    ' TO IT_VBS,
        'Dim myItem                                         ' TO IT_VBS,
        'Dim myRecipient                                    ' TO IT_VBS,
        'Dim myAttachments                                  ' TO IT_VBS,
        '                                                   ' TO IT_VBS,
        'Set myolapp = CreateObject("Outlook.Application")  ' TO IT_VBS,
        'Set olNamespace = myolapp.GetNamespace("MAPI")     ' TO IT_VBS,
        'Set myItem = myolapp.CreateItem(olMailItem)        ' TO IT_VBS,
        '                                                   ' TO IT_VBS.
    *- Translate the body into a single line.
      LOOP AT ADDRESS_LIST.
        CONCATENATE
          'Set myRecipient = myItem.Recipients.Add("'
          ADDRESS_LIST
          INTO IT_VBS.
        APPEND IT_VBS.
      ENDLOOP.
      APPEND:
        'myItem.VotingOptions = "Approve;Reject"' TO IT_VBS.
    *- Build the subject line.
      CONCATENATE
        'myItem.Subject = "'
        I_SUBJECT
        INTO IT_VBS.
      APPEND IT_VBS.
    *- Prepare attachments
      APPEND:
        'Set myAttachments = myItem.Attachments' TO IT_VBS.
    *- Check if the attachment exists
      LOOP AT ATTACHMENTS.
        CALL FUNCTION 'WS_QUERY'
             EXPORTING
                  FILENAME       = ATTACHMENTS
                  QUERY          = 'FE'
             EXCEPTIONS
                  INV_QUERY      = 1
                  NO_BATCH       = 2
                  FRONTEND_ERROR = 3
                  OTHERS         = 4.
        IF SY-SUBRC EQ 0.
          CONCATENATE 'myAttachments.Add("'
                      ATTACHMENTS
            INTO IT_VBS.
          APPEND IT_VBS.
    * '    olByValue, 1, "4th Quarter 1996 Results Chart"'
    *      append '    olByReference, 1' to it_vbs.
        ELSE.
          MESSAGE I017(ZZ) WITH
             'Could not attach' ATTACHMENTS.
        ENDIF.
      ENDLOOP.
    *- Prepare the email body.
      CLEAR: V_LAST, IT_VBS.
      APPEND IT_VBS.
      LOOP AT EMAIL_BODY.
        AT FIRST.
          APPEND 'myitem.body = _' TO IT_VBS.
        ENDAT.
        AT LAST.
          V_LAST = 'X'.
        ENDAT.
        TRANSLATE EMAIL_BODY USING V_TRANSLATE.
        WHILE SY-SUBRC EQ 0.
          REPLACE CON_HEX-TAB WITH '""' INTO EMAIL_BODY.
        ENDWHILE.
        IF V_LAST = 'X'.
          CONCATENATE '"' EMAIL_BODY '" &vbCrLf '
            INTO IT_VBS.
        ELSE.
          CONCATENATE '"' EMAIL_BODY '" &vbCrLf  &_'
            INTO IT_VBS.
        ENDIF.
        APPEND IT_VBS.
      ENDLOOP.
      APPEND 'myItem.Display' TO IT_VBS.
    *- Prepare the vbscript filename for download and execution
      CLEAR V_VBS_FILENAME.
      CALL FUNCTION 'WS_QUERY'
           EXPORTING
                ENVIRONMENT    = 'TEMP'
                QUERY          = 'EN'
           IMPORTING
                RETURN         = V_VBS_FILENAME
           EXCEPTIONS
                INV_QUERY      = 1
                NO_BATCH       = 2
                FRONTEND_ERROR = 3
                OTHERS         = 4.
      IF SY-SUBRC <> 0.
        RAISE INVALID_PATHNAME.
      ENDIF.
      CONCATENATE V_VBS_FILENAME 'mail.vbs'
        INTO V_VBS_FILENAME.
      COMMANDLINE = V_VBS_FILENAME.
    *- Download the file
      CALL FUNCTION 'WS_DOWNLOAD'
           EXPORTING
                FILENAME            = V_VBS_FILENAME
                FILETYPE            = 'DAT'
                MODE                = 'S'
           TABLES
                DATA_TAB            = IT_VBS
           EXCEPTIONS
                FILE_OPEN_ERROR     = 1
                FILE_WRITE_ERROR    = 2
                INVALID_FILESIZE    = 3
                INVALID_TABLE_WIDTH = 4
                INVALID_TYPE        = 5
                NO_BATCH            = 6
                UNKNOWN_ERROR       = 7
                OTHERS              = 8.
      IF SY-SUBRC <> 0.
        RAISE DOWNLOAD_FAILED.
      ENDIF.
      CALL FUNCTION 'WS_EXECUTE'
           EXPORTING
                COMMANDLINE    = COMMANDLINE
                PROGRAM        = 'WSCRIPT.EXE'
           EXCEPTIONS
                FRONTEND_ERROR = 1
                NO_BATCH       = 2
                PROG_NOT_FOUND = 3
                ILLEGAL_OPTION = 4
                OTHERS         = 5.
      IF SY-SUBRC <> 0.
        RAISE EXECUTION_FAILED.
      ENDIF.
    ENDFUNCTION.
    Regards
    Raja

  • How to call a text editor from a module pool program

    Hi All,
    I want to call the text editor from my modulepool program. Enter my text in it and save it.This text needs to be saved in a Z-program with 2 fields as primary keys. The next time while I call this same record from this z table, I need to fetch the existing text and display it.
    The user now can put in additional text and can again save it. This process thus goes on..
    If anyone has worked in this type of scenario, then please help me in doing this.
    Useful answers will surely be rewarded.
    Thanks,
    Susanth.

    Hi Sushanth,
    We save the text not as fields in a ztable directly but as a text.Please check the format below since it is based on a working code....
    first you need to create a text in s010 transaction...
    there should be some key based on which you plan to save the text..imagine it is Purchase order then..PO+item numner is always unique.eg:0090010(900PO/item10).so in the code you can append these two and they will be unique..so you can always retrieve them,overwrite,save them anytime you need
    **************data declarations
    TYPES: BEGIN OF TY_EDITOR,
    EDIT(254) TYPE C,
    END OF TY_EDITOR.
    data: int_line type table of tline with header line.
    data: gw_thead like thead.
    data: int_table type standard table of ty_editor.
    ****************fill header..from SO10 t-code..when you save you need the unique key..youfill it here and pass it in save_text function module
    GW_THEAD-TDNAME = loc_nam. " unique key for the text -> our unique key to identify the text
    GW_THEAD-TDID = 'ST'. " Text ID from SO10
    GW_THEAD-TDSPRAS = SY-LANGU. "current language
    GW_THEAD-TDOBJECT = 'ZXXX'. "name of the text object created in SO10
    *To Read from Container and get data to int_table
    CALL METHOD EDITOR ->GET_TEXT_AS_R3TABLE
    IMPORTING
    TABLE = int_table
    EXCEPTIONS
    ERROR_DP = 1
    ERROR_CNTL_CALL_METHOD = 2
    ERROR_DP_CREATE = 3
    POTENTIAL_DATA_LOSS = 4
    others = 5.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    loop data from int_table and save to int_line-tdline appending it.
    *save the text
    CALL FUNCTION 'SAVE_TEXT'
    EXPORTING
    HEADER = GW_THEAD
    TABLES
    LINES = InT_LINE
    EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    OBJECT = 4
    OTHERS = 5.
    IF SY-SUBRC 0.
    ENDIF.
    *To pass to Container
    CALL METHOD EDITOR ->SET_TEXT
    hope that the above sample with helps you solve the problem
    Please check and revert,
    Reward if helpful
    Regards
    Byju

  • Open Outlook email editor from SAP  and attach email into SAP

    I have a requirment that in SAP we have the option to add from Micrsoft Outlook, and when that is slected, you are taken to your email so that you can see your inbox and select the email that need to attach in SAP.
    I need to implement this scenario in the tcode SCASE and in the Dispute management->Case->Dispute Case->search and enter the CaseID and click on Search button and you can see down and click on Edit button and you can see the Attached object and from there i need to have one new button when user click on that button and its Micrsoft Outlook should open and you should taken to your email so that you can see your inbox and select the email that need to attach to the CASEID.

    I have a requirment that in SAP we have the option to add from Micrsoft Outlook, and when that is slected, you are taken to your email so that you can see your inbox and select the email that need to attach in SAP.
    I need to implement this scenario in the tcode SCASE and in the Dispute management->Case->Dispute Case->search and enter the CaseID and click on Search button and you can see down and click on Edit button and you can see the Attached object and from there i need to have one new button when user click on that button and its Micrsoft Outlook should open and you should taken to your email so that you can see your inbox and select the email that need to attach to the CASEID.

  • HOW TO IMPORT MY EMAILS (MESSAGES) FROM OUTLOOK 2007?

    HOW TO IMPORT MY EMAILS (MESSAGES) FROM OUTLOOK 2007?

    Into what email program on the Mac?
    Mail
    Outlook for Mac '11
    Entourage '04/'08
    Thunderbird
    Eudora
    ... etc
    If it's going into Mail you'll need to do a work around, it's not a "straight" transfer unless you buy a 3rd party application called Outlook2Mac.
    http://www.trickyways.com/2010/08/how-to-transfer-emails-from-outlook-to-apple-m ail/

  • How to call a web Service from Oracle Applications?

    Hi friends,
    I've posted this question on OA Framework forum , but may be it's more appropiated put it here. Sorry for do it again:
    It's about how to call a web service from a Form or a .sql (via Request) in Oracle Applications:
    Could you please explain here the detailed steps (with code example if it's possible) to invoke a webservice from Oracle Applications?.. how did yo do it...?
    I've read differents posts here and the 33097.1 metalink note (by the way, the first recommended link in this note is broken...), but there are lots of theorical concepts and no real examples to see how/from where invoke the WS
    I'll have to call one webservice (I suppose the customer will give me the interface implementation)...but I've never did it with Applications so that's why I ask you for all the detailed steps...
    I work with Forms 6i, Apps 11.5.10.2 and DB 9.2.0.7.
    Thanks a lot.
    Jose.

    Hello Jose,
    I did using java program to call BPEL web services in 11.5.10.
    I pasted below the metalink note for your reference (Note:250964.1)
    The idea is first write a java program to call the webservice (in my case it is calling an BPEL web service, so this may not help directly), test it.
    Then port the java program as specified in the note, so that you could call your web service through concurrent manager scheduler.
    Is this ok?
    Thanks
    Arun.
    ======================================================
    Checked for relevance on 25-Apr-2007
    Application Install - Version: 11.5.8 to 11.5.10
    Goal
    ====
    How to register and create a Java concurrent program for Oracle Applications
    Release 11i
    Solution
    ========
    1. Create your Java Concurrent Program (JCP) , using a text editor.
    /*===========================================================================+
    | Concurrent Processing Sample Code |
    | |
    | FILENAME |
    | Hello.java |
    | |
    | DESCRIPTION |
    | Sample Java concurrent program |
    | About the simplest possible program, just writes a message to the |
    | logfile and output file. |
    | |
    | HISTORY |
    | $Log$ |
    | |
    +===========================================================================*/
    package oracle.apps.fnd.cp.sample;
    import oracle.apps.fnd.cp.request.*;
    public class Hello implements JavaConcurrentProgram {
    public static final String RCS_ID = "$Header$";
    public void runProgram(CpContext ctx) {
    ctx.getLogFile().writeln("-- Hello World! --", 0);
    ctx.getOutFile().writeln("-- Hello World! --");
    ctx.getReqCompletion().setCompletion(ReqCompletion.NORMAL, "");
    =======================================
    End Sample
    =======================================
    2. Create a sample directory under $JAVA_TOP:
    $ mkdir $JAVA_TOPoracle/apps/fnd/cp/sample
    3. Copy Hello.java into $JAVA_TOP/oracle/apps/fnd/cp/sample:
    $ cp $HOME/Hello.java $JAVA_TOP/oracle/apps/fnd/cp/sample
    4. Compile your java program:
    javac $JAVA_TOP/oracle/apps/fnd/cp/sample/Hello.java
    5. Test at the command line with following syntax:
    jre -Ddbcfile=$FND_TOP/secure/your_dbc_file.dbc \
    -Drequest.outfile=./outfile \
    oracle.apps.fnd.cp.request.Run \
    oracle.apps.fnd.cp.sample.Hello
    6. Register your custom java concurrent program with Oracle Applications.
    a. Navigate: Concurrent > Program > Executable
    b. Enter details into the form
    Executable: JCPHELLO
    Shortname: JCPHELLO
    Application: Application Object Library
    Execution Method: Java Concurrent Program
    Execution File Name: Hello (Insert a name that does not contain space or period)
    Execution File Path: oracle.apps.fnd.cp.sample
    c. Save the details
    d. Navigate: Concurrent > Program > Define
    e. Enter details into the form
    Program Name: JCPHELLO
    Program Shortname: JCPHELLO
    Application: Application Object Library
    Executable: Choose JCPHELLO from LOV
    Executable Options :
    f. Save the details
    7. Add this new concurrent request to your responsibility request group.
    a. Navigate > Security > Responsiblity > Request
    b. Query System Administrator
    c. Add new row and choose TestJava
    d. Save the changes.
    8. Run your new Hello Java Concurrent Program
    Navigate: Request > Run
    References
    ~~~~~~~~~~~
    Oracle Applications Developers Manual for Release 11i A75545-01
    ====================================================

  • HT201320 I don't understand how to transfer my email contacts from my Windows laptop to my iPhone? What do I need to do?

    I don't understand how to transfer my email contacts from my Windows laptop to my iPhone? What do I need to do?

    Hey wahanz!
    In order to sync your Windows contacts to your iPhone, you will need to first create an iCloud account:
    Creating an iCloud account: Frequently Asked Questions
    http://support.apple.com/kb/ht4436
    You will create the iCloud account on your iOS device, and when you do, don’t forget to turn on contact syncing in the initial setup. Then you will want to download the iCloud control panel for Windows onto your computer and install it:
    iCloud Control Panel 3.1 for Windows
    http://support.apple.com/kb/dl1455
    Make sure that your contacts are in Outlook, as that is the supported way of syncing your contacts to iCloud, then make sure you have the contact syncing enabled in the iCloud control panel on your computer, and when the contacts have synced, they will be available on your iOS device! Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • How can I export email addresses from apple mail?

    How can I export email addresses from Apple Mail?
    Just to be CRISTAL CLEAR please don't reply with export instructions from the address book.....not interested in this.
    I have customers that fill-out a request form online, then the data is sent to our database on our server, and another copy is sent to my email account. The server database got corrupted and is now lost. The only data left are in my email app called APPLE MAIL. I have created Filtered Folders so the data is just in one Folder, not mixed with all other emails. Is there a way to export the email names & addresses from APPLE  MAIL to a CVS file or Excel file?
    Again this is not a question related to Apple Address Book. This is ONLY for Apple MAIL exporting!
    Thanks

    There is a collection of AppleScripts called Mail Scripts you can download at this link.
    http://homepage.mac.com/aamann/Mail_Scripts.html
    The script to use from the collection of scripts is Add Addresses (Mail) which adds addresses found in the selected messages (in the header fields "From", "To", "Cc", and "Bcc") to the Address Book. This is much more flexible than the "Add Sender to Address Book" available in Mail and provides a convenient way for creating mailing lists.

  • How to call a maintenance view  from a program

    Hello Abapers,
    Can anybody explain with some examples. How to call a mainetenance view from a program.
    Thanks
    Ranjith.

    Use FM 'VIEW_MAINTENANCE_CALL'.
    REPORT  zmaintaintest.
    VARIABLES / CONSTANTS                          
    CONSTANTS: 
                    c_action(1) TYPE c VALUE 'U',                                 "Update
              c_viewname TYPE tabname value 'ZEMP_EXAMPLE', "View Name
              c_field(6) TYPE c VALUE 'EMPNO'.                            "Field Name
    INTERNAL TABLES
    DATA: itab_rangetab TYPE STANDARD TABLE OF vimsellist,
              v_empno TYPE zempno,
              wa_rangetab TYPE vimsellist.
    SELECTION SCREEN
    PARAMETERS:     p_empno TYPE   zempno   OBLIGATORY.  "Emplyee ID
    AT SELECTION-SCREEN                                                 
    AT SELECTION-SCREEN.
    Chcking the existence of the user in EMPLOYEE table
      PERFORM validate_employee.
    START_OF_SELECTION                                                  
    START-OF-SELECTION.
    This will restrict the user view so that user can only view/change
    Table data corresponding to his/her Employee ID
      PERFORM define_limited_data_area.
    Displaying table maintenance view for a particular employee ID
      PERFORM call_view_maintenance.
    *&      Form validate_employee
    Validate plant entered in the selection screen
    FORM validate_employee.
      SELECT SINGLE empno     u201CEmployee ID
        FROM zemp_example     u201CEmployee Table
        INTO v_empno
        WHERE empno = p_empno.
      IF sy-subrc <> 0.
        MESSAGE 'Not an Valid User' TYPE 'I'.
      ENDIF.
    ENDFORM.                    "validate_employee
    *&      Form DEFINE_LIMITED_DATA_AREA
    To restrict the user view so that user can see/change table data
    corresponding to his employee ID. Here one internal table is
    getting populated with field name as u201CEMPNOu201D (Key field of the table)
    And value as given by user in Selection Screen and this is passed as
    Parameter in function module 'VIEW_MAINTENANCE_CALL'
    FORM define_limited_data_area.
      CLEAR wa_rangetab.
      wa_rangetab-viewfield  = c_field.
      wa_rangetab-operator  = 'EQ'.
      wa_rangetab-value       = p_empno.
      APPEND wa_rangetab TO itab_rangetab.
    ENDFORM.                    "define_limited_data_area
    *&      Form CALL_VIEW_MAINTENANCE.
    Displaying table maintenance view for a particular employee ID
    FORM call_view_maintenance.
      CALL FUNCTION 'VIEW_MAINTENANCE_CALL'      
        EXPORTING
          action           = c_action
          view_name   = c_viewname
        TABLES
          dba_sellist     = itab_rangetab.
    ENDFORM.                    "call_view_maintenance
    Regards,
    Joy.

  • How to call a SQL function from an XSL expression

    Hi
    In R12, in Payroll Deposit adivce/Check writer, We need to sort the earnings tag <AC_Earnings> in to two different categories as regular and other earnings. In the DB and form level of element defintiion we have a DFF which differentiates between the two kinds of earnings. But the seeded XML that is gerneated by the check writer does not have this field.
    The seeded template displays all the earnings in one column. How can we achieve this in the template without modifying the seeded XML.
    The one approach i have is to write a function and based on the return value sort the data. For this I need to know :
    1) How to call a SQL function from an XSL expression that is allowed in BI template.
    If anyone ahs faced similar requirements please share your approach.
    Thanks
    Srimathi

    Thank u..
    but i'd seen that link wen i searched in google..
    Is it possible without using any 3rd party JARs and all?
    and more importantly plz tell me what should be preferred way to call a javascript function?
    Do it using addLoadEvent() or Windows.Load etc
    OR
    Call it thru Xsl? (I donno how to do dis)
    Thanks in Advance..
    Edited by: ranjjose on Jun 3, 2008 8:21 AM

  • How to delete multiple email messages from my Iphone 5c; email folder?

    How to delete multiple email messages from my Iphone 5C; email folder.

    there used to be option to keep last 50,100,200 messages/emails. We need that back. This is ridiculous to delete one by one.

  • How to call a web service from forms 9i

    Hello all, I was trying to run the example on this website that shows how to call a webservice from forms, and I recieved an error. I am at the last step, where it tells me to create a button and add a when button pressed trigger. Here is the code I am using from the example:
    DECLARE
    jo ora_java.jobject;
    rv ora_java.jobject;
    ex ora_java.jobject;
    BEGIN
    jo := CurrencyExchangeServiceStub.new;
    --This will get the exchange rate from US Dollars to UK Sterling.
    rv := CurrencyExchangeServiceStub.getRate(jo,'USA','UK');
    message (float_.floatValue(rv));
    EXCEPTION
    WHEN ORA_JAVA.JAVA_ERROR then
    message('Unable to call out to Java, ' ||ORA_JAVA.LAST_ERROR);
    WHEN ORA_JAVA.EXCEPTION_THROWN then
    ex := ORA_JAVA.LAST_EXCEPTION;
    message(Exception_.toString(ex));
    END;
    It gives me an error on"Exception_.tostring" component must be declared. Does anyone have any suggestions? I am trying to figure out how to call an external WS from a form. Thanks.

    IN forms Builder under Import java classes
    Change the Import Classes field to java.lang.Exception and press Import. This will create a PL/SQL package for the Exception Java class. While this is not essential, it does make error reporting easier. Now press Close to dismiss the dialog.

  • How to call a function module from a transformation

    Hi,
    Could somebody please let me know how I can call an abap function module from a transformation (abap xslt program). I know how to call the class methods from transformation, but how do i call a function module..?
    Thanks,
    Shashi.
    Edited by: Shashi Kanth Kasam on Apr 8, 2010 12:45 PM

    Ya. I can do that. But I don't want to use a class and a method to call that function module. Want to directly call function module from transformation. Is that possible..?
    Thanks,
    Shashi

  • How to call a Web Api from from a Visual webpart code behind?

    Hi,
    I am trying to create a visual web part in sharepoint 2013 with data received from another Web API.
    I followed the below steps.
    1. Created a Visual Web part.
    2. In the code behind(.cs) file I wrote the following code.
     async private void GetResult()
                using (var client = new HttpClient())
                    client.BaseAddress = new Uri("http://localhost:8080/");
                    client.DefaultRequestHeaders.Accept.Clear();
                    client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
                    var response = await client.GetAsync("api/Tfs/OpenEnquiriesCount");
                    var content = response.Content;
    3. When I run the application, I get security exception in the line await
    client.GetAsync()
    What is the way to achieve this? How to call a web api from share point visual web part?
    Thank you in advance.

    Hi,
    Thanks for your sharing.
    Cheers,
    Jason
    Jason Guo
    TechNet Community Support

  • How to call a jsp page from oaf and run in jDeveloper

    Hi all,
    I created sample jsp and then tried.
    String temp = "sample.jsp?";
    pageContext.setForwardURL(temp,
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);
    It worked.
    But when i tried with one of the custom page that i downloaded from server it is giving error.
    But now i need to call that page.
    Its Code is given on below link:
    Re: how to call a jsp page from oaf
    Please help me to do this.
    Thanks in advance.
    Regards,
    Raj

    Raj,
    1. Hope you have placed the custom jsp page (which you have downloaded from server) under "jdevhome\jdev\myhtml\OA_HTML" directory ?
    2. Try to run the custom jsp page from Jdeveloper directly and check whether its working properly or not ?
    (i.e. add jsp page to any project in Jdeveloper then right click on jsp page and select Run xxx.jsp)
    3. If page errors out then custom jsp page seems require few parameters to run it successfully. Pass all requied parameters and test.
    4. There is no problem in the way you are calling jsp page from OAF page.
    regards,
    Anand

Maybe you are looking for

  • Duplicates from PSA to DSO Load

    Hi, I have 2 key fields in the DSO and there is a status field in data fields. In delta loads, I am getting the records with the same keys (already existing) but the different statuses. Due to this I am getting duplicate issue. But, I need to load th

  • No account is specified in item 0000001037

    Dear Gurus, Sales return is being performed. During Accounting posting for Credit memo, we are getting this error.. I have checked VKOA Settings. Material Acc posting., Customer Acc posting. In Billing document, Revenue acc analysis.. GL account has

  • Where to place files and folder in shared disk over WAN

    Hello, I have a new Airport Time Capsule 3TB and I want to share my disk over WAN for remote accessing. When I log to the server with my MacBook or iPhone, I see "Data" folder, and inside it I see my Time Machine backups. My question is: where, -in t

  • Hi all anybody    can contribute on how  to configure Freegood for  3 items

    HI all, Can anybody  share  how to configure   1 free good for 3 items.Ex: When we purchase A,B&C items system should give D as  a  free good. Thanks in advance, Ram

  • Performance Tuning Certification for Application Developer

    Hi, Can you please advise if there is any Oracle Performance Tuning certification for an Application Developer and Oracle 9i to 10G migration certification? If yes, can you please let me know its Oracle examination number? I have already passed 1Z0-0