Report Script line for coments

Hello, how do you create a line in report script for comments? I tried doing a begin /* and end */ but I got an error message.
Please help.
Thanks

Super easy -- just two forward slashes, e.g.,
//     Modified:       Initial write, 28 Septemeber 2011Regards,
Cameron Lackpour

Similar Messages

  • Report Script : Parameter for file name?

    hi all,
    I am using a report script to generate a text file with budget data. This works fine in AAS console but I am automating this process by usning an ESSCMD and batch script.
    tha batch script will call the ESSCMD script which in turn executes the follwoing command
    RUNREPT 2 "RepScripName" "c:\Otputfile.txt"
    Now here I am hard coding the Output file name and location.But my requirement is that when I run the script it should prompt for file name and location.
    Any Idea on this
    Thanks

    Another solution I have tried is simply writing a small VB app that has a dialog that allows you to type in a file name or even navigate a file system directory. If I understand you correctly, you just want to be able to output the file anywhere you want. This works well and you can add more features to, just depends on if it is worth the effort. Other wise you can just write MXL and supply your script with position variables. You just need to type it in and hope you type typed it in correctly. Good luck, there are several ways to accomplish this.

  • Script Lines for testpattern

    Hi
    I'm Looking for a Script to generate lines for testpattern. I Need diagonal Lines for each corner
    Thanks

    so is there a way around is? how do I stop the computer going to sleep while the script runs? Or how do I protect password etc if using a script with a password in it?
    There are a number of approaches. One is to encrypt/obfuscate the password within the script, decoding it on the fly.
    Another is to store the password in the user's keychain and have the script retrieve it from there at runtime (this requires a lot more coding to capture the password on the first run, save it to the keychain and retrieve it later).
    Another option may be to edit sudoers to allow the target command to be run without authentication, although this opens a whole slew of other potential issues, of course.
    Of the three, for a program I don't expect to distribute, I'd probably go for the first option. Note that there are many ways of doing this, ranging from the trivial to the herculean - you'll need to decide how much is appropriate for your needs. One very simple approach (not recommended for high security needs) is just to put your password in a list - the data format of the list makes it more difficult than a string to extract from a read-only script, but it's only one line of AppleScript:
    property pw: {"p", "a", "s", "s", "w", "o", "r", "d"}
    set my_pw to pw as text
    You could get a little more complex by reordering the characters:
    property pw: {"d", "r", "o", "w", "s", "s", "a", "p"}
    set my_pw to reverse of pw as text
    Taking it on a step further, there are all kinds of encryption/transformation algorithms you can apply to further mask the data. Most common algorithms can be translated into AppleScript if needed.

  • Report script command equivalent for @relative calculation command

    HI ,
    We have a calculation script which has a fix statement like below :
         FIX( Grade, "w/o LO", "Line Options", AtLaunch, @DESCENDANTS("470.92"), @DESCENDANTS("Price Item"), @RELATIVE("Total Region", 0) )
    We are trying to make a reportscript which gives us the format of the set of database being calculated.
    So we are tranforming the above calc script commands into equivalent report script commands. We are struck with the @Relative command.
    Can somebody tell us what is the equivalent report script command for @Relative calculation script function.
    Regards
    OKU

    There's no direct analogue, but you can use the <LINK command along with <DESCENDANTS and <LEV to get pretty close. See: http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_techref/rwriter/link.htm
    JExport (if pre 9.3) or DATAEXPORT (if 9.3 or greater) may also be options and will in fact allow @RELATIVE to be used.
    Regards,
    Cameron Lackpour

  • Creating a range with Substitution Variables for Report Script

    Is it possible to create a range with substituion varables for use in a report script. For example instead of listing "Jan" "Feb" "Mar" "Apr" in the report script can I use a sub varaible like Jan:Apr that will list them all out?

    while I have not had luck with ranges in report scripts, others have. You could have a substitution variable the is "Jun" "Jul " "Aug" or whatever you want the members to be. and it will replace jusr fine

  • Help to create a Report Script

    Hi everyone,
    I'm trying to translate this calculation script line
    @REMOVE( @CHILDREN("P&L"), @LIST(@UDA ("Accounts", "wo_CC"), @UDA ("Accounts", "wo_C2"), "AX70000", "C71110") )
    by this Report script line :
    <LINK (<CHILD ("P&L") AND NOT (<UDA ("Accounts", "wo_C2") OR <UDA ("Accounts", "wo_CC") OR <MEMBER("AX70000") OR <MEMBER("C71110")))
    but it doesn't work ==> Report extract account with wo_C2 or wo_CC
    What's wrong with my code ?
    Thank you for your help.
    Regards,
    Yohan
    Edited by: 780941 on Dec 14, 2011 1:01 PM

    You could do a simple powershell script to query the network path and send an email on failures.
    $test = Test-Path "\\server\folder"
    If (!($test -eq $true)
    {Send-MailMessage -To [email protected] -From [email protected] -Subject "Drive Test Failed" -Body "The test has failed" -SMTPServer yourserver.domain.com }
    Create this as a scheduled task on the server that needs to query.
    - Chris Ream -
    **Remember, if you find a post that is helpful, or is the answer, please mark it appropriately.**

  • Report Script Performance Issues

    Essbase Nation,
    We have a report script that extracts a full 12 months worth of history in 7 minutes. The script that is used to extract the period dimension is as follows:
    <Link (<Descendants("Dec YTD") And <Lev("Period",0))
    The line above is then changed to pull just one month of data, and now the report script runs for 8 hours.
    Please advise as to why the difference in performance.
    Thank you.

    ID 581459.1:
    Goal
    How to optimize Hyperion Essbase Report Scripts?
    Solution
    To optimize your Report follow the suggested guidelines below:
    1. Decrease the amount of Dynamic Calcs in your outline. If you have to, make it dynamic calc and store.
    2. Use the <Sparse command at the beginning of the report script.
    3. Use the <Column command for the dense dimensions instead of using the Page command. The order of the dense dimensions in the Column command should
    be the same as the order of the dense dimension in the outline. (Ex. <Column (D1, D2)).
    4. Use the <Row command for the sparse dimensions. The order of the sparse dimensions in the Row command should be in the opposite order of the sparse
    dimension in the outline. (Ex. <Row (S3, S2, S1)). This is commonly called sparse bottom up method.
    5. If the user does not want to use the <Column command for the dense dimensions, then the dense dimensions should be placed at the end of the <Row command.
    (Ex. <Row (S3, S2, S1, D1, D2)).
    6. Do not use the Page command, use the Column command instead.

  • Not able to generate multiple lines for headers in report

    Hi,
    I am new to BI publisher and not able to generate multiple lines for headers. Please help me to resolve.
    I am using RTF template, data source as PS Query and XML file (system generated from the data source)
    When I am using system generated 'First XML' file, I am getting output in the follwoing format.
    TEAM_MEMBER, PROJECT_ID, NAME, START_DT
    e.g.
    EMP1 , 71000, Sample, 01-Jan-2010
    EMP1 , 72000, Sample, 01-Feb-2010
    EMP1 , 73000, Sample, 01-March-2010
    But I want the report to be generate with multiple projects for one employee like below format , for that I used 'Second XML' file but I am getting blank report.
    In short if there is one to many case, how to show in reports??? Please correct if I am going wrong.
    TEAM_MEMBER
    PROJECT_ID, NAME, START_DT
    PROJECT_ID, NAME, START_DT
    PROJECT_ID, NAME, START_DT
    e.g.
    EMP1
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010
    **********First XML**************System generated XML ****************************
    <?xml version="1.0"?>
    <query numrows="2" queryname="SY_EMP_PROJECT" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="">
    <row rownumber="1">
    <TEAM_MEMBER>TEAM_MEMBER </TEAM_MEMBER>
    <PROJECT_ID>PROJECT_ID samp</PROJECT_ID>
    <NAME>NAME sample data</NAME>
    <START_DT>2010-08-25</START_DT>
    </row>
    <row rownumber="2">
    <TEAM_MEMBER>TEAM_MEMBER</TEAM_MEMBER>
    <PROJECT_ID>PROJECT_ID samp</PROJECT_ID>
    <NAME>NAME sample data</NAME>
    <START_DT>2010-08-25</START_DT>
    </row>
    </query>
    **********Second XML**************Manually created XML and using to show multiple projects for one employee****************
    <?xml version="1.0"?>
    <TEST numrows="2" queryname="SY_EMP_PROJECT" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="">
    <TEAM_MEMBER rownumber="1">
    <TEAM_MEMBER>1</TEAM_MEMBER>
    <EMPLOYEE_NAME>SAMPLE</EMPLOYEE_NAME>
    <PROJECT>
    <PROJECT_ID>1111</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01012010</START_DATE>
    </PROJECT>
    <PROJECT>
    <PROJECT_ID>1112</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01022010</START_DATE>
    </PROJECT>
    </TEAM_MEMBER>
    <TEAM_MEMBER rownumber="2">
    <TEAM_MEMBER>2</TEAM_MEMBER>
    <EMPLOYEE_NAME>SAMPLEC</EMPLOYEE_NAME>
    <PROJECT>
    <PROJECT_ID>1111</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01012010</START_DATE>
    </PROJECT>
    <PROJECT>
    <PROJECT_ID>1112</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01022010</START_DATE>
    </PROJECT>
    </TEAM_MEMBER>
    </TEST>
    Edited by: ganeshtw on Aug 25, 2010 12:14 AM

    Hi,
    With your first xml you can print like
    EMP1
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010While creating the RTF template you can use the Group by option.
    <?for-each-group:ROW;./columnname> then print the column name
    <?columnname?>
    --Then your table format
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010
    <?end for-each-group?>
    Thanks.

  • Report ALV printing in background -display only 1 line for header

    Hi,
    We are running a ALV report (transaction code ME2N) in background and when we get  the Graphical display of the spool request, the number of columns of the header are limited and divided in 3 lines. It means that when exporting the report to excel, is quite hard to arrange it, as we get 3 lines for the same record. We need to have it directly in the same line.
    When we are programming the job, in  the u201CSpool Request Attributesu201D we are using as format  u201CX_65_255u201D.  What can we do?
    Thanks in advance,
    Lígia Moreira
    Edited by: Lígia Moreira on Sep 20, 2010 6:35 PM

    Hi,
    We are running a ALV report (transaction code ME2N) in background and when we get  the Graphical display of the spool request, the number of columns of the header are limited and divided in 3 lines. It means that when exporting the report to excel, is quite hard to arrange it, as we get 3 lines for the same record. We need to have it directly in the same line.
    When we are programming the job, in  the u201CSpool Request Attributesu201D we are using as format  u201CX_65_255u201D.  What can we do?
    Thanks in advance,
    Lígia Moreira
    Edited by: Lígia Moreira on Sep 20, 2010 6:35 PM

  • Multiple Lines for one Business Partner on Agng Report

    Hi all,
    From version 8.8 of SAP Business One (and PL 08 which I have tested) on the aging report I see, for the same Business Partner, more than one lines with different amounts. The sum of those amounts make the real balance of the BP so i think that what it does is to categorize in some way the transactions.
    I cannot figure out why it does that.
    Any help?
    Thanks
    Gerasimos

    Hi,
    Can you confirm whether :
    1) The BP Code appearing in the Aging is having the same case (Upper or lower) or they are different?
    2) Can you also confirm whether Bp Code has entries where control account is different?
    In the meantime, I will check some documentation/Note if available on the query.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Reporting on DSO for Broker's Statement (Line Item Reporting)?

    Dear experts,
    I need to create a BW report based on data from FS-CD and ICM for a client in the insurance industry. The report is broker's statement which has in total 3 sections/pages (or in 3 levels). The requirements are as follows:
    1. Overview of the total commissions (grouped by different categories) earned by a broker for a specific month
    2. When the broker clicks on the "commission group", it will jump to another page showing each commission items of that group
    3. Details for each commission item (line item in DSO) can be drill-downed in another separate page
    Currently, I have a consolidated DSO for the commission line items. The data will be loaded to an InfoCube followed by a MultiProvider for reporting.
    I am new to BI and I assume that I should follow the following approach:
    1. Use RRI for the jumps between different details levels
    2. Use DSO for reporting the line item on third page
    3. Use Report Designer for the layout because the reports are formatted like Balance Sheet
    Is it possible that I report on the InfoCube via MultiProvider for the 1st and 2nd levels whereas DSO for the 3rd level?
    Could anyone please give me some suggestions on this?
    Thanks in advance.
    Regards,
    Joon

    Hi,
    any updates? I read that the RRI capability of the query is not supported in BEx report. Is it true?
    If so, is there any workaround to enable this?
    Regards,
    Joon

  • I;m no longer able to use the Penn State ANGEL system (I teach on line) for my email and intead get messages about "script" problems.

    Question
    I'm no longer able to use the Penn State ANGEL system (I teach on line) for my email and instead get messages about "script" problems

    I have asked a moderator to provide assistance, they will post an invite on this thread.
    They are the only BT employees on this forum, and are a UK based team of people, who take personal ownership of your problem.
    Once you get a reply, make sure that you are logged into the forum, then click on their name, you will see a screen like this. Click on the link as shown below.
    Please do not send them a personal message, as they may not be on duty for a long time, and your message will not be tracked properly.
    For your own security, do not post any personal details, on this forum. That includes any tracking number you are give.
    They will respond either by phone or e-mail within 5-6 working days.
    Please use the tracked e-mail, to reply, not via the forum. Thanks
    This is the form you should see when you click on the link. If you do not see this form, then you have selected the wrong link.
    When you submit the form, you will receive an enquiry number, so please keep a note of it
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Using report scripts in Excel - shameless plug for my blog

    I finished the second installment of my Blog, Using Report Scripts in Excel. It can be found at:
    http://glennschwartzbergs-essbase-blog.blogspot.com/

    Thank you Glenn! I just started to look into report script though we've had the tool for years. And look forward to your next installment.

  • 2 lines for agents on weekly summary report

                       I have used the attached report definition to run a report, when running it on the customer site, although I believe the week runs Monday - Sunday, when I run the report, whether it is Monday - Sunday  11th Feb - 17th Feb, or Sunday to Satuday  10th Feb -16th Feb, I still get 2 lines for some agents.
    It would appear that the extra line is the Sunday 17th Feb....
    We have checked that the agents are signing out, is there anything else we should be looking at.
    Has anyone else experienced this and how have they resolved it.
    Have attached the Report definition.
    thanks for helping.

    David writes:
    >Best practice is to have a single line. I think the SRND addresses this.
    Not so. The SRND defines the two-line paradigm. I'm with Chris.
    Two lines is fine. I like to have the first line the CC line. I like auto-answer on headset from CUCM and no call waiting, no voice mail on that line.
    The second line (the DID) should have the normal settings - call waiting, not auto answer, Unity voice mail.
    If the agents are in the ready state, they need to be reminded to not answer (or initiate) a call on their private line without going not ready. If they forget, it's not a big deal as auto-answer will not be activated - they will have to manually answer. They normally drop off the private line quickly and take the call. Some agents break this "rule" in order to be more productive - depends on how busy the CC is.
    While on a customer call, a call to their private line will ring a couple of times and go to voice mail. They are asked to just let it go.
    Aside: In the past I wrote a little Java app called Agent Toggle that connected to JTAPI and to the CTI server. When a call arrived on (or was made from) their private line, it made the agent not ready; when the call terminated, it made them ready again. A little science project that seemed to work fine.
    Some customers like to invert the lines because they want the red light to come on when voice mail is waiting. If it's the second line, the standard behaviour is to show the little envelope next to the line.
    Although Cisco recommend that the top line be the CC line, I can understand the inversion.
    You adjust the calling search spaces so that private lines cannot call contact center lines; but not the other way around. Non-agents just have the one "private" line.
    I believe this works correctly and efficiently, albeit with some agent discipline. Once the operating parameters are understood, the agent with two lines can be more productive.
    Regards,
    Geoff

  • Standard driver programs,output type ,scripts,smartforms for SD reports

    hi experts,
                  Can any one list all the standard driver programs,output types ,scripts,smartforms for SD reports.
    mani

    Hi,
    Check this out
    NACE
    You can track the form and the print program used for that form
    The Tcode NACE is used to link the Standard SAP forms (SCRIPTFORM or SMARTFORM) or the customized form or the new form to its respective print programs. Also the output types, Form entry are linked with their forms and print programs. In short term, i can tell u that configuration or customization of forms to print programs, assigning output types, form entry to the forms are done using this Tcode.
    NACE is used to create output type while creating the output type you will mention forms, and driver program.
    that will be maintained in the table TNAPR.if you create the output type using NACE then it will be automatically visible in table NAST and TNAPR.
    so check in NAST, TNAPR table
    http://help.sap.com/saphelp_erp2005/helpdata/en/c8/1989fe43b111d1896f0000e8322d00/frameset.htm
    Condition records in NACE?
    and
    NACE is used for message control customizing.
    Take a look at the following link
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/198a1843b111d1896f0000e8322d00/frameset.htm
    and also
    NACE is used for message control customizing.
    Take a look at the following link
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/198a1843b111d1896f0000e8322d00/frameset.htm
    If it helps reward with points..

Maybe you are looking for

  • Pictures - why are some pictures visible and some not?

    Why is it that some of the pics I transfered from my digital camera to my Macbook, iPad, from windows-system or from external drives and vs. are not visible on my Macbook. In this case my Macbook opens iPhoto and a while later indicates, that I will

  • Smartforms in CRM

    Hi,   We have Smartform and driver programs in R/3 server. We need to move it to CRM Server. What are the steps to be followed? Regards, Chetan.

  • Runtime error encounter when getting instance from ResourceFactory

    Hi,    I'm developing a IView report on the documents' status in the repository, but i have encounter the following runtime error when I get an resource instance from the ResourceFactory, <i>Portal Runtime Error An Exception occurred while processing

  • Zip file with password

    Good morning for everybody!! I have a code that creates a zipe file. What should I do with this code to implement that functionality of Winzip with password? Does anybody have any idea?? Thanks in advance!! Gin

  • Conditon type in sales order

    Hi, The condition type(ZALT) having there are three combinations like(destination country- depature contry , s.org-d.chanel , s.org-div ) and i have slected  exlusive indicators for all combinations in Acess seq. So normally it will pick the First re