How to "save" custom objects in keynote

I've created custom art / objects in keynote that I'd like to reuse and quickly insert into presentations.  Is there a way to "store" or "save" the custom artwork in my version of keynote for quick recall?

Hi, Offline edition doesnt support custom objects or any other object that is not available as part of the default offline solution. Hope it helps
-- Venky CRMIT

Similar Messages

  • How to save Custom control records through module pool program ?

    Hi guru ,
    1. How to save Custom control records through module pool program ?
    I wrote multiple lines of record in custom control
    Who to save that records ?
    thanking you.
    Regards,
    Subash.

    Hi,
    can refer following code -
    IN PAI , CODE is as follows-
    *&      Form  editor_output
    FORM editor_output .
    NARRATION1 is name of custom controller
      IF v_editor IS INITIAL.
      Create obejct for custom container
        CREATE OBJECT v_custom_container
          EXPORTING
            container_name              = 'NARRATION1'
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      Create obejct for the TextEditor control
        CREATE OBJECT v_editor
          EXPORTING
            wordwrap_mode              = cl_gui_textedit=>wordwrap_at_fixed_position
            wordwrap_position          = line_length
            wordwrap_to_linebreak_mode = cl_gui_textedit=>true
            parent                     = v_custom_container
          EXCEPTIONS
            error_cntl_create          = 1
            error_cntl_init            = 2
            error_cntl_link            = 3
            error_dp_create            = 4
            gui_type_not_supported     = 5
            OTHERS                     = 6.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDIF.
    ENDFORM.                    " editor_output
    getting textdata in internal table as follows
    *&      Form  create_text
    FORM create_text .
      REFRESH : it_texttable,
                it_text.
      IF v_doc_number IS NOT INITIAL.
        IF v_editor IS NOT INITIAL.
          CALL METHOD v_editor->get_text_as_r3table
            IMPORTING
              table                  = it_texttable
            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.
    Now, our final text data is in internal table it_texttable.
    pls, Reward if found helpful.

  • How to save Custom control records ?

    Hi guru ,
    1. How to save Custom control records module pool program ?
    I wrote multiple lines of record in custom control
    Who to save that records ?
    thanking you.
    Regards,
    Subash.

    REPORT  ZCUSTOMC.
    CLASS event_handler DEFINITION.
      PUBLIC SECTION.
        METHODS: handle_f1 FOR EVENT f1 OF cl_gui_textedit
                 IMPORTING sender,
                 handle_f4 FOR EVENT f4 OF cl_gui_textedit
                 IMPORTING sender.
    ENDCLASS.
    DATA: ok_code LIKE sy-ucomm,
          save_ok LIKE sy-ucomm.
    DATA: init,
          container TYPE REF TO cl_gui_custom_container,
          editor    TYPE REF TO cl_gui_textedit.
    DATA: event_tab TYPE cntl_simple_events,
          event     TYPE cntl_simple_event.
    DATA: line(256) TYPE c,
          text_tab LIKE STANDARD TABLE OF line,
          field LIKE line.
    DATA handle TYPE REF TO event_handler.
    START-OF-SELECTION.
      line = 'First line in TextEditControl'.
      APPEND line TO text_tab.
      line = '----
      APPEND line TO text_tab.
      line = '...'.
      APPEND line TO text_tab.
      CALL SCREEN 100.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
      IF init is initial.
        init = 'X'.
        CREATE OBJECT: container EXPORTING container_name = 'TEXTEDIT',
                       editor    EXPORTING parent = container,
                       handle.
        event-eventid = cl_gui_textedit=>event_f1.
        event-appl_event = ' '.                     "system event
        APPEND event TO event_tab.
        event-eventid = cl_gui_textedit=>event_f4.
        event-appl_event = 'X'.                     "application event
        APPEND event TO event_tab.
        CALL METHOD: editor->set_registered_events
                     EXPORTING events = event_tab.
        SET HANDLER handle->handle_f1
                    handle->handle_f4 FOR editor.
      ENDIF.
      CALL METHOD editor->set_text_as_stream EXPORTING text = text_tab.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE user_command_0100 INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'INSERT'.
          CALL METHOD editor->get_text_as_stream IMPORTING text = text_tab.
        WHEN 'F1'.
          MESSAGE i888(sabapdocu) WITH text-001.
        WHEN OTHERS.
          MESSAGE i888(sabapdocu) WITH text-002.
          CALL METHOD cl_gui_cfw=>dispatch.      "for application events
          MESSAGE i888(sabapdocu) WITH text-003.
      ENDCASE.
      SET SCREEN 100.
    ENDMODULE.
    CLASS event_handler IMPLEMENTATION.
      METHOD handle_f1.
        DATA row TYPE i.
        MESSAGE i888(sabapdocu) WITH text-004.
        CALL METHOD sender->get_selection_pos
             IMPORTING from_line = row.
        CALL METHOD sender->get_line_text
             EXPORTING line_number = row
             IMPORTING text = field.
        CALL METHOD cl_gui_cfw=>set_new_ok_code   "raise PAI for
             EXPORTING new_code = 'F1'.           "system events
        CALL METHOD cl_gui_cfw=>flush.
      ENDMETHOD.
      METHOD handle_f4.
        DATA row TYPE i.
        MESSAGE i888(sabapdocu) WITH text-005.
        CALL METHOD sender->get_selection_pos
             IMPORTING from_line = row.
        CALL METHOD sender->get_line_text
             EXPORTING line_number = row
             IMPORTING text = field.
        CALL METHOD cl_gui_cfw=>flush.
      ENDMETHOD.
    ENDCLASS.
    aniruddh

  • How to save Custom control records module pool program ?

    Hi guru ,
    1. How to save Custom control records module pool program ?
    I wrote multiple lines of record in custom control
    Who to save that records ?
    thanking you.
    Regards,
    Subash.

    Hi Subasha,
    Please check the format below since it is based on a working code
    **************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.
    You should create a text for uniquely identifying the text you are saving each time so that it doesn't get overwritten
    For this a key combination must be decidedd to uniquely identify the test..here it is loc_nam
    ****************fill header..from SO10( t-code )
    GW_THEAD-TDNAME = loc_nam. " unique key for the text
    GW_THEAD-TDID = 'ST'. " Text ID
    GW_THEAD-TDSPRAS = SY-LANGU.
    GW_THEAD-TDOBJECT = 'ZXXX'. "name of the text object created
    *Read 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.
    The code shown above is ok and working fine for save also,hope that the above sample with helps you solve the problem
    Please check and revert,
    Reward if helpful
    Regards
    Byju

  • How to access custom object as property in yField

    Hi All,
    I have a stacked column chart. The data provider (dp) has an
    array of object DataObject which has array of custom objects of
    class ClientRev:
    public function ClientRev(name: String, rev : Number)
    cName = name;
    cRev = rev;
    // data provider
    public class DataObject
    public var clientRev : Array;
    Now I have to use cRev property of clientRev elements of
    DataObject (DataObjects makes data provider) in yField of
    ColumnSeries.
    if i write,
    yField="{clientRev[0].cRev}",
    It doesn't work. Please lemme know how can I achieve my goal.
    Thanks for help.

    "vaibhav.chauhan" <[email protected]> wrote
    in message
    news:gdmhok$2eq$[email protected]..
    > Hi All,
    > I have a stacked column chart. The data provider (dp)
    has an array of
    > object
    > DataObject which has array of custom objects of class
    ClientRev:
    > public function ClientRev(name: String, rev : Number)
    > {
    > cName = name;
    > cRev = rev;
    > }
    >
    > // data provider
    > public class DataObject
    > {
    > public var clientRev : Array;
    > }
    >
    > Now I have to use cRev property of clientRev elements of
    DataObject
    > (DataObjects makes data provider) in yField of
    ColumnSeries.
    >
    > if i write,
    > yField="{clientRev[0].cRev}",
    >
    > It doesn't work. Please lemme know how can I achieve my
    goal.
    Use a dataFunction

  • How to integrate customer objects in CC02 / change management?

    Hello everybody,
    I want to integrate a new customer object (for customer-specific master data) into the standard change management of ECC 6.0.
    I already read that there is a BAdI, which can undo changes made with the standard change management.
    "In the BAdI ECM_UNDO Undo Changes, SAP provides separate classes as BAdI implementations for each of these objects. If you want to implement undo changes for more SAP master data and for customer-specific master data, you can use these classes as templates for your own implementations."
    But how can I integrate new objects for customer-specific master data?
    Thanks in advance,
    Lars

    Hello Lars,
    i´ve the same requirement. For a customer specific development we´ve developed our own business objects. The customer wants the change these objects with change management. You´ve already got a solution for this?
    Regards,
    Andy

  • How to enable Custom Objects in offine edition of CRM On Demand

    Hi,
    We need to enable Custom Objects in the offline edition of CRM On Demand so that Sales Reps can capture the additional information while they are in the field. I wanted to know how do we enable the Custom Objetcs in the offline edition.
    Any pointers would be of big help.
    Thanks,
    Prashant

    Hi, Offline edition doesnt support custom objects or any other object that is not available as part of the default offline solution. Hope it helps
    -- Venky CRMIT

  • How to save an "Object" in a selected file ?

    Hi,
    I would like to save an object with for example a PlanarImage object type in a selected file from JFileChooser
    Do you know how to do it ?
    I tried this but it didn't work :
    File fChoosen = chooser.getSelectedFile();
    ObjectOutputStream os = new ObjectOutputStream(new FileOutputStream(fChoosen));
    os.flush();
    os.writeObject(planImage); //write the planarImage
    os.close();
    Thanks a lot !

    Is "PlanarImage" one of your classes? If so, it has to implement the Serializable interface if you want to write it like that.

  • How to load Custom Object 1 ?

    Hello to everyone,
    I can't find how to load my data for Custom Object 1.
    I can't find that data type in my wizard.
    Someone can help me ?
    Thanks for your help.

    Hi,
    I would recommend you to raise this Issue in the Administration section of the forum instead of Integration.
    Never the less I would recommend you to do this check before you proceed
    Navigate to the below link
    Admin >> Application Customization >> Customize Record Types
    and find the "Display Name/Singular" under "Custom Object 01" ones found
    Go back to Import/export tool to import data section to locate the name found above.
    Hope this helps :)
    Regards,
    Messer

  • How to identify custom object in repository

    Hi,
    I need to prepare a list of Custom objects(applets, view, screens etc.,) that are existing in a repository.
    How do i identify them?
    version - siebel 7.5.13
    thanks
    Goud

    Assuming naming convention is not strongly implemented as your site, you might want to start with searching for all the objects which are not created by 'SADMIN' (assuming developers don't create objects with SADMIN as user), you might want to use 'Flat' view for that purpose or use sql.

  • How to pass Custom object embedded in Collection

    Hi,
    I'm building an J2EE application(Weblogic 7.0) with swing Client. Our requirement
    is to add custom objects in a Collection and return it to Client thru web service.
    I dont know how to write build.xml so that ant utility created its own parser
    file for the cutom object. We may have lots of custom objects . These objects
    are being returned by a generic response object . I mean a Collection may conatin
    different custom objects depending upon context. This Collection is embedded in
    the generic response object. Can anybode help me to write a buil.xml for this.
    Please suggest a best solution.
    thanks
    Jobinesh

    Contd.......I forgot to mention one thing. We are supposed to use StatelessSessionBean
    as front controller. In this context we can use the ant task for converting this
    front controller to web service.
    Pls help me....
    "jobinesh" <[email protected]> wrote:
    >
    Hi,
    I'm building an J2EE application(Weblogic 7.0) with swing Client. Our
    requirement
    is to add custom objects in a Collection and return it to Client thru
    web service.
    I dont know how to write build.xml so that ant utility created its own
    parser
    file for the cutom object. We may have lots of custom objects . These
    objects
    are being returned by a generic response object . I mean a Collection
    may conatin
    different custom objects depending upon context. This Collection is embedded
    in
    the generic response object. Can anybode help me to write a buil.xml
    for this.
    Please suggest a best solution.
    thanks
    Jobinesh

  • How to save an object with JSTL

    I have an object, how to save it with JSTL?
    I have this
    public class Auto{
    private AutoBomba a;
    public AutoBomba getA()
    return this.a;
    public AutoBomba setA(AutoBomba a)
    this.a = a;
    How can I set the from a JSP page a AutoBomba? The objects name is only for example

    There is of course the JSTL c:set tag
    This relies on the appropriate variables being in JSTL scope.
    <jsp:useBean id="auto" class="com.mypackage.Auto" scope="request"/>
    <jsp:useBean id="bomba" class = "com.mypackage.AutoBomba"/>
    <c:set target="auto" property="a" value="${bomba}"/>Cheers,
    evnafets

  • How are pure custom objects impacted by peoplesoft delivered changes in Upgrades.

    We have developed pure custom component interfaces using delivered components.So we would like to know what would be the impact of changes to delivered components on the custom component interface.
    Similar question for other custom peoplesoft objects like changes to delivered fields to pure custom records,pages,peoplecode etc.

    Hi,
    Let me explain this
    1. If you have custom record and all the fields in those record also custom fields then there won't be any impact
    2. But if you have a custom record with delivered fields, then changes to these delivered field impacts the custom record as well
              eg: length changes to the delivered fields impact your custom record.
    2. Same applied for other objects like pages, components..etc
    Any custom object which uses the delivered objects in it will have impact. Because these delivered objects may be changed in higher version.

  • How to link custom object 05 to accounts

    Hi,
    I used custom object 05 to create the "Forecast" object. In order to create the desired reports I need to link the cusom object to Accounts. I already found out that there is Read-Only Picklist available that searches in the Accounts and I use that I get the desired result. But unfortunatly, the users have manually select an account everytime they enter a forecast. Is there was to automaticcaly fill in this field to create the relationship between account and forecast? I tried entering a default value in the "Account" filed but it seems to be an standard field and the option is greyed out.
    The forecast is created under opportunity, so I can get the "Opportunity: Account" field filled in automaticcaly but that does not result in a relationship between account and the forecast.
    Any advice?
    Kind Regards
    p.s. I included a screenshot they might clarify my problem a little bit more: http://i.imgur.com/Drh7P.jpg
    Edited by: HelpNeeded on 21-Jun-2011 03:02

    Hi,
    JoinfieldValue will not work for Custom Object 4-15. You will have to use web services to achieve your requirement.
    Thanks & Regards
    Sablok

  • How to save custom settings

    I was wondering if anyone knows of a software that allows you to save custom quicktime export settings so that one can easily go back and compress videos from pre-selected settings opposed to just using the 'use recent settings' option.
    I know of rooVid but it does not work for leopard.
    Please advise thanks.

    I was wondering if anyone knows of a software that allows you to save custom quicktime export settings so that one can easily go back and compress videos from pre-selected settings opposed to just using the 'use recent settings' option.
    MPEG Streamclip (free) will allow you to save named "Presets" which can be recalled/loaded as needed when using Streamclip to perform the various exports via the QT/QT component structure embedded in the current OS. (I.e., the created file is not for use by QT Pro itself.)

Maybe you are looking for

  • Activation question??

    ok so my family is finally making the switch from sprint to ATT with 3 iPhones (and another phone for my younger brother) We all have separate computers so my questions is: can i activate my iPhone on my computer (creating an ATT account) and then ri

  • 2012 SQL server log shipping problem

    Scenario: Site 1: 2012 Enterprise version 64-bit (11.0.3128.0) - Log shipping is enabled for four databases.  Shipping logs over a WAN every 15 minutes to a DR site. Site 2: 2012 Enterprise version 64-bit (11.0.3128.0) - Secondary server for log ship

  • Callout and a list in an external MXML file

    Hi,    I have made myself a few viewnavigator nested in a viewtabbednavigator, in the top right end side there is a callout button that I want it to populate it's content with external MXML file that is basically just a list. The only way I found it

  • What is a HALO template?

    Sorry guys i'm noob. Can some one please explain to me the meaning of the HALO TEMPLATE? What is it all about and what is it for? any very detailed and simple explanation please... Thanks in advance.

  • How to save certain email messges

    How do I group certain email messages to save and retrieve them