PS -  Building Blocks

Hi,
Could anybody tell the main PS building blocks?
I'm checking a baseline system in which a some PS building blocks were loaded, but I don't know which.
There is a sales document AP Project Quotation and the General item category group 0008 "PS: PlFac sin conf."... but I don't know through which building block was used in order to create this objects.
Any idea?
Thanks

You cannot build this !!!!!!   SAP has documented various procedures and you can go through this link for more information.
[Building Block Library |http://help.sap.com/bestpractices/bblibrary/bblibrary_start.htm]
thanks
G. Lakshmipathi
Edited by: Lakshmipathi on Jan 25, 2010 6:50 PM
There was a typographical error.  The first sentence should have been You cannot whereas originally it was YOU CAN

Similar Messages

  • What are the required building blocks to place part of an application into the cloud?

    Hi there,
    I have a Windows client/server business management/accounting application written in VBA/Access.
    I am thinking of making small parts of the application available in the cloud, for example QUOTES.
    First of all, I am not sure if this forum is the right place to ask these questions!
    I would like users to be able to access their quotes via tabled or smart phone and be able to add or modify records.
    I am interested to find out what building blocks are required to achieve this.
    My initial thoughts are as follows:
    The user exports their quotes from the application (A) in XML format
    The user uploads the XML data into SQL server on my website (?)
    The user logs into a mobile app (B) that is connected to the SQL server
    The user adds/modifies records in app (B)
    The user then downloads their records in XML format from SQL server from my website (?)
    The XML data is read and updated in application (A)
    In terms of the SQL server I was also wondering if each user should have their own database or whether all users should use the same table QUOTES for example?
    Any hints or tips would be really appreciated and many thanks in advance...
    Have a wonderful day...
    Kind regards,
    Michael

    Hi Michael,
    I’m afraid that it is not the correct forum for this issue, since this forum is to discuss the VS IDE issue.
    I have a Windows client/server business management/accounting application written in VBA/Access.
    Just to make this issue clearly, is it related to the Office development like this MSDN document?
    http://msdn.microsoft.com/en-us/library/ee814735(v=office.14).aspx
    If it is related to the Office development, I suggest you post this issue to the
    Office development forum like this thread “How
    to move an Access App with VBA to the Cloud w/o re-coding? Amazon Web Services Virtual Machine ? Or What ?”.
    If not, please feel free to let me know, I will help you find the correct forum for this issue.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to determine the time building block type in hxc_time_building_blocks

    Is there a way for me to determine what the time building block type is in hxc_time_building_blocks? I need to query the table and only select entries that are absence related (Vacation, Holiday, Sick Leave). I have the person's absence data from the table per_absence_attendances, I need a way to use the data from that table to get the time building block from hxc_time_building_blocks.

    I could ask "supported by what?" but I assume you will
    be the one supporting them. Here's a link to the
    latest list of registered MIME types.HERE's the link...
    ftp://ftp.isi.edu/in-notes/iana/assignments/media-types/media-types

  • How to get the name of the selected building block in a building block content control?

    Hello,
    How can I obtain the name of the selected building block in a building block content control?
    I want to use this together with an on exit-event to populate other content Controls depending on the name of the selected building block item.
    Environment: Word 2010.
    Thanks,
    Peeter

    Hi Peeter,
    As far as I know the building block is the pre-built content, and the
    BuildingBlock object represents a building block in a template. After add the building block to the document, it inserts the content to the document.
    Building blocks are stored in the templates, therefore, to access the building blocks available for a document, we need to access an attached template.
    So, I think, we can’t obtain selected building block in the document.
    There are some links that may benefit you:
    # BdingBlock Object (Word)
    https://msdn.microsoft.com/en-us/library/office/ff192414.aspx?f=255&MSPPError=-2147217396
    # Working with Building Blocks
    https://msdn.microsoft.com/en-us/library/office/ff837878.aspx
    # Set the Building Blocks That You Can Use for a Content Control
    https://msdn.microsoft.com/en-us/library/office/ff197523.aspx
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Why wont this Macro work with my custom watermarks, but finds the built-in building blocks from office 2010?

    Option Explicit
    Sub BatchProcess()
    Dim strFileName As String
    Dim strPath As String
    Dim oDoc As Document
    Dim oLog As Document
    Dim oRng As Range
    Dim oHeader As HeaderFooter
    Dim oSection As Section
    Dim fDialog As FileDialog
    Set fDialog = Application.FileDialog(msoFileDialogFolderPicker)
    With fDialog
        .Title = "Select folder and click OK"
        .AllowMultiSelect = False
        .InitialView = msoFileDialogViewList
        If .Show <> -1 Then
            MsgBox "Cancelled By User", , _
                   "List Folder Contents"
            Exit Sub
        End If
        strPath = fDialog.SelectedItems.Item(1)
        If Right(strPath, 1) <> "\" _
           Then strPath = strPath + "\"
    End With
    If Documents.Count > 0 Then
        Documents.Close savechanges:=wdPromptToSaveChanges
    End If
    Set oLog = Documents.Add
    If Left(strPath, 1) = Chr(34) Then
        strPath = Mid(strPath, 2, Len(strPath) - 2)
    End If
    strFileName = Dir$(strPath & "*.doc?")
    While Len(strFileName) <> 0
        WordBasic.DisableAutoMacros 1
        Set oDoc = Documents.Open(strPath & strFileName)
        'Do what you want with oDoc here
        For Each oSection In oDoc.Sections
            For Each oHeader In oSection.Headers
                If oHeader.Exists Then
                    Set oRng = oHeader.Range
                    oRng.Collapse wdCollapseStart
                    InsertMyBuildingBlock "ASAP 1", oRng
                End If
            Next oHeader
        Next oSection
        'record the name of the document processed
        oLog.Range.InsertAfter oDoc.FullName & vbCr
        oDoc.Close savechanges:=wdSaveChanges
        WordBasic.DisableAutoMacros 0
        strFileName = Dir$()
    Wend
    End Sub
    Function InsertMyBuildingBlock(BuildingBlockName As String, HeaderRange As Range)
    Dim oTemplate As Template
    Dim oAddin As AddIn
    Dim bFound As Boolean
    Dim i As Long
    bFound = False
    Templates.LoadBuildingBlocks
    For Each oTemplate In Templates
        If InStr(1, oTemplate.Name, "Building Blocks") > 0 Then Exit For
    Next
    For i = 1 To Templates(oTemplate.FullName).BuildingBlockEntries.Count
        If Templates(oTemplate.FullName).BuildingBlockEntries(i).Name = BuildingBlockName Then
            Templates(oTemplate.FullName).BuildingBlockEntries(BuildingBlockName).Insert _
                    Where:=HeaderRange, RichText:=True
            'set the found flag to true
            bFound = True
            'Clean up and stop looking
            Set oTemplate = Nothing
            Exit Function
        End If
    Next i
    If bFound = False Then        'so tell the user.
        MsgBox "Entry not found", vbInformation, "Building Block " _
                                                 & Chr(145) & BuildingBlockName & Chr(146)
    End If
    End Function
    This works, using the ASAP 1 watermark that is in bold. ASAP 1 is a built-in building block, if i just rename this to ASAP, but save it in the same place with buildingblocks.dotx it wont work. What do i need to do to be able to use this with my custom building
    blocks?

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Excel, this issue is related to Office DEV, please post the question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to reproduce Building Blocks Synth apple loop

    hi, a very specific question that you cant answer unless you listen to sample in question -  a sample in LPX apple loops called Building Blocks Synth. There is a bass line and a recurring synth chord which closes out every time it appears I  think with some kind of filter effect - a bit like a closing hi hat on a plucky synth - a sound I  just think is fantastic, but for the life of me cannot work out how it is done. If you get a chance can you cast your expert ear and for those experts , let me know how you think you get the synth sound and  effect. You can hear it better if you copy into a track and boost the high end and low end  EQ .
    I would not normally ask such a question on here but it is bugging me and I could spend my life looking at tutorials to try and work out what it is but not get there.
    Many thanks in advance for anybody who takes the time to listen to it.
    A related question if anyone happens to know: if I include the loop in a song and successfully commercialise it, is it royalty fee?

    I have a a problem a bit like the one described previously.
    In Set. 2007 I bought my first mac...an iMac 24".
    3-4 months later I had trouble with my HD. The tech support told me that my HD was damaged and could not be fixed. They couldn`t explain why, but they changed my old HD with a new one and problem solved.
    Last month as I was installing the snow leopard operating sistem my iMac froze in the midle of the instalation procedure. I turned it off holding down the power button, and when I turned the power back on I got that flashing folder with a question mark in the middle. In short...after trying everything (formating, partitioning etc) I took it to the shop to hava a look.
    The tech guy just got off the phone with me saying that my HD was damaged and could not be repaired. The only solution is to replace it with a new one.
    In 2 years I had to change 2 HD`s!!!!
    My only guess is that bootcamp might have something to do with it cause it frooze the computer lots of times requiring me to turn it off by pressing and holding down the power button one to many times.
    Does anybody know any other reason for this to have happended?
    Could the installation of snow leopard have had anything to do with this?

  • What is the transaction code for running Building block & ECatts?

    Hai guys,
    I am building a new organisation structure using Building block Library. Can somebody tell me which transaction Code to use as well as from where I can download the variant files?
    Thanks in advance,
    Regards,
    maheshwaran. I

    Hello Maheshwaran,
    For the beifit of others looking for this question,
    To create a building block : /smb/bbi   -- > building block builder. --> create new Building blocks.
    This has to be attached to a scenario and inturn to a solution.
    To downlad the variant files : Go to Transaction SECATT  --> Enter the eCatt configutation name --> click on display.
    Now in the Edit Menu, you can see the option to download variant files.
    Regards,
    Karthi

  • Is anyone aware of a Building Block for Blackboard and iTunesU?

    We are having some difficulties getting our authentication up and running using our Blackboard system as the transfer authority to iTunesU. We are trying this with the Perl script but may not be working at this right. I thought that there might be enough Blackboard users and programming gurus out there that perhaps someone is working on a Building Block to use with Blackboard and iTunesU.

    We have a process to go from Desire2Learn to iTunesU. You should be able to do the same sort of thing with blackboard.
    What we did, is we setup a javascript post request coming out of Desire2Learn. This post request contains the course name, username and a few other important bits of information. This request goes to one of our servers which processes the passed information, and generates the necessary itunes tokens and then startes the itunes u authentication process.
    There is no reason why you couldn't do something similiar in blackboard. Either way, you are going to need a "middleman" server to intercept the request out of Blackboard, and then process it and iniatiate the iTunes U authentication process.

  • Building blocks in SAP-SD

    what is building blocks in SAP-SD? and how it is prepare?

    You cannot build this !!!!!!   SAP has documented various procedures and you can go through this link for more information.
    [Building Block Library |http://help.sap.com/bestpractices/bblibrary/bblibrary_start.htm]
    thanks
    G. Lakshmipathi
    Edited by: Lakshmipathi on Jan 25, 2010 6:50 PM
    There was a typographical error.  The first sentence should have been You cannot whereas originally it was YOU CAN

  • Autonumber building blocks

    Using FM 9.0p230, I don't see anything in my autonumber building block scroll list.  I've seen 'em before...  did I unknowingly toggle them off?  If so, how do I toggle them back on?
    I've closed & reopened the application, and even gone to a new, blank document.  No building blocks.  What's up with that?

    I am pretty sure this was fixed in 9.0p250, which you should be using. Really.
    Until then you may look up the valid building blocks in the dos and enter them manually.
    - Michael

  • Best Practice Building Block Library not accessible in Firefox

    Hello SAP Documentation Team,
    I've just get aware of the <a href="http://help.sap.com/bp_bblibrary/500/BBlibrary_start.htm">Best Practice Building Block Library</a>. Unfortunately it can't be used with Firefox 1.5.0.4 because of a script error. I see the dropdown lists but when I select for example Country "Germany" nothing happens. In IE it works perfect.
    Regards
    Gregor

    Hope that this will change with later Best Practice releases.

  • Best Practices Building Blocks for CRM 5.0 & CRM 2007

    Hi Experts,
    Where can I find Best Practices Building Blocks for CRM 5.0 & CRM 2007?
    Thanks in advance,
    Vishwa.

    Hi
    Go to: http://help.sap.com/
    Click on the Best Practices Tab,
    Then Cross-Industry Packages,
    Then Customer Relationship Management
    They should all be under there.
    Regards
    Arden

  • Looking for Best Practice Configuration Building Block for Material Ledger

    I need to configure and create the Material Ledger for a customer in the near future.  Could someone help me find the Best Practice Configuration Guide for Material Ledger?
    Thanks in advance!

    The official config is in Best Practices for Primary Steel
    there is a delta building block which contains Material Ledger configuration
    http://help.sap.com/bp_bblibrary/500/HTML/T02_EN_ZH.htm

  • When Building Blocks Explode in Microsoft Word

    Pushing out a Word 2010 SP1 template to approximately 150+ machines. There are several building blocks on the template, two of which are causing me problems. The major difference seen is that these problematic building block options contain nested content
    controls.
    When I click the option in the building block with nested content controls, the building block control stretches to 19 pages.  The option should only be the length of an ordinary five sentence paragraph.
    Fired up a Virtual Machine to see how the template behaved there.  It works fine.  Tried on a laptop... no problem.  This led me to believe that since I had a dev machine with visual studio and vsto and such, that my machine was just 'special'.
    Until... one of my beta users ran into the same problem with there basic non dev laptop.
    Have tested on about 10 machines and so far it is just the 2 that are having problems.  Have un/re installed which was a no go.
    Any ideas as to what causes this?  Missing Update, Registry Setting, Word Setting

    Do not delete normal.dot or normal.dotm!
    You can rename these as a diagnostic but deleting them can cost you many hours of work without providing any benefit.
    Is Word 2010 the program on each computer?
    Did any of them have earlier versions of Word on them? When they open Word from scratch, do any of them show "Compatibility Mode" in the title bar?
    Charles Kenyon Madison, WI

  • Is there a "signal builder" block in labview

    Hi all,
    I am new to labview and i have the following question. I have build a vehicle model in simulink in which i have applied different types of road inputs. The inputs have been created with the signal builder block, because some of them are really customised potholes and bumps. I am trying to build the same model with labview simulation module. Is there a similar block in order to create my input and if not, do you have any idea how is this possible. I also tried to translate my model into labview but the build the translator was not able to translate the build signal blocks.
    Thanks

    Hi,
    If you are using the Simulation Module, you can actually do the profile easily by combining the Lookup Table block with the Simulation Time. See the VI and picture attached.
    Barp
    LabVIEW R&D - Control Design and Simulation Group - National Instruments
    Barp - Control and Simulation Group - LabVIEW R&D - National Instruments
    Attachments:
    Special Profile.PNG ‏35 KB
    LUT Problem.vi ‏151 KB

  • URGENT : GETTING AN ERROR WHEN I AM QUERYING A BUILDING BLOCK

    I logged into Oracle Forms Runtime. When I Queried a particular building block, I am getting an error:
    "FRM-40735: POST-QUERY trigger raised unhandled exception ORA-04068"
    What could be the reason for getting this error ?
    Thanks,
    JK

    Hi,
    I am able to solve this problem
    Regards
    Satrajit

Maybe you are looking for

  • CD burn from iPhoto 9.1 failing

    Open iphoto 9.1 select recent project Share menu -> Burn Choose Speed: Max Verify Burned data Mount on Desktop Click Burn. A small blue bar drops down from iPhoto for 1/4 second and then slides back up to the top. Nothing else happens. CD is not burn

  • How to turn closed captain on?

    How to turn closed captain on?

  • TOC missing data

    I am trying to produce a Table of Contents for a CS3 document and quite a few of the items that should be in the TOC are missing. I am creating the TOC from one paragraph style and have checked that all the data that I want to appear is set to that s

  • I need tips on programming a 6602 counter/timer

    I am new to Labview but have been a command line programmer for some time.  I have a 6602 card in a PXI system.  I would like to use the internal clock of the 6602 to control the delivery of triggers to various instruments.  These triggers need to be

  • GT70 0ND-204US Windows 7 removed and recovery fails due to drive reformat

    Model Number:GT70 0ND-204US Hello, I was attempting to install Unbuntu from a LiveCD to an external hard drive and I believe during that process I accidentally reformatted the SSD to be an ext4 partition and swap space.  When I rebooted to try to get