Triggering a custom program/function from a transaction

Good Day,
I am trying to create a process to send some data to BIZTALK which will forward it to an outside system.  I've written an ABAP and function which will gather the data and send it to a destination port set up for Biztalk. It works when executed by itself but the requirement for this is to trigger it when you run transaction ME35L (Release/Approve Purchasing Documents) to release a scheduling agreement document. I did some searching in this forum and there was some talk about setting up as a special function output  type and defining the program there.
Has ayone done this type of set up.  Can you walk me through it?
Thanks in advance,
Glenn

Okay, I've created an output type called 'DNEU' with the following:
Output Type: DNEU
Application: EV
Transm. Medium: Special Function
Program: ZLMMI002
Form Routine:  Entry
When I try to use it, I get the following message:
"No communication data has been defined for transmission medium 8"
Did I miss something in the configuration?

Similar Messages

  • Enhancement spot is not triggered in Custom Program.

    Dear Experts,
    After saving the sales order i would like to view the print preview.
    For this I found one implicit enhancement spot and i called the print Program for sales order. Then i am able to view the Sales order print preview in VA01 Transaction code. I wrote my logic in the Below mentioned Enhancement implementation.
    Main Program : SAPMV45A
    Include : MV45AF0B_BELEG_SICHERN
    Form : beleg_sichern
    At the endform I am calling the Print program of Sales order so that after saving the sales order i am able to view the print preview of the Sales order.
    The requirement is i have created the Custom program in that i am using the "CALL TRANSACTION 'VA01'". In the custom program i am not able to view the Sales order print preview. The Enhancement spot is not getting triggered.
    Could you please help me to solve this issue.
    Thanks & Regards,
    Ashok.

    Like I said, you must use the parameter RA_COMMIT from BDC_OPTIONS. Like this:
    DATA: bdc_options TYPE ctu_params.
    bdc_options-ra_commit = ' X' .
    bdc_options-dismode = ' N'.
    CALL TRANSACTION 'VA01' OPTIONS FROM bdc_options.
    Everytime you use a CALL TRANSACTION, the called transaction will stop when a COMMIT WORK is found, and you have to pass the parameter RA_COMMIT with 'X' to make the transaction execute any code after COMMIT WORK. This only happens when you call a transaction via CALL TRANSACTION, it will not happen if the user access a transaction directly.
    For further explanation you can use the link from documentation that I posted on my first reply.
    Regards,
    Mauricio

  • Custome Partner Function from SD to CO-PA

    Hi,
    I have created 3 custom partner functions and have assinged in customer master. I need these 3 custom partner function to be transfered to CO-PA during billing. Is there a easy way around to achieve this, coz there are some SAP notes which are sort of confusing and complex, since we are already live in production, we cant take a chance on the SAP Note.
    If somebody experienced like this, could you please share the knowledge, how to achieve this.
    Thanks.
    With Regards
    gj

    Hi Gj,
    There are no simple way around to get the customer partner function in to CO-PA during billing. You must follow the notes to get the correct value transfered to CO-PA. I will outline the steps below so that you do not miss anything.
    I am going to try to summarize the basic steps to add one or
    more new partner function(s).  For more detailed information
    please see the notes 36557, 32878, 12682 and 93658 although some o
    these notes are known for you.
    Add new domain/data element for the new partner function in the
    ABAP/4 Data Dictionary.
      Examples are the data elements KUNAG, KUNWE, KUNRE, KUNRG,
      SPDNR, and VRTNR in structure MCPARTNER. This is where the
      partner functions for the Standard Sales Information System are
      defined.
    Save the new partner field in structure MCPARTUSR (user part of
      structure MCPARTNER) or, if available extend structure
      MCPARTUSR by an append structure (ZAMCPARTUS).
    Make sure that the check tables and foreign key relationships are
      maintained for the new fields in structure MCPARTUSR
    Define the assignment of partner function <  > new partner
      field in the communication structure.
      Program RMCSUZ10, routine USR_PARTNER_GET.
      Add the line as in the example of note 12682 given.
    Include the corresponding field via transaction 'KEA0' from the
      structure PAPARTNER into the Profitability Analysis data structures
    If your new partnerrole is a representative/sales employee please
      apply note 32878.
    Should you have implemented note 43002 (to prevent a field overflow
      in pricing) please follow note 93658 and use userexit
      userexit_pricing_prepare_tkomp instead of
      userexit_pricing_prepare_tkomk.
      userexit_pricing_prepare_tkomp is contained in Include MV45AFZZ
      (sales order) and RV60AFZZ (billing)
    Add the new field to the structure 'KOMPAZ' as in note 93658
      described and  NOT  to the structure 'KOMKAZ' (note 36557)
      (you have used both structures)
    Generate the operating concern and check if the following entries
      are included in TKEZU:
      Charact.  BTran Table      Field name  Offset  Length
      XXXXX     KEDR  KOMP      YYYYY
      XXXXX     KEDR  KOMP      YYYYY
      XXXXX     KEDR  KOMP      YYYYY
      XXXXX = Field name of the partner function in the  profitability
      analysis
      YYYYY = Field name of the partner function in structure KOMP
    (these entries should be made automatically here).
    If you need more than one partner function please repeat the
    steps as described above for your need.
    Regards,
    Abhisek

  • Triggering  a  custom program

    Hello,
    I have a  custom program for picking material from a  warehouse for issuing to production orders.
    I need to trigger this program after every external  goods receipt. is this possible?
    is there something in customizing for movement type - for example follow on  transactions, to achieve this
    or is there an ABAP solution for this?
    best regards,
    srini

    Hi Srinivas,
    You have to use the appropriate user exit. There will be a user exit for this purpose. I don't have access to system otherwise i could have given the right exit.
    Hope this clarifies.
    Regards,
    Viswanath

  • Triggering a custom program after session is processed

    Hi All,
           I have created a session say SES1 .
    Is it possible to trigger a custom program after the SES1 gets successfully processed?
           Can anyone help me on this issue.
    Thanks for your precious time.

    hi
    YES, YOU CAN DO THIS USING SUBMIT
    You can call executable programs from other ABAP programs using the following statement:
    SUBMIT <rep>|(<field>) [AND RETURN] [<options>].
    You can either specify the name of the program you want to call statically by entering the program name in the code of the calling program, or dynamically by specifying the name of a field (in parentheses) containing the name of the program.
    Message was edited by: Harikishore Sreenivasulu

  • Calling custom dialog screen from Standard Transaction(user Exit)

    Hi, I'm calling Standard Transaction from a Custom Screen. I'm calling a custom screen again with in standard transaction (implemented custom screen thru user exits using macros). But when I click 'continue/cancel' in the custom screen, control is going back to main cutom screen rather go back to standard transaction. Could anyone please help me out how to come back to standard transaction from custom screen rather going back to main cutom screen.
    ***INCLUDE LZ_R_FORWARD_FORWARD_LOADI01 .
    *&      Module  USER_COMMAND_9000  INPUT
    MODULE user_command_9000 INPUT.
      CASE sy-ucomm.
        WHEN 'EXEC'.
          PERFORM validate_popup_data.
          IF flag_error_screen NE 'X'.
            MOVE-CORRESPONDING ZFFL_POPUP to var_ZFFL_POPUP.
            clear flag_return.
            SET SCREEN 0.
            LEAVE SCREEN.
          ENDIF.
        WHEN 'CANC'.
          flag_return = 'X'.
          SET SCREEN 0.
          LEAVE SCREEN.
        WHEN OTHERS.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9000  INPUT
    *&      Module  exit_9000  INPUT
    MODULE exit_9000 INPUT.
      CASE sy-ucomm.
        WHEN 'CANC'.
    *      MOVE perf_flag TO lbpla_exist_flag.
          flag_return = 'X'.
          SET SCREEN 0.
          LEAVE SCREEN.
      ENDCASE.
    ENDMODULE.                 " exit_9000  INPUT
    Thanks in advance.

    Hi
    So the command SET SCREEN 0. LEAVE SCREEN. should "place" the program just after the calling of the popup so here:
    FUNCTION z_call_screen.
    * Call the Pop up screen
        CALL SCREEN 9000 STARTING AT 35 05.
    "<------------------------- The program should be here after going back from popup 9000
    ENDFUNCTION.
    Is it true?
    Max

  • Problem in passing customer Partner Functions from ECC to CRM

    Hi to all, I am facing the following error in the crm system
    1.Partner 0000080059(DCEAB7AC31DA22F1B7CE001372368B21): the following errors occurred
    Message no. BUPA_MW_EXCHANGE010
    2.Status exists already for this business partner
    Message no. CRM_BUPA_FRG0050012
    3.Validation error occurred: Module CRM_BUPA_MAIN_VAL, BDoc type BUPA_MAIN.
    Message no. SMW3018
    My scenario in ECC is: I use a custom BTE copy of VMD_VENDOR_BTE_1421_IMPL which is executed when I save a new vendor. In this BTE I use the FM SD_CUSTOMER_MAINTAIN_ALL to create a customer with the same attributes as the vendor, because only customer informations (not vendor informations) pass as Business Partners in CRM. The problem is that when I pass only master datas to the FM SD_CUSTOMER_MAINTAIN_ALL, the customer passes to CRM as a Business Partner with the same number, but when I pass also Partner Functions to FM SD_CUSTOMER_MAINTAIN_ALL, no Business Partner is created in CRM, and the error I get is that up.
    What can I do?
    Thank you very much,
    Antonio

    Hola Antonio,
    I have a same problem.
    You can tell me the solution.
    Please.

  • Change program/function from a outside namespace

    Hello All,
    Question, we have a product with a few programs here that were developed on a outside SAP and they just uploaded the request. The programs have their name space, ex: /CONSULING/PROGRAM. Because they are not standard to use enhancements, and not Z to change it, we get the message Namespace /CONSULTING/ does not exist.
    Is there another way to change this programs? I've tried enhancement but does not work.
    Thanks!
    Josesap

    Thomas,
    The source system is on a outside customer that i dont have access.
    I've never worked with SE03, and i've asked the support team there and they don't know about this editing on a outside SAP posibility.
    Is there a file or someting to upload on SE03? If so, do you know where i get it on SAP Portal?
    They've sugested for me to send the changes on the code so they can change it there and send the request back to me.
    Thanks

  • How can I deactivate a function from menu bar in a transaction

    Hi Gurus
    How to deactivate a menu function "Do not execute" which is available in menu bar while creating an order. I want to remove that function from IW32 transaction. Please help.

    Hi,
    The Purpose of transaction variants is to hide fields, menu functions, screens, to supply individual fields with default values or to change the ready for input status of one or more fields.
    Using transaction variant, you can tailor screens to meet your required business process, and it can be used to accomplish security task, not directly supported by SAP’s security concepts.
    A Transaction variant consist of a number of screen variants, customized to meet your requirements, Transaction variant only alters the layout of the screen. The Business processes delivered by SAP retain their integrity.
    Check the below link for more details.
    [http://www.mortenhjorthnielsen.dk/Security/transactionvariants.htm|http://www.mortenhjorthnielsen.dk/Security/transactionvariants.htm]
    You can deactivate the menus for the wntire system by creating
    or changing records in the global settings table SSM_CUST in the
    View maintenance transaction SM30.
    - To globally deactivate the SAP menu, enter a record
    "SAP_MENU_OFF" "YES" in upper-case letters.
    - To globally deactivate all user menus enter a record
    "ALL_USER_MENUS_OFF" "YES" in upper-case letters.
    Please also check the below link.
    [http://help.sap.com/saphelp_nw04/helpdata/en/83/7a18cbde6e11d195460000e82de14a/content.htm|http://help.sap.com/saphelp_nw04/helpdata/en/83/7a18cbde6e11d195460000e82de14a/content.htm]
    Hope this helps. Reward points for all helpful answers.
    Thanks,
    Balaji
    Edited by: Balaji Ganapathiraman on Mar 14, 2008 11:19 AM

  • Custom trim function

    Hi,
    public String myTrim(String str)
       return str.replace(/^\s*|\s*$/g,"");
    }I got this custom trim function from web,and it is working fine.
    can anybody plz tell me how does the code str.replace(/^\s*|\s*$/g,"");trims the string.

    You can write a trim function using regular expressions. What you have posted is code that uses regular expressions (but it doesn't compile) . For more info see:
    http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html
    and
    http://www.regular-expressions.info
    /Kaj

  • After Effect CC: Custom JavaScript functions of a flashplayer object return no value

    Hi
    With AfterEffects CC scripting it looks like custom JavaScript functions of a flashplayer object return no value when invoked from ActionScript code
    This can be seen in the sample script shipped with ExtendScript Toolkit named ActionScriptDemo.jsx:
    Create a flashplayer object in a JSX file with a custom getJavaScriptNumber function:
    var flashPlayer = flashPalette.add("flashplayer", cBounds);
    flashPlayer.getJavaScriptNumber = function() {
              return 12345;
    Invoke the custom getJavaScriptNumber function from ActionScript code of an .MXML file:
    public function requestJavaScriptNumber():void{
              var res:int = ExternalInterface.call("getJavaScriptNumber");
              estkNumber = res;
    The ExternalInterface.call("getJavaScriptNumber") call return no value
    Any idea or a suggested workaround??
    Thanks, Erez.

    I wonder if this was intentional on Adobe's part.  It seems rather odd that it just "broke" with the upgrade to CC.
    I was thinking of a way to display a "web page" within an ExtendScript dialog / window, and thought that I could use Flash / ActionScript to do just that and then display that within the dialog.  It seems, now, that it is just a bad idea because the API for ExternalInterface is broken--I would need two-way communication between the Flash object presenting the webpage and the ExtendScript ScriptUI Panel.
    Is there a workaround for this?
    Thanks,
    Arie

  • Printing Purchase Order from ME9F using custom program and smartform

    I was able to use my custom program which calls a smartform to print purchase orders from transaction ME9F. I did this using transaction NACE.
    However, when I call "Output Message" from ME9F, the output always fails (shown by an 'X' icon after the checkbox). When I try to put back the standard program in NACE, it does not show an 'X' but a check which indicates that the printing was successful.
    Do you know why this happens? What did I miss?
    Here's my call to my smartform from my custom driver program:
        " Change Smartform ZP_MMSF_P01_PURCHASE_ORDER
        " to internal Function module name
        CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
            EXPORTING
                FORMNAME   = 'ZP_MMSF_P01_PURCHASE_ORDER'
            IMPORTING
                FM_NAME    = fmname
        wa_cparam-no_dialog = 'X'.
        wa_output-tddest = 'LOCL'. "or 'LP01'.  "Spool: Output device
        CALL FUNCTION fmname
            EXPORTING
                control_parameters         = wa_cparam
                output_options             = wa_output
                i_data                     = i_data
                wa_lookup                  = wa_data_lookup
                goods_amt                  = goods_amt
                discount_amt               = discount_amt
                vat                        = vat
                total_amt                  = total_amt
                total_amt_inwords          = total_amt_inwords

    Vijaya,
    I have this problem though,
    Whenever I try to provide values for CONTROL_PARAMETERS and OUTPUT_OPTIONS to the sapscript call in your code, the PO printing (even the preview) does not proceed. I do this because I wanted to suppress the printer dialog.
    here is a fragment of the code:
    " code I added
    LS_COMPOSER_PARAM-tddest = 'LOCL'. "or 'LP01'.  "Spool: Output device
    LS_COMPOSER_PARAM-bcs_langu = sy-langu.
    LS_CONTROL_PARAM-preview = 'X'.
    LS_CONTROL_PARAM-no_open = 'X'.
    LS_CONTROL_PARAM-no_close = 'X'.
    LS_CONTROL_PARAM-device = 'PRINTER'.
    LS_CONTROL_PARAM-no_dialog = 'X'.
    DO NAST_ANZAL TIMES.
    *--In case of repetition only one time archiving
    * if sy-index > 1 and nast-tdarmod = 3.
    * nast_tdarmod = nast-tdarmod.
    * nast-tdarmod = 1.
    * ls_composer_param-tdarmod = 1.
    * endif.
    IF SY-INDEX NE 1 AND REPEAT IS INITIAL.
    REPEAT = 'X'.
    ENDIF.
    CALL FUNCTION LF_FM_NAME
    EXPORTING
    ARCHIVE_INDEX = TOA_DARA
    ARCHIVE_PARAMETERS = ARC_PARAMS
    CONTROL_PARAMETERS = LS_CONTROL_PARAM
    MAIL_RECIPIENT = LS_RECIPIENT
    MAIL_SENDER = LS_SENDER
    OUTPUT_OPTIONS = LS_COMPOSER_PARAM
    USER_SETTINGS = SPACE
    IS_NAST = NAST
    IS_REPEAT = REPEAT
    I tried to trace it to the function module generated by smartform. The error propagates this way: From the function module, there is a call to function SSFCOMP_PROCESS_DOCUMENT. Then inside that function, there is a perform operation to tr_ssfcomp_process_doc
    perform tr_ssfcomp_process_doc using startpage docstruc
                                           header.
    Inside that form, it calls the macro tr_active which checks the value of ssfcstat-trlevel (tracelevel) against c_trlevel_document. In the macro, if ssfcstat-trlevel is less than c_trlevel_document, the smartform will fail. c_trlevel_document is 15 and ssfcstat-trlevel is 0, and so the smartform fails.
    (you can see the macro tr_active in include LSTXBCMAC and the form tr_ssfcomp_process_doc is in the include LSTXBCFTR)
    When I do not put values in CONTROL_PARAMETERS and OUTPUT_OPTIONS, everything is ok.
    Do you know why this happens?
    Thanks in advance!
    Edit: I have found out about transaction SFTRACE, but this is disabled.
    Kyle

  • Need urgent help on Special  function 8..not working custom program to NACE

    Hi gurus,
    We wrote one custom program for billing automation(VF01)...scenario is like this....
    once PGI is issued system has to create billing document automatically in background using the delivery number.....
    we wrote program like this....
    DATA:   IT_BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE.
    FORM DELIVERY_OUTPUT USING RC US_SCREEN.
    DATA V_VBELN LIKE MKPF-XBLNR.
    DATA V_DELIVERY LIKE V_VBELN.
    DATA:V_MBLNR LIKE LIKP-VBELN.
    DATA OBJKY(10).
    DATA: VAR(15).
    RC = 1.
    DATA:   IT_MESSAGES LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    GET PARAMETER ID 'VL' FIELD V_MBLNR.
    CONCATENATE V_MBLNR '%' INTO VAR.
    SELECT SINGLE OBJKY FROM  NAST INTO OBJKY WHERE OBJKY LIKE VAR.
    CHECK SY-SUBRC EQ 0.
    V_MBLNR = NAST-OBJKY+0(10).
    SELECT SINGLE XBLNR FROM MKPF INTO V_VBELN WHERE XBLNR = V_MBLNR.
    V_DELIVERY = V_VBELN.
         PERFORM F_DYNPRO USING :
         'X' 'SAPMV60A' '0102',
         ' ' 'BDC_CURSOR' 'KOMFK-VBELN(01)',
         ' ' 'KOMFK-VBELN(01)' V_DELIVERY,
         ' ' 'BDC_OKCODE' '/00'.
         PERFORM F_DYNPRO USING :
         'X' 'SAPMV60A' '0104',
         ' ' 'BDC_OKCODE' '=SICH'.
         CALL TRANSACTION 'VF01' USING IT_BDCDATA MODE 'N'
              MESSAGES INTO IT_MESSAGES.
    DATA MSG_LOG LIKE MSG_LOG.
    DATA MSG_TEXT LIKE MSG_TEXT.
    CLEAR:MSG_LOG,MSG_TEXT.
    LOOP AT IT_MESSAGES.
      MSG_LOG-MSGID = IT_MESSAGES-MSGID.
      MSG_LOG-MSGNO = IT_MESSAGES-MSGNR.
      MSG_LOG-MSGTY = IT_MESSAGES-MSGTYP.
    CALL FUNCTION 'MESSAGE_TEXTS_READ'
    EXPORTING
       MSG_LOG_IMP           = MSG_LOG
    IMPORTING
       MSG_TEXT_EXP          = MSG_TEXT.
    IF MSG_LOG-MSGTY EQ 'S'.
      MESSAGE S398(00) WITH MSG_TEXT-MSGTX.
    RETCODE = '0'.
    ELSEIF MSG_LOG-MSGTY EQ 'I'.
      MESSAGE I398(00) WITH MSG_TEXT-MSGTX.
    RETCODE = '0'.
    ELSEIF MSG_LOG-MSGTY EQ 'E'.
      MESSAGE E398(00) WITH MSG_TEXT-MSGTX.
    RETCODE = '4'.
    ENDIF.
    ENDLOOP.
    ENDFORM.
    FORM F_DYNPRO USING P_DYNBEGIN P_NAME P_VALUE.
      IF P_DYNBEGIN EQ 'X'.
        MOVE : P_NAME TO IT_BDCDATA-PROGRAM,
               P_VALUE TO IT_BDCDATA-DYNPRO,
               'X' TO IT_BDCDATA-DYNBEGIN.
      ELSE.
        MOVE: P_NAME TO IT_BDCDATA-FNAM,
              P_VALUE TO IT_BDCDATA-FVAL,
              ' ' TO IT_BDCDATA-DYNBEGIN.
      ENDIF.
      APPEND IT_BDCDATA.
    ENDFORM.        
    when we assign this program to NACE  for output type <b>V2</b> , this program not creating billing documents....
    Guide us to resolve this issue....

    Hi Hari,
    I think that the logic needs to be build up in the DISP part of the Search help exit.
    What you can do is also get the Plant in the search help as an export parameter.
    Then in the Return Tab you can check if the plant = 'AA', delete the data.
    e.g.
          LOOP AT record_tab.
            IF RECORD_TAB-STRING+22(2) = '90'.
              DELETE record_tab INDEX sy-tabix.
            ENDIF.
          ENDLOOP.
    Hope this helps.
    Regards,
    Himanshu
    Message was edited by:
            Himanshu Aggarwal

  • Transfer GOS Attachment (Single/Multiple) from custom program to XK01

    Hi,
    GOS - Generic Object Service is a way one can attach single / multiple attachment. I have a custom program where there is a GOS with some attachment (used CL_GOS_MANAGER class).
    Next I need to send / transfer this GOS attachment from my custom program to say a standard transaction , eg XK01.
    Whether we can achieve this functionality, ie. we are able to create/save attachment but is there a way to send attachment (not via email) such that the same attach itself to the GOS of the standard transaction. I don't see any method in the CL_GOS_MANAGER class by which we can achieve this!
    Any suggestion/solution will be highly appreciated!
    Thanks,
    Deb

    Hi,
    I am trying to send attachment linked to a custom BO to standard BO eg, LFA1 using 'GOS_SERV_TOOLS_TEST' (copy_linked_objects).
    Surprisingly, I am able to copy/send attachment list within same BO (LFA1) from one LIFNR to another LIFNR. But the same method does not work when I try to copy attachment between diff BO example from VENDOR BO to MATERIAL BO. Why is it so?
    Also it does not work between a custom BO & standard BO. Please suggest in case I am missing on anything!
    Thank,
    Deb

  • How to call screen of custom program as popup screen in standard transaction

    Hi friends,
    I have created a custom button in standard vl02n transaction in application toolbar. now when i click on this button it should display my custom screen as a pop up from my custom Ztest program. how to achive this requirement. the functionality of my custom screen is it should it has input fields, so we enter some data and on click on submit button in custom screen it should save the data in ztable and close.
    Regards,
    Siva

    Hi Jim,
    Thank you i missed this point.
    So now i am planning to add custom fields to likp table and map this fields to  my custom module pool screen so on making changes the standard likp header detail should be modified. so when user clicks on save of vl02n it would update the record. How to achieve this?
    and as per my above post. I have created a Zprogram with Screen 9000, now i want to call this screen, on click of button from vlo2n as pop up how to achieve this?

Maybe you are looking for

  • XSLT Exception: FATAL ERROR:  'Could not compile stylesheet'

    Hi.... Am getting Folowing Exception while parsing the XSL file. Am using java 1.4 and MSXML4.2 SP2 parser andSDK. but when I installed SQLServer2005, with that MSXML 6.0 Parser is Installed. It is working fine before instalation of SQLServer2005. ja

  • Trigger an action from my view

    I have a button on my view called BTN_CHECK. The button has associated the action "CHECK". At this moment i need to trigger the same action of the button (and reuse the code) from wddomodifyview method. I have find how to make it in SDN but i haven't

  • 07 excel hyperlinks (place names) not captured in Acrobat 9

    Hi, I have an excel workbook with about 30 different worksheets that I developed in Excel 07. The different worksheets hyperlink to each other using place names as guides. In excel, it works as expected however when I create the PDF (acrobat 9 pro ex

  • Can you use facetime on iphone and and on a Mac?

    i have an iphone and my friend has a mac. i was wondering if we could use facetime with her using her mac and me using my iphone? can we do that? cuz she does facetime with her other friend but she a mac too. so is it possible that we could use facet

  • Dissociate page's title and url

    Can we dissociate the page's title and the url of the page ? Because when the page's name contains accents, we get a strange url. For instance, the page "général", becomes 2E041D73-B6FB-4E45-A4DA-43D8BA54EF90.html Thanks for your help. Alablo