Creating Macros in DW

In Dreamweaver 9, you can select text, then right click
->Selection->Convert to Uppercase. I would like a keyboard
shortcut or a macro that will do this.
Can anyone direct me to where i can learn to do this (if
possible) or help me learn to do it?
Thanks
Bobby

"kittendragon" <[email protected]> wrote in
message
news:g28qpd$9ij$[email protected]..
> In Dreamweaver 9, you can select text, then right
> click ->Selection->Convert to
> Uppercase. I would like a keyboard shortcut or a macro
that will do this.
>
> Can anyone direct me to where i can learn to do this (if
possible) or help
> me
> learn to do it?
This extension adds a small toolbar, with two buttons to
convert current
selection upper/lower case.
http://www.massimocorner.com/dreamweaver/utilities/case_toolbar.mxp
Hope it may help
Massimo Foti, web-programmer for hire
Tools for ColdFusion, JavaScript and Dreamweaver:
http://www.massimocorner.com

Similar Messages

  • Please help me in creating macro

    Hi all,
    How to create Excel report with macro which access data from another file(BEx report stored in .cub file)
    please help me in this regard. it's very urgent.
    let me know whether i have to create macro in Excel or using BEx.....
    Give me solution..
    Thanks
    Prashant

    Hi!
    Has this anything to do with LabVIEW? Like using macros from LabVIEW to Excel? If this is only a Excel related problem, you should check out this page instead. 
    Regards,
    Even
    Certified LabVIEW Associate Developer
    Automated Test Developer
    Topro AS
    Norway

  • Creating macros

    Hi,
    Has anyone created macros in the templates and have them run automatically when the user opens the templates? Is this possible with Web ADI?
    Thanks
    Thu

    Hello,
    I'd recommend asking Office for Mac related questions on the
    http://www.microsoft.com/mac/support site or
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011?tab=Threads instead.

  • Creating Macros in APO DP

    Hi Gurus,
             I have some questions
    1,Do Macros effect performance issues in DP?
    2,DO you guys have document on how we need to create Macros and Alerts?
    3,What are the things we needed for dollerization and how it works?
    I will be very thankful to you guys if you please let me this answers
    Thanks a Lot
    Regards,
    Raja Medabalime

    Hi Raja
    <b>Do Macros effect performance issues in DP?</b>
    Yes. If you use macros wrongly, they can greatly affect the performance of your Planning Book, Mass Processing, and uploads using BAPI_PBSVARPS_CHANGEKEYFIGVAL
    <b>DO you guys have document on how we need to create Macros and Alerts?</b>
    In DP, providing alerts functionality means using a combination of macros which generate the alerts and then viewing the alerts in the alert monitor.
    Please check this link for an example of a macro that generates an alert:
    http://help.sap.com/saphelp_scm50/helpdata/en/47/7a58398d594e1de10000000a11402f/frameset.htm
    And also this link on how to monitor alerts:
    http://help.sap.com/saphelp_scm50/helpdata/en/44/cf893744ce9c71e10000009b38f842/frameset.htm
    <b>What are the things we needed for dollerization and how it works?</b>
    I am not aware of "dollerization". Do you mean "dollarization"? DP provides unit conversions in the interactive planning area. You will have to have the unit conversion master data available in the system. In interactive planning, you can use context menu to switch between two units of measure.
    Hope this helps. Please post again if you have questions.

  • Creating Macros in MS word from ABAP

    How to create a macro in MS word from ABAP code.I want to generate tables dynamically in Word using Macro from the data generated by the code.
    Regards,
    Sinu.

    Hi Mathew
    Better is create a macro in MS Word and calling the macreo frol ABAP.
    Check my macros below.
    1. A macro to create a table
    Public Function CreateTables(Rows As Integer, Cols As Integer, Width1 As Double, _
                                 Width2 As Double, Width3 As Double, Width4 As Double, _
                                 Width5 As Double, Width6 As Double, Width7 As Double)
    ' CreateTables Macro
    ' Macro created 2007-06-11 by WINUEL SA
        Dim oRange As Word.Range
        Dim oTable As Word.Table
        Set oRange = ActiveDocument.Bookmarks("bmT01").Range
    '   Add table to range of bookmark (oRange)
        Set oTable = ActiveDocument.Tables.Add(Range:=oRange, _
        NumRows:=Rows, _
        NumColumns:=Cols, _
        AutoFitBehavior:=wdAutoFitFixed)
        ActiveDocument.Tables(1).Columns(1).Width = CentimetersToPoints(Width1)
        ActiveDocument.Tables(1).Columns(2).Width = CentimetersToPoints(Width2)
        ActiveDocument.Tables(1).Columns(3).Width = CentimetersToPoints(Width3)
        ActiveDocument.Tables(1).Columns(4).Width = CentimetersToPoints(Width4)
        ActiveDocument.Tables(1).Columns(5).Width = CentimetersToPoints(Width5)
        ActiveDocument.Tables(1).Columns(6).Width = CentimetersToPoints(Width6)
        ActiveDocument.Tables(1).Columns(7).Width = CentimetersToPoints(Width7)
    End Function
    2. A macro to fill table
    Public Function FillTabRowNo2(RowNo As Integer, S1 As String, S2 As String, S3 As String, _
                                 S4 As String, S5 As String, S6 As String)
        ActiveDocument.Tables.Item(1).Cell(RowNo, 1).Range.Text = RowNo
        ActiveDocument.Tables.Item(1).Cell(RowNo, 1).Range.Paragraphs.Alignment = Alig2
        ActiveDocument.Tables.Item(1).Cell(RowNo, 2).Range.Text = S1
        ActiveDocument.Tables.Item(1).Cell(RowNo, 3).Range.Text = S2
        ActiveDocument.Tables.Item(1).Cell(RowNo, 4).Range.Text = S3
        ActiveDocument.Tables.Item(1).Cell(RowNo, 5).Range.Text = S4
        ActiveDocument.Tables.Item(1).Cell(RowNo, 5).Range.Paragraphs.Alignment = 2
        ActiveDocument.Tables.Item(1).Cell(RowNo, 6).Range.Text = S5
        ActiveDocument.Tables.Item(1).Cell(RowNo, 6).Range.Paragraphs.Alignment = 2
        ActiveDocument.Tables.Item(1).Cell(RowNo, 7).Range.Text = S6
        ActiveDocument.Tables.Item(1).Cell(RowNo, 7).Range.Paragraphs.Alignment = 2
    End Function
    best regards
    John

  • How to create macros in SAP FI?

    Hi,
    Can I any one tell me how to create a macro in SAP for clrearing errors in SM35, all the errors are sam type.
    Regards
    Nama

    Hi Nama,
    I do not think a macro will solve this.
    Check the below link whether this helps
    http://help.sap.com/saphelp_scm70/helpdata/EN/69/c250c34ba111d189750000e8322d00/frameset.htm
    Regards
    R. Senthil Mareeswaran.

  • Creating macro converting docx files into pdf

    Hello,
    I'm trying to create a macro that automatically find all .docx and .xlsx files into selected folder and convert them into PDFs files. I already make something but it converts too much (for example gifs files). Can you help me in that?
    Thanks in advance for your help.
    Robert

    Run this macro from Word:
    Sub ConvertWord2PDF()
    Dim strFolder As String
    Dim strFile As String
    Dim doc As Document
    Dim lngPos As Long
    Dim strPDFName As String
    With Application.FileDialog(4)
    If .Show Then
    strFolder = .SelectedItems(1)
    Else
    MsgBox "You didn't specify a folder!", vbExclamation
    Exit Sub
    End If
    End With
    If Right(strFolder, 1) <> "\" Then
    strFolder = strFolder & "\"
    End If
    Application.ScreenUpdating = False
    strFile = Dir(strFolder & "*.doc*")
    Do While strFile <> ""
    Set doc = Documents.Open(FileName:=strFolder & strFile, _
    AddToRecentFiles:=False)
    lngPos = InStrRev(strFile, ".")
    strPDFName = Left(strFile, lngPos) & "pdf"
    doc.ExportAsFixedFormat OutputFileName:=strFolder & strPDFName, _
    ExportFormat:=wdExportFormatPDF
    doc.Close SaveChanges:=True
    strFile = Dir
    Loop
    Application.ScreenUpdating = True
    End Sub
    and this one from Excel:
    Sub ConvertExcel2PDF()
    Dim strFolder As String
    Dim strFile As String
    Dim wbk As Workbook
    Dim lngPos As Long
    Dim strPDFName As String
    With Application.FileDialog(4)
    If .Show Then
    strFolder = .SelectedItems(1)
    Else
    MsgBox "You didn't specify a folder!", vbExclamation
    Exit Sub
    End If
    End With
    If Right(strFolder, 1) <> "\" Then
    strFolder = strFolder & "\"
    End If
    Application.ScreenUpdating = False
    strFile = Dir(strFolder & "*.xls*")
    Do While strFile <> ""
    Set wbk = Workbooks.Open(Filename:=strFolder & strFile)
    lngPos = InStrRev(strFile, ".")
    strPDFName = Left(strFile, lngPos) & "pdf"
    wbk.ExportAsFixedFormat Type:=xlTypePDF, Filename:=strFolder & strPDFName
    wbk.Close SaveChanges:=True
    strFile = Dir
    Loop
    Application.ScreenUpdating = True
    End Sub
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • VB UI builder, RAD, CASE Wizard for creating macro for Excel 2010?

    Hello, I wonder if it is available a: rad, case, UI, framework, application wizard that using VBA as its engine may easy the process to create a macro excel 2010; here the link: https://www.dropbox.com/s/62r5wwgf0ziy5ht/sheet.xlsm to the sheet for an example
    of what I mean. It is not about a macro recorder task; it is not interactive. Thank you.
    Regards, Giuseppe

    Thank you for your interest, this is another link for the same file: http://www.adrive.com/public/rBdrRn/sheet.xlsm
    Regards,
    Giuseppe

  • Creating Macros in AW6 on OSX

    I would like to set up some macros in Appleworks 6 wordprocessor and am running OSX Tiger. Can anyone tell me how to do this? Annoyingly I have to use Word all the time at the moment because of this problem.
    iBook   Mac OS X (10.4.2)  

    Hello
    Here is a script's skeleton.
    property clipPath : "Macintosh HD:Applications:AppleWorks 6:Extraits:Événements:cadeau"
    tell application "AppleWorks 6"
    activate
    select document 1
    tell document 1 (* the opened doc in which you want to put the clip *)
    my grab_clip(clipPath) (* grab the clip from the HD *)
    select menu item 5 of menu 3 (* paste in the original document *)
    end tell
    end tell
    on grab_clip(cp)
    tell application "AppleWorks 6"
    activate
    open cp (* open the clip file *)
    tell document 1
    select menu item 3 of menu 3 (* Cut the clip from the temp draw document *)
    end tell
    close document 1 without saving (* close the temp Draw doc *)
    end tell
    end grab_clip
    Yvan KOENIG (from FRANCE lundi 23 janvier 2006 9:46:39)

  • Creating Macros for Smart Art Organization Chart in Excel 2011 for Mac

    Hey everyone, I have been trying to figure out how to create a chart of employee's names, titles and who they report to that will dynamically update a smart-art organization chart. 
    I'm using Excel 2011 for mac.
    Any help would be grand
    Thanks!

    Hello,
    I'd recommend asking Office for Mac related questions on the
    http://www.microsoft.com/mac/support site or
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011?tab=Threads instead.

  • Any way to create Macro in Adobe Standard 9 to automate signing?

    Hi,
    I have Adobe Acrobat Standard 9.  Is there any way to automate the digital signing process.  It takes about 10 steps to do this manuall which is a pain. Is there any way to do this via Adobe itself or is there a 3rd party software that can do that?
    Thanks
    KEash-doc

    Are you asking about signing an existing digital signature field that exists in the document, or something else such as: Advanced > Sign & Certify > Sign Document

  • Still learning Numbers; want to create a "macro"

    I'm using an iMac 27, running the most current update of OS X Mavericks.  Having crossed over from 20 years of Excel, I need help learning how to accomplish the following in Numbers (most current update, running on said iMac, OS X Mavericks):
    I have a spreadsheet in Numbers where I have codified my library item activities.
    For example, I have columns capturing STATUS, LOCATION, TITLE, AUTHOR, DUE DATE, with data in them like this:
    100     ASC     Numbers for Idiots     Author, Name     Due date 06/30/14
    What Numbers functionality do I need to research in order to create a function that when activated creates a Reminder item so that will get a reminder when the item is due?
    I'd have created a Macro or whatever the Excel programming language is for this kind of cross-over, but I have had difficulty figuring out what Numbers can do in this regard and what I need to study in order to create this function.
    Thanks.
    Darrell

    As far as I know, you can use AppleScript Editor to create macros. I'm not sure if it will work the way you need.
    Another solution is to use conditional highlight for change style of items close to due date. But you won't have a reminder. Just a different visual style.

  • Step by step to create planning book & Macro's behind it   I am a ABAPer

    Recently I have been shifted  from R/3 to Apo ; Want to know the creation of planing book & the creation of Macro workbench playing behind planning book .
    To create planning book.
    To create Macro  & how to relate a planning book with the macro.
    Step by step process from simple to complex .
    Different process to programe a macro .
    I can understant ( rather I know ) how to relate  a badi (Enhancement spot ) to a macro & but please guide me how to define a row of a planing book : such as how to define the row 'Avg Weekly Forcast' of planing book in a single varriable as  'ZAVGWKFST' to capture it at badi in the  parameter I_T_LINES[]
    (component - FELDH).
    To create  a custom Button in a planning book & how to program.
    I have many broken links while I try to know it by myself.

    Hi amitabha,
    Please find below the detailed steps to define a planning book:
    A planning book defines the content and the layout of the interactive planning screen. Planning books are used in Demand Planning and Supply Network Planning. They allow you to design the screen to suit individual planning tasks. A planning book is based on a planning area. You can create several user-specific data views in a planning book. In this step, you create a planning book for Demand Planning.
    Procedure
    1.     Access the activity using one of the following navigation options:
    SAP SCM menu     Advanced Planning and Optimization  Demand Planning  Environment  Current settings  Define Planning Book
    Transaction code     /SAPAPO/SDP8B
    2.     Enter the planning book DP_001 and choose Create.
    The Planning Book Wizard dialog box is displayed.
    3.     Make the following entries:
    Field name     User action and values
    Planning Book     Enter the planning book DP_001
    Planning book text     Demand Planning
    Planning area     Select the planning area DP_001 and choose Enter
    Manual Proportion Maintenance     X
    Promotion     X
    Univariate forecast     X
    4.     Choose Continue.
    5.     Assign the following key figures from planning area to the planning book by using drag and drop or choose Add all new Key Figures to add all key figures:
    Description     Value     Comment
    History     9AVHISTORY     Relevant for Scenario MTS
    Forecast     9ADFCST     Relevant for Scenario MTS and VMI
    Promotion 1     9APROM1     Relevant for Scenario MTS
    Forecast (addition.)     9AAFCST     Relevant for Scenario MTS
    Planned Price     9APRICEFC     Relevant for Scenario MTS
    Sales Forecast     9AREVFC     Relevant for Scenario MTS
    Production (Planned)     9APPROD     Relevant for Scenario MTS
    Manual Correction     9AMANUP     Relevant for Scenario MTS
    Additional Field 1     9AADDKF1     Relevant for Scenario VMI
    Additional Field 2     9AADDKF2     Relevant for Scenario VMI
    Additional Field 3     9AADDKF3     Relevant for Scenario MTS
    Additional Field 4     9AADDKF4     Relevant for Scenario MTS
    Additional Field 5     9AADDKF5     Relevant for Scenario MTS
    The Proportional factor APODPDANT key figure is automatically added to your planning area when you create the planning area. You do not have to add this key figure yourself and assign it to the planning book in this step. When you create the respective view, this key figure will be automatically there for your selection.
    6.     Choose Continue.
    7.     Assign the following characteristics from the planning area to the planning book by using drag and drop:
    Description     Value
    APO Location     9ALOCNO
    APO Product     9AMATNR
    Brand     9ABRAND
    Sales Organization     9AVKORG
    APO Destination Loc.     9ALOCTO
         The characteristic 9AVERSION (APO Planning Version) will be added to the planning book automatically after you complete this step.
    9.     Choose Continue to go to the Data View tab (the Key Fig. Attrib tab is available in the change mode only after you have completed the planning book).
    10.     On the Data view tab; enter the following values:
    Field name     User action (Scenario MTS)     User action (Scenario VMI)
    Data view     DP_Standard     VMI_Standard
    Data view description     Demand Planning     Demand Planning
    TB profile ID (future)     DP_4Weeks_5Month     DP_4Weeks_5Month
    TB profile ID (history)     DP_12Month     DP_12Month
    Status     3 (Changeable)     3 (Changeable)
    11.     Choose Enter.
    12.     Select Visible and select the date as of which you wish the past planning horizon to be visible when this data view is opened.
    13.     Choose Continue, and assign the following key figures from the planning book to the data view for either the MTS or the VMI scenario, keeping the same order as in the table:
    Make-to-Stock
    Key Figures      Description
    9AVHISTORY     History
    9ADFCST     Forecast
    9APROM1     Promotion 1
    9AAFCST     Forecast (additional)
    9APRICEFC     Planned Price
    9AREVFC     Sales Forecast
    9APPROD     Production (Planned)
    9AMANUP     Manual Correction
    9AADDKF4     Additional Field 4
    Vendor-Managed Inventory
    Key Figures      Description
    9AADDKF1     Additional Field 1
    9AADDKF2     Additional Field 2
    9ADFCST     Forecast
    14.     Choose Complete.
    15.     When the Planning Wizard prompt appears, choose Yes to complete the planning book and data view.
    16.     On the initial screen, change the planning book you have just created by choosing Edit.
    17.     If you are installing the VMI scenario, continue with step 21 (entering a free text for the key figures).
    If you are installing the Make-to-Stock scenario, repeat steps 9 to 12 to create the following views:
    Views     View Description     Key Figures
    DP_CLP     COLLABORATIVE DEMAND PLANNING     
              History
              Forecast
              Forecast (additional)
    DP_RELEASE     DEMAND PLANNING - RELEASE VIEW     
              Manual Correction
    18.     On the Data View tab page, specify the following TB profile IDs for the DP_RELEASE view,
    Field name     User action and values
    TB profile ID (future)     DP_12Month
    TB profile ID (history)     blank
    19.     Create the remaining views for the Make-to-Stock scenario according to the steps 9-12:
    Views     View Description     Key Figures
    DP_LOGISTICS     DEMAND PLANNING - LOGISTICS VIEW     
              Forecast
              Production (Planned)
    DP_SALES     DEMAND PLANNING - SALES VIEW     
              History
              Forecast
              Forecast (addition.)
              Planned Price
              Sales Forecast
              Manual Correction
    DP_PROP     DEMAND PLANNING - PROPORTIONAL FACTOR VIEW     Proportional Factor
    To modify the proportional factors manually, you need to create a separate data view containing only the APODPDANT key figure to control the authorization to change these factors. This key figure is a default value in the view and is thus invisible, so you do not need to assign any key figure from the right list in this view.
    20.     Choose Complete.
    21.     Go to the Key fig. attributes tab, select the FreeText radio button and make the following entries for each key figure. Choose Save Setting after entering the data for each key figure (depending on your scenario).
    Key Figures     Free Text     Relevant for scenario
    9AVHISTORY     Historical Data     MTS
    9ADFCST     Statistical Forecast     MTS and VMI
    9APROM1     Promotion     MTS
    9AAFCST     Sales Forecast     MTS
    9APRICEFC     Planning Price     MTS
    9AREVFC     Sales Revenue Forecast     MTS
    9APPROD     Logistics Forecast     MTS
    9AMANUP     Final Forecast     MTS
    9AADDKF1     VMI Historical Data     VMI
    9AADDKF2     VMI Customer Forecast     VMI
    9AADDKF3     u2013     MTS
    9AADDKF4     Forecast Deviation     MTS
    9AADDKF5     Customer Forecast     MTS
    22.     Choose Complete and exit the planning book maintenance.
    Steps to create macros in macro wrokbench:
    3.7     Creating Macros (SAP APO)
    Use
    You can use advanced macros to perform complex calculations quickly and easily. Macros are executed either directly by the user or automatically at a predefined point in time. When defining advanced macros, you work in a special desktop environment known as the MacroBuilder.
    In total, four macros are created in the Demand Planning building block. They are all defined for the planning book DP_001. You create three macros for forecast calculation according to the following instruction. The chapter Creating the Macro for Consensus-Based Planning describes how to create the alert macro for consensus-based planning.
    In the DP_STANDARD view of the planning book DP_001, you create two macros:
    The first macro is used for the standard and consensus-based planning. The system calculates the arithmetic average of Statistical Forecast, Sales Forecast and Logistics Forecast, the result of average forecast data plus Promotion Data is inserted in the Final Forecast cell. It enables the user to consider the forecast input and the promotion plan from different departments within the company. The planner can make manual adjustments and enter the final agreed forecast into the Final Forecast cell. All of this information can be shown in the planning book screen.
    The second macro multiplies the Final forecast data with the Planned price to calculate the sales volume. The third macro is an alert macro used for highlighting exceptional situations in consensus-based planning.
    In the DP_SALES view of the planning book DP_001, you create the fourth macro. This macro multiplies the Final forecast data with the Planned price to calculate the sales volume, which is the same as the one in the standard view.
    3.7.1     Creating Macros for the Standard View
    1.     Access the activity using one of the following navigation options:
    SAP SCM menu     Advanced Planning and Optimization  Demand Planning à Environment à Current settings à Define Planning Book
    Transaction code     /SAPAPO/SDP8B
    2.     Enter the name of the planning book: DP_001
    3.     Select Data view DP_standard.
    4.     Choose Edit.
    5.     Choose    MacroBuilder  MacroBuilder   Data view.
    3.7.1.1     Creating the Macro for Consensus-Based Planning
    1.     Right-click the macro node below the planning table and choose Create New Macro  Add macro. In the APO Macro Builder dialog box, enter a descriptive text for the macro, for example, Forecast + Promotion  Final Forecast. Choose Continue.
    2.     Right-click the macro and choose Add macro Element  Step.
    In the APO Macro Builder dialog box, in the descriptive text section, enter a name for the macro step, for example, First Step and choose Continue.
    3.     Right-click the macro step and choose Add Element (Result Level) à Add results row.
    In the APO Macro Builder dialog box, choose Final Forecast in the Row field. Choose Adopt.
    4.     Right-click the result row you have just created and choose
    Add Element (Argument Level) à Add Operator/Function.
    In the APO Macro Builder dialog box, choose u201C(u201C.
    5.     Right-click the operator/function you have just created and choose
    Add Element (Argument Level) à Planning Table Element à Append argument row. In the APO Macro Builder dialog box, choose Statistical Forecast in the Row field.
    6.     Right-click the argument row you have just created and choose
    Add Element (Argument Level) à Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201C+u201D.
    7.     Right-click the operator/function you have just created and choose
    Add Element (Argument Level )  Planning Table Element  Append argument row. In the APO Macro Builder dialog box, choose Sales Forecast in the Row field.
    8.     Right-click the argument row you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201C+u201D.
    9.     Right-click the operator/function you have just created and choose
    Add Element (Argument Level )  Planning Table Element  Append argument row. In the APO Macro Builder dialog box choose Logistics Forecast in the Row field.
    10.     Right-click the argument row you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201C)u201D.
    11.     Right-click the operator/function you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201C/u201D.
    12.     Right-click the operator/function you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, enter u201C(u201D.
    13.     Right-click the operator/function you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201CSIGN()u201D and change it to u201CSIGN(u201C.
    14.     Right-click the operator/function you have just created and choose
    Add Element (Argument Level )  Planning Table Element  Append argument row. In the APO Macro Builder dialog box, choose Statistical Forecast in the Row field.
    15.     Right-click the argument row you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201C)u201D.
    16.     Right-click the operator/function you have just created and choose
    Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201C+u201D.
    17.     Right-click the operator/function you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201CSIGN()u201D and change it to u201CSIGN(u201C.
    18.     Right-click the operator/function you have just created and choose Add Element (Argument Level )  Planning Table Element  Append argument row.
    In the APO Macro Builder dialog box, choose Sales Forecast in the Row field.
    19.     Right-click the argument row you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201C)u201D.
    20.     Right-click the operator/function you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201C+u201D.
    21.     Right-click the operator/function you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box choose the character u201CSIGN()u201D and change to u201CSIGN(u201C.
    22.     Right-click the operator/function you have just created and choose Append argument row. In the APO Macro Builder dialog box, choose Logistics Forecast in the Row field.
    23.     Right-click the operator/function you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201C)u201D.
    24.     Right-click the operator/function you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, choose u201C)u201D.
    25.     Right-click the operator/function you have just created and choose
    Add Element (Argument Element)  Append Operator/Function.
    In the APO Macro Builder dialog box, enter u201C+u201D.
    26.     Right-click the operator/function you have just created and choose
    Append argument row.
    In the APO Macro Builder dialog box, choose Promotion in the Row field.
    27.     Select the macro and choose   Check to check it. Generate the macro by choosing   Generate.
    28.     Move the macro by using drag and drop to the Events section and to the Default folder in the upper right screen area.
    29.     If you want to continue with the configuration, proceed with the next activity to create the Sales Volume Macro (see below).
    If you want to discontinue the configuration at this point, we recommend that you save your settings. To do this, go back to the Planning book Design screen and choose Save. Choose All Functional Areas when the confirmation prompt appears.
    Hope this should help you.
    Regards,
    Umesh

  • Difference between bex user exit and macros in functionality?

    Hi all,
    I need to create a report on material master data. I created an infoset on 0material and 0mat_plant. In the requirem
    ent, I have a report containing different material numbers followed by attributes in each row. the final column in each
    row should be calculated using logic. the logic involves comparing different row values and arrive at final conclusion.
    the logic comprises of large number of if conditions. so should i use bex user exit or excel macros?
    what is the difference between user exit and macros in funcitonalilty?
    is there an issue transporting the macro to Prod for end users to use?
    any performance criteria?
    Any how to documents ..will be of a lot of help
    plz send them to [email protected]
    Message was edited by:
            ravi a

    Hi,
    Macros offer a powerful and flexible way to extend the features of MS Excel. You can either create a macro using VB code or Record a macro. Use Alt+F11 for creating macro using VB code.
    You can refer to Microsoft help site or this link for more details:
    http://www.taltech.com/support/sw_tricks/exmacros.htm
    User-exits are empty subroutines that SAP Developers have provided for you.You can fill them with your own source code.Technically this is a modification.Customer exits are nothing but a include in customer name space will be provided in the function module which starts with CALL CUSTOMER.You can fill them with your own source code.Technically this is an enhancement.
    look into following links for procedure to find and use user-exits transaction for finding user-exits is 'SMOD'
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/user_exits_tutorial.html
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

  • How to export the data from an excel file to Oracle database by using macro

    Hi,
    I want to export data from an excel file into Oracle database.There is one method that by creating the macros through excel we are able to do this.
    can anybody please send me the code to create macros?
    Thanks in advance.
    Regards,
    Surendra.V

    There are several resources on the web, but you could start analyzing if this code fits your needs --> VBA Macro for Excel 2003 Export of Text File with Comma and Quote Delimiters.
    ~ Madrid

