Property Tree IN Edit Report Template

Hi Expert,
I am working on labels in WWI, and wanted to generate a report for which I need my customize property tree in CG42. Please suggest how to get property tree in Edit report Template(CG42). Attaching the screenshot for the same.
Advance Thanks,
Mayank Agrawal

Dear mayank,
You can create a new node in the property tree only by customizing.
First you need to know what characteristics it should have as this is part of a class.
I have listed the steps below which might be helpful.
First Create a characteristic(s) for the node which is actually a Value assignment type using CT04.
Create a Class using CL01 with class 100 and Assign all the characteristics to this particular class.
identify under which property tree, your node should appear.
for eg: Goto the txn CG02, select any real substance, in the property tree of IH, select any value assignment type under a node Limit values and regulations such as labelling(EU) and press F1 to view its description and u will find the Value assignment type as SAP_EHS_1023_001.
In customisizing, Select Setup Property trees under EHS - basic data tools - specification management - Specification database structure - Settings for value assignment type .
Select your property tree eg IH, select value assignment type assignment and insert your node.
By this way, U will be able to insert your node in the property tree. Now exit the screen and goto txn CG02 to find your node listed in property tree.
Go to Set Up Property Trees under SPRO; select the standard property tree and click on Value Assignment Type and assign the Class to a Node under which you want to.
i.e adding a node in a property tree.
Prerequisites for adding an node to a property tree.
Creation of class (T_code CL02) & Charactertics (T_Code CL04)
Assigning the charactertics to class.
Assigning the VAT to the Property Tree
Now you need to  assign the VAT to the property tree, make sure you give the correct ID & level so that the new node appears in the exact level as you desired.
Check the following threads as well.
http://help.sap.com/saphelp_erp60_sp/helpdata/en/a7/286ec70a6c11d28a220000e829fbbd/content.htm
http://help.sap.com/saphelp_470/helpdata/en/a7/286d1d0a6c11d28a220000e829fbbd/content.htm
http://scn.sap.com/docs/DOC-40989
Regards
Dhinesh

