Generate quote off custom object--HTML in narrative duplicates table

Hi,
I am trying to build a quote header and lines off a custom object. Quote header works, but I am using a separate narrative report called from a web link to show the quote item lines data. The narrative section displays my basic table header and lines, but since the report returns two rows for the selected parts, the table with the header and lines is displayed twice, once for each row returned by the report itself.
I just want one instance of the table, one header and two lines, not separate tables for each part.
Here is the sample html placed in the narrative section of the report.
<TABLE BORDER="5" WIDTH="50%" CELLPADDING="4" CELLSPACING="3">
<TR>
<TH COLSPAN="2"><BR><H3>TABLE TITLE</H3>
</TH>
</TR>
<TR ALIGN="CENTER">
<TH>Column A</TH><TD>@5</TD><TH>Column B</TH><TD>@8</TD>
</TR>
</TABLE>
Many thanks for any input.

Hi,
Instead of putting it all in the Narrative section you could use the Prefix and Postfix like below:
<!-- Prefix -->
<TABLE BORDER="5" WIDTH="50%" CELLPADDING="4" CELLSPACING="3">
<TR>
<TH COLSPAN="2">
TABLE TITLE
</TH>
</TR>
<TR ALIGN="CENTER">
<TH>Column A</TH><TH>Column B</TH>
</TR>
<!-- Narrative -->
<TR ALIGN="CENTER"><TD>@5</TD><TD>@8</TD>
</TR>
<!-- Postfix-->
</TABLE>