Maybe you are looking for

  • I recorded a 8min video on my brand new ipod touch 4g 9 gigs,i had .9gs bef

    i recorded a 8min video on my brand new ipod touch 4g 9 gigs,i had .9gs before the vid,after i was done recording it,it said it saved it,but its not in my photos but it took up the memory im down to .3gs now in itunes it says i have 281 photos but on

  • Error in posting document in Internal order

    Hello All, One of my user is not able to post a document in a particular Internal Order But he can post in all other Internal Orders I am not able to get any solution Pls can anybody come out with a solution with highly appreciable Rgds, Usha

  • Transfer of employee loan

    Hi, I have a following scenario: " Employee had taken a loan amounting 10lacs from Company code 1000 and now gets transferred to company code 2000. Employee wants that my existing loan of Rs. 8Lacs, should gets transferred to another company code 200

  • Unable to set tooltip for item (sap.ui.core.Item)

    sap.ui.core.Item does not have the property 'tooltip'. But it borrows 'tooltip' property and setTooltip( ), getTooltip( ) methods from sap.ui.core.Element. Still, if I set the tooltip for item, it is not reflected. What might be wrong? Consider the f

  • Timelines have added "black" for no reason...

    Hi there, I'm seriously struggling to understand as to why I'm suffering this problem. The deal is I've a fairly large DVD9 project in production and out of the 35 timelines 3 of them have mysteriously added around 30-40 seconds of black to themselve