Similar Messages

  • EHS-Error while editing Report template

    Hi Gurus
    I am getting a vague error while trying to cancel release of existing report template. I need to edit the same. Hence i am cancelling the release. Please let me know if any of you have got this error before and how did you solve it?. Also i have done changes in Dev and QA. But i get this error only in prod.
    The error details are as below.
    Unable to write log record for document 1
    version 00
    "Unable to write log record for document 1050010 version 00"
        Message no. C$760
    Diagnosis
        You attempted to change the status of a document.  The system creates a
        log record for this activity.  However, the system was unable to create
        this log entry.
    System Response
        The system is unable to write the log entry.
    Procedure
        Notify your system administrator.
    TIA
    Regards
    Murali

    Hi
    I have solved this issue. It was an authorization issue. I didnt have authorization for CV02N.
    Thanks and Regards
    muralidharan

  • Edit report template for Disposal Documents (CG42) - Waste Transporter

    Hi all,
    I am trying to create a new template (CG42) for disposal documents.
    I can not to introduce the information about the transporter (waste transporter name, auth-assgnd no. and the transport matriculation)
    can you help me? how can i do it?
    thank you very much. María.

    Hi Keshav,
    Yes, this problem is resolved except because i don´t know where i have to introduce the License Plate in the waste transporter (WAA19) in order to it appears in the WWI document.
    I have anothe question to it in the Forum "Report Template with WWI: Waste Transporter: License Plate".
    Can you help me?
    thank you very much again. Marí

  • Edit report template for Disposal Documents (CG42)

    Hi experts,
    I am trying to create a new template (CG42) for disposal documents, but i cannot do it.
    I can introduce the Header´s information, but not the information about the transporter, the waste disposer or the waste generator.
    can you help me? how can i do it?
    thank you very much. María.

    Hi Keshav,
    Thank you very much. You are right.
    Best regard. María.

  • Report Template, Column Template, Column Template Condition

    I have a template, Standard Revenue from Standard, I have cloned for a Classic report.
    Application ###>Shared Componets>Templates>Edit Report Template
    Column Template 1 looks like:
    <td#ALIGNMENT# headers="#COLUMN_HEADER_NAME#" class="t1data_revenue">#COLUMN_VALUE#</td>
    I have set Column Template 1 Condition to:
    "Use based on PL/SQL expresiion"
    I have tried several expression in "Column Template 1 Expression" - last one is:
    case
    when #COLNUM# <= 2 then false
    when #COLUMN_VALUE# < 0 then true
    else false
    end case;
    I am trying to use the value in "Column Template 2" when to value of the #COLUMN_VALUE# < 0
    where "Column Template 2" is :
    <td#ALIGNMENT# headers="#COLUMN_HEADER_NAME#" class="t1data_revenue_negative">#COLUMN_VALUE#</td>
    I get the following error when I run the page:
    ORA-01403: no data found
    and
    ERR-1025 Error processing PLSQL expression. case when #COLNUM# <= 2 then false when #COLUMN_VALUE# < 0 then true else false end case;
    Any help will be appreciated.
    thank you,
    jwm

    Hi,
    That's actually easier. See: [http://apex.oracle.com/pls/otn/f?p=267:60]
    The SQL for both reports is:
    SELECT EMPNO, ENAME, NVL(SAL,0) SAL, NVL(COMM,0) COMM
    FROM EMP
    ORDER BY EMPNOThe SAL and COMM columns have been formatted using:
    999G999G999G999G990D00For the Row Template, the Row Template 1 setting contains an empty space (you have to have something in there otherwise Apex adds back in a default row containing five cells!). The condition for this is:
    TO_NUMBER('#COMM#','999G999G999G999G990D00') < 100The template will see the data as a string, so we use the same number format to convert that string back into a number and compare this to 100. If we didn't use formatting on the numbers and we are sure that every row contained a number (hence the use of NVL()), then you could use:
    #COMM# < 100Row Template 2 contains the format for the rows that need displaying:
    &lt;tr&gt;
    &lt;td class="t18Data"&gt;#1#&lt;/td&gt;
    &lt;td class="t18Data"&gt;#2#&lt;/td&gt;
    &lt;td class="t18Data" style="text-align:right"&gt;#3#&lt;/td&gt;
    &lt;td class="t18Data" style="text-align:right"&gt;#4#&lt;/td&gt;
    &lt;/tr&gt;and is unconditional.
    The only other settings on the Row Template are the Before Rows:
    &lt;table class="t18Standard" style="border-collapse:collapse; border:1px solid black;"&gt;
    &lt;tr&gt;
      &lt;th class="t18ReportHeader"&gt;Empno&lt;/th&gt;
      &lt;th class="t18ReportHeader"&gt;Ename&lt;/th&gt;
      &lt;th class="t18ReportHeader" style="text-align:right"&gt;Sal&lt;/th&gt;
      &lt;th class="t18ReportHeader" style="text-align:right"&gt;Comm&lt;/th&gt;
    &lt;/tr&gt;and After Rows:
    &lt;/table&gt;Of course, you will note that the record counters at the bottom still show the number of records in both reports - as the SQL still outputs the same data, this doesn't change.
    Andy

  • Report Template Layout Editing

    Hi all,
    I have few questions to check with you with regards to the report creation process.
    I read on the SAP help portal and it states the report creation process.
    Step 1 u2013 Create Report template (i.e. using CG42)
    Step 2 u2013 Edit the report layout
    I am stuck on this step as the explanation on this report template layout editing is very confusing.
    Two Questions:
    1 u2013 Do you have any documentation or any website (i.e. other than SAP help portal) that explain the step by step with screenshot on how to edit the report template layout? if you have the document can you send to me using my profile address?
    2 u2013 If I want to import a report template (i.e. a report template that had already went through all the editing process), how to import it into the SAP, what steps and what transaction codes is used for this step?
    Thanks
    Karen.

    Hi Karen,
    Q) What is difference between T.code CG3Z & T.Code to CG34? I bet the one that allow me to import the report template is CG34?
    Ans: e.g. you file has saved on Desktop. so first step is to upload the file from Deskop to Application Server which is CG3Z
    and once it is uploaded to Application Server ( Directories), you can import the template from Application Server ( Directories) to Libraries with the help of CG34.
    CG34 can only import from Directories and not from the Desktop. so both the T.code must be used in sequential manner.
    Q) How do I drag and drop those symbol into the Microsoft word sheet on the right screen?
    Ans: once you open the CG42. here select the Symol Tree which is nothing but the Property Tree of Specification Workbench.
    selec the appropriate Value Assignment and Characterstic and then Below to that that is Buttion  "Insert WWI Object in Template" ( + Symbol in Green Colour) , click that Button to Addd it to template. then add the Main Repeating Group i.e. Value Assignment Name the again click on "Insert WWI Object in Template" to add the same to Templates.
    Q) After I had imported an external report template into the SAP, how to open it up in the SAP in order to allow me to view it or to edit it?
    Ans: See once the ready made template is imported the you can directly assing that template to Generation Variant in CG2B.
    If I have statisfied your queries, please grant me the points.
    Regards,
    Amol Joshi

  • Freeze Pane Property of Excel in RTF template for XML Publisher Report

    Hi all,
    I have created RTF template and it's output type is Excel.
    I want to apply Freeze Pane Property of Excel in rtf template so that it can be applied to Excel Output.
    Please let me know any information regarding this ASAP.
    Thanks,
    P.A.

    This is the Oracle Reports forum. Better post this in the BI Publisher forum.

  • How to create editable PDF template for XML Publisher reports

    Hi,
    I have got a requirement to have some editable fields in one report whose output is in PDF format.
    I tried looking and saw this can be done using the XML Publisher report and using PDF template.
    But I got only Adobe Acrobat Reader and it does not have the facility to create Form fields.. Can you let me know what software I need in order to create the editable PDF Template.
    In the user guide, it didnot mention anything regarding this.
    Can I create editable PDF report using RTF template or do i have to got for PDF template only?
    Any help is appreciated!
    Thanks

    Hi,
    To edit PDF template , u need Acrobat writer, which is not free .
    I am still wondering what is this ?
    "" Can I create editable PDF report using RTF template ?? "".
    What is editable PDF report. ?
    i think what you tried to mention is ,
    can the PDF output from xml publisher is editable ?
    If that is the question , so here is some points,
    If you have Acrobat Writer or prof.edition, you can edit all the PDF documents irrespective of being from where it is generated.
    To make you understand more of XMLP.
    You create RTF template in word, so that , after merging with xml you can have multiple output formats like PDF, XLS, EFT,.....

  • Copy/Edit default Report templates

    Hi,
    I am given the following template options in the "Report Template" list on the Report Attribute page
    of a report region:
    default: HTML (standard)
    default: Look 1
    default: Look 2
    default: Look 3
    default: Look 4
    default: vertical report, look 1 (exclude null columns)
    I want to modify the vertical report template, so I tried to make a local copy of it using the "Templates" page in the "Build" Menu.
    I used the "Create/copy" button of the "Report Templates" region, and then "Choose one from the HTML DB repository", and I am only shown these 2 templates:
    Alternating Rows
    Alt Rows,Navy Gray
    Where can I find the default templates such that I can make modifications?

    Hello,
    It sounds like you want to write your own HTML thats what modifing tempaltes entails beyond that I agree having those templates avaiable would make your job easier.
    But at the moment you have no way to get at the default templates. I'll see what i can do about getting an application in HTML DB Studio that has the default templates as report templates so you copy the report templates to your app.
    If you have HTML DB 1.6 there are a large amount of examples and reports in the different themes you can try as well.
    Carl

  • Report template issue.

    Hi All,
    I'm using ApEx 4.1.0.00.32
    I have a report and I want to add a title to a field.
    I thought it would be as easy as adding title="#my_title_column#" into the element attributes section in the column attributes region for the item.
    Nothing appears against my item in the report.
    I think I need to add some sort of replacement like #COLUMN_ELEMENT_ATTRIBUTES# into the report template that I am using to get this to work.
    Does anyone know what the template replacements are? or where I can find a list?
    Thanks
    Michael
    Edited by: MKii on Mar 20, 2012 5:12 PM

    MKii wrote:
    Hi All,
    I'm using ApEx 4.1.0.00.32
    I have a reportWhen you have a question about "a report" it really does help if you're as explicit as possible about its nature: standard report/interactive report/tabular form; column display type etc.
    I want to add a title to a field.
    I thought it would be as easy as adding title="#my_title_column#" into the element attributes section in the column attributes region for the item.
    Nothing appears against my item in the report."Field", "element attributes", and "item" suggest this is displayed as a control in a tabular form?
    If not, note that Element Attributes only apply to tabular form controls, and don't appear to support <tt>#COLUMN_NAME#</tt>substitution anyway.
    To add a <tt>title</tt> attribute to a value in a Display as Text/Standard Report Column, use the HTML Expression Column Formatting property:
    <span title="#MY_TITLE_COLUMN#">#SOME_OTHER_COLUMN#</span>

  • Mapping regulatory data for food contact in property tree

    Hi,
    I am looking where I can mapp food contact regulatory data in the standard property tree. I am thinking of one of the properties mentioned in the notification/reporting tree. Of course I always can build my own property but I want to use the standard as much as possible. Has anyone experience with mapping this kind of information and cam tell me which property best is used?
    Thanks,
    Paul

    Hello Paul
    do you use the standard SAP property tree (delivered e.g. in former times by CLEO)? If so I believe you can use a number of properties. As I do not know the recent status of the property tree provided by SAP I can give you only "hints":
    Normally if you use one of the available data providers of legal content you will get a "draft"/"default" mapping to the Standard propety tree of SAP (e.g. regarding food regulatory content data as well)
    SAP has started to "group" extensively the properties; one "group" is the "notification/reporting tree".  As a matter of fact the Standard property tree is provdied without phrases and assigned phrases to phrase sets. Therefore many SAP EH&S users use a data provider to get these mappings and most of these SAP EH&S users using a data provider to get the legal content.
    So I am sorry: as I do not know in detail the recent proeprty tree I can not give you a hint which property is the "right" one; but i Know there is one property (and the notification/reporting sub node is a good option to check the properties)
    With best regards
    C.B.
    Edited by: Christoph Bergemann on Aug 27, 2011 7:28 PM

  • Report Template href with column value

    I have created a Report template and want to have a field that is a href with link to other page passing column value. I'm having trouble passing the column value. If I hard code the value the href code works. If I try to pass #1# or the column name with # surrounding the link doesn't work. Any ideas would be appreciated.
    This works:
    <td><img src="/i/edit.gif" border="0" alt="Edit Icon">
    </td>
    This doesn't:
    <td><img src="/i/edit.gif" border="0" alt="Edit Icon">
    </td>
    Thanks
    Mary Jo Al-Shihabi

    Hi Sergio, thanks I finally got it working using a call to javascript:popupURL.
    <td><align="center">#PORT_APP_ID#</td>
    Thanks
    Mary Jo

  • How to Set Report Template for CRDesigner control 11.5 (RDC control)?

    Hai,
    I am using the CR Designer control (CR XI R2 RDC) in VB6.0. I have crystal report templates available in Web Server.
    want to load these templates in CRDesigner control through VB6.0, Is it possible?
    Thanks
    Kesavan
    Edited by: kesavan1986 on Jul 22, 2010 8:12 PM

    It does not matter where the reports are. If you can open them up in the CR designer (crw32.exe) you can open them using any CR SDK.
    RDC samples are here:
    https://www.sdn.sap.com/irj/boc/businessobjects-samples
    RDC Developer Help File:
    C:Program FilesBusiness ObjectsCrystal Reports 11.5Helpen
    dcsdk_com_dg_docdoc
    dcsdk_com_dg.chm
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Need Date manipulation in BI Publisher report template

    Hi All,
    I need date manipulation in BI Publisher report template for e.g sysdate+4 this means i need 4 days after todays sysdate.
    That menas if today date(sysdate) is 09/01/2008 then i need (sysdate+4) i.e 13/01/2008.
    Please help me.
    Thanks
    Edited by: user562690 on Jan 9, 2009 3:21 PM

    Hi M14,
    I have doubt on similar type.I have AgreementStartDate as
    <AgreementStartDate>12/03/2008 07:24:10</AgreementStartDate> in XML format.
    I am not able to apply same formula for thsi date format in similar manipulation.
    Please help me.
    TIA
    skr

  • XML tags in an "export : XML" Report Template

    Hi All,
    I'm using the export XML report template to produce XML from a query. One of the column contains XML tags and the template is translating eg: if the column is "Groups" then I get:
    <Groups>& lt ;Group& gt ;Sales & lt ;/Group & gt ; & lt ;Group& gt ;IT& lt ;/Group& gt ;</Groups>(ignoring all the spaces - OTN is translating the & gt 's :)
    instead of:
    <Groups><Group>Sales<Group><Group>IT</Group></Groups>Is there an easy way to stop this ?
    Thanks,
    Steve
    Edited by: spilgrim on Mar 6, 2009 12:14 PM
    Edited by: spilgrim on Mar 6, 2009 12:14 PM

    Hi Steve,
    Did you ever solve this? I'm having a similar issue while trying to build a Report Query that I want to build with nested elements.
    &lt;?xml version="1.0" encoding="UTF-8" ?&gt;
    - &lt;ROWSET&gt;
    - &lt;ROW&gt;
    &lt;EE_ID&gt;467&lt;/EE_ID&gt;
    &lt;EE_GRIDS&gt;
    &lt;EE_GRID INDEX="1"&gt;
    &lt;EE_INCENTIVE_CASH_PROGRAM&gt;MIP&lt;/EE_INCENTIVE_CASH_PROGRAM&gt;
    &lt;EE_BONUS&gt;20&lt;/EE_BONUS&gt;
    &lt;/EE_GRID&gt;
    &lt;EE_GRID INDEX="2"&gt;
    &lt;EE_INCENTIVE_CASH_PROGRAM&gt;VIP&lt;/EE_INCENTIVE_CASH_PROGRAM&gt;
    &lt;EE_BONUS&gt;30&lt;/EE_BONUS&gt;
    &lt;/EE_GRID&gt;
    &lt;/EE_GRIDS&gt;
    &lt;/ROW&gt;
    - &lt;ROW&gt;
    &lt;EE_ID&gt;468&lt;/EE_ID&gt;
    &lt;EE_GRIDS&gt;
    &lt;EE_GRID INDEX="1"&gt;
    &lt;EE_INCENTIVE_CASH_PROGRAM&gt;MIP&lt;/EE_INCENTIVE_CASH_PROGRAM&gt;
    &lt;EE_BONUS&gt;20&lt;/EE_BONUS&gt;
    &lt;/EE_GRID&gt;
    &lt;EE_GRID INDEX="2"&gt;
    &lt;EE_INCENTIVE_CASH_PROGRAM&gt;VIP&lt;/EE_INCENTIVE_CASH_PROGRAM&gt;
    &lt;EE_BONUS&gt;30&lt;/EE_BONUS&gt;
    &lt;/EE_GRID&gt;
    &lt;/EE_GRIDS&gt;
    &lt;/ROW&gt;
    &lt;/ROWSET&gt;
    Thanks
    Keith
    Edited by: kmatthew on Mar 17, 2009 2:44 PM

Maybe you are looking for