Financial Reporting with emailing  question

Greetings,
I'm on Fusion 11.1.1.4.
Is it possible to have an admin run either a book or reports and have these reports emailed to specific users? I would like if possible to use Essbase security to ensure that only the assigned users would received the reports. Reports can be run either from Smartview or from WS.
many thanks,
cg

This could be the right link for 11.1.1.4: http://docs.oracle.com/cd/E12825_01/index.htm
You could refer this : http://docs.oracle.com/cd/E12825_01/epm.111/bpmui_user.pdf - Workspace user guide
http://docs.oracle.com/cd/E12825_01/epm.111/fr_user.pdf --FR user guide.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Financial report with gross margin

    Hello everyone,
    I use BI Publisher and I wondering how to do a financial report with the gross margin
    I would like to know the way to do
    1.     A calculation like a gross margin with a percent of the revenues.
    2.     How to subtract a sub-total with another one.
    Does somebody has a solution, thanks?

    Create a metric in RPD, it increases the re usability when creating reports in Answers.

  • Financial Reports with Date measures are showing data one day less

    Hello,
    I am running a financial report off of an ASO cube with type measures enabled. However, when i run the report in FR, that date data coming out is 1 day less...for eg 04/30/2012 comes out as 04/29/2012.
    however, when i run the same ad-hoc report via smart view, it is fine and the date comes out as expected. this is happening only in FR.
    Any help in this regard will be much appreciated.
    Thank you...

    I'm not sure what version you are running, but this was determined to be a bug that was fixed in 11.1.2.
    Although not pretty, you can add a similarly named dynamic member that will advance your date for you that you could use in FRS. You could use the DateRoll function: DateRoll ([Date Dimension], DP_DAY, 1 ). Just an idea.

  • Hyperion Financial Reports Studio Client Question

    Hi,
    I have a colleague that is on 11.1.1.3.0.0238 Financial Reports Client. He can connect to the server just fine. However when I try, I get the ole 'You are not authorized to use this functionality. Contact your Admiinistrator'. However when I use my login/pw on his machine I connect just fine.
    So I need to make sure my client is same version. Is there a file I can copy from his install directory to mine that will make them the same? I can't get the patches as I have no Support Identifier. Usually it's just replacing a few files?
    Thanks

    11.1.1.3.0.0238 should be the unpatched version of Financial Reporting, if you log into workspacew and go to help > about > details you will see the version of financial reporting.
    The server and client usually have to be the same version for it to work so unless you have patched your client you are probably on the same version, if you have patched it then you should be able to tell from Opatch
    If you are not sure then it may be easier just to uninstall FR Studio and install the base version.
    You could also open up or extract HReports.jar which is in the <HYPERION_HOME>\products\biplus\lib folder, go into the META-INF folder, view MANIFEST.MF and look for Implementation-Version:
    There are lots of articles in Oracle Support around the error message you are getting, if you have no support identifier I am sure you will know somebody in your company that should have access.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Report with email

    hi everyone,
    procedure used:
    i am sending an email using the report program.
    i am using the SAPFORM to send the mail..
    first i am sending the outout to the spool and from there i am sending the email.
    problem occured:
      The details are fetched from spool when i run the program..but when i again send the sanme program i getting the details along with the details of the previous mail...
    let me send the code of what i have used..can anyone try and resolve this problem please..
    *& Report  ZMAIL_SEND
    REPORT  ZMAIL_SEND.
    DATA : x_itcpo               TYPE itcpo,   "SAPscript output interface
           x_itcpp1              TYPE itcpp,  "SAPscript output parameters
           x_itcpp2              TYPE itcpp,
           c_std_text(8)         TYPE c VALUE 'STD_TEXT', "variable that is used in SAP SCRIPT
           it_packing_list       TYPE TABLE OF sopcklsti1 INITIAL SIZE 0 WITH HEADER LINE,
           it_objtxt             TYPE TABLE OF solisti1  INITIAL SIZE 0 WITH HEADER LINE,
           s_spool               TYPE tsp01-rqident,
           it_spool_file         TYPE TABLE OF soli      INITIAL SIZE 0 WITH HEADER LINE,
           v_sender              TYpe soextreci1-receiver VALUE '[email protected]',
           c_addr_type           TYPE soextreci1-adr_typ VALUE 'INT',
           it_reclist            TYPE TABLE OF somlreci1 INITIAL SIZE 0 WITH HEADER LINE,
           v_receiver            TYPE somlreci1-receiver VALUE '[email protected]',
           x_docdata             TYPE sodocchgi1,
           tab_lines             TYPE sy-tabix,
           lin1 TYPE i.
    ------ Printer settings structure  -
    x_itcpo-tddest = ''.
    x_itcpo-tdrdidev = ''.
    x_itcpo-tdnewid = 'x'.
    x_itcpo-tdsenddate = sy-datum.
    x_itcpo-tdsendtime = sy-uzeit.
    x_itcpo-tdschedule = 'IMM'.
    x_itcpo-tdimmed = ' '.
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
       device                            = 'PRINTER'
       dialog                            = 'X'
       form                              = 'ZTEST_FORM '
       language                          = sy-langu
       options                           = x_itcpo
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
      SPONUMIV                          =
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =  X_ITCPP1
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      CODEPAGE                          = 11
      OTHERS                            = 12
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *Assigning the standard text name
    CALL FUNCTION 'TEXT_SYMBOL_SETVALUE'
      EXPORTING
        name            = c_std_text
        value           = 'ZTEST_STD1'
        value_length    = 0
        replace_symbols = 'x'.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       element                        = 'E05_HEADER '
       function                       = 'SET'
       type                           = 'BODY'
       window                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      CODEPAGE                       = 9
      OTHERS                         = 10
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       element                        = 'ELEMENT1'
       function                       = 'SET'
       type                           = 'BODY'
       window                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      CODEPAGE                       = 9
      OTHERS                         = 10
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       element                        = 'E05_FOOTER '
       function                       = 'SET'
       type                           = 'BODY'
       window                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      CODEPAGE                       = 9
      OTHERS                         = 10
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
       RESULT                         =  x_itcpp2
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
       UNOPENED                       = 1
       BAD_PAGEFORMAT_FOR_PRINT       = 2
       SEND_ERROR                     = 3
       SPOOL_ERROR                    = 4
       CODEPAGE                       = 5
       OTHERS                         = 6
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ***********************EXECUTES SUCCESSFULLY UNTIL THIS*********************************
    ------- spool no. of the spool generated -
    s_spool = x_itcpp2-tdspoolid.
    ------- Fetching of the spool contents -
    IF NOT s_spool IS INITIAL.
      CALL FUNCTION 'RSPO_RETURN_SPOOLJOB'
        EXPORTING
          rqident                    = s_spool
         first_line                 = 1
         last_line                  = 1000
         desired_type               = 'RAW'
    IMPORTING
      REAL_TYPE                  =
      SP_LANG                    =
        TABLES
          buffer                     = it_spool_file "mail content
      BUFFER_PDF                 =
    EXCEPTIONS
      NO_SUCH_JOB                = 1
      JOB_CONTAINS_NO_DATA       = 2
      SELECTION_EMPTY            = 3
      NO_PERMISSION              = 4
      CAN_NOT_ACCESS             = 5
      READ_ERROR                 = 6
      TYPE_NO_MATCH              = 7
      OTHERS                     = 8
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDIF.
    CALCULATING THE NO OF RECORDS IN IT_SPOOL_FILE************
    DESCRIBE TABLE it_spool_file LINES lin1.
    *------ Filling the spool contents into internal table obtxt,-----
    *------ whose contents will be displayed as the body of email -
    IF lin1 GT 0.
      LOOP AT it_spool_file.
        it_objtxt-line = it_spool_file-line.
        APPEND it_objtxt.
        CLEAR it_objtxt.
        CLEAR it_spool_file-line.
      ENDLOOP.
    ENDIF.
    DESCRIBE TABLE it_objtxt LINES tab_lines.
    READ TABLE it_objtxt INDEX tab_lines.
    *------ Calculating doc. size which is email -
    x_docdata-obj_name  = 'ZTEST_STD1'.
    x_docdata-obj_descr = 'HAI TEST'.
    x_docdata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( it_objtxt ).
    *THIS SET OF CODE IS TO UPDATE THE RECEIVER EMAIL ADDRESS
    CLEAR it_reclist.
    REFRESH it_reclist.
    it_reclist-receiver = v_receiver.
    it_reclist-rec_type = 'U'.
    it_reclist-copy = 'x'.
    it_reclist-blind_copy = ' '.
    APPEND it_reclist.
    *contains the document description
    CLEAR it_packing_list.
    REFRESH it_packing_list.
    it_packing_list-transf_bin = space.
    it_packing_list-head_start = 1.
    it_packing_list-head_num = 0.
    it_packing_list-body_start = 1.
    DESCRIBE TABLE it_objtxt LINES it_packing_list-body_num.
    it_packing_list-doc_type = 'RAW'.
    APPEND it_packing_list.
    *this is the function module which sends the mail
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
      EXPORTING
        document_data                   = x_docdata
       put_in_outbox                    = 'X'
       sender_address                   =  v_sender  "senders mail address
       sender_address_type              = 'INT'
       commit_work                      = 'X'
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
      SENDER_ID                        =
      TABLES
       packing_list                     = it_packing_list
      OBJECT_HEADER                    =
      CONTENTS_BIN                     =
       contents_txt                     = it_objtxt  "this is the table which contains the content of the mail
      CONTENTS_HEX                     =
      OBJECT_PARA                      =
      OBJECT_PARB                      =
        receivers                        = it_reclist        "contains the receivers mail id
    EXCEPTIONS
      TOO_MANY_RECEIVERS               = 1
      DOCUMENT_NOT_SENT                = 2
      DOCUMENT_TYPE_NOT_EXIST          = 3
      OPERATION_NO_AUTHORIZATION       = 4
      PARAMETER_ERROR                  = 5
      X_ERROR                          = 6
      ENQUEUE_ERROR                    = 7
      OTHERS                           = 8
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    Hi Satheesh,
    <b>1</b>.
    Actually Spool rq no is stored in the table tsp01.If that is giving problem ,try to use this logic.It also works fine.
    CONCATENATE sy-repid0(9) sy-uname0(3) INTO tsp01-rq2name.
      SELECT MAX( rqcretime )
       FROM tsp01
       INTO tsp01-rqcretime
       WHERE rq2name = tsp01-rq2name.
      IF sy-subrc = 0.
        SELECT  SINGLE *
          FROM  tsp01
          WHERE rqcretime = tsp01-rqcretime.
        IF sy-subrc <> 0.
          MESSAGE s000(0k) WITH 'Spool Number does not exist'.
          EXIT.
        ENDIF.
      ENDIF.
    <b>2</b>.
    It gives Latest Spool no for this program .
    <b>Thanks,
    Venkat.O</b>

  • Financial Reports - chart formatting questions

    1) Is it possible to display the legend label names horizontally? The default lists them vertically and I don't see an option to change this.
    2) Is it possible to display axis numeric data labels with a decimal place?
    3) Is there any way to have axis start at minimum value of data (as in Excel) vs. 0?
    4) If data for a given month is 0, the line chart datapoint drops down to the bottom of the chart...is there any way to have it just cut off instead of showing the drop (tried putting a blank space in suppression labels but this did not work...)
    Thanks in advance for any suggestions.

    We are at version 9.3.1:
    We have a solution that involves editing the Report export file (.DES extension, the file is in XML format) – in other words a File > Export of the report and open the file in a text editor. The change essentially hard codes the number of decimal places in the chart legend. Since it looks like we have both Ratios (Gross margin %) and Financial Accounts (Gross margin) that could appear in the Chart, we probably don’t want two decimal places for all charts, the solution I added is for one decimal place only.
    To make the edit:
    1. open the DES file in a text editor. Search on <CHARTOBJECT , this should take you to the CHARTOBJECT section.
    2. then search on OBJECT_WIDTH. There are OBJECT_WIDTH parameters for objects other than charts, that is why we start at the Chart section first.
    3. Add the following parameter after OBJECT_WIDTH: OTHERPROPERTIES="LeftFormat=(FLOAT, '%8.1f')"
    4. There should be a space before the parameter, separating it from OBJECT_WIDTH, and a space after it separating it from the following parameter.
    5. Note: the %8.1f is surrounded by single quotes.
    6. Repeat the process for all other charts, search for the next <CHARTOBJECT and so on.
    To have 2 fixed decimal places, use the following: OTHERPROPERTIES="LeftFormat=(FLOAT, '%f')"

  • LMS 4.21 -- Unable to schedule NetworkDiscrepancy Report with eMail-Adress given

    Hi all,
    environment:
    LMS 4.21
    Solaris 10
    trying to schedule a Best Practices Network Discrepancy Report everything works find (reports could be scheduled)
    except entering a eMail-Address in Textfield: E-mail.
    Hiting the Submit Button results in nothing, no popup stating the created job ID; without any content
    in this field a job is able to be scheduled.
    Could that be a known bug or is anybody else facing the same problem?
    Best Regards
    Lothar

    No Cisco-Expert available having a solution?
    Many thx

  • Showing Annotations in Separate column in Hyperion Financial Report with source Essbase ASO

    Hi All,
    I've a Report in FR and user has to enter the comments and the entered comments should display in Column. I'm using Annotations here and created a separate column and written formula <<Annotation(cur, cur, F, cur, Desc)>>. The comment is displaying in the column, but to see the comment / annotation one has to select View -> Annotations. Is there any way to get rid of this. With out selecting View -> Annotations option can the comments directly displays in column when user opens a Report ?
    Or Is there any other way that user can enter comments in FR ? Essbase ASO cube is my source
    Thanks,
    PVR

    I don't think there is another way for that. Did you try the pdf view?
    You can try using LRO's
    Regards
    Celvin

  • Hyperion Financial Reports - Batch Email Distribution List disappeared

    In FR, when you schedule a batch, you can add e-mail addresses to a receipient list. These e-mail addresses can then be selected so these individuals receive the e-mail with the reports attached. Has anyone had the problem where the receipent list completely disappears? We had this happen 1 time back in 2010 just after we implemented and then just happened again today in 2012. Does anyone know the cause? We can add the names back in but would like to know cause so we don't do it again?

    What version is this?

  • Financial Reporting with supporting details row suppression doesn't work

    Hi,
    I've a report on Planning data with a conditional suppression on Row (Advance Set-up ) and it works exactly as I want. When I activate the supporting details and run the report... the suppression does NOT WORK ANY MORE.
    Can somebody help me ????
    Esample of the report (I have 3 dimension in the row):
    BUDGET Year
    Account 1 ActivityTot WorkTot 20
    Account 1 Activity1 Work1 10
    Account 1 Activity1 WorkTot 10
    Account 1 Activity2 Work1 10
    Account 1 Activity2 WorkTot 10
    Account 2 ActivityTot WorkTot 200
    Account 2 Activity1 Work1 100
    Account 2 Activity1 WorkTot 100
    Account 2 Activity2 Work1 100
    Account 2 Activity2 WorkTot 100
    Account TOT ActivityTot WorkTot 220
    Account TOT Activity1 Work1 110 <-- I want to suppress this
    Account TOT Activity1 WorkTot 110 <-- I want to suppress this
    Account TOT Activity2 Work1 110 <-- I want to suppress this
    Account TOT Activity2 WorkTot 110 <-- I want to suppress this
    I want to suppress in the Total Account all the rows with Activity and Work on leaf level.
    Condition of suppression:
    Level ACCOUNT > 0 and
    ( Generation ACTIVITY > 2 or Generation WORK > 2 )
    Without supporting detail it works, with supporting detail not. What's wrong ?????

    Another BB known issue 
    Users may not to able to take and restore data of the BB10 devices using BlackBerry Link if these ar...
    Scenario 2:
    While taking a backup using BlackBerry Link the following error is displayed:
    Note: This error appears if the device is activated on BES12 using Work Space onlyActivation profile. 
    Backup did not complete
    Verify that your device is turned on and connected to BlackBerry Link, and try again.

  • Security on Essbase with Financial Reporting

    I am current working on some improvement of my financial reports on essbase, all running at 9.3.1.
    I have some users that I have to setup the meta security on the essbase entity dimension. For example, a user is only able to see the entity East and all the divisions under East; but the same user is not allow even to see the meta-data for other regions, e.g. he/she does not even to know there are some South, Central regions at all. Meanwhile I have some financial reports which include all the regions in the row headers. I would like to user to be able to open this reports and see their own region only, and the administrators can see all the regions.
    However, currently when the user (with only East metadata and data security access) got some error message while he is trying to open the financial report (with all the regions listed in the row).
    I wonder whether there is any solutions on that. I am thinking the following possibilities:
    1. In 9.3.1, is it possible to have the essbase connection userid different from the financial reports userid? I have tried to modify the database connection in the workspace database connection manager, but however, when I check the essbase server log, while I am opening the FR, I still see the FR userid;
    2. Any other options that is available in FR, e.g. suppress such kind of errors?
    Please advise. Thanks in advance

    Hello. Are you using Essbase for financial consolidation or just reporting?

  • How to repeat row header in all pages in Financial Reporting?

    Hi,
    I have created a simple Financial Report with landscape mode, I could not able to view the row header in second page. Please help me out , how to repeat row header in all pages?
    Edited by: Awesome on Dec 13, 2012 2:04 PM

    Hi,
    Refer following link which states how to change the Page Setup setting (just an addition to above poster's explanation):-
    http://docs.oracle.com/cd/E12825_01/epm.111/fr_user/frameset.htm?1900.html
    Regards,
    Edited by: 918547 on Dec 14, 2012 6:17 PM

  • Hide total, but show subtotal in classic report with breaks

    Hi,
    Is it possible to use the sum function for a report with a break, but not display the total sum? I have a financial report with a break on currency. But I don't want to display the total sum, because it is meaningless.
    I don't have a clue how to fix this.
    Jacob

    Hi Jacob,
    I'm not sure of your overall target but perhaps this will help: http://apex.oracle.com/pls/otn/f?p=31517:86:3502666127312777
    Mike

  • Question on the Adobe Captivate 6.x Google LMS Widget With Email Reporting

    Im looking to use the Adobe Captivate 6.x Google LMS Widget With Email Reporting to collect quiz answers and results but due to security issues I would like to put the results directly into a databse and not into google.
    Does anyone have any experience in doing this and if so how what do I have to change to get the widget to send the results to the database.
    Thanks

    Email reporting has been removed in Captivate 6 out-of-the-box, though it can be achieved using a widget.
    You can use Michael’s widget to achieve the same - http://www.cpguru.com/email-reporting-widget-for-adobe-captivate/
    Akshay

  • Oracle Financials- Financial Reporting Lead with TCS

    Hello,
    Good Day, I am very pleased to be writing to you today to introduce a job opening we are aggressively recruiting for. Based on an on-line resume, I believe you may be qualified for the position. Would you please take a look at the job description below and tell me if you are interested. If so, please respond to this email with a WORD copy of your resume at your earliest convenience. If you are not, would you please forward this email to someone you think may be interested. That person and I would appreciate it very much.
    Our Client TATA Consultancy Services (TCS) is one of the world's leading information technology companies. Through its Global Network Delivery Model™, Innovation Network, and Solution Accelerators, TCS focuses on helping global organizations address their business challenges effectively. A part of the TATA Group, India's largest industrial conglomerate, TCS has over 100,000 of the world's best trained IT consultants in 47 countries. The company generated consolidated revenues of US $6 billion for fiscal year ended 31 March, 2008 and is listed on the National Stock Exchange and Bombay Stock Exchange in India. For more information, visit us at (www.tcs.com)
    Opportunity for you as: Oracle Financials- Financial Reporting Lead
    Location: Chicago, IL OR Des Moines, Iowa.
    Employment: Fulltime Permanent (GC, US CITIZENS and EAD only).
    Relevant Experience (Yrs): Overall Experience 9-10 Years
    Education: With CA or CPA
    Experience Required:
    Good to have Experience with insurance industries
    Also have hands on experience in Internal & External Reporting
    Experience with in & out Accounting.
    Should have experience in Consulting.
    Regards
    Mohan
    408-317-9219 Ext 7149
    Urpan Technologies
    [email protected]
    www.urpantech.com

    FORWARD THE UPDATED RESUME AS SOON AS POSSIBLE.

Maybe you are looking for

  • Automatically add line-items to Sales order

    Hello, Our client needs us to add line items to sales orders. The requirement is such that, when the users enter a material on a line item, they wish to see few more materials automatically added as new line items -- item category to be maintained as

  • Create timer for my vi

    The portion of my project I'm currently working on requires to keep the time in between iteration of a for loop. I want to be able to have a "time keeper" when I start the loop (in an event structure) to be shown in the front panel. And also how do I

  • Mac mini hard disk keep crashing

    The hard disk of my Mac mini has been replaced twice during the one year warranty period. It crashed again  recently and I was unable to reformat or reinstalled the OS as suggested in the  manual. I worry if my Mac mini was not due to hard disk probl

  • Problem syncing Aperture to iPad

    Has anyone else had a problem syncing Aperture to the iPad after upgrading to Mountain Lion?  I have attempted to sync selected albums from Aperture, but no new images were transferred. Thanks - Dudley

  • A bubble with an exclamation mark

    I have this icon of a bubble with an exclamation point right beside the battery icon that I can't get rid of. When I'm at the home page, it's gray. But when I enter any menu, it turns orange. I don't see it affecting the performance of the phone, but