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.

Similar Messages

  • Issue in creating stock in APO (APO ABAP)

    Hi all ,
    i am creating stock in APO instance through program using the function module BAPI_STSRVAPS_SAVEMULTI2.
    The issue that i am facing is that while updating the stock for
    a particular product location combination it is not updating the
    stock , rather it is creating a new entry in the Livecache with
    the updated stock for that product.
    Can anyone suggest me what may be the issue.
    Thanks and Regards,
    Syed

    have you seen this weblog
    /people/thomas.jung3/blog/2004/11/15/bsp-150-a-developer146s-journal-part-xiii-developing-abap-webservices

  • 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.

  • Create STO in APO

    Hi Gurus,
    How to create STO in apo( between two plants). May i know the tranaction please
    Regards,
    AJay

    Hi Ajay,
    The following are the transactions which you need to run one after the other
    to get an STO in APO
    1) /SAPAPO/SNP02 - Deployment
    2) /SAPAPO/SNP04 - Transport Load Builder (TLB)
    The pre-requities are demand, transportation lane, integration model for
    purchase orders, etc.,
    Hope this will resolve your query.
    Please confirm
    Regards
    R. Senthil Mareeswaran.

  • Create delivery on APO

    Hi,
    We want to create deliveries on APO sytem. Is it possible ?
    We run /SAPAPO/RRP3 t.code and created order. But this order type is purchase requisition. Wa want to order categroy by delivery .
    Thanks.
    Edited by: Hulya Cetin on Dec 3, 2010 1:36 PM

    Hi,
         I dont know using which T-code you can create Delivery but I can help you using BAPIs available.
    Try to use BAPI BAPI_PIRSRVAPS_SAVEMULTI byu passing ATP category BR to it.
    Or you can try with BAPI  BAPI_POSRVAPS_SAVEMULTI3 also with same category.
    Regards,
    Saurabh

  • Control of Macros in APO DP

    I am using APO DP V5.
    I have two questions regarding the use of macros in DP:
    1. Is it possible to call a macro from within a macro?
    2. I believe it's possible to set up a 'collective macro', so that a group of macros can be executed together. But how do I set up a 'collective  macro' - I cannot see this mentioned in the help documentation.
    Thanks,
    Bob Austin

    1. i suppose what you want is calling a macro if some conditions inside the main macro are satisfied..
    some ideas which might give the same effect:-
    instead of calling a macro from a macro can you not just add the macro you want to call as a step inside the first macro? ( unless you want a different macro level settings)
    alternately you can make the first macro cause a value in a temporary row and use the value in the row to trigger the action of the second row using a condition statement in it
    2. am only rephrasing what Ian said by saying the following about collective macros:
    You define a macro as a collective macro when you create it, by setting the Macro type field to Collective macro. Add the macros already created within the steps. If you have already assigned other elements (steps, conditions, and so on) to it, you can no longer define the macro as a collective macro.

  • 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

  • User exit macros in APO DP macrobuilder

    I am using APO DP V5.
    Can anyone give me an example of how 'user exit' macros are built - I cannot find any good documentation on this point.
    Thanks,
    Bob Austin, Atos Origin

    Mark,
    Thanks for your reply.
    In the APO DP macrobuilder, I specifically want to have a macro which runs some bespoke code.
    I'm not clear how to do this.
    Am I missing something in Note 380352?
    Regards,
    Bob.

  • Creating Infocube in APO - RFC between BW & APO is Mandatory..??

    Hi,
    Does the RFC connection between APO & BW system is required for creating an Active InfoCube in APO System...??
    Or Only RFC connection between APO & ECC system is enough..!!

    Hi Ramesh,
    It depends on your source system. If the source system is not ECC and let us say you want the data to be loaded from a flat file, then you need not have RFC connections setup for creating an active info cube. If you are creating an info cube in APO BW which will get data from external BW, then yes, you need RFC connections between them.
    Regards,
    Umesh

  • 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 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

  • 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)

Maybe you are looking for

  • Static text in Adobe forms

    Hello Experts, I have requirement to create a adobe form which have 90% of static text .I want to know to display those text should i go with standard text(SO10) ot should i directly display it in text-field on the form layout.Or there is any other w

  • ITunes window keeps coming up

    The iTunes library file cannot be saved.  An unknown error occurred  (-54)

  • What is an alternate apple ID used for?

    I noticed in "manage my apple ID" website that I now have an alternate apple ID, its my @me.com email address that I got when activating iCloud way back.  So, it says I can use it in place of my primary apple ID for purchases on iTunes and the App St

  • Unable to test a FPM form based process in HCM Process & Forms ?

    Hi Experts, Am new to HCM Process & Forms, I created my first form on FPM and am trying to test it but am not able to do so.. can you all please help me figure out where I am going wrong. Here is what I am doing ... I have a build a FPM Form Scenario

  • Can I download utorrent in iPod

    Hey guys my name is farhan and I live in u.a.e I just want to know can I download utorrent in iPod