Similar Messages

  • Is it Possible to create custom Object type in configuration Tab

    Hi ,
    We have object type for table in Development Tab in SOLAR02 , is it possible to create a custom object type to represent the table object type in Configuration Tab.
    Please let me know the steps , if it is possible.
    Best Regards,
    Saravana

    Hi
    You answer for you problem exists and its a common problem but you need to go for this development as mentioned below
    /people/andreas.diebold/blog/2007/02/13/extend-sap-solution-manager-to-manage-new-object-types
    We did long time back
    Hope ur problm and doubt is resolved now
    Regards
    Prakhar

  • Report to generate all custom objects

    Dear experts,
    Is there any report or tool to generate all custom objects in system. I have to retrieve all custom reports, function modules, fuction groups, tcodes, data elements, domain, tables, views, search helps, partner profiles, rfc connections, idoc types, segments types.
    Taj.

    Dear Gautam your reply is helpfull, but as i have mentioned there are many local objects, and also rfc connection names, partner profiles, idoc types, segments types.. will not get stored in request, so cannot query them. Is there any other ways.
    I know a tool called ACE Tool, but i cannot apply here.
    Edited by: Mohd Tajuddin on Apr 28, 2009 1:58 PM

  • Custom OBJECT sizes and HTMLEditorKit

    Hi there all, I have a fairly tricky problem that I'm in a rush to get fixed.
    I need to know how to get a TextComponent (JTextArea etc) to wrap when being displayed as part of a web page in a JEditorKit.
    Don't worry, I'm not writing a HTML editor, but am using HTML as a template for a report with the OBJECT tag being the point where the application inserts custom components. The problem I'm having is that when using JTextArea as one of these components the text doesnt want to wrap and just stays on one line. I tracked the problem to a preferredSize issue and the underlying layout not forcing sizing constraints on the text component, letting it just carry on, on the same line.
    If anyone knows how to get the component to take its width from the parent component but specify its own height, help would be much appreciated.
    Also on a similar note, the ideal solution to this would be to not to use Components at all but override the existing ParagraphView in the text.html package, but I need these View components to be able to show menus and things, which is why I opted for the Component aproach. If anyone knows of an easy way to get these Views to accept events then I think this would be preferable.
    Hope that all makes sense :o)
    Example:
    <html>
       <head/>
       <body>
          <table width="100%">
             <tr><td>Created by <object classid="companyLogo" /></td></tr>
             <tr><td><object classid="companyMotto" /></td></tr>
             <!-- Some other stuff -->
          </table>
       </body>
    </html>This template will display (in a JEditorPane) a table with the text "Created by " then the application will insert an image (the company logo), then the EditorKit will insert another row and the application inserts the company motto. But if the company motto is long then i want it to wrap onto another line, but instead it will just keep going off the edge of the page.
    NOTE I am setting all sizes (pref, min and max) of the JEditorPane and it stays the same size but the text just carries on past the boundry and doesn't get painted.
    Thanks for any help in advance.
    deej

    I fixed the problem, i forgot to put the setLineWrap(true) in there :$ oops. Found an interesting bug tho. Given the HTML :
    <html><head /><body>
       <table width="100%">
          <tr><td>some text</td><td width="100%">some more text</td></tr>
          <tr><td colspan="2"><object classid="paragraph" /></td></tr>
       </table></body>
    </html>I get a wierd resizing problem where the JTextArea i use to display paragraph resizes itself until it has only one line and goes off the side of the page. The only way i found to fix it so far is to place the second row into its own table. Not sure where this bug lies but it was fairly surprising when it first happened.
    deej

  • I built a website for a customer using HTML only, so it would work on everything, but some of the text numbers are not clear on the ipad. It works perfectly on all the other browsers.

    I built a website for a customer using HTML only, so it would work on any browser, and it works perfectly on everything except ipad safari. I'm loosing information with most of my text numbers - instead of being black they are displaying a 'ghost' image (white) of the numbers.
    Is this a memory issue, or cache issue, or something else?  I've downloaded iCab and the site works perfectly with it.
    Also wondering if I can manually reload/refresh web pages in iPad Safari.
    Since most people with iPads will use Safari rather than iCab, I have to tweak this site to work in Safari.

    Detecting phone numbers and making them clickable is a feature of the browser, and rebuilding your web-site links will not make any difference. Its done when the page is shown in the browser, not when the page is created.
    According to the Safari iOS developers guide, you can turn these data detectors off using this code:
    <meta name = "format-detection" content = "telephone=no">
    http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Referen ce/Articles/PhoneLinks.html

  • How to create the data for custom objects in pList

    Hi,
    I am new in developing on iPhone and I don't know much about this area. I would like to ask a question. I couldn't find the answer on this question in apple documentation but I hope Internet community will help me.
    Lets say I have a class called classA. The classA has 2 public properties (or fields):
    *int customIndex*;
    and
    NSString *customTitle;
    My view controller class showMeSomething has a property NSArray which holds the objects of type classA. I would like to load the array from the plist resource file. How do I edit the resource file with initial values or how do I know the format of the plist which can be loaded from using mainBundle for my array of custom objects?
    Thanks!

    Here's some info on working with plists:
    http://developer.apple.com/documentation/Cocoa/Conceptual/PropertyLists/Introduc tion/chapter1_section1.html
    They can be edited with any text editor. Xcode provides a graphical editor for them - make sure to use the .plist extension so Xcode will recognize it.

  • Event Bubbling Custom Object not inheriting from control

    One of the new things flash flex and xaml have are ways which
    the event easily bubbles up to a parent that knows how to handle
    the event. Similar to exceptions travel up until someone catches
    it.
    My goal is to use the frameworks event system on custom
    objects. My custom objects are:
    ApplicationConfiguration
    through composition contains:
    SecurityCollection which contains many or no SecurityElements
    and
    FileSystemCollection.cs which contains many or no
    FileSystemElement objects
    ect ect basically defining the following xml file with custom
    objects.
    [code]
    <ApplicationConfiguration>
    <communication>
    <hardwareinterface type="Ethernet">
    <ethernet localipaddress="192.168.1.2" localport="5555"
    remoteipaddress="192.168.1.1" remoteport="5555" />
    <serial baudrate="115200" port="COM1" />
    </hardwareinterface>
    <timing type="InternalClock" />
    </communication>
    <filesystem>
    <add id="location.scriptfiles" value="c:\\" />
    <add id="location.logfiles" value="c:\\" />
    <add id="location.configurationfiles" value="c:\\" />
    </filesystem>
    <security>
    <add id="name1" value="secret1" />
    <add id="name2" value="secret2" />
    </security>
    <logging EnableLogging="true"
    LogApplicationExceptions="true" LogInvalidMessages="true"
    CreateTranscript="true" />
    </ApplicationConfiguration>
    [/code]
    basically these custom objects abstract the xml details of
    accessing attributes, writing content out of the higher application
    layers.
    These custom objects hold the application configuration which
    contains the users options. The gui application uses these
    parameters across various windows forms, modal dialog boxes ect.
    The gui has a modal dialog that allows the user to modify these
    parameters during runtime.
    basically i manage: load, store, new, edit, delete of these
    configuration files using my custom objects.
    Where would event propagation help in custom objects like
    described above?
    ConfigurationSingleton.getInstance().ApplicationConfiguration.CommunicationElement.Hardwar eInterfaceElement.EthernetElement.RemoteIPAddress
    =
    System.Net.IPAddress.Parse(this.textBoxRemoteEthernetIpAddress.Text);
    The EthernetElement should propagate a changed event up to
    the parent ApplicationConfiguration which would persist this to the
    registry, db, file or whatever backend.
    currently this logic is maintained else where. I serialize
    the root node which compositely serializing the nested nodes and i
    check of the serialization is different from that in the backend
    … This tells me if the dom was modified. It works but i would
    like an event driven system.
    how should i implement bubbling using custom objects?
    3 implementation ideas:
    1) A simple way is to implement a singleton event manager:
    EventManager.RegisterRoutedEvent
    http://msdn2.microsoft.com/en-us/library/ms742806.aspx
    I like this idea but how can you tell which object is nested
    in who… this way the event can be stopped and discontinue
    propagation?
    2) If i use binders as discussed in Apress’s book:
    Event-Based
    Programming Taking Events to the Limit
    basically a binder connects the events between seperate
    objects together… although it would work for my app, I would
    like a more generalized approach so i can reuse the event system on
    future project.
    3) how does flash flex handle this..
    objectproxy.as?
    http://www.gamejd.com/resource/apollo_alpha1_docs/apiReference/combined/mx/utils/ObjectPro xy.html#getComplexProperty()
    >Provides a place for subclasses to override how a complex
    property that needs to be either proxied or daisy chained for event
    bubbling is managed.
    how does these systems all work....? Reflection ?
    this way i can simulate this on my own custom classes.
    Thanks!

    I have a strong sensation that the OSMF project is quite dead.
    no new submits since 2010, the contact form on the offical OSMF
    project website http://www.opensourcemediaframework.com/
    returns a PHP error.
    and many unanswered questions about OSMF in this forum.
    i think it would be wise to not use OSMF if possible, although
    I'm also stuck with it since we are utilizing HDS/PHDS
    protocols which are utilized in the framework.
    otherwise its quite a head-ache.
    I'm unable to get to a video element coming from a proxied element
    that is being produced via an HDS connection.
    and haven't found any solution that works.

  • Checking the status of task records tied to the custom object 3

    We are using custom object 3
    There has been lot of configuration work done on this object.
    There is a checkbox on the UI. When a user will checks off the check box, a task record(s) is created depending on the condition.
    Is there a way for me to check the status on the task records and then set a field on the parent record i.e. custom object 3.
    Thanks,
    Nitika

    To whom are you speaking?

  • Error in generating quota for unpaid leaves

    hello gurus,
    I have 3 Absence Quotas - (1) Annual Leave    (2) Long Service Leave     (3) Sick Leave
    I have attached the same reduction rule for all 3 abs quotas
    I generated Leave without pay for a day in the month of May 2011.
    When generating quotas for May 2011 for Annual & Sick Leave its generating for 30 days but for Long Service Leave its generating for 31 days
    Any idea how the quota generation goes wrong only for Long Service Leave ??
    pls help!!
    rgds,

    0Requid :187.98
    what was this request ID...
    go to RSRQ and give the request ID and execute...it gives the load monitor...
    chk the load to which it belongs to either master or transaction...
    if it belongs to master...then try to find the object to which it was loaded...and schedule the change run for the same object....
    rgds,

  • Multiple logical disks as custom objects

    Hello All,
    I have been working with PowerShell for a few months now and my goal is to help my colleagues perform the same tasks a little faster.
    As such I took on the responsibility of creating a little GUI tool to find some details about a remote computer.
    I have created as advanced function with a custom object.
    I am limited to PowerShell V2 as this is the version used in the company.
    the function is as below:
    <#
    .Synopsis
       Short description
    .DESCRIPTION
       Long description
    .EXAMPLE
       Example of how to use this cmdlet
    .EXAMPLE
       Another example of how to use this cmdlet
    #>
    function Get-PartitionInfo
        [CmdletBinding()]
        Param
            # Computer Name
            [Parameter(Mandatory=$true,ValueFromPipelineByPropertyName=$true,Position=0)]
            [string[]]$ComputerName
        Process
            Write-Verbose "Testing Machine"
            if(Test-Connection $computername -Count 1 -Quiet)
                Try
                    Write-Verbose "Gathering Data"
                    $partitions = Get-WmiObject -Class win32_logicalDisk -ComputerName $computername -ErrorAction Stop
                        $myobj = @{
    'Device ID' = $partitions.DeviceID
                            'Access' = $partitions.Access
                            'Compressed' = $partitions.Compressed
                            'Drive Type' = $partitions.DriveType
                            'File System' = $partitions.FileSystem
                            'Free Space' = $partitions.FreeSpace
                            'Media Type' = $partitions.MediaType
                            'Size' = $partitions.Size
                            'Name' = $partitions.Name
                        Write-Output "Partition information"
                        Write-Output (New-Object -TypeName PSObject -Property $myobj)
                Catch
                    Write-Output "Machine not online or PowerShell is unable to read it"
                    Write-Output "$($Error[0])"
            else
                Write-Output "Machine not online"
    Please excuse the fact that is is not complete, after I get it to work it will be polished.
    My problem is as follows:
    The output of this function is correct but, it is as below:
    Partition information
    Drive Type  : {3, 5, 3}
    Compressed  : {False, $null, False}
    Device ID   : {C:, D:, E:}
    Size        : {167772155904, $null, 5356126208}
    Name        : {C:, D:, E:}
    Free Space  : {71496396800, $null, 5356109824}
    Access      : {0, $null, 0}
    Media Type  : {12, 11, 12}
    File System : {NTFS, $null, FAT32}
    What I am trying to do is to separate the partitions but have not had any success.
    Searched high and low for a solution to list custom objects one by one.
    Anyone have any ideea if this can be done?

    You have to enumerate the results of the WMI.
    You are also sort of off when it comes to how to develop output with PowerShell.
    You are tryingtoo do too many things that you do not understand and they are all conflicting. YOu cannot nis Write-Outpur statements into a colleciotn or it will not output correctly. Study the basics of how PowerShell does output
    Here is how to get the output objects.  Test it manually with a number of computers to see how the output changes.  Try to understand why.
    $computer=$env:computername
    if(Test-Connection $computer -Count 1 -Quiet){
    Get-WmiObject -Class win32_logicalDisk -ComputerName $computer |
    Select Access,Compressed,DriveType,FileSystem,FreeSpace,MediaType,Size,Name
    }else{
    Write-Host 'Machine not online or PowerShell is unable to read it'
    Once you understand why I did it this way and why it works you will have the basics needed to understand how to generalize.
    Try not to write or use code that you do notunderstand.  Test and ask question.  Build the knowledge base from the ground up.
    \_(ツ)_/

  • Set Default Value based on Field from another table for a custom object

    I'm trying to set the default value on a custom object field to the value of an account field. I have tried the syntax 50 different ways, and just am getting no where. The account field label displays as DBA, the integration tag is ltDBA_ACCT, and it shows up in reporting fx area as Account.Text_22.
    The custom object field I'm triying to update is also called DBA, which was originally the "NAME" required field. Does the table name, Account, have to be included? Do I need a function in front of the field?
    I have been updating the external ID using the row ID with syntex <ID> (Less than ID greater than) so I know it is possible to set the Default Value, but <DBA>, <ltDBA_ACCT>, "Account"."DBA", and so on just don't not work.
    If anyone knows how to enter this I'd really appreciate the help.

    Ok, so if you want to default a field to the value from another object, you have to use the JoinFieldValue function. I think you understand that, based on your original post, but I want to be sure that you do.
    Next, this will only work as a default if the record is created from the object that you wish to join on because a default works at record creation and the ID needs to be available for it to work properly. It will not work if you choose the related object record after the custom object record is created. You could set the value as a post-default, but that does not seem to meet your requirements.
    The syntax for the Default Value would be as follows: JoinFieldValue(ref_record_type, foreign_key, field_name).
    In your case, ref_record_type is '<Account>', foreign_key is &#91;<AccountId>&#93;, and field_name is '<YourFieldName>'. The best way to determine what the field name is would be to create a new workflow for Account and use the Workflow Rule Condition expression builder to pick your field ("DBA") from the list. The value that is returned by the expression builder should be placed in the field_name variable in the JoinFieldValue function (minus the brackets and in single quotes).
    Give this a shot and let me know how you do.
    Thom

  • Is it possible to have an adress field with a Custom Object?

    Hello,
    I would like to link a service request to an account and an intermediary such as a travel agency. But the original datamodel only allow one account per Service Request.
    So, I have created a custom object (Intermediary) that should have similar relations with other objects than the Account one. With this object, I will be allowed to link my two accounts to the SR. But I would like to insert an address field in my custom object. Unfortunately, this kinf of custom field type is not available...
    Is there any solution to have one? Or is there another solution I could use to link 2 accounts to a Service Request?
    Thanks in advance,
    Laurent

    We had the same problem. Decided to use one of the new custom objects (CO-05) for this purpose. The drawback of using it this way is the lack of automatic formating of the address lines by country selected like you get with accounts and contacts. On the good side, you can designate fields for use in interfacing with your external business system, i.e. Oracle eBS, JDE, etc.
    We also added a link to this to bring up a modified Customers On Line form from Oracle eBS that gives us a view of the Quotes, Orders, Service Requests, Installed Base, Invoices and Credit Memos by customer party id number contained in eBS. This is what we call a 360 degree view of the customer.
    Neil @ Emerson Process

  • Drag and Drop custom objects

    Hi guys.
    I just finished reading the Java tutorial on Drag and Drop at http://download.oracle.com/javase/tutorial/uiswing/dnd/index.html.
    Unfortunately, there is no note about how to drag and drop a custon object. There is something said on DataFlavor, but not enough to help me.
    So I would appreciate it if anyone could tell me the steps to follow when dragging and droping a custom object.
    Best regards.
    Edmond

    I think we can help you, but please post some example/code of what you are trying to achieve.
    I made D&D with custom objects, custom icons, etc. and is not so hard ... like I said, post some code ...
    RGV

  • Custom Object Reporting

    Hi Experts,
    I am trying to create a report on Custom Object4 and Custom Object5 (CO5 is a child object of CO4).The report is getting generated perfectly . Now my aim is to pass the report in a web applet under Custom Object4 so that report gets filtered accordingly. I have added the report in web applet but the problem that i m facing is that the same report gets generated Under all the records of CO4 even if it has got or not any child items in CO5.
    Any help is welcomed
    Thanks and Regards
    Sablok

    Hi Sablok,
    Mere prompting is insuffucient. Presently you would be using the link https://secure-ausomxapa.crmondemand.com/OnDemand/user/analytics/saw.dll?Go&Path=%2fusers%2fcrmit-demo%23crmit%2fPaulSwarnapandian%2fCo2+Applet&Options=rfd&Action=Prompt+ in the report.
    However you need to use the link https://secure-ausomxapa.crmondemand.com/OnDemand/user/analytics/saw.dll?Go&Path=%2fusers%2fcrmit-demo%23crmit%2fPaulSwarnapandian%2fCo2+Applet&Options=rfd&Action=navigate&p0=1&p1=eq&p2=CustomObject4.ROW_ID&p3=%%%Id%%%+ in the web applet.
    Following is the explanation
    Action=Prompt should become Action=Navigate; the reason is navigation is used when we use the report in the detail page.
    &p0=1; p0 refers to the number of filters used. We are using only one filter "RowId is prompted" and hence it is one.
    &p1=eq; this refers to equal
    &p2=CustomObject4.ROW_ID ; this refers to the Report field that is being prompted; in your case it is the Custom Object 4's RowId
    &p3=%%%Id%%%; this also refers to the row id that is to be passed like XXXX-AAAAA. This will pass dynamically for each and every CO4.
    My email id is [email protected] and contact number is 8197839902. Please mail/call me in case of any issue.
    Regards
    Paul
    Edited by: Paul-CRMIT on May 16, 2011 2:12 AM

  • How to make a custom object function the same as the Competitor and Partner

    Would like to use a custom object to function the same way the Competitor and Partner objects work in CRM. I have not be able to accomplish this. Do you know if it is possible? Can the specialized functionality of the account relationships fields and layouts be leverage with a custom object?

    Hi Peter. Thanks for the reply.
    I assumed that if I used the project style sheet during the export, Word would convert the style so that it looked the same as in the HTML. Is that a bad assumption? I'm currently not mapping to any template equivalent for these message box styles. I did try it as one of my attempts, but I couldn't figure it out. It never seemed to take the style in the .dot.
    Anyway, if I use just 1 style, such as just the MsgBox, I obviously don't get the white paragraph between the title and message. That white paragraph comes from the first <p> tag in the MsgBox style. But I need to have the <p> tags in there because they're better for our localization process than line breaks.
    I did do some tweaks that made it look better. Basically I structured it so that the MsgBoxTitle div is now inside the MsgBox div. Something like this:
    <div class="MsgBox">
        <div class="MsgBoxTitle">PC-DMIS MESSAGE: </div>
        <p>Please do the following steps in the indicated order.</p>
        <p>1. Remove the current SH-1/2/3 stylus.</p>
        <p>2. Attach the SHSP (Stylus Holder Setting Piece).</p>
        <p>3. Jog the probe to a safe location with a clear line of approach
         to the port(s) being calibrated.</p>
        <p>4. Then click OK.</p>
        <p>After you click OK the machine will begin DCC measurement.</p>
    </div>
    And then I adjusted my styles borders, padding, and thickness. That helped it look more connected, but still doesn't look quite right:
    Would love to get rid of that white space after the title.
    If you have time, I would be interested in a more detailed example of how you did it.

Maybe you are looking for

  • IPod Touch 1st Generation stopped charging and sync.

    Hi, I have an iPod Touch 1st Generation that I bought in november 2007(just when it came to the stores) and now, 4 years lates it started to present some problems, first, it stoped to sync with the iTunes, then my computer(mac and PC) stoped reconizi

  • Cannot find role SAP_SDCCN_ALL in satellite system

    Hi,    I cannot find the role SAP_SDCCN_ALL in satellite system. The sattelite system is R3 4.7 PI 2003_1_470, PI_Basis 2003_1_620. Did anyone of you encounter the same problem?. Regards Anil

  • Is it possible raise a trigger for particular user

    hi, i have oracle user zil,i want to write trigger for this user.. with out writting trigger for each table . for ex: i have 2 tables in this user 1.emp 2.audit_log suppose i m inserting values into emp table at the same time insert into audit_log wi

  • My iphone 4 will not connect to my windows xp it shows it as an unknown device how do i fix it?

    my iphone 4 will not connect to my windows xp it shows it as an unknown device how do i fix it? when i plug it in to charge on a wall outlet it works fine, its just does the opposite when i try to connect it to computer.

  • Speeding up DVD encoding time in Compressor 4?

    Hello there, I wonder if anyone can help - I am transferring some camcorder tapes to DVD on my 2010 Mac Pro. My hardware captures in many formats but not mpeg 2.  As this is the encoding used for DVDs I presumed Compressor would be quicker to